ajout app
This commit is contained in:
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'custom_fields' => 'Polja po meri',
|
||||
'manage' => 'Manage',
|
||||
'field' => 'Polje',
|
||||
'about_fieldsets_title' => 'O setih polj',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Šifriraj vrednost tega polja v bazi podatkov',
|
||||
'encrypt_field_help' => 'OPOZORILO: Šifriranje polja onemogoča iskanje.',
|
||||
'encrypted' => 'Šifrirano',
|
||||
'fieldset' => 'Set polj',
|
||||
'qty_fields' => 'Polja količina',
|
||||
'fieldsets' => 'Set polj',
|
||||
'fieldset_name' => 'Ime seta polja',
|
||||
'field_name' => 'Ime polja',
|
||||
'field_values' => 'Vrednosti polja',
|
||||
'field_values_help' => 'Dodajte izbirne možnosti, eno za vsako vrstico. Prazne vrstice, razen prve vrstice, bodo prezrte.',
|
||||
'field_element' => 'Obrazec Element',
|
||||
'field_element_short' => 'Element',
|
||||
'field_format' => 'Oblika',
|
||||
'field_custom_format' => 'Regex format po meri',
|
||||
'field_custom_format_help' => 'To polje vam omogoča, da uporabite izraz regex za validacijo. Začeti bi moral z "regex:" - na primer, če želite potrditi, da vrednost polja po meri vsebuje veljaven IMEI (15 številk), uporabite <code>regex: / ^[0-9]{15}$ /</code>.',
|
||||
'required' => 'Zahtevano',
|
||||
'req' => 'Req.',
|
||||
'used_by_models' => 'Uporabljeno po modelih',
|
||||
'order' => 'Naročilo',
|
||||
'create_fieldset' => 'Nov set polj',
|
||||
'update_fieldset' => 'Update Fieldset',
|
||||
'fieldset_does_not_exist' => 'Fieldset :id does not exist',
|
||||
'fieldset_updated' => 'Fieldset updated',
|
||||
'create_fieldset_title' => 'Create a new fieldset',
|
||||
'create_field' => 'Novo polje po meri',
|
||||
'create_field_title' => 'Create a new custom field',
|
||||
'value_encrypted' => 'Vrednost tega polja je šifrirana v bazi podatkov. Dešifrirane vrednosti bodo lahko videli samo skrbniki sistema',
|
||||
'show_in_email' => 'Vključi vrednost tega polja v izdajni e-pošti poslani uporabniku? Šifriranih polj ni mogoče vključiti v e-pošti',
|
||||
'show_in_email_short' => 'Include in emails.',
|
||||
'help_text' => 'Help Text',
|
||||
'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.',
|
||||
'about_custom_fields_title' => 'About Custom Fields',
|
||||
'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.',
|
||||
'add_field_to_fieldset' => 'Add Field to Fieldset',
|
||||
'make_optional' => 'Required - click to make optional',
|
||||
'make_required' => 'Optional - click to make required',
|
||||
'reorder' => 'Reorder',
|
||||
'db_field' => 'DB Field',
|
||||
'db_convert_warning' => 'WARNING. This field is in the custom fields table as <code>:db_column</code> but should be <code>:expected</code>.',
|
||||
'is_unique' => 'This value must be unique across all assets',
|
||||
'unique' => 'Unique',
|
||||
'display_in_user_view' => 'Allow the checked out user to view these values in their View Assigned Assets page',
|
||||
'display_in_user_view_table' => 'Visible to User',
|
||||
'auto_add_to_fieldsets' => 'Automatically add this to every new fieldset',
|
||||
'add_to_preexisting_fieldsets' => 'Add to any existing fieldsets',
|
||||
'show_in_listview' => 'Show in list views by default. Authorized users will still be able to show/hide via the column selector',
|
||||
'show_in_listview_short' => 'Show in lists',
|
||||
'show_in_requestable_list_short' => 'Show in requestable assets list',
|
||||
'show_in_requestable_list' => 'Show value in requestable assets list. Encrypted fields will not be shown',
|
||||
'encrypted_options' => 'This field is encrypted, so some display options will not be available.',
|
||||
|
||||
];
|
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'field' => array(
|
||||
'invalid' => 'To polje ne obstaja.',
|
||||
'already_added' => 'Polje je že dodano',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Polje ni bilo ustvarjeno, poskusite znova.',
|
||||
'success' => 'Polje je uspešno ustvarjeno.',
|
||||
'assoc_success' => 'Polje je uspešno dodano v set polj.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'Polje ni bilo posodobljeno, poskusite znova',
|
||||
'success' => 'Polje je bilo uspešno posodobljeno.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Ali ste prepričani, da želite izbrisati to polje?',
|
||||
'error' => 'Prišlo je do težave z brisanjem polja. Prosim poskusite ponovno.',
|
||||
'success' => 'Polje je bilo uspešno izbrisano.',
|
||||
'in_use' => 'Polje je še vedno v uporabi.',
|
||||
)
|
||||
|
||||
),
|
||||
|
||||
'fieldset' => array(
|
||||
|
||||
'does_not_exist' => 'Set polj ne obstaja',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Set polj ni bil ustvarjen, poskusite znova.',
|
||||
'success' => 'Set polkj je bil uspešno ustvarjen.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'Set polj ni bil posodobljen, poskusite znova',
|
||||
'success' => 'Set polj je bil uspešno posodobljen.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Ali ste prepričani, da želite izbrisati ta set polj?',
|
||||
'error' => 'Prišlo je do težave z brisanjem seta polj. Prosim poskusite ponovno.',
|
||||
'success' => 'Set polj je uspešno izbrisano.',
|
||||
'in_use' => 'Set polj je še vedno v uporabi.',
|
||||
)
|
||||
|
||||
),
|
||||
|
||||
'fieldset_default_value' => array(
|
||||
|
||||
'error' => 'Error validating default fieldset values.',
|
||||
|
||||
),
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
);
|
Reference in New Issue
Block a user