diff --git a/.env.example b/.env.example index 2d45ff580e..f8e1df2987 100644 --- a/.env.example +++ b/.env.example @@ -6,7 +6,7 @@ APP_DEBUG=false APP_KEY=ChangeMe APP_URL=null APP_TIMEZONE='UTC' -APP_LOCALE=en +APP_LOCALE='en-US' MAX_RESULTS=500 # -------------------------------------------- diff --git a/.env.testing-ci b/.env.testing-ci index 82cd285700..f17a5c6c30 100644 --- a/.env.testing-ci +++ b/.env.testing-ci @@ -6,7 +6,7 @@ APP_DEBUG=false APP_KEY='base64:glJpcM7BYwWiBggp3SQ/+NlRkqsBQMaGEOjemXqJzOU=' APP_URL='http://localhost:8000' APP_TIMEZONE='US/Pacific' -APP_LOCALE=en +APP_LOCALE='en-US' FILESYSTEM_DISK=local # -------------------------------------------- diff --git a/.env.testing.example b/.env.testing.example index 3391d62726..26211f95c3 100644 --- a/.env.testing.example +++ b/.env.testing.example @@ -6,7 +6,7 @@ APP_DEBUG=true APP_KEY=base64:glJpcM7BYwWiBggp3SQ/+NlRkqsBQMaGEOjemXqJzOU= APP_URL=http://localhost:8000 APP_TIMEZONE='UTC' -APP_LOCALE=en +APP_LOCALE='en-US' # -------------------------------------------- # REQUIRED: DATABASE SETTINGS diff --git a/app/Helpers/Helper.php b/app/Helpers/Helper.php index c7aa5af04a..a0ee631c84 100644 --- a/app/Helpers/Helper.php +++ b/app/Helpers/Helper.php @@ -18,6 +18,58 @@ use Carbon\Carbon; class Helper { + + + public static $language_map = [ + 'af' => 'af-ZA', // Afrikaans + 'am' => 'am-ET', // Amharic + 'ar' => 'ar-SA', // Arabic + 'bg' => 'bg-BG', // Bulgarian + 'ca' => 'ca-ES', // Catalan + 'cs' => 'cs-CZ', // Czech + 'cy' => 'cy-GB', // Welsh + 'da' => 'da-DK', // Danish + 'de-i' => 'de-if', // German informal + 'de' => 'de-DE', // German + 'el' => 'el-GR', // Greek + 'en' => 'en-US', // English + 'et' => 'et-EE', // Estonian + 'fa' => 'fa-IR', // Persian + 'fi' => 'fi-FI', // Finnish + 'fil' => 'fil-PH', // Filipino + 'fr' => 'fr-FR', // French + 'he' => 'he-IL', // Hebrew + 'hr' => 'hr-HR', // Croatian + 'hu' => 'hu-HU', // Hungarian + 'id' => 'id-ID', // Indonesian + 'is' => 'is-IS', // Icelandic + 'it' => 'it-IT', // Italian + 'iu' => 'iu-NU', // Inuktitut + 'ja' => 'ja-JP', // Japanese + 'ko' => 'ko-KR', // Korean + 'lt' => 'lt-LT', // Lithuanian + 'lv' => 'lv-LV', // Latvian + 'mi' => 'mi-NZ', // Maori + 'mk' => 'mk-MK', // Macedonian + 'mn' => 'mn-MN', // Mongolian + 'ms' => 'ms-MY', // Malay + 'nl' => 'nl-NL', // Dutch + 'no' => 'no-NO', // Norwegian + 'pl' => 'pl-PL', // Polish + 'ro' => 'ro-RO', // Romanian + 'ru' => 'ru-RU', // Russian + 'sk' => 'sk-SK', // Slovak + 'sl' => 'sl-SI', // Slovenian + 'so' => 'so-SO', // Somali + 'ta' => 'ta-IN', // Tamil + 'th' => 'th-TH', // Thai + 'tl' => 'tl-PH', // Tagalog + 'tr' => 'tr-TR', // Turkish + 'uk' => 'uk-UA', // Ukrainian + 'vi' => 'vi-VN', // Vietnamese + 'zu' => 'zu-ZA', // Zulu + ]; + /** * Simple helper to invoke the markdown parser * @@ -1317,7 +1369,7 @@ class Helper /* - * I know it's gauche to return a shitty HTML string, but this is just a helper and since it will be the same every single time, + * I know it's gauche to return a shitty HTML string, but this is just a helper and since it will be the same every single time, * it seemed pretty safe to do here. Don't you judge me. */ public static function showDemoModeFieldWarning() { @@ -1325,4 +1377,55 @@ class Helper return "

" . trans('general.feature_disabled') . "

"; } } + + + /** + * Ah, legacy code. + * + * This corrects the original mistakes from 2013 where we used the wrong locale codes. Hopefully we + * can get rid of this in a future version, but this should at least give us the belt and suspenders we need + * to be sure this change is not too disruptive. + * + * In this array, we ONLY include the older languages where we weren't using the correct locale codes. + * + * @see public static $language_map in this file + * @author A. Gianotto + * @since 6.3.0 + * + * @param $language_code + * @return string [] + */ + public static function mapLegacyLocale($language_code = null) + { + + if (strlen($language_code) > 4) { + return $language_code; + } + + foreach (self::$language_map as $legacy => $new) { + if ($language_code == $legacy) { + \Log::debug('Current language is '.$legacy.', using '.$new.' instead'); + return $new; + } + } + + // Return US english if we don't have a match + return 'en-US'; + } + + public static function mapBackToLegacyLocale($new_locale = null) + { + if (strlen($new_locale) <= 4) { + return $new_locale; //"new locale" apparently wasn't quite so new + } + + // This does a *reverse* search against our new language map array - given the value, find the *key* for it + $legacy_locale = array_search($new_locale, self::$language_map); + + if($legacy_locale !== false) { + return $legacy_locale; + } + return $new_locale; // better that you have some weird locale that doesn't fit into our mappings anywhere than 'void' + } + } diff --git a/app/Http/Middleware/CheckLocale.php b/app/Http/Middleware/CheckLocale.php index 75cba13261..3c525d172c 100644 --- a/app/Http/Middleware/CheckLocale.php +++ b/app/Http/Middleware/CheckLocale.php @@ -4,6 +4,7 @@ namespace App\Http\Middleware; use App\Models\Setting; use Closure; +use \App\Helpers\Helper; class CheckLocale { @@ -18,22 +19,28 @@ class CheckLocale */ public function handle($request, Closure $next, $guard = null) { + + // Default app settings from config + $language = config('app.locale'); + if ($settings = Setting::getSettings()) { + // User's preference if (($request->user()) && ($request->user()->locale)) { - \App::setLocale($request->user()->locale); + $language = $request->user()->locale; // App setting preference } elseif ($settings->locale != '') { - \App::setLocale($settings->locale); - - // Default app setting - } else { - \App::setLocale(config('app.locale')); + $language = $settings->locale; } - } - \App::setLocale(config('app.locale')); + } + + if (config('app.locale') != Helper::mapLegacyLocale($language)) { + \Log::warning('Your current APP_LOCALE in your .env is set to "'.config('app.locale').'" and should be updated to be "'.Helper::mapLegacyLocale($language).'" in '.base_path().'/.env. Translations may display unexpectedly until this is updated.'); + } + + \App::setLocale(Helper::mapLegacyLocale($language)); return $next($request); } } diff --git a/database/migrations/2023_12_19_081112_fix_language_dirs.php b/database/migrations/2023_12_19_081112_fix_language_dirs.php new file mode 100644 index 0000000000..64b9598048 --- /dev/null +++ b/database/migrations/2023_12_19_081112_fix_language_dirs.php @@ -0,0 +1,60 @@ +locale != '')) { + DB::table('settings')->update(['locale' => Helper::mapLegacyLocale($settings->locale)]); + } + + /** + * Update the users table + */ + $users = User::whereNotNull('locale')->get(); + // Skip the model in case the validation rules have changed + foreach ($users as $user) { + DB::table('users')->where('id', $user->id)->update(['locale' => Helper::mapLegacyLocale($user->locale)]); + } + + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + $settings = Setting::getSettings(); + if (($settings) && ($settings->locale != '')) { + DB::table('settings')->update(['locale' => Helper::mapBackToLegacyLocale($settings->locale)]); + } + + /** + * Update the users table + */ + $users = User::whereNotNull('locale')->whereNull('deleted_at')->get(); + // Skip the model in case the validation rules have changed + foreach ($users as $user) { + DB::table('users')->where('id', $user->id)->update(['locale' => Helper::mapBackToLegacyLocale($user->locale)]); + } + + } +} diff --git a/resources/lang/af/account/general.php b/resources/lang/af-ZA/account/general.php similarity index 100% rename from resources/lang/af/account/general.php rename to resources/lang/af-ZA/account/general.php diff --git a/resources/lang/af/admin/accessories/general.php b/resources/lang/af-ZA/admin/accessories/general.php similarity index 100% rename from resources/lang/af/admin/accessories/general.php rename to resources/lang/af-ZA/admin/accessories/general.php diff --git a/resources/lang/af/admin/accessories/message.php b/resources/lang/af-ZA/admin/accessories/message.php similarity index 100% rename from resources/lang/af/admin/accessories/message.php rename to resources/lang/af-ZA/admin/accessories/message.php diff --git a/resources/lang/af/admin/accessories/table.php b/resources/lang/af-ZA/admin/accessories/table.php similarity index 100% rename from resources/lang/af/admin/accessories/table.php rename to resources/lang/af-ZA/admin/accessories/table.php diff --git a/resources/lang/af/admin/asset_maintenances/form.php b/resources/lang/af-ZA/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/af/admin/asset_maintenances/form.php rename to resources/lang/af-ZA/admin/asset_maintenances/form.php diff --git a/resources/lang/af/admin/asset_maintenances/general.php b/resources/lang/af-ZA/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/af/admin/asset_maintenances/general.php rename to resources/lang/af-ZA/admin/asset_maintenances/general.php diff --git a/resources/lang/af/admin/asset_maintenances/message.php b/resources/lang/af-ZA/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/af/admin/asset_maintenances/message.php rename to resources/lang/af-ZA/admin/asset_maintenances/message.php diff --git a/resources/lang/af/admin/asset_maintenances/table.php b/resources/lang/af-ZA/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/af/admin/asset_maintenances/table.php rename to resources/lang/af-ZA/admin/asset_maintenances/table.php diff --git a/resources/lang/af/admin/categories/general.php b/resources/lang/af-ZA/admin/categories/general.php similarity index 100% rename from resources/lang/af/admin/categories/general.php rename to resources/lang/af-ZA/admin/categories/general.php diff --git a/resources/lang/af/admin/categories/message.php b/resources/lang/af-ZA/admin/categories/message.php similarity index 100% rename from resources/lang/af/admin/categories/message.php rename to resources/lang/af-ZA/admin/categories/message.php diff --git a/resources/lang/af/admin/categories/table.php b/resources/lang/af-ZA/admin/categories/table.php similarity index 100% rename from resources/lang/af/admin/categories/table.php rename to resources/lang/af-ZA/admin/categories/table.php diff --git a/resources/lang/af/admin/companies/general.php b/resources/lang/af-ZA/admin/companies/general.php similarity index 87% rename from resources/lang/af/admin/companies/general.php rename to resources/lang/af-ZA/admin/companies/general.php index b76c71677a..9a3b8f42f0 100644 --- a/resources/lang/af/admin/companies/general.php +++ b/resources/lang/af-ZA/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Kies Maatskappy', - 'about_companies' => 'About Companies', + 'about_companies' => 'Oor Maatskappye', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/af/admin/companies/message.php b/resources/lang/af-ZA/admin/companies/message.php similarity index 100% rename from resources/lang/af/admin/companies/message.php rename to resources/lang/af-ZA/admin/companies/message.php diff --git a/resources/lang/af/admin/companies/table.php b/resources/lang/af-ZA/admin/companies/table.php similarity index 100% rename from resources/lang/af/admin/companies/table.php rename to resources/lang/af-ZA/admin/companies/table.php diff --git a/resources/lang/af/admin/components/general.php b/resources/lang/af-ZA/admin/components/general.php similarity index 100% rename from resources/lang/af/admin/components/general.php rename to resources/lang/af-ZA/admin/components/general.php diff --git a/resources/lang/af/admin/components/message.php b/resources/lang/af-ZA/admin/components/message.php similarity index 100% rename from resources/lang/af/admin/components/message.php rename to resources/lang/af-ZA/admin/components/message.php diff --git a/resources/lang/af/admin/components/table.php b/resources/lang/af-ZA/admin/components/table.php similarity index 100% rename from resources/lang/af/admin/components/table.php rename to resources/lang/af-ZA/admin/components/table.php diff --git a/resources/lang/af/admin/consumables/general.php b/resources/lang/af-ZA/admin/consumables/general.php similarity index 100% rename from resources/lang/af/admin/consumables/general.php rename to resources/lang/af-ZA/admin/consumables/general.php diff --git a/resources/lang/af/admin/consumables/message.php b/resources/lang/af-ZA/admin/consumables/message.php similarity index 100% rename from resources/lang/af/admin/consumables/message.php rename to resources/lang/af-ZA/admin/consumables/message.php diff --git a/resources/lang/af/admin/consumables/table.php b/resources/lang/af-ZA/admin/consumables/table.php similarity index 100% rename from resources/lang/af/admin/consumables/table.php rename to resources/lang/af-ZA/admin/consumables/table.php diff --git a/resources/lang/af/admin/custom_fields/general.php b/resources/lang/af-ZA/admin/custom_fields/general.php similarity index 100% rename from resources/lang/af/admin/custom_fields/general.php rename to resources/lang/af-ZA/admin/custom_fields/general.php diff --git a/resources/lang/af/admin/custom_fields/message.php b/resources/lang/af-ZA/admin/custom_fields/message.php similarity index 100% rename from resources/lang/af/admin/custom_fields/message.php rename to resources/lang/af-ZA/admin/custom_fields/message.php diff --git a/resources/lang/af/admin/departments/message.php b/resources/lang/af-ZA/admin/departments/message.php similarity index 100% rename from resources/lang/af/admin/departments/message.php rename to resources/lang/af-ZA/admin/departments/message.php diff --git a/resources/lang/af/admin/departments/table.php b/resources/lang/af-ZA/admin/departments/table.php similarity index 100% rename from resources/lang/af/admin/departments/table.php rename to resources/lang/af-ZA/admin/departments/table.php diff --git a/resources/lang/af/admin/depreciations/general.php b/resources/lang/af-ZA/admin/depreciations/general.php similarity index 100% rename from resources/lang/af/admin/depreciations/general.php rename to resources/lang/af-ZA/admin/depreciations/general.php diff --git a/resources/lang/af/admin/depreciations/message.php b/resources/lang/af-ZA/admin/depreciations/message.php similarity index 100% rename from resources/lang/af/admin/depreciations/message.php rename to resources/lang/af-ZA/admin/depreciations/message.php diff --git a/resources/lang/af/admin/depreciations/table.php b/resources/lang/af-ZA/admin/depreciations/table.php similarity index 100% rename from resources/lang/af/admin/depreciations/table.php rename to resources/lang/af-ZA/admin/depreciations/table.php diff --git a/resources/lang/af/admin/groups/message.php b/resources/lang/af-ZA/admin/groups/message.php similarity index 100% rename from resources/lang/af/admin/groups/message.php rename to resources/lang/af-ZA/admin/groups/message.php diff --git a/resources/lang/af/admin/groups/table.php b/resources/lang/af-ZA/admin/groups/table.php similarity index 100% rename from resources/lang/af/admin/groups/table.php rename to resources/lang/af-ZA/admin/groups/table.php diff --git a/resources/lang/af/admin/groups/titles.php b/resources/lang/af-ZA/admin/groups/titles.php similarity index 100% rename from resources/lang/af/admin/groups/titles.php rename to resources/lang/af-ZA/admin/groups/titles.php diff --git a/resources/lang/af/admin/hardware/form.php b/resources/lang/af-ZA/admin/hardware/form.php similarity index 100% rename from resources/lang/af/admin/hardware/form.php rename to resources/lang/af-ZA/admin/hardware/form.php diff --git a/resources/lang/af/admin/hardware/general.php b/resources/lang/af-ZA/admin/hardware/general.php similarity index 100% rename from resources/lang/af/admin/hardware/general.php rename to resources/lang/af-ZA/admin/hardware/general.php diff --git a/resources/lang/af/admin/hardware/message.php b/resources/lang/af-ZA/admin/hardware/message.php similarity index 98% rename from resources/lang/af/admin/hardware/message.php rename to resources/lang/af-ZA/admin/hardware/message.php index b6ad6411e5..7706f51a98 100644 --- a/resources/lang/af/admin/hardware/message.php +++ b/resources/lang/af-ZA/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Bate is nie herstel nie, probeer asseblief weer', 'success' => 'Bate herstel suksesvol.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Bate herstel suksesvol.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/af/admin/hardware/table.php b/resources/lang/af-ZA/admin/hardware/table.php similarity index 95% rename from resources/lang/af/admin/hardware/table.php rename to resources/lang/af-ZA/admin/hardware/table.php index 44d50cd1f9..67f4d4b3e7 100644 --- a/resources/lang/af/admin/hardware/table.php +++ b/resources/lang/af-ZA/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Toestelbeeld', 'days_without_acceptance' => 'Dae sonder aanvaarding', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Toevertrou aan', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/af-ZA/admin/kits/general.php b/resources/lang/af-ZA/admin/kits/general.php new file mode 100644 index 0000000000..14ab91bc5c --- /dev/null +++ b/resources/lang/af-ZA/admin/kits/general.php @@ -0,0 +1,50 @@ + 'About Predefined Kits', + 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', + 'checkout' => 'Checkout Kit ', + 'create_success' => 'Kit was successfully created.', + 'create' => 'Create Predefined Kit', + 'update' => 'Update Predefined Kit', + 'delete_success' => 'Kit was successfully deleted.', + 'update_success' => 'Kit was successfully updated.', + 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', + 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', + 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', + 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'License already attached to kit', + 'license_added_success' => 'License added successfully', + 'license_updated' => 'License was successfully updated', + 'license_none' => 'Lisensie bestaan ​​nie', + 'license_detached' => 'License was successfully detached', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Delete was successful', + 'consumable_none' => 'Verbruiksgoedere bestaan ​​nie', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Accessory added successfully', + 'accessory_updated' => 'Accessory was successfully updated', + 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_error' => 'Accessory already attached to kit', + 'accessory_deleted' => 'Delete was successful', + 'accessory_none' => 'Accessory does not exist', + 'checkout_success' => 'Checkout was successful', + 'checkout_error' => 'Checkout error', + 'kit_none' => 'Kit does not exist', + 'kit_created' => 'Kit was successfully created', + 'kit_updated' => 'Kit was successfully updated', + 'kit_not_found' => 'Kit not found', + 'kit_deleted' => 'Kit was successfully deleted', + 'kit_model_updated' => 'Model was successfully updated', + 'kit_model_detached' => 'Model was successfully detached', +]; diff --git a/resources/lang/af/admin/labels/message.php b/resources/lang/af-ZA/admin/labels/message.php similarity index 100% rename from resources/lang/af/admin/labels/message.php rename to resources/lang/af-ZA/admin/labels/message.php diff --git a/resources/lang/af-ZA/admin/labels/table.php b/resources/lang/af-ZA/admin/labels/table.php new file mode 100644 index 0000000000..00e743b214 --- /dev/null +++ b/resources/lang/af-ZA/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'tag', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'logo', + 'support_title' => 'Titel', + +]; \ No newline at end of file diff --git a/resources/lang/af/admin/licenses/form.php b/resources/lang/af-ZA/admin/licenses/form.php similarity index 100% rename from resources/lang/af/admin/licenses/form.php rename to resources/lang/af-ZA/admin/licenses/form.php diff --git a/resources/lang/af/admin/licenses/general.php b/resources/lang/af-ZA/admin/licenses/general.php similarity index 100% rename from resources/lang/af/admin/licenses/general.php rename to resources/lang/af-ZA/admin/licenses/general.php diff --git a/resources/lang/af/admin/licenses/message.php b/resources/lang/af-ZA/admin/licenses/message.php similarity index 100% rename from resources/lang/af/admin/licenses/message.php rename to resources/lang/af-ZA/admin/licenses/message.php diff --git a/resources/lang/af/admin/licenses/table.php b/resources/lang/af-ZA/admin/licenses/table.php similarity index 100% rename from resources/lang/af/admin/licenses/table.php rename to resources/lang/af-ZA/admin/licenses/table.php diff --git a/resources/lang/af/admin/locations/message.php b/resources/lang/af-ZA/admin/locations/message.php similarity index 100% rename from resources/lang/af/admin/locations/message.php rename to resources/lang/af-ZA/admin/locations/message.php diff --git a/resources/lang/af/admin/locations/table.php b/resources/lang/af-ZA/admin/locations/table.php similarity index 79% rename from resources/lang/af/admin/locations/table.php rename to resources/lang/af-ZA/admin/locations/table.php index 635e8a4995..a5c607fd67 100644 --- a/resources/lang/af/admin/locations/table.php +++ b/resources/lang/af-ZA/admin/locations/table.php @@ -22,18 +22,18 @@ return [ 'currency' => 'Ligging Geld', 'ldap_ou' => 'LDAP soek OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Departement', + 'location' => 'plek', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', + 'asset_name' => 'naam', + 'asset_category' => 'kategorie', + 'asset_manufacturer' => 'vervaardiger', + 'asset_model' => 'model', 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_location' => 'plek', + 'asset_checked_out' => 'Gekontroleer', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'datum:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/af/admin/manufacturers/message.php b/resources/lang/af-ZA/admin/manufacturers/message.php similarity index 100% rename from resources/lang/af/admin/manufacturers/message.php rename to resources/lang/af-ZA/admin/manufacturers/message.php diff --git a/resources/lang/af/admin/manufacturers/table.php b/resources/lang/af-ZA/admin/manufacturers/table.php similarity index 100% rename from resources/lang/af/admin/manufacturers/table.php rename to resources/lang/af-ZA/admin/manufacturers/table.php diff --git a/resources/lang/af/admin/models/general.php b/resources/lang/af-ZA/admin/models/general.php similarity index 100% rename from resources/lang/af/admin/models/general.php rename to resources/lang/af-ZA/admin/models/general.php diff --git a/resources/lang/af/admin/models/message.php b/resources/lang/af-ZA/admin/models/message.php similarity index 100% rename from resources/lang/af/admin/models/message.php rename to resources/lang/af-ZA/admin/models/message.php diff --git a/resources/lang/af/admin/models/table.php b/resources/lang/af-ZA/admin/models/table.php similarity index 100% rename from resources/lang/af/admin/models/table.php rename to resources/lang/af-ZA/admin/models/table.php diff --git a/resources/lang/af/admin/reports/general.php b/resources/lang/af-ZA/admin/reports/general.php similarity index 100% rename from resources/lang/af/admin/reports/general.php rename to resources/lang/af-ZA/admin/reports/general.php diff --git a/resources/lang/af/admin/reports/message.php b/resources/lang/af-ZA/admin/reports/message.php similarity index 100% rename from resources/lang/af/admin/reports/message.php rename to resources/lang/af-ZA/admin/reports/message.php diff --git a/resources/lang/af/admin/settings/general.php b/resources/lang/af-ZA/admin/settings/general.php similarity index 99% rename from resources/lang/af/admin/settings/general.php rename to resources/lang/af-ZA/admin/settings/general.php index 1dc08aeb4c..79a08a1fbe 100644 --- a/resources/lang/af/admin/settings/general.php +++ b/resources/lang/af-ZA/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Dit is \'n Active Directory-bediener', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Wagwoord minimum karakters', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Minimum toelaatbare waarde is 8', 'pwd_secure_uncommon' => 'Voorkom algemene wagwoorde', 'pwd_secure_uncommon_help' => 'Dit sal gebruikers nie toelaat om algemene wagwoorde te gebruik van die top 10,000 wagwoorde wat in oortredings gerapporteer is nie.', 'qr_help' => 'Aktiveer QR-kodes eers om dit te stel', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Verwyder verwyderde rekords', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,7 +335,7 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Titel', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', diff --git a/resources/lang/af/admin/settings/message.php b/resources/lang/af-ZA/admin/settings/message.php similarity index 100% rename from resources/lang/af/admin/settings/message.php rename to resources/lang/af-ZA/admin/settings/message.php diff --git a/resources/lang/en/admin/settings/table.php b/resources/lang/af-ZA/admin/settings/table.php similarity index 60% rename from resources/lang/en/admin/settings/table.php rename to resources/lang/af-ZA/admin/settings/table.php index 22db5c84ed..3e210bbe99 100644 --- a/resources/lang/en/admin/settings/table.php +++ b/resources/lang/af-ZA/admin/settings/table.php @@ -1,6 +1,6 @@ 'Created', + 'created' => 'Geskep', 'size' => 'Size', ); diff --git a/resources/lang/af/admin/statuslabels/message.php b/resources/lang/af-ZA/admin/statuslabels/message.php similarity index 85% rename from resources/lang/af/admin/statuslabels/message.php rename to resources/lang/af-ZA/admin/statuslabels/message.php index b567b93746..141c57c58e 100644 --- a/resources/lang/af/admin/statuslabels/message.php +++ b/resources/lang/af-ZA/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Statuslabel bestaan ​​nie.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Hierdie statusetiket word tans geassosieer met ten minste een bate en kan nie uitgevee word nie. Dateer asseblief jou bates op om nie meer hierdie status te verwys nie en probeer weer.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Hierdie bates kan nie aan enigiemand toegewys word nie.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Hierdie bates kan nagegaan word. Sodra hulle toegewys is, sal hulle \'n meta-status van Deployed aanvaar.', 'archived' => 'Hierdie bates kan nie nagegaan word nie en sal eers in die Argief-aansig verskyn. Dit is nuttig vir die behoud van inligting oor bates vir begrotings / historiese doeleindes, maar om hulle uit die dag-tot-dag-bate lys te hou.', 'pending' => 'Hierdie bates kan nog nie aan iemand toegewys word nie, wat dikwels gebruik word vir items wat buite herstel is, maar sal na verwagting terugkeer.', ], diff --git a/resources/lang/af/admin/statuslabels/table.php b/resources/lang/af-ZA/admin/statuslabels/table.php similarity index 100% rename from resources/lang/af/admin/statuslabels/table.php rename to resources/lang/af-ZA/admin/statuslabels/table.php diff --git a/resources/lang/af/admin/suppliers/message.php b/resources/lang/af-ZA/admin/suppliers/message.php similarity index 100% rename from resources/lang/af/admin/suppliers/message.php rename to resources/lang/af-ZA/admin/suppliers/message.php diff --git a/resources/lang/af/admin/suppliers/table.php b/resources/lang/af-ZA/admin/suppliers/table.php similarity index 100% rename from resources/lang/af/admin/suppliers/table.php rename to resources/lang/af-ZA/admin/suppliers/table.php diff --git a/resources/lang/af/admin/users/general.php b/resources/lang/af-ZA/admin/users/general.php similarity index 97% rename from resources/lang/af/admin/users/general.php rename to resources/lang/af-ZA/admin/users/general.php index 735893a729..c91c0d7901 100644 --- a/resources/lang/af/admin/users/general.php +++ b/resources/lang/af-ZA/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Sien gebruiker: naam', 'usercsv' => 'CSV-lêer', 'two_factor_admin_optin_help' => 'Jou huidige administrasie-instellings laat selektiewe handhawing van twee-faktor-verifikasie toe.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA-toestel ingeskryf', + 'two_factor_active' => '2FA aktief', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/af/admin/users/message.php b/resources/lang/af-ZA/admin/users/message.php similarity index 98% rename from resources/lang/af/admin/users/message.php rename to resources/lang/af-ZA/admin/users/message.php index ce9ec4b089..d19fee76dc 100644 --- a/resources/lang/af/admin/users/message.php +++ b/resources/lang/af-ZA/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Jy het hierdie bate suksesvol geweier.', 'bulk_manager_warn' => 'Jou gebruikers is suksesvol opgedateer, maar jou bestuurderinskrywing is nie gestoor nie, want die bestuurder wat jy gekies het, was ook in die gebruikerslys om geredigeer te word, en gebruikers mag nie hul eie bestuurder wees nie. Kies asseblief u gebruikers weer, behalwe die bestuurder.', 'user_exists' => 'Gebruiker bestaan ​​reeds!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Gebruiker bestaan ​​nie.', 'user_login_required' => 'Die aanmeldingsveld is nodig', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Die wagwoord is nodig.', diff --git a/resources/lang/af/admin/users/table.php b/resources/lang/af-ZA/admin/users/table.php similarity index 95% rename from resources/lang/af/admin/users/table.php rename to resources/lang/af-ZA/admin/users/table.php index 6de0a260c5..7fc404de20 100644 --- a/resources/lang/af/admin/users/table.php +++ b/resources/lang/af-ZA/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Bestuurder', 'managed_locations' => 'Bestuurde plekke', 'name' => 'naam', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'notas', 'password_confirm' => 'Bevestig Wagwoord', 'password' => 'wagwoord', diff --git a/resources/lang/af/auth.php b/resources/lang/af-ZA/auth.php similarity index 100% rename from resources/lang/af/auth.php rename to resources/lang/af-ZA/auth.php diff --git a/resources/lang/af/auth/general.php b/resources/lang/af-ZA/auth/general.php similarity index 100% rename from resources/lang/af/auth/general.php rename to resources/lang/af-ZA/auth/general.php diff --git a/resources/lang/af/auth/message.php b/resources/lang/af-ZA/auth/message.php similarity index 96% rename from resources/lang/af/auth/message.php rename to resources/lang/af-ZA/auth/message.php index cac4449af3..a2087136c2 100644 --- a/resources/lang/af/auth/message.php +++ b/resources/lang/af-ZA/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Jy is suksesvol aangemeld.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/af/button.php b/resources/lang/af-ZA/button.php similarity index 88% rename from resources/lang/af/button.php rename to resources/lang/af-ZA/button.php index 9f0b1b0c23..e0709bce16 100644 --- a/resources/lang/af/button.php +++ b/resources/lang/af-ZA/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Kies lêer ...', 'select_files' => 'Select Files...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Stuur wagwoord terugstel skakel', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Nuwe', ]; diff --git a/resources/lang/af/general.php b/resources/lang/af-ZA/general.php similarity index 96% rename from resources/lang/af/general.php rename to resources/lang/af-ZA/general.php index e4df406c8c..8e224e9da4 100644 --- a/resources/lang/af/general.php +++ b/resources/lang/af-ZA/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'invoer', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Invoer Geskiedenis', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Klaar om te implementeer', 'recent_activity' => 'Onlangse aktiwiteite', - 'remaining' => 'Remaining', + 'remaining' => 'oorblywende', 'remove_company' => 'Verwyder Maatskappyvereniging', 'reports' => 'Berigte', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'herstel', 'requestable_models' => 'Requestable Models', 'requested' => 'versoek', 'requested_date' => 'Requested Date', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Un-verbintenis', 'unknown_admin' => 'Onbekende Admin', 'username_format' => 'Gebruikernaam', - 'username' => 'Username', + 'username' => 'Gebruikersnaam', 'update' => 'Opdateer', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'opgelaai', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'e-pos', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Gekontroleer', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Waarskuwing', + 'notification_info' => 'info', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Bate Naam', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Verbruikbare Naam:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Toebehore Naam:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% volledige', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'wysig', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/af-ZA/help.php b/resources/lang/af-ZA/help.php new file mode 100644 index 0000000000..44065df043 --- /dev/null +++ b/resources/lang/af-ZA/help.php @@ -0,0 +1,35 @@ + 'Meer inligting', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Bates is items opgespoor volgens reeksnommer of bate-tag. Hulle is geneig om hoër waarde items te wees waar die identifisering van \'n spesifieke item saak maak.', + + 'categories' => 'Kategorieë help jou om jou items te organiseer. Sommige voorbeeldkategorieë kan wees "Desktops", "Laptops", "Mobile Phones", "Tablets", ensovoorts, maar jy kan kategorieë gebruik wat vir jou sin maak.', + + 'accessories' => 'Toebehore is enigiets wat jy aan gebruikers uitreik, maar dit het nie \'n reeksnommer (of jy gee nie om om hulle unieke te volg nie). Byvoorbeeld, rekenaarmuise of sleutelborde.', + + 'companies' => 'Maatskappye kan gebruik word as \'n eenvoudige identifikasie veld, of kan gebruik word om sigbaarheid van bates, gebruikers, ens beperk as volle maatskappy ondersteuning geaktiveer is in jou Admin instellings.', + + 'components' => 'Komponente is items wat deel van \'n bate is, byvoorbeeld HDD, RAM, ens.', + + 'consumables' => 'Verbruiksgoedere word enigiets aangekoop wat oor tyd gebruik sal word. Byvoorbeeld, drukker ink of kopieermapier.', + + 'depreciations' => 'U kan bate-afskrywings opstel om bates te deprecieer gebaseer op reguit-waardevermindering.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/en/localizations.php b/resources/lang/af-ZA/localizations.php similarity index 100% rename from resources/lang/en/localizations.php rename to resources/lang/af-ZA/localizations.php diff --git a/resources/lang/af/mail.php b/resources/lang/af-ZA/mail.php similarity index 98% rename from resources/lang/af/mail.php rename to resources/lang/af-ZA/mail.php index 60d990e312..3034a68ebd 100644 --- a/resources/lang/af/mail.php +++ b/resources/lang/af-ZA/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'bate:', 'asset_name' => 'Bate Naam:', 'asset_requested' => 'Bate aangevra', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Bate-tag', 'assigned_to' => 'Toevertrou aan', 'best_regards' => 'Beste wense,', 'canceled' => 'gekanselleer:', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'Om jou webadres te herstel, voltooi hierdie vorm:', 'type' => 'tipe', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'gebruiker', + 'username' => 'Gebruikersnaam', 'welcome' => 'Welkom: naam', 'welcome_to' => 'Welkom by: web!', 'your_credentials' => 'Jou Snipe-IT-referenties', diff --git a/resources/lang/af/pagination.php b/resources/lang/af-ZA/pagination.php similarity index 100% rename from resources/lang/af/pagination.php rename to resources/lang/af-ZA/pagination.php diff --git a/resources/lang/af/passwords.php b/resources/lang/af-ZA/passwords.php similarity index 100% rename from resources/lang/af/passwords.php rename to resources/lang/af-ZA/passwords.php diff --git a/resources/lang/af/reminders.php b/resources/lang/af-ZA/reminders.php similarity index 100% rename from resources/lang/af/reminders.php rename to resources/lang/af-ZA/reminders.php diff --git a/resources/lang/af/table.php b/resources/lang/af-ZA/table.php similarity index 100% rename from resources/lang/af/table.php rename to resources/lang/af-ZA/table.php diff --git a/resources/lang/af/validation.php b/resources/lang/af-ZA/validation.php similarity index 98% rename from resources/lang/af/validation.php rename to resources/lang/af-ZA/validation.php index 43f4a45ef5..b8de83e399 100644 --- a/resources/lang/af/validation.php +++ b/resources/lang/af-ZA/validation.php @@ -94,10 +94,9 @@ return [ 'unique' => 'Die: Attribuut is reeds geneem.', 'uploaded' => 'Die: kenmerk kon nie opgelaai word nie.', 'url' => 'Die: Attribuutformaat is ongeldig.', - 'unique_undeleted' => 'The :attribute must be unique.', + 'unique_undeleted' => 'Die: Attribuut moet uniek wees.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/am/account/general.php b/resources/lang/am-ET/account/general.php similarity index 100% rename from resources/lang/am/account/general.php rename to resources/lang/am-ET/account/general.php diff --git a/resources/lang/am/admin/accessories/general.php b/resources/lang/am-ET/admin/accessories/general.php similarity index 100% rename from resources/lang/am/admin/accessories/general.php rename to resources/lang/am-ET/admin/accessories/general.php diff --git a/resources/lang/am/admin/accessories/message.php b/resources/lang/am-ET/admin/accessories/message.php similarity index 100% rename from resources/lang/am/admin/accessories/message.php rename to resources/lang/am-ET/admin/accessories/message.php diff --git a/resources/lang/am/admin/accessories/table.php b/resources/lang/am-ET/admin/accessories/table.php similarity index 100% rename from resources/lang/am/admin/accessories/table.php rename to resources/lang/am-ET/admin/accessories/table.php diff --git a/resources/lang/am/admin/asset_maintenances/form.php b/resources/lang/am-ET/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/am/admin/asset_maintenances/form.php rename to resources/lang/am-ET/admin/asset_maintenances/form.php diff --git a/resources/lang/am/admin/asset_maintenances/general.php b/resources/lang/am-ET/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/am/admin/asset_maintenances/general.php rename to resources/lang/am-ET/admin/asset_maintenances/general.php diff --git a/resources/lang/am/admin/asset_maintenances/message.php b/resources/lang/am-ET/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/am/admin/asset_maintenances/message.php rename to resources/lang/am-ET/admin/asset_maintenances/message.php diff --git a/resources/lang/am/admin/asset_maintenances/table.php b/resources/lang/am-ET/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/am/admin/asset_maintenances/table.php rename to resources/lang/am-ET/admin/asset_maintenances/table.php diff --git a/resources/lang/am/admin/categories/general.php b/resources/lang/am-ET/admin/categories/general.php similarity index 100% rename from resources/lang/am/admin/categories/general.php rename to resources/lang/am-ET/admin/categories/general.php diff --git a/resources/lang/am/admin/categories/message.php b/resources/lang/am-ET/admin/categories/message.php similarity index 100% rename from resources/lang/am/admin/categories/message.php rename to resources/lang/am-ET/admin/categories/message.php diff --git a/resources/lang/am/admin/categories/table.php b/resources/lang/am-ET/admin/categories/table.php similarity index 100% rename from resources/lang/am/admin/categories/table.php rename to resources/lang/am-ET/admin/categories/table.php diff --git a/resources/lang/am/admin/companies/general.php b/resources/lang/am-ET/admin/companies/general.php similarity index 100% rename from resources/lang/am/admin/companies/general.php rename to resources/lang/am-ET/admin/companies/general.php diff --git a/resources/lang/am/admin/companies/message.php b/resources/lang/am-ET/admin/companies/message.php similarity index 100% rename from resources/lang/am/admin/companies/message.php rename to resources/lang/am-ET/admin/companies/message.php diff --git a/resources/lang/am/admin/companies/table.php b/resources/lang/am-ET/admin/companies/table.php similarity index 100% rename from resources/lang/am/admin/companies/table.php rename to resources/lang/am-ET/admin/companies/table.php diff --git a/resources/lang/am/admin/components/general.php b/resources/lang/am-ET/admin/components/general.php similarity index 100% rename from resources/lang/am/admin/components/general.php rename to resources/lang/am-ET/admin/components/general.php diff --git a/resources/lang/am/admin/components/message.php b/resources/lang/am-ET/admin/components/message.php similarity index 100% rename from resources/lang/am/admin/components/message.php rename to resources/lang/am-ET/admin/components/message.php diff --git a/resources/lang/am/admin/components/table.php b/resources/lang/am-ET/admin/components/table.php similarity index 100% rename from resources/lang/am/admin/components/table.php rename to resources/lang/am-ET/admin/components/table.php diff --git a/resources/lang/am/admin/consumables/general.php b/resources/lang/am-ET/admin/consumables/general.php similarity index 100% rename from resources/lang/am/admin/consumables/general.php rename to resources/lang/am-ET/admin/consumables/general.php diff --git a/resources/lang/am/admin/consumables/message.php b/resources/lang/am-ET/admin/consumables/message.php similarity index 100% rename from resources/lang/am/admin/consumables/message.php rename to resources/lang/am-ET/admin/consumables/message.php diff --git a/resources/lang/am/admin/consumables/table.php b/resources/lang/am-ET/admin/consumables/table.php similarity index 100% rename from resources/lang/am/admin/consumables/table.php rename to resources/lang/am-ET/admin/consumables/table.php diff --git a/resources/lang/am/admin/custom_fields/general.php b/resources/lang/am-ET/admin/custom_fields/general.php similarity index 100% rename from resources/lang/am/admin/custom_fields/general.php rename to resources/lang/am-ET/admin/custom_fields/general.php diff --git a/resources/lang/am/admin/custom_fields/message.php b/resources/lang/am-ET/admin/custom_fields/message.php similarity index 100% rename from resources/lang/am/admin/custom_fields/message.php rename to resources/lang/am-ET/admin/custom_fields/message.php diff --git a/resources/lang/am/admin/departments/message.php b/resources/lang/am-ET/admin/departments/message.php similarity index 100% rename from resources/lang/am/admin/departments/message.php rename to resources/lang/am-ET/admin/departments/message.php diff --git a/resources/lang/am/admin/departments/table.php b/resources/lang/am-ET/admin/departments/table.php similarity index 100% rename from resources/lang/am/admin/departments/table.php rename to resources/lang/am-ET/admin/departments/table.php diff --git a/resources/lang/am/admin/depreciations/general.php b/resources/lang/am-ET/admin/depreciations/general.php similarity index 100% rename from resources/lang/am/admin/depreciations/general.php rename to resources/lang/am-ET/admin/depreciations/general.php diff --git a/resources/lang/am/admin/depreciations/message.php b/resources/lang/am-ET/admin/depreciations/message.php similarity index 100% rename from resources/lang/am/admin/depreciations/message.php rename to resources/lang/am-ET/admin/depreciations/message.php diff --git a/resources/lang/am/admin/depreciations/table.php b/resources/lang/am-ET/admin/depreciations/table.php similarity index 100% rename from resources/lang/am/admin/depreciations/table.php rename to resources/lang/am-ET/admin/depreciations/table.php diff --git a/resources/lang/am/admin/groups/message.php b/resources/lang/am-ET/admin/groups/message.php similarity index 100% rename from resources/lang/am/admin/groups/message.php rename to resources/lang/am-ET/admin/groups/message.php diff --git a/resources/lang/am/admin/groups/table.php b/resources/lang/am-ET/admin/groups/table.php similarity index 100% rename from resources/lang/am/admin/groups/table.php rename to resources/lang/am-ET/admin/groups/table.php diff --git a/resources/lang/am/admin/groups/titles.php b/resources/lang/am-ET/admin/groups/titles.php similarity index 100% rename from resources/lang/am/admin/groups/titles.php rename to resources/lang/am-ET/admin/groups/titles.php diff --git a/resources/lang/so/admin/hardware/form.php b/resources/lang/am-ET/admin/hardware/form.php similarity index 97% rename from resources/lang/so/admin/hardware/form.php rename to resources/lang/am-ET/admin/hardware/form.php index ee3fa20fb0..07fce142f6 100644 --- a/resources/lang/so/admin/hardware/form.php +++ b/resources/lang/am-ET/admin/hardware/form.php @@ -31,7 +31,7 @@ return [ 'help_checkout' => 'If you wish to assign this asset immediately, select "Ready to Deploy" from the status list above. ', 'mac_address' => 'MAC Address', 'manufacturer' => 'Manufacturer', - 'model' => 'Model', + 'model' => 'ሞዴል', 'months' => 'months', 'name' => 'Asset Name', 'notes' => 'Notes', @@ -41,7 +41,7 @@ return [ 'select_statustype' => 'Select Status Type', 'serial' => 'Serial', 'status' => 'Status', - 'tag' => 'Asset Tag', + 'tag' => 'የንብረት መለያ', 'update' => 'Asset Update', 'warranty' => 'Warranty', 'warranty_expires' => 'Warranty Expires', diff --git a/resources/lang/so/admin/hardware/general.php b/resources/lang/am-ET/admin/hardware/general.php similarity index 97% rename from resources/lang/so/admin/hardware/general.php rename to resources/lang/am-ET/admin/hardware/general.php index dd7d74e433..ec7e44af7c 100644 --- a/resources/lang/so/admin/hardware/general.php +++ b/resources/lang/am-ET/admin/hardware/general.php @@ -3,8 +3,8 @@ return [ 'about_assets_title' => 'About Assets', 'about_assets_text' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - 'archived' => 'Archived', - 'asset' => 'Asset', + 'archived' => 'የተመኸደረ', + 'asset' => 'ንብረት', 'bulk_checkout' => 'Checkout Assets', 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', diff --git a/resources/lang/am/admin/hardware/message.php b/resources/lang/am-ET/admin/hardware/message.php similarity index 100% rename from resources/lang/am/admin/hardware/message.php rename to resources/lang/am-ET/admin/hardware/message.php diff --git a/resources/lang/tl/admin/hardware/table.php b/resources/lang/am-ET/admin/hardware/table.php similarity index 87% rename from resources/lang/tl/admin/hardware/table.php rename to resources/lang/am-ET/admin/hardware/table.php index 06b60bfd83..85b247a004 100644 --- a/resources/lang/tl/admin/hardware/table.php +++ b/resources/lang/am-ET/admin/hardware/table.php @@ -2,8 +2,8 @@ return [ - 'asset_tag' => 'Asset Tag', - 'asset_model' => 'Model', + 'asset_tag' => 'የንብረት መለያ', + 'asset_model' => 'ሞዴል', 'book_value' => 'Current Value', 'change' => 'In/Out', 'checkout_date' => 'Checkout Date', @@ -20,7 +20,7 @@ return [ 'purchase_date' => 'Purchased', 'serial' => 'Serial', 'status' => 'Status', - 'title' => 'Asset ', + 'title' => 'ንብረት ', 'image' => 'Device Image', 'days_without_acceptance' => 'Days Without Acceptance', 'monthly_depreciation' => 'Monthly Depreciation', diff --git a/resources/lang/af/admin/kits/general.php b/resources/lang/am-ET/admin/kits/general.php similarity index 100% rename from resources/lang/af/admin/kits/general.php rename to resources/lang/am-ET/admin/kits/general.php diff --git a/resources/lang/am/admin/labels/message.php b/resources/lang/am-ET/admin/labels/message.php similarity index 100% rename from resources/lang/am/admin/labels/message.php rename to resources/lang/am-ET/admin/labels/message.php diff --git a/resources/lang/af/admin/labels/table.php b/resources/lang/am-ET/admin/labels/table.php similarity index 100% rename from resources/lang/af/admin/labels/table.php rename to resources/lang/am-ET/admin/labels/table.php diff --git a/resources/lang/tl/admin/licenses/form.php b/resources/lang/am-ET/admin/licenses/form.php similarity index 95% rename from resources/lang/tl/admin/licenses/form.php rename to resources/lang/am-ET/admin/licenses/form.php index ce29167874..4f1bc99476 100644 --- a/resources/lang/tl/admin/licenses/form.php +++ b/resources/lang/am-ET/admin/licenses/form.php @@ -2,7 +2,7 @@ return array( - 'asset' => 'Asset', + 'asset' => 'ንብረት', 'checkin' => 'Checkin', 'create' => 'Create License', 'expiration' => 'Expiration Date', diff --git a/resources/lang/am/admin/licenses/general.php b/resources/lang/am-ET/admin/licenses/general.php similarity index 100% rename from resources/lang/am/admin/licenses/general.php rename to resources/lang/am-ET/admin/licenses/general.php diff --git a/resources/lang/am/admin/licenses/message.php b/resources/lang/am-ET/admin/licenses/message.php similarity index 100% rename from resources/lang/am/admin/licenses/message.php rename to resources/lang/am-ET/admin/licenses/message.php diff --git a/resources/lang/am/admin/licenses/table.php b/resources/lang/am-ET/admin/licenses/table.php similarity index 100% rename from resources/lang/am/admin/licenses/table.php rename to resources/lang/am-ET/admin/licenses/table.php diff --git a/resources/lang/am/admin/locations/message.php b/resources/lang/am-ET/admin/locations/message.php similarity index 100% rename from resources/lang/am/admin/locations/message.php rename to resources/lang/am-ET/admin/locations/message.php diff --git a/resources/lang/tl/admin/locations/table.php b/resources/lang/am-ET/admin/locations/table.php similarity index 88% rename from resources/lang/tl/admin/locations/table.php rename to resources/lang/am-ET/admin/locations/table.php index 0cfaa4fdc3..65ce4cef52 100644 --- a/resources/lang/tl/admin/locations/table.php +++ b/resources/lang/am-ET/admin/locations/table.php @@ -3,7 +3,7 @@ return [ 'about_locations_title' => 'About Locations', 'about_locations' => 'Locations are used to track location information for users, assets, and other items', - 'assets_rtd' => 'Assets', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. + 'assets_rtd' => 'ንብረቶች', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. 'assets_checkedout' => 'Assets Assigned', 'id' => 'ID', 'city' => 'City', @@ -14,7 +14,7 @@ return [ 'print_assigned' => 'Print Assigned', 'print_all_assigned' => 'Print All Assigned', 'name' => 'Location Name', - 'address' => 'Address', + 'address' => 'አድራሻ', 'address2' => 'Address Line 2', 'zip' => 'Postal Code', 'locations' => 'Locations', @@ -28,7 +28,7 @@ return [ 'asset_name' => 'Name', 'asset_category' => 'Category', 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', + 'asset_model' => 'ሞዴል', 'asset_serial' => 'Serial', 'asset_location' => 'Location', 'asset_checked_out' => 'Checked Out', diff --git a/resources/lang/am/admin/manufacturers/message.php b/resources/lang/am-ET/admin/manufacturers/message.php similarity index 100% rename from resources/lang/am/admin/manufacturers/message.php rename to resources/lang/am-ET/admin/manufacturers/message.php diff --git a/resources/lang/am/admin/manufacturers/table.php b/resources/lang/am-ET/admin/manufacturers/table.php similarity index 100% rename from resources/lang/am/admin/manufacturers/table.php rename to resources/lang/am-ET/admin/manufacturers/table.php diff --git a/resources/lang/am/admin/models/general.php b/resources/lang/am-ET/admin/models/general.php similarity index 100% rename from resources/lang/am/admin/models/general.php rename to resources/lang/am-ET/admin/models/general.php diff --git a/resources/lang/am/admin/models/message.php b/resources/lang/am-ET/admin/models/message.php similarity index 100% rename from resources/lang/am/admin/models/message.php rename to resources/lang/am-ET/admin/models/message.php diff --git a/resources/lang/tl/admin/models/table.php b/resources/lang/am-ET/admin/models/table.php similarity index 80% rename from resources/lang/tl/admin/models/table.php rename to resources/lang/am-ET/admin/models/table.php index 11a512b3d3..2e5c0929dd 100644 --- a/resources/lang/tl/admin/models/table.php +++ b/resources/lang/am-ET/admin/models/table.php @@ -7,8 +7,8 @@ return array( 'eol' => 'EOL', 'modelnumber' => 'Model No.', 'name' => 'Asset Model Name', - 'numassets' => 'Assets', - 'title' => 'Asset Models', + 'numassets' => 'ንብረቶች', + 'title' => 'የንብረት ዓይነቶች', 'update' => 'Update Asset Model', 'view' => 'View Asset Model', 'update' => 'Update Asset Model', diff --git a/resources/lang/am/admin/reports/general.php b/resources/lang/am-ET/admin/reports/general.php similarity index 100% rename from resources/lang/am/admin/reports/general.php rename to resources/lang/am-ET/admin/reports/general.php diff --git a/resources/lang/am/admin/reports/message.php b/resources/lang/am-ET/admin/reports/message.php similarity index 100% rename from resources/lang/am/admin/reports/message.php rename to resources/lang/am-ET/admin/reports/message.php diff --git a/resources/lang/en/admin/settings/general.php b/resources/lang/am-ET/admin/settings/general.php similarity index 100% rename from resources/lang/en/admin/settings/general.php rename to resources/lang/am-ET/admin/settings/general.php diff --git a/resources/lang/am/admin/settings/message.php b/resources/lang/am-ET/admin/settings/message.php similarity index 100% rename from resources/lang/am/admin/settings/message.php rename to resources/lang/am-ET/admin/settings/message.php diff --git a/resources/lang/af/admin/settings/table.php b/resources/lang/am-ET/admin/settings/table.php similarity index 100% rename from resources/lang/af/admin/settings/table.php rename to resources/lang/am-ET/admin/settings/table.php diff --git a/resources/lang/en/admin/statuslabels/message.php b/resources/lang/am-ET/admin/statuslabels/message.php similarity index 100% rename from resources/lang/en/admin/statuslabels/message.php rename to resources/lang/am-ET/admin/statuslabels/message.php diff --git a/resources/lang/so/admin/statuslabels/table.php b/resources/lang/am-ET/admin/statuslabels/table.php similarity index 95% rename from resources/lang/so/admin/statuslabels/table.php rename to resources/lang/am-ET/admin/statuslabels/table.php index 27befb5ef7..aa3f5f9a2c 100644 --- a/resources/lang/so/admin/statuslabels/table.php +++ b/resources/lang/am-ET/admin/statuslabels/table.php @@ -2,7 +2,7 @@ return array( 'about' => 'About Status Labels', - 'archived' => 'Archived', + 'archived' => 'የተመኸደረ', 'create' => 'Create Status Label', 'color' => 'Chart Color', 'default_label' => 'Default Label', diff --git a/resources/lang/am/admin/suppliers/message.php b/resources/lang/am-ET/admin/suppliers/message.php similarity index 100% rename from resources/lang/am/admin/suppliers/message.php rename to resources/lang/am-ET/admin/suppliers/message.php diff --git a/resources/lang/tl/admin/suppliers/table.php b/resources/lang/am-ET/admin/suppliers/table.php similarity index 95% rename from resources/lang/tl/admin/suppliers/table.php rename to resources/lang/am-ET/admin/suppliers/table.php index 2a7b07ca93..76e4c2d74e 100644 --- a/resources/lang/tl/admin/suppliers/table.php +++ b/resources/lang/am-ET/admin/suppliers/table.php @@ -4,7 +4,7 @@ return array( 'about_suppliers_title' => 'About Suppliers', 'about_suppliers_text' => 'Suppliers are used to track the source of items', 'address' => 'Supplier Address', - 'assets' => 'Assets', + 'assets' => 'ንብረቶች', 'city' => 'City', 'contact' => 'Contact Name', 'country' => 'Country', diff --git a/resources/lang/am/admin/users/general.php b/resources/lang/am-ET/admin/users/general.php similarity index 100% rename from resources/lang/am/admin/users/general.php rename to resources/lang/am-ET/admin/users/general.php diff --git a/resources/lang/am/admin/users/message.php b/resources/lang/am-ET/admin/users/message.php similarity index 100% rename from resources/lang/am/admin/users/message.php rename to resources/lang/am-ET/admin/users/message.php diff --git a/resources/lang/ca/admin/users/table.php b/resources/lang/am-ET/admin/users/table.php similarity index 92% rename from resources/lang/ca/admin/users/table.php rename to resources/lang/am-ET/admin/users/table.php index 21e2154280..7a0d6339ff 100644 --- a/resources/lang/ca/admin/users/table.php +++ b/resources/lang/am-ET/admin/users/table.php @@ -3,7 +3,7 @@ return array( 'activated' => 'Active', 'allow' => 'Allow', - 'checkedout' => 'Assets', + 'checkedout' => 'ንብረቶች', 'created_at' => 'Created', 'createuser' => 'Create User', 'deny' => 'Deny', @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirm Password', 'password' => 'Password', diff --git a/resources/lang/am/auth.php b/resources/lang/am-ET/auth.php similarity index 100% rename from resources/lang/am/auth.php rename to resources/lang/am-ET/auth.php diff --git a/resources/lang/am/auth/general.php b/resources/lang/am-ET/auth/general.php similarity index 100% rename from resources/lang/am/auth/general.php rename to resources/lang/am-ET/auth/general.php diff --git a/resources/lang/am/auth/message.php b/resources/lang/am-ET/auth/message.php similarity index 100% rename from resources/lang/am/auth/message.php rename to resources/lang/am-ET/auth/message.php diff --git a/resources/lang/so/button.php b/resources/lang/am-ET/button.php similarity index 88% rename from resources/lang/so/button.php rename to resources/lang/am-ET/button.php index 22821b8157..fe6dfe97a1 100644 --- a/resources/lang/so/button.php +++ b/resources/lang/am-ET/button.php @@ -3,7 +3,7 @@ return [ 'actions' => 'Actions', 'add' => 'Add New', - 'cancel' => 'Cancel', + 'cancel' => 'ተወው', 'checkin_and_delete' => 'Checkin All / Delete User', 'delete' => 'Delete', 'edit' => 'Edit', @@ -17,7 +17,7 @@ return [ 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', 'send_password_link' => 'Send Password Reset Link', 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', + 'bulk_actions' => 'የጅምላ ተግባር', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', 'new' => 'New', diff --git a/resources/lang/am/general.php b/resources/lang/am-ET/general.php similarity index 97% rename from resources/lang/am/general.php rename to resources/lang/am-ET/general.php index c69b4165d9..5f50531d03 100644 --- a/resources/lang/am/general.php +++ b/resources/lang/am-ET/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/af/help.php b/resources/lang/am-ET/help.php similarity index 100% rename from resources/lang/af/help.php rename to resources/lang/am-ET/help.php diff --git a/resources/lang/am/localizations.php b/resources/lang/am-ET/localizations.php similarity index 99% rename from resources/lang/am/localizations.php rename to resources/lang/am-ET/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/am/localizations.php +++ b/resources/lang/am-ET/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/iu/mail.php b/resources/lang/am-ET/mail.php similarity index 98% rename from resources/lang/iu/mail.php rename to resources/lang/am-ET/mail.php index 7dd8d6181c..5940fe5bb2 100644 --- a/resources/lang/iu/mail.php +++ b/resources/lang/am-ET/mail.php @@ -8,10 +8,10 @@ return [ 'accessory_name' => 'Accessory Name:', 'additional_notes' => 'Additional Notes:', 'admin_has_created' => 'An administrator has created an account for you on the :web website.', - 'asset' => 'Asset:', + 'asset' => 'ንብረት:', 'asset_name' => 'Asset Name:', 'asset_requested' => 'Asset requested', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'የንብረት መለያ', 'assigned_to' => 'Assigned To', 'best_regards' => 'Best regards,', 'canceled' => 'Canceled:', diff --git a/resources/lang/am/pagination.php b/resources/lang/am-ET/pagination.php similarity index 100% rename from resources/lang/am/pagination.php rename to resources/lang/am-ET/pagination.php diff --git a/resources/lang/am/passwords.php b/resources/lang/am-ET/passwords.php similarity index 100% rename from resources/lang/am/passwords.php rename to resources/lang/am-ET/passwords.php diff --git a/resources/lang/am/reminders.php b/resources/lang/am-ET/reminders.php similarity index 100% rename from resources/lang/am/reminders.php rename to resources/lang/am-ET/reminders.php diff --git a/resources/lang/so/table.php b/resources/lang/am-ET/table.php similarity index 75% rename from resources/lang/so/table.php rename to resources/lang/am-ET/table.php index f7a49d86c1..e1e766ca10 100644 --- a/resources/lang/so/table.php +++ b/resources/lang/am-ET/table.php @@ -3,7 +3,7 @@ return array( 'actions' => 'Actions', - 'action' => 'Action', + 'action' => 'ተግባር', 'by' => 'By', 'item' => 'Item', diff --git a/resources/lang/ca/validation.php b/resources/lang/am-ET/validation.php similarity index 99% rename from resources/lang/ca/validation.php rename to resources/lang/am-ET/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/ca/validation.php +++ b/resources/lang/am-ET/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/ar-SA/account/general.php b/resources/lang/ar-SA/account/general.php new file mode 100644 index 0000000000..97ff4dba2d --- /dev/null +++ b/resources/lang/ar-SA/account/general.php @@ -0,0 +1,12 @@ + 'مفاتيح API الشخصية', + 'api_key_warning' => 'عند إنشاء رمز API، تأكد من نسخه على الفور لأنه + لن يكون مرئيا لك مرة أخرى.', + 'api_base_url' => 'عنوان URL الأساسي API الخاص بك موجود في:', + 'api_base_url_endpoint' => '/<endpoint>', + 'api_token_expiration_time' => 'تم تعيين رموز API لانتهاء صلاحيتها في:', + 'api_reference' => 'Please check the API reference to + find specific API endpoints and additional API documentation.', +); diff --git a/resources/lang/ar/admin/accessories/general.php b/resources/lang/ar-SA/admin/accessories/general.php similarity index 100% rename from resources/lang/ar/admin/accessories/general.php rename to resources/lang/ar-SA/admin/accessories/general.php diff --git a/resources/lang/ar/admin/accessories/message.php b/resources/lang/ar-SA/admin/accessories/message.php similarity index 100% rename from resources/lang/ar/admin/accessories/message.php rename to resources/lang/ar-SA/admin/accessories/message.php diff --git a/resources/lang/ar/admin/accessories/table.php b/resources/lang/ar-SA/admin/accessories/table.php similarity index 100% rename from resources/lang/ar/admin/accessories/table.php rename to resources/lang/ar-SA/admin/accessories/table.php diff --git a/resources/lang/ar-SA/admin/asset_maintenances/form.php b/resources/lang/ar-SA/admin/asset_maintenances/form.php new file mode 100644 index 0000000000..0254a58c99 --- /dev/null +++ b/resources/lang/ar-SA/admin/asset_maintenances/form.php @@ -0,0 +1,14 @@ + 'نوعر صيانة الأصل', + 'title' => 'المسمى', + 'start_date' => 'تاريخ البداية', + 'completion_date' => 'تاريخ الانتهاء', + 'cost' => 'التكلفة', + 'is_warranty' => 'تحسين الضمان', + 'asset_maintenance_time' => 'وقت صيانة الاصل (بالايام)', + 'notes' => 'مُلاحظات', + 'update' => 'تعديل صيانة الأصل', + 'create' => 'Create Asset Maintenance' + ]; diff --git a/resources/lang/ar/admin/asset_maintenances/general.php b/resources/lang/ar-SA/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/ar/admin/asset_maintenances/general.php rename to resources/lang/ar-SA/admin/asset_maintenances/general.php diff --git a/resources/lang/ar/admin/asset_maintenances/message.php b/resources/lang/ar-SA/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/ar/admin/asset_maintenances/message.php rename to resources/lang/ar-SA/admin/asset_maintenances/message.php diff --git a/resources/lang/ar/admin/asset_maintenances/table.php b/resources/lang/ar-SA/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/ar/admin/asset_maintenances/table.php rename to resources/lang/ar-SA/admin/asset_maintenances/table.php diff --git a/resources/lang/ar/admin/categories/general.php b/resources/lang/ar-SA/admin/categories/general.php similarity index 100% rename from resources/lang/ar/admin/categories/general.php rename to resources/lang/ar-SA/admin/categories/general.php diff --git a/resources/lang/ar/admin/categories/message.php b/resources/lang/ar-SA/admin/categories/message.php similarity index 100% rename from resources/lang/ar/admin/categories/message.php rename to resources/lang/ar-SA/admin/categories/message.php diff --git a/resources/lang/ar/admin/categories/table.php b/resources/lang/ar-SA/admin/categories/table.php similarity index 100% rename from resources/lang/ar/admin/categories/table.php rename to resources/lang/ar-SA/admin/categories/table.php diff --git a/resources/lang/ar/admin/companies/general.php b/resources/lang/ar-SA/admin/companies/general.php similarity index 86% rename from resources/lang/ar/admin/companies/general.php rename to resources/lang/ar-SA/admin/companies/general.php index cd63bccb66..8dfe7e83ad 100644 --- a/resources/lang/ar/admin/companies/general.php +++ b/resources/lang/ar-SA/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'اختر الشركة', - 'about_companies' => 'About Companies', + 'about_companies' => 'حول الشركات', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/ar/admin/companies/message.php b/resources/lang/ar-SA/admin/companies/message.php similarity index 100% rename from resources/lang/ar/admin/companies/message.php rename to resources/lang/ar-SA/admin/companies/message.php diff --git a/resources/lang/ar/admin/companies/table.php b/resources/lang/ar-SA/admin/companies/table.php similarity index 100% rename from resources/lang/ar/admin/companies/table.php rename to resources/lang/ar-SA/admin/companies/table.php diff --git a/resources/lang/ar/admin/components/general.php b/resources/lang/ar-SA/admin/components/general.php similarity index 100% rename from resources/lang/ar/admin/components/general.php rename to resources/lang/ar-SA/admin/components/general.php diff --git a/resources/lang/ar/admin/components/message.php b/resources/lang/ar-SA/admin/components/message.php similarity index 100% rename from resources/lang/ar/admin/components/message.php rename to resources/lang/ar-SA/admin/components/message.php diff --git a/resources/lang/ar/admin/components/table.php b/resources/lang/ar-SA/admin/components/table.php similarity index 100% rename from resources/lang/ar/admin/components/table.php rename to resources/lang/ar-SA/admin/components/table.php diff --git a/resources/lang/ar/admin/consumables/general.php b/resources/lang/ar-SA/admin/consumables/general.php similarity index 100% rename from resources/lang/ar/admin/consumables/general.php rename to resources/lang/ar-SA/admin/consumables/general.php diff --git a/resources/lang/ar/admin/consumables/message.php b/resources/lang/ar-SA/admin/consumables/message.php similarity index 100% rename from resources/lang/ar/admin/consumables/message.php rename to resources/lang/ar-SA/admin/consumables/message.php diff --git a/resources/lang/ar/admin/consumables/table.php b/resources/lang/ar-SA/admin/consumables/table.php similarity index 100% rename from resources/lang/ar/admin/consumables/table.php rename to resources/lang/ar-SA/admin/consumables/table.php diff --git a/resources/lang/ar/admin/custom_fields/general.php b/resources/lang/ar-SA/admin/custom_fields/general.php similarity index 94% rename from resources/lang/ar/admin/custom_fields/general.php rename to resources/lang/ar-SA/admin/custom_fields/general.php index 76957e0692..4262f3992d 100644 --- a/resources/lang/ar/admin/custom_fields/general.php +++ b/resources/lang/ar-SA/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'حقل جديد مخصص', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'هذا الحقل مشفر في قاعدة البيانات. يمكن قرائته من قبل مدراء النظام فقط', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'هل تريد تضمين قيمة هذا الحقل في رسائل البريد الإلكتروني المرسلة إلى المستخدم؟ لا يمكن تضمين الحقول المشفرة في رسائل البريد الإلكتروني', '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.', diff --git a/resources/lang/ar/admin/custom_fields/message.php b/resources/lang/ar-SA/admin/custom_fields/message.php similarity index 100% rename from resources/lang/ar/admin/custom_fields/message.php rename to resources/lang/ar-SA/admin/custom_fields/message.php diff --git a/resources/lang/ar/admin/departments/message.php b/resources/lang/ar-SA/admin/departments/message.php similarity index 100% rename from resources/lang/ar/admin/departments/message.php rename to resources/lang/ar-SA/admin/departments/message.php diff --git a/resources/lang/ar/admin/departments/table.php b/resources/lang/ar-SA/admin/departments/table.php similarity index 100% rename from resources/lang/ar/admin/departments/table.php rename to resources/lang/ar-SA/admin/departments/table.php diff --git a/resources/lang/ar/admin/depreciations/general.php b/resources/lang/ar-SA/admin/depreciations/general.php similarity index 100% rename from resources/lang/ar/admin/depreciations/general.php rename to resources/lang/ar-SA/admin/depreciations/general.php diff --git a/resources/lang/ar/admin/depreciations/message.php b/resources/lang/ar-SA/admin/depreciations/message.php similarity index 100% rename from resources/lang/ar/admin/depreciations/message.php rename to resources/lang/ar-SA/admin/depreciations/message.php diff --git a/resources/lang/ar/admin/depreciations/table.php b/resources/lang/ar-SA/admin/depreciations/table.php similarity index 100% rename from resources/lang/ar/admin/depreciations/table.php rename to resources/lang/ar-SA/admin/depreciations/table.php diff --git a/resources/lang/ar/admin/groups/message.php b/resources/lang/ar-SA/admin/groups/message.php similarity index 100% rename from resources/lang/ar/admin/groups/message.php rename to resources/lang/ar-SA/admin/groups/message.php diff --git a/resources/lang/ar/admin/groups/table.php b/resources/lang/ar-SA/admin/groups/table.php similarity index 100% rename from resources/lang/ar/admin/groups/table.php rename to resources/lang/ar-SA/admin/groups/table.php diff --git a/resources/lang/ar/admin/groups/titles.php b/resources/lang/ar-SA/admin/groups/titles.php similarity index 100% rename from resources/lang/ar/admin/groups/titles.php rename to resources/lang/ar-SA/admin/groups/titles.php diff --git a/resources/lang/ar/admin/hardware/form.php b/resources/lang/ar-SA/admin/hardware/form.php similarity index 100% rename from resources/lang/ar/admin/hardware/form.php rename to resources/lang/ar-SA/admin/hardware/form.php diff --git a/resources/lang/ar/admin/hardware/general.php b/resources/lang/ar-SA/admin/hardware/general.php similarity index 100% rename from resources/lang/ar/admin/hardware/general.php rename to resources/lang/ar-SA/admin/hardware/general.php diff --git a/resources/lang/ar/admin/hardware/message.php b/resources/lang/ar-SA/admin/hardware/message.php similarity index 100% rename from resources/lang/ar/admin/hardware/message.php rename to resources/lang/ar-SA/admin/hardware/message.php diff --git a/resources/lang/ar/admin/hardware/table.php b/resources/lang/ar-SA/admin/hardware/table.php similarity index 100% rename from resources/lang/ar/admin/hardware/table.php rename to resources/lang/ar-SA/admin/hardware/table.php diff --git a/resources/lang/ar/admin/kits/general.php b/resources/lang/ar-SA/admin/kits/general.php similarity index 89% rename from resources/lang/ar/admin/kits/general.php rename to resources/lang/ar-SA/admin/kits/general.php index a3652735a3..3a964ad17b 100644 --- a/resources/lang/ar/admin/kits/general.php +++ b/resources/lang/ar-SA/admin/kits/general.php @@ -26,13 +26,13 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'الترخيص غير موجود', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'المادة الإستهلاكية غير موجودة', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', @@ -43,10 +43,10 @@ return [ 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', + 'kit_created' => 'تم إنشاء مجموعة الأدوات بنجاح', + 'kit_updated' => 'تم تحديث مجموعة الأدوات بنجاح', 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', + 'kit_deleted' => 'تم حذف عدة بنجاح', 'kit_model_updated' => 'Model was successfully updated', 'kit_model_detached' => 'Model was successfully detached', ]; diff --git a/resources/lang/ar/admin/labels/message.php b/resources/lang/ar-SA/admin/labels/message.php similarity index 100% rename from resources/lang/ar/admin/labels/message.php rename to resources/lang/ar-SA/admin/labels/message.php diff --git a/resources/lang/ar-SA/admin/labels/table.php b/resources/lang/ar-SA/admin/labels/table.php new file mode 100644 index 0000000000..665426b2f6 --- /dev/null +++ b/resources/lang/ar-SA/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'حقول', + 'support_asset_tag' => 'الترميز', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'شعار', + 'support_title' => 'العنوان', + +]; \ No newline at end of file diff --git a/resources/lang/ar/admin/licenses/form.php b/resources/lang/ar-SA/admin/licenses/form.php similarity index 100% rename from resources/lang/ar/admin/licenses/form.php rename to resources/lang/ar-SA/admin/licenses/form.php diff --git a/resources/lang/ar/admin/licenses/general.php b/resources/lang/ar-SA/admin/licenses/general.php similarity index 100% rename from resources/lang/ar/admin/licenses/general.php rename to resources/lang/ar-SA/admin/licenses/general.php diff --git a/resources/lang/ar/admin/licenses/message.php b/resources/lang/ar-SA/admin/licenses/message.php similarity index 100% rename from resources/lang/ar/admin/licenses/message.php rename to resources/lang/ar-SA/admin/licenses/message.php diff --git a/resources/lang/ar/admin/licenses/table.php b/resources/lang/ar-SA/admin/licenses/table.php similarity index 100% rename from resources/lang/ar/admin/licenses/table.php rename to resources/lang/ar-SA/admin/licenses/table.php diff --git a/resources/lang/ar/admin/locations/message.php b/resources/lang/ar-SA/admin/locations/message.php similarity index 100% rename from resources/lang/ar/admin/locations/message.php rename to resources/lang/ar-SA/admin/locations/message.php diff --git a/resources/lang/ar/admin/locations/table.php b/resources/lang/ar-SA/admin/locations/table.php similarity index 100% rename from resources/lang/ar/admin/locations/table.php rename to resources/lang/ar-SA/admin/locations/table.php diff --git a/resources/lang/ar/admin/manufacturers/message.php b/resources/lang/ar-SA/admin/manufacturers/message.php similarity index 100% rename from resources/lang/ar/admin/manufacturers/message.php rename to resources/lang/ar-SA/admin/manufacturers/message.php diff --git a/resources/lang/ar/admin/manufacturers/table.php b/resources/lang/ar-SA/admin/manufacturers/table.php similarity index 100% rename from resources/lang/ar/admin/manufacturers/table.php rename to resources/lang/ar-SA/admin/manufacturers/table.php diff --git a/resources/lang/ar/admin/models/general.php b/resources/lang/ar-SA/admin/models/general.php similarity index 100% rename from resources/lang/ar/admin/models/general.php rename to resources/lang/ar-SA/admin/models/general.php diff --git a/resources/lang/ar/admin/models/message.php b/resources/lang/ar-SA/admin/models/message.php similarity index 100% rename from resources/lang/ar/admin/models/message.php rename to resources/lang/ar-SA/admin/models/message.php diff --git a/resources/lang/ar/admin/models/table.php b/resources/lang/ar-SA/admin/models/table.php similarity index 100% rename from resources/lang/ar/admin/models/table.php rename to resources/lang/ar-SA/admin/models/table.php diff --git a/resources/lang/ar/admin/reports/general.php b/resources/lang/ar-SA/admin/reports/general.php similarity index 100% rename from resources/lang/ar/admin/reports/general.php rename to resources/lang/ar-SA/admin/reports/general.php diff --git a/resources/lang/ar/admin/reports/message.php b/resources/lang/ar-SA/admin/reports/message.php similarity index 100% rename from resources/lang/ar/admin/reports/message.php rename to resources/lang/ar-SA/admin/reports/message.php diff --git a/resources/lang/ar/admin/settings/general.php b/resources/lang/ar-SA/admin/settings/general.php similarity index 98% rename from resources/lang/ar/admin/settings/general.php rename to resources/lang/ar-SA/admin/settings/general.php index 8ea8c97284..a9d862961a 100644 --- a/resources/lang/ar/admin/settings/general.php +++ b/resources/lang/ar-SA/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'المستخدم غير مطلوب لكتابة "username@domain.local" ، فإنها يمكن أن تكتب فقط "اسم المستخدم".', 'admin_cc_email' => 'نسخة اضافية للبريد الإكتروني', 'admin_cc_email_help' => 'إذا كنت ترغب في إرسال نسخة من رسائل البريد الإلكتروني لتسجيل الدخول / الخروج التي يتم إرسالها إلى المستخدمين إلى حساب بريد إلكتروني إضافي، فقم بإدخالها هنا. خلاف ذلك، اترك هذه الخانة فارغة.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'هذا هو ملقم أكتيف ديركتوري', 'alerts' => 'Alerts', 'alert_title' => 'تحديث إعدادات الإشعارات', @@ -181,7 +182,7 @@ return [ 'saml_idp_metadata_help' => 'يمكنك تحديد بيانات التعريف الشخصية الشخصية باستخدام عنوان URL أو ملف XML.', 'saml_attr_mapping_username' => 'تعيين السمة - اسم المستخدم', 'saml_attr_mapping_username_help' => 'سيتم استخدام اسم المعرف إذا كانت خرائط السمة غير محددة أو غير صالحة.', - 'saml_forcelogin_label' => 'SAML Force Login', + 'saml_forcelogin_label' => 'تسجيل دخول قوة SAML', 'saml_forcelogin' => 'جعل SAML تسجيل الدخول الأساسي', 'saml_forcelogin_help' => 'يمكنك استخدام \'/login?nosaml\' للوصول إلى صفحة تسجيل الدخول العادية.', 'saml_slo_label' => 'تسجيل الخروج الفردي لSAML', @@ -316,32 +317,32 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'تطهير السجلات المحذوفة', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'رقم الموظف', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', 'setup_migrations' => 'Database Migrations ::', 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', + 'setup_successful_migrations' => 'تم إنشاء جداول قاعدة البيانات الخاصة بك', + 'setup_migration_output' => 'ناتج الهجرة:', + 'setup_migration_create_user' => 'التالي: إنشاء مستخدم', 'ldap_settings_link' => 'LDAP Settings Page', 'slack_test' => 'Test Integration', 'label2_enable' => 'New Label Engine', 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'العنوان', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D نوع الباركود', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/ar/admin/settings/message.php b/resources/lang/ar-SA/admin/settings/message.php similarity index 100% rename from resources/lang/ar/admin/settings/message.php rename to resources/lang/ar-SA/admin/settings/message.php diff --git a/resources/lang/ar-SA/admin/settings/table.php b/resources/lang/ar-SA/admin/settings/table.php new file mode 100644 index 0000000000..ab766d25c8 --- /dev/null +++ b/resources/lang/ar-SA/admin/settings/table.php @@ -0,0 +1,6 @@ + 'تم إنشاؤه', + 'size' => 'Size', +); diff --git a/resources/lang/ar/admin/statuslabels/message.php b/resources/lang/ar-SA/admin/statuslabels/message.php similarity index 97% rename from resources/lang/ar/admin/statuslabels/message.php rename to resources/lang/ar-SA/admin/statuslabels/message.php index 87e85b9755..5fe5f54095 100644 --- a/resources/lang/ar/admin/statuslabels/message.php +++ b/resources/lang/ar-SA/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'تسمية الحالة غير موجودة.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'ترتبط تسمية الحالة هذه مع واحد على الأقل من الأصول ولا يمكن حذفها. يرجى تحديث الأصول حيث لا تشير إلى هذه الحالة وحاول مرة أخرى. ', 'create' => [ diff --git a/resources/lang/ar/admin/statuslabels/table.php b/resources/lang/ar-SA/admin/statuslabels/table.php similarity index 100% rename from resources/lang/ar/admin/statuslabels/table.php rename to resources/lang/ar-SA/admin/statuslabels/table.php diff --git a/resources/lang/ar/admin/suppliers/message.php b/resources/lang/ar-SA/admin/suppliers/message.php similarity index 100% rename from resources/lang/ar/admin/suppliers/message.php rename to resources/lang/ar-SA/admin/suppliers/message.php diff --git a/resources/lang/ar/admin/suppliers/table.php b/resources/lang/ar-SA/admin/suppliers/table.php similarity index 100% rename from resources/lang/ar/admin/suppliers/table.php rename to resources/lang/ar-SA/admin/suppliers/table.php diff --git a/resources/lang/ar/admin/users/general.php b/resources/lang/ar-SA/admin/users/general.php similarity index 97% rename from resources/lang/ar/admin/users/general.php rename to resources/lang/ar-SA/admin/users/general.php index 075cdf866a..a3006ed6e4 100644 --- a/resources/lang/ar/admin/users/general.php +++ b/resources/lang/ar-SA/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'عرض المستخدم :name', 'usercsv' => 'ملف CSV', 'two_factor_admin_optin_help' => 'تسمح إعدادات المشرف الحالية بإنفاذ انتقائي للمصادقة الثنائية.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA الجهاز المسجلين', + 'two_factor_active' => '2FA نشط', 'user_deactivated' => 'لا يمكن تسجيل المستخدم', 'user_activated' => 'يمكن تسجيل المستخدم', 'activation_status_warning' => 'عدم تغيير حالة التفعيل', diff --git a/resources/lang/ar/admin/users/message.php b/resources/lang/ar-SA/admin/users/message.php similarity index 98% rename from resources/lang/ar/admin/users/message.php rename to resources/lang/ar-SA/admin/users/message.php index 4b0d366b4b..dd42fa6477 100644 --- a/resources/lang/ar/admin/users/message.php +++ b/resources/lang/ar-SA/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'لقد رفضت هذا الأصل بنجاح.', 'bulk_manager_warn' => 'تم تحديث المستخدمين بنجاح، ولكن لم يتم حفظ إدخال مديرك لأن المدير الذي حددته كان أيضا في قائمة المستخدمين التي سيتم تعديلها، وقد لا يكون المستخدمون مديرهم الخاص. يرجى تحديد المستخدمين مرة أخرى، باستثناء المدير.', 'user_exists' => 'المستخدم موجود مسبقاً!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'المستخدم غير موجود.', 'user_login_required' => 'حقل تسجيل الدخول اجباري', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'كلمة المرور اجبارية.', diff --git a/resources/lang/ar/admin/users/table.php b/resources/lang/ar-SA/admin/users/table.php similarity index 96% rename from resources/lang/ar/admin/users/table.php rename to resources/lang/ar-SA/admin/users/table.php index 22c894da94..237721a2ef 100644 --- a/resources/lang/ar/admin/users/table.php +++ b/resources/lang/ar-SA/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'المدير', 'managed_locations' => 'المواقع المدارة', 'name' => 'الاسم', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'مُلاحظات', 'password_confirm' => 'تأكيد كلمة المرور', 'password' => 'كلمة المرور', diff --git a/resources/lang/ar/auth.php b/resources/lang/ar-SA/auth.php similarity index 100% rename from resources/lang/ar/auth.php rename to resources/lang/ar-SA/auth.php diff --git a/resources/lang/ar/auth/general.php b/resources/lang/ar-SA/auth/general.php similarity index 100% rename from resources/lang/ar/auth/general.php rename to resources/lang/ar-SA/auth/general.php diff --git a/resources/lang/ar/auth/message.php b/resources/lang/ar-SA/auth/message.php similarity index 100% rename from resources/lang/ar/auth/message.php rename to resources/lang/ar-SA/auth/message.php diff --git a/resources/lang/ar/button.php b/resources/lang/ar-SA/button.php similarity index 100% rename from resources/lang/ar/button.php rename to resources/lang/ar-SA/button.php diff --git a/resources/lang/ar/general.php b/resources/lang/ar-SA/general.php similarity index 96% rename from resources/lang/ar/general.php rename to resources/lang/ar-SA/general.php index 0c690cb206..5f2ffd3f9d 100644 --- a/resources/lang/ar/general.php +++ b/resources/lang/ar-SA/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'أنواع الملفات المقبولة هي jpg، webpp، png، gif، svg. الحد الأقصى المسموح به للتحميل هو :size.', 'unaccepted_image_type' => 'ملف الصورة هذا غير قابل للقراءة. أنواع الملفات المقبولة هي jpg، webpp، png، gif، svg. نوع هذا الملف هو: :mimetype.', 'import' => 'استيراد', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'الاستيراد', 'importing_help' => 'يمكنك استيراد الأصول، الملحقات، التراخيص، المكونات، المواد الاستهلاكية، والمستخدمين عبر ملف CSV.

يجب أن تكون CSV محددة بفواصل وأن يتم تنسيقها مع رؤوس تطابق تلك الموجودة في عينة CSVs في الوثائق.', 'import-history' => 'استيراد الأرشيف', @@ -270,7 +271,7 @@ return [ 'supplier' => 'المورد', 'suppliers' => 'الموردون', 'sure_to_delete' => 'هل تريد بالتأكيد حذفها', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'هل أنت متأكد من حذف :المنتج؟', 'delete_what' => 'Delete :item', 'submit' => 'عرض', 'target' => 'استهداف', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'غير قابلة للتوزيع', 'unknown_admin' => 'إداري غير معروف', 'username_format' => 'تنسيق اسم المستخدم', - 'username' => 'Username', + 'username' => 'اسم المستخدم', 'update' => 'تحديث', 'upload_filetypes_help' => 'أنواع الملفات المسموح بها هي png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. الحد الأقصى المسموح به هو :size.', 'uploaded' => 'تم تحميلها', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'عدد المواد المستهلكة', 'components_count' => 'عدد المكونات', 'licenses_count' => 'عدد التراخيص', - 'notification_error' => 'Error', + 'notification_error' => 'خطأ', 'notification_error_hint' => 'الرجاء التحقق من الاخطاء بالنموذج أدناه', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'تحذير', + 'notification_info' => 'معلومات', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'اسم الأصل', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'إسم المادة الإستهلاكية:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'اسم الملحق:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -406,7 +407,7 @@ return [ 'pie_chart_type' => 'Dashboard Pie Chart Type', 'hello_name' => 'Hello, :name!', 'unaccepted_profile_warning' => 'You have :count items requiring acceptance. Click here to accept or decline them', - 'start_date' => 'Start Date', + 'start_date' => 'تاريخ البداية', 'end_date' => 'End Date', 'alt_uploaded_image_thumbnail' => 'Uploaded thumbnail', 'placeholder_kit' => 'Select a kit', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':إسم العنصر', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% اكتمال', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'تعديل', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ar/help.php b/resources/lang/ar-SA/help.php similarity index 100% rename from resources/lang/ar/help.php rename to resources/lang/ar-SA/help.php diff --git a/resources/lang/af/localizations.php b/resources/lang/ar-SA/localizations.php similarity index 99% rename from resources/lang/af/localizations.php rename to resources/lang/ar-SA/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/af/localizations.php +++ b/resources/lang/ar-SA/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/ar/mail.php b/resources/lang/ar-SA/mail.php similarity index 100% rename from resources/lang/ar/mail.php rename to resources/lang/ar-SA/mail.php diff --git a/resources/lang/ar/pagination.php b/resources/lang/ar-SA/pagination.php similarity index 100% rename from resources/lang/ar/pagination.php rename to resources/lang/ar-SA/pagination.php diff --git a/resources/lang/ar/passwords.php b/resources/lang/ar-SA/passwords.php similarity index 100% rename from resources/lang/ar/passwords.php rename to resources/lang/ar-SA/passwords.php diff --git a/resources/lang/ar/reminders.php b/resources/lang/ar-SA/reminders.php similarity index 100% rename from resources/lang/ar/reminders.php rename to resources/lang/ar-SA/reminders.php diff --git a/resources/lang/ar/table.php b/resources/lang/ar-SA/table.php similarity index 100% rename from resources/lang/ar/table.php rename to resources/lang/ar-SA/table.php diff --git a/resources/lang/ar/validation.php b/resources/lang/ar-SA/validation.php similarity index 99% rename from resources/lang/ar/validation.php rename to resources/lang/ar-SA/validation.php index 473fd5976e..f136c042f9 100644 --- a/resources/lang/ar/validation.php +++ b/resources/lang/ar-SA/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute يجب ان تكون فريدة.', 'non_circular' => 'يجب ألا تنشئ السمة مرجعًا دائريًا.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/ar/admin/asset_maintenances/form.php b/resources/lang/ar/admin/asset_maintenances/form.php deleted file mode 100644 index 6c98bfa556..0000000000 --- a/resources/lang/ar/admin/asset_maintenances/form.php +++ /dev/null @@ -1,14 +0,0 @@ - 'Asset Maintenance Type', - 'title' => 'المسمى', - 'start_date' => 'Start Date', - 'completion_date' => 'Completion Date', - 'cost' => 'التكلفة', - 'is_warranty' => 'تحسين الضمان', - 'asset_maintenance_time' => 'Asset Maintenance Time (in days)', - 'notes' => 'مُلاحظات', - 'update' => 'Update Asset Maintenance', - 'create' => 'Create Asset Maintenance' - ]; diff --git a/resources/lang/bg/account/general.php b/resources/lang/bg-BG/account/general.php similarity index 100% rename from resources/lang/bg/account/general.php rename to resources/lang/bg-BG/account/general.php diff --git a/resources/lang/bg/admin/accessories/general.php b/resources/lang/bg-BG/admin/accessories/general.php similarity index 100% rename from resources/lang/bg/admin/accessories/general.php rename to resources/lang/bg-BG/admin/accessories/general.php diff --git a/resources/lang/bg/admin/accessories/message.php b/resources/lang/bg-BG/admin/accessories/message.php similarity index 100% rename from resources/lang/bg/admin/accessories/message.php rename to resources/lang/bg-BG/admin/accessories/message.php diff --git a/resources/lang/bg/admin/accessories/table.php b/resources/lang/bg-BG/admin/accessories/table.php similarity index 100% rename from resources/lang/bg/admin/accessories/table.php rename to resources/lang/bg-BG/admin/accessories/table.php diff --git a/resources/lang/bg/admin/asset_maintenances/form.php b/resources/lang/bg-BG/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/bg/admin/asset_maintenances/form.php rename to resources/lang/bg-BG/admin/asset_maintenances/form.php diff --git a/resources/lang/bg/admin/asset_maintenances/general.php b/resources/lang/bg-BG/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/bg/admin/asset_maintenances/general.php rename to resources/lang/bg-BG/admin/asset_maintenances/general.php diff --git a/resources/lang/bg/admin/asset_maintenances/message.php b/resources/lang/bg-BG/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/bg/admin/asset_maintenances/message.php rename to resources/lang/bg-BG/admin/asset_maintenances/message.php diff --git a/resources/lang/bg/admin/asset_maintenances/table.php b/resources/lang/bg-BG/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/bg/admin/asset_maintenances/table.php rename to resources/lang/bg-BG/admin/asset_maintenances/table.php diff --git a/resources/lang/bg/admin/categories/general.php b/resources/lang/bg-BG/admin/categories/general.php similarity index 100% rename from resources/lang/bg/admin/categories/general.php rename to resources/lang/bg-BG/admin/categories/general.php diff --git a/resources/lang/bg/admin/categories/message.php b/resources/lang/bg-BG/admin/categories/message.php similarity index 100% rename from resources/lang/bg/admin/categories/message.php rename to resources/lang/bg-BG/admin/categories/message.php diff --git a/resources/lang/bg/admin/categories/table.php b/resources/lang/bg-BG/admin/categories/table.php similarity index 100% rename from resources/lang/bg/admin/categories/table.php rename to resources/lang/bg-BG/admin/categories/table.php diff --git a/resources/lang/bg/admin/companies/general.php b/resources/lang/bg-BG/admin/companies/general.php similarity index 100% rename from resources/lang/bg/admin/companies/general.php rename to resources/lang/bg-BG/admin/companies/general.php diff --git a/resources/lang/bg/admin/companies/message.php b/resources/lang/bg-BG/admin/companies/message.php similarity index 100% rename from resources/lang/bg/admin/companies/message.php rename to resources/lang/bg-BG/admin/companies/message.php diff --git a/resources/lang/bg/admin/companies/table.php b/resources/lang/bg-BG/admin/companies/table.php similarity index 100% rename from resources/lang/bg/admin/companies/table.php rename to resources/lang/bg-BG/admin/companies/table.php diff --git a/resources/lang/bg/admin/components/general.php b/resources/lang/bg-BG/admin/components/general.php similarity index 100% rename from resources/lang/bg/admin/components/general.php rename to resources/lang/bg-BG/admin/components/general.php diff --git a/resources/lang/bg/admin/components/message.php b/resources/lang/bg-BG/admin/components/message.php similarity index 100% rename from resources/lang/bg/admin/components/message.php rename to resources/lang/bg-BG/admin/components/message.php diff --git a/resources/lang/bg/admin/components/table.php b/resources/lang/bg-BG/admin/components/table.php similarity index 100% rename from resources/lang/bg/admin/components/table.php rename to resources/lang/bg-BG/admin/components/table.php diff --git a/resources/lang/bg/admin/consumables/general.php b/resources/lang/bg-BG/admin/consumables/general.php similarity index 100% rename from resources/lang/bg/admin/consumables/general.php rename to resources/lang/bg-BG/admin/consumables/general.php diff --git a/resources/lang/bg/admin/consumables/message.php b/resources/lang/bg-BG/admin/consumables/message.php similarity index 100% rename from resources/lang/bg/admin/consumables/message.php rename to resources/lang/bg-BG/admin/consumables/message.php diff --git a/resources/lang/bg/admin/consumables/table.php b/resources/lang/bg-BG/admin/consumables/table.php similarity index 100% rename from resources/lang/bg/admin/consumables/table.php rename to resources/lang/bg-BG/admin/consumables/table.php diff --git a/resources/lang/bg/admin/custom_fields/general.php b/resources/lang/bg-BG/admin/custom_fields/general.php similarity index 90% rename from resources/lang/bg/admin/custom_fields/general.php rename to resources/lang/bg-BG/admin/custom_fields/general.php index d488734d92..f25331cffb 100644 --- a/resources/lang/bg/admin/custom_fields/general.php +++ b/resources/lang/bg-BG/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Ново персонализирано поле', 'create_field_title' => 'Създай ново персонализирано поле', 'value_encrypted' => 'Стойността на това поле е криптирана в базата данни. Само администратор потребители ще бъде в състояние да видят дешифрираната стойност', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Да се включи ли стойността на това поле в електронната поща, изпращана към потребителите? Криптираните полета не могат да бъдат включвани в изпращаните електронни пощи', 'show_in_email_short' => 'Include in emails.', 'help_text' => 'Помощен текст', 'help_text_description' => 'Това е допълнителен текст, който ще се появява под формата с елементите докато редактирате актив описващ значението на полето.', @@ -52,7 +52,7 @@ return [ 'display_in_user_view_table' => 'Видим за потребител', 'auto_add_to_fieldsets' => 'Автоматично добави това към всеки нов набор от полета', 'add_to_preexisting_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' => 'Показвай по подразбиране, като списък. Потребителите, ще имат възможност да го скрият/покажа през избор на колона', 'show_in_listview_short' => 'Преглед в списъка', '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', diff --git a/resources/lang/bg/admin/custom_fields/message.php b/resources/lang/bg-BG/admin/custom_fields/message.php similarity index 100% rename from resources/lang/bg/admin/custom_fields/message.php rename to resources/lang/bg-BG/admin/custom_fields/message.php diff --git a/resources/lang/bg/admin/departments/message.php b/resources/lang/bg-BG/admin/departments/message.php similarity index 100% rename from resources/lang/bg/admin/departments/message.php rename to resources/lang/bg-BG/admin/departments/message.php diff --git a/resources/lang/bg/admin/departments/table.php b/resources/lang/bg-BG/admin/departments/table.php similarity index 100% rename from resources/lang/bg/admin/departments/table.php rename to resources/lang/bg-BG/admin/departments/table.php diff --git a/resources/lang/bg/admin/depreciations/general.php b/resources/lang/bg-BG/admin/depreciations/general.php similarity index 100% rename from resources/lang/bg/admin/depreciations/general.php rename to resources/lang/bg-BG/admin/depreciations/general.php diff --git a/resources/lang/bg/admin/depreciations/message.php b/resources/lang/bg-BG/admin/depreciations/message.php similarity index 100% rename from resources/lang/bg/admin/depreciations/message.php rename to resources/lang/bg-BG/admin/depreciations/message.php diff --git a/resources/lang/bg/admin/depreciations/table.php b/resources/lang/bg-BG/admin/depreciations/table.php similarity index 100% rename from resources/lang/bg/admin/depreciations/table.php rename to resources/lang/bg-BG/admin/depreciations/table.php diff --git a/resources/lang/bg/admin/groups/message.php b/resources/lang/bg-BG/admin/groups/message.php similarity index 100% rename from resources/lang/bg/admin/groups/message.php rename to resources/lang/bg-BG/admin/groups/message.php diff --git a/resources/lang/bg/admin/groups/table.php b/resources/lang/bg-BG/admin/groups/table.php similarity index 100% rename from resources/lang/bg/admin/groups/table.php rename to resources/lang/bg-BG/admin/groups/table.php diff --git a/resources/lang/bg/admin/groups/titles.php b/resources/lang/bg-BG/admin/groups/titles.php similarity index 100% rename from resources/lang/bg/admin/groups/titles.php rename to resources/lang/bg-BG/admin/groups/titles.php diff --git a/resources/lang/bg/admin/hardware/form.php b/resources/lang/bg-BG/admin/hardware/form.php similarity index 100% rename from resources/lang/bg/admin/hardware/form.php rename to resources/lang/bg-BG/admin/hardware/form.php diff --git a/resources/lang/bg/admin/hardware/general.php b/resources/lang/bg-BG/admin/hardware/general.php similarity index 100% rename from resources/lang/bg/admin/hardware/general.php rename to resources/lang/bg-BG/admin/hardware/general.php diff --git a/resources/lang/bg/admin/hardware/message.php b/resources/lang/bg-BG/admin/hardware/message.php similarity index 100% rename from resources/lang/bg/admin/hardware/message.php rename to resources/lang/bg-BG/admin/hardware/message.php diff --git a/resources/lang/bg/admin/hardware/table.php b/resources/lang/bg-BG/admin/hardware/table.php similarity index 100% rename from resources/lang/bg/admin/hardware/table.php rename to resources/lang/bg-BG/admin/hardware/table.php diff --git a/resources/lang/bg/admin/kits/general.php b/resources/lang/bg-BG/admin/kits/general.php similarity index 100% rename from resources/lang/bg/admin/kits/general.php rename to resources/lang/bg-BG/admin/kits/general.php diff --git a/resources/lang/bg/admin/labels/message.php b/resources/lang/bg-BG/admin/labels/message.php similarity index 100% rename from resources/lang/bg/admin/labels/message.php rename to resources/lang/bg-BG/admin/labels/message.php diff --git a/resources/lang/bg/admin/labels/table.php b/resources/lang/bg-BG/admin/labels/table.php similarity index 100% rename from resources/lang/bg/admin/labels/table.php rename to resources/lang/bg-BG/admin/labels/table.php diff --git a/resources/lang/bg/admin/licenses/form.php b/resources/lang/bg-BG/admin/licenses/form.php similarity index 100% rename from resources/lang/bg/admin/licenses/form.php rename to resources/lang/bg-BG/admin/licenses/form.php diff --git a/resources/lang/bg/admin/licenses/general.php b/resources/lang/bg-BG/admin/licenses/general.php similarity index 100% rename from resources/lang/bg/admin/licenses/general.php rename to resources/lang/bg-BG/admin/licenses/general.php diff --git a/resources/lang/bg/admin/licenses/message.php b/resources/lang/bg-BG/admin/licenses/message.php similarity index 100% rename from resources/lang/bg/admin/licenses/message.php rename to resources/lang/bg-BG/admin/licenses/message.php diff --git a/resources/lang/bg/admin/licenses/table.php b/resources/lang/bg-BG/admin/licenses/table.php similarity index 100% rename from resources/lang/bg/admin/licenses/table.php rename to resources/lang/bg-BG/admin/licenses/table.php diff --git a/resources/lang/bg/admin/locations/message.php b/resources/lang/bg-BG/admin/locations/message.php similarity index 100% rename from resources/lang/bg/admin/locations/message.php rename to resources/lang/bg-BG/admin/locations/message.php diff --git a/resources/lang/bg/admin/locations/table.php b/resources/lang/bg-BG/admin/locations/table.php similarity index 97% rename from resources/lang/bg/admin/locations/table.php rename to resources/lang/bg-BG/admin/locations/table.php index e695e2491a..adcc1c26ae 100644 --- a/resources/lang/bg/admin/locations/table.php +++ b/resources/lang/bg-BG/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Печат на всички отдадени', 'name' => 'Местоположение', 'address' => 'Aдрес', - 'address2' => 'Address Line 2', + 'address2' => 'Адрес ред 2', 'zip' => 'Пощенски код', 'locations' => 'Местоположения', 'parent' => 'Присъединено към', diff --git a/resources/lang/bg/admin/manufacturers/message.php b/resources/lang/bg-BG/admin/manufacturers/message.php similarity index 100% rename from resources/lang/bg/admin/manufacturers/message.php rename to resources/lang/bg-BG/admin/manufacturers/message.php diff --git a/resources/lang/bg/admin/manufacturers/table.php b/resources/lang/bg-BG/admin/manufacturers/table.php similarity index 100% rename from resources/lang/bg/admin/manufacturers/table.php rename to resources/lang/bg-BG/admin/manufacturers/table.php diff --git a/resources/lang/bg/admin/models/general.php b/resources/lang/bg-BG/admin/models/general.php similarity index 100% rename from resources/lang/bg/admin/models/general.php rename to resources/lang/bg-BG/admin/models/general.php diff --git a/resources/lang/bg/admin/models/message.php b/resources/lang/bg-BG/admin/models/message.php similarity index 100% rename from resources/lang/bg/admin/models/message.php rename to resources/lang/bg-BG/admin/models/message.php diff --git a/resources/lang/bg/admin/models/table.php b/resources/lang/bg-BG/admin/models/table.php similarity index 100% rename from resources/lang/bg/admin/models/table.php rename to resources/lang/bg-BG/admin/models/table.php diff --git a/resources/lang/bg/admin/reports/general.php b/resources/lang/bg-BG/admin/reports/general.php similarity index 100% rename from resources/lang/bg/admin/reports/general.php rename to resources/lang/bg-BG/admin/reports/general.php diff --git a/resources/lang/bg/admin/reports/message.php b/resources/lang/bg-BG/admin/reports/message.php similarity index 100% rename from resources/lang/bg/admin/reports/message.php rename to resources/lang/bg-BG/admin/reports/message.php diff --git a/resources/lang/bg/admin/settings/general.php b/resources/lang/bg-BG/admin/settings/general.php similarity index 98% rename from resources/lang/bg/admin/settings/general.php rename to resources/lang/bg-BG/admin/settings/general.php index fc3a9e5d62..dd4a58ea18 100644 --- a/resources/lang/bg/admin/settings/general.php +++ b/resources/lang/bg-BG/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'От потребителя не се изисква да въвежда "username@domain.local", достатъчно е да напише само "username".', 'admin_cc_email' => 'CC електронна поща', 'admin_cc_email_help' => 'Въведете допълнителни електронни адреси, ако желаете да се изпраща копие на електронните пощи при вписване и изписване на активи.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Това е активна директория на сървър', 'alerts' => 'Известия', 'alert_title' => 'Обнови настройките за известие', @@ -181,7 +182,7 @@ return [ 'saml_idp_metadata_help' => 'Може да изберете IdP метадата използвайки URL или XML файл.', 'saml_attr_mapping_username' => 'Асоцииране на поле - Username', 'saml_attr_mapping_username_help' => 'NameID ще се използва, ако мапването на атрибут е невалидно.', - 'saml_forcelogin_label' => 'SAML Force Login', + 'saml_forcelogin_label' => 'SAML задължителен вход', 'saml_forcelogin' => 'Направете SAML основен метод за вход', 'saml_forcelogin_help' => 'Може да използвате \'/login?nosaml\' за да се логнете през нормалната логин страница.', 'saml_slo_label' => 'SAML единичен Log Out', @@ -311,37 +312,37 @@ return [ 'notifications' => 'Notifications', 'notifications_help' => 'Email Alerts & Audit Settings', 'asset_tags_help' => 'Incrementing and prefixes', - 'labels' => 'Labels', + 'labels' => 'Етикети', 'labels_title' => 'Update Label Settings', 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Пречисти изтрити записи', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Номер на служител', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', 'setup_migrations' => 'Database Migrations ::', 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', + 'setup_successful_migrations' => 'Таблиците в базаданите бяха създадени', + 'setup_migration_output' => 'Резултат от миграцията:', + 'setup_migration_create_user' => 'Следва: Създаване на потребител', 'ldap_settings_link' => 'LDAP Settings Page', 'slack_test' => 'Test Integration', 'label2_enable' => 'New Label Engine', 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Титла', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D тип на баркод', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/bg/admin/settings/message.php b/resources/lang/bg-BG/admin/settings/message.php similarity index 100% rename from resources/lang/bg/admin/settings/message.php rename to resources/lang/bg-BG/admin/settings/message.php diff --git a/resources/lang/bg/admin/settings/table.php b/resources/lang/bg-BG/admin/settings/table.php similarity index 100% rename from resources/lang/bg/admin/settings/table.php rename to resources/lang/bg-BG/admin/settings/table.php diff --git a/resources/lang/bg/admin/statuslabels/message.php b/resources/lang/bg-BG/admin/statuslabels/message.php similarity index 98% rename from resources/lang/bg/admin/statuslabels/message.php rename to resources/lang/bg-BG/admin/statuslabels/message.php index ef223c21be..9b96354e7a 100644 --- a/resources/lang/bg/admin/statuslabels/message.php +++ b/resources/lang/bg-BG/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Етикет за статус не съществува.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Този етикет за статус е свързан с най-малко един актив и не може да бъде изтрит. Моля актуализирайте вашите активи да не се прехвърлят към този статус и опитайте отново.', 'create' => [ diff --git a/resources/lang/bg/admin/statuslabels/table.php b/resources/lang/bg-BG/admin/statuslabels/table.php similarity index 100% rename from resources/lang/bg/admin/statuslabels/table.php rename to resources/lang/bg-BG/admin/statuslabels/table.php diff --git a/resources/lang/bg/admin/suppliers/message.php b/resources/lang/bg-BG/admin/suppliers/message.php similarity index 100% rename from resources/lang/bg/admin/suppliers/message.php rename to resources/lang/bg-BG/admin/suppliers/message.php diff --git a/resources/lang/bg/admin/suppliers/table.php b/resources/lang/bg-BG/admin/suppliers/table.php similarity index 100% rename from resources/lang/bg/admin/suppliers/table.php rename to resources/lang/bg-BG/admin/suppliers/table.php diff --git a/resources/lang/bg/admin/users/general.php b/resources/lang/bg-BG/admin/users/general.php similarity index 100% rename from resources/lang/bg/admin/users/general.php rename to resources/lang/bg-BG/admin/users/general.php diff --git a/resources/lang/bg/admin/users/message.php b/resources/lang/bg-BG/admin/users/message.php similarity index 100% rename from resources/lang/bg/admin/users/message.php rename to resources/lang/bg-BG/admin/users/message.php diff --git a/resources/lang/bg/admin/users/table.php b/resources/lang/bg-BG/admin/users/table.php similarity index 96% rename from resources/lang/bg/admin/users/table.php rename to resources/lang/bg-BG/admin/users/table.php index 5834957a83..8057c5342a 100644 --- a/resources/lang/bg/admin/users/table.php +++ b/resources/lang/bg-BG/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Ръководител', 'managed_locations' => 'Управлявани места', 'name' => 'Име', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Бележки', 'password_confirm' => 'Потвърждение на паролата', 'password' => 'Парола', diff --git a/resources/lang/bg/auth.php b/resources/lang/bg-BG/auth.php similarity index 100% rename from resources/lang/bg/auth.php rename to resources/lang/bg-BG/auth.php diff --git a/resources/lang/bg/auth/general.php b/resources/lang/bg-BG/auth/general.php similarity index 100% rename from resources/lang/bg/auth/general.php rename to resources/lang/bg-BG/auth/general.php diff --git a/resources/lang/bg/auth/message.php b/resources/lang/bg-BG/auth/message.php similarity index 100% rename from resources/lang/bg/auth/message.php rename to resources/lang/bg-BG/auth/message.php diff --git a/resources/lang/bg/button.php b/resources/lang/bg-BG/button.php similarity index 100% rename from resources/lang/bg/button.php rename to resources/lang/bg-BG/button.php diff --git a/resources/lang/bg/general.php b/resources/lang/bg-BG/general.php similarity index 98% rename from resources/lang/bg/general.php rename to resources/lang/bg-BG/general.php index 6fc8bce7dd..55a372c050 100644 --- a/resources/lang/bg/general.php +++ b/resources/lang/bg-BG/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Файлов формат в jpg, webp, png, gif и svg. Максимален размер е :size .', 'unaccepted_image_type' => 'Снимката не може да се прочете. Типовете файлови разширения са jpg, webp, png, gif и svg. Разширението на този файл е :mimetype.', 'import' => 'Зареждане', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Импортиране', 'importing_help' => 'Може да импортирате активи, аксесоари, лицензи, компоненти, консумативи и потребители чрез CSV файл.

CSV файла трябва да е разделен със запетая и форматирани колони, като тези от примерен CSV файл.', 'import-history' => 'История на въвеждане', @@ -371,7 +372,7 @@ return [ 'consumables_count' => 'Брой Консумативи', 'components_count' => 'Брой Компоненти', 'licenses_count' => 'Брой Лицензи', - 'notification_error' => 'Error', + 'notification_error' => 'Грешка', 'notification_error_hint' => 'Моля проверете формата за грешки', 'notification_bulk_error_hint' => 'Следните полета имат грешки и не са редактирани:', 'notification_success' => 'Успешно', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'редакция', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/bg/help.php b/resources/lang/bg-BG/help.php similarity index 100% rename from resources/lang/bg/help.php rename to resources/lang/bg-BG/help.php diff --git a/resources/lang/bg/localizations.php b/resources/lang/bg-BG/localizations.php similarity index 99% rename from resources/lang/bg/localizations.php rename to resources/lang/bg-BG/localizations.php index 9df0c20ff2..7079a05646 100644 --- a/resources/lang/bg/localizations.php +++ b/resources/lang/bg-BG/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/bg/mail.php b/resources/lang/bg-BG/mail.php similarity index 100% rename from resources/lang/bg/mail.php rename to resources/lang/bg-BG/mail.php diff --git a/resources/lang/bg/pagination.php b/resources/lang/bg-BG/pagination.php similarity index 100% rename from resources/lang/bg/pagination.php rename to resources/lang/bg-BG/pagination.php diff --git a/resources/lang/bg/passwords.php b/resources/lang/bg-BG/passwords.php similarity index 100% rename from resources/lang/bg/passwords.php rename to resources/lang/bg-BG/passwords.php diff --git a/resources/lang/bg/reminders.php b/resources/lang/bg-BG/reminders.php similarity index 100% rename from resources/lang/bg/reminders.php rename to resources/lang/bg-BG/reminders.php diff --git a/resources/lang/bg/table.php b/resources/lang/bg-BG/table.php similarity index 100% rename from resources/lang/bg/table.php rename to resources/lang/bg-BG/table.php diff --git a/resources/lang/bg/validation.php b/resources/lang/bg-BG/validation.php similarity index 99% rename from resources/lang/bg/validation.php rename to resources/lang/bg-BG/validation.php index ca2364f09e..c085ffe968 100644 --- a/resources/lang/bg/validation.php +++ b/resources/lang/bg-BG/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute трябва да бъде уникален.', 'non_circular' => ':attribute не трябва да създава препрадка към себе си.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Паролата не може да бъде същата, като потребителското име.', 'letters' => 'Паролата трябва да съдържа поне една буква.', 'numbers' => 'Паролата трябва да съдържа поне една цифра.', diff --git a/resources/lang/ar/account/general.php b/resources/lang/ca-ES/account/general.php similarity index 100% rename from resources/lang/ar/account/general.php rename to resources/lang/ca-ES/account/general.php diff --git a/resources/lang/ca/admin/accessories/general.php b/resources/lang/ca-ES/admin/accessories/general.php similarity index 100% rename from resources/lang/ca/admin/accessories/general.php rename to resources/lang/ca-ES/admin/accessories/general.php diff --git a/resources/lang/ca/admin/accessories/message.php b/resources/lang/ca-ES/admin/accessories/message.php similarity index 100% rename from resources/lang/ca/admin/accessories/message.php rename to resources/lang/ca-ES/admin/accessories/message.php diff --git a/resources/lang/ca/admin/accessories/table.php b/resources/lang/ca-ES/admin/accessories/table.php similarity index 100% rename from resources/lang/ca/admin/accessories/table.php rename to resources/lang/ca-ES/admin/accessories/table.php diff --git a/resources/lang/ca/admin/asset_maintenances/form.php b/resources/lang/ca-ES/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/ca/admin/asset_maintenances/form.php rename to resources/lang/ca-ES/admin/asset_maintenances/form.php diff --git a/resources/lang/sk/admin/asset_maintenances/general.php b/resources/lang/ca-ES/admin/asset_maintenances/general.php similarity index 90% rename from resources/lang/sk/admin/asset_maintenances/general.php rename to resources/lang/ca-ES/admin/asset_maintenances/general.php index 0f9a4547a2..860b1398c8 100644 --- a/resources/lang/sk/admin/asset_maintenances/general.php +++ b/resources/lang/ca-ES/admin/asset_maintenances/general.php @@ -1,7 +1,7 @@ 'Asset Maintenances', + 'asset_maintenances' => 'Manteniments de Recursos', 'edit' => 'Edit Asset Maintenance', 'delete' => 'Delete Asset Maintenance', 'view' => 'View Asset Maintenance Details', diff --git a/resources/lang/ca/admin/asset_maintenances/message.php b/resources/lang/ca-ES/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/ca/admin/asset_maintenances/message.php rename to resources/lang/ca-ES/admin/asset_maintenances/message.php diff --git a/resources/lang/so/admin/asset_maintenances/table.php b/resources/lang/ca-ES/admin/asset_maintenances/table.php similarity index 73% rename from resources/lang/so/admin/asset_maintenances/table.php rename to resources/lang/ca-ES/admin/asset_maintenances/table.php index 3ba895038d..77311ab01d 100644 --- a/resources/lang/so/admin/asset_maintenances/table.php +++ b/resources/lang/ca-ES/admin/asset_maintenances/table.php @@ -1,7 +1,7 @@ 'Asset Maintenance', + 'title' => 'Manteniment de Recursos', 'asset_name' => 'Asset Name', 'is_warranty' => 'Warranty', 'dl_csv' => 'Download CSV', diff --git a/resources/lang/ca/admin/categories/general.php b/resources/lang/ca-ES/admin/categories/general.php similarity index 100% rename from resources/lang/ca/admin/categories/general.php rename to resources/lang/ca-ES/admin/categories/general.php diff --git a/resources/lang/ca/admin/categories/message.php b/resources/lang/ca-ES/admin/categories/message.php similarity index 100% rename from resources/lang/ca/admin/categories/message.php rename to resources/lang/ca-ES/admin/categories/message.php diff --git a/resources/lang/ca/admin/categories/table.php b/resources/lang/ca-ES/admin/categories/table.php similarity index 100% rename from resources/lang/ca/admin/categories/table.php rename to resources/lang/ca-ES/admin/categories/table.php diff --git a/resources/lang/ca/admin/companies/general.php b/resources/lang/ca-ES/admin/companies/general.php similarity index 100% rename from resources/lang/ca/admin/companies/general.php rename to resources/lang/ca-ES/admin/companies/general.php diff --git a/resources/lang/ca/admin/companies/message.php b/resources/lang/ca-ES/admin/companies/message.php similarity index 100% rename from resources/lang/ca/admin/companies/message.php rename to resources/lang/ca-ES/admin/companies/message.php diff --git a/resources/lang/tl/admin/companies/table.php b/resources/lang/ca-ES/admin/companies/table.php similarity index 71% rename from resources/lang/tl/admin/companies/table.php rename to resources/lang/ca-ES/admin/companies/table.php index 2f86126ff2..56c072d0b0 100644 --- a/resources/lang/tl/admin/companies/table.php +++ b/resources/lang/ca-ES/admin/companies/table.php @@ -1,8 +1,8 @@ 'Companies', + 'companies' => 'Empreses', 'create' => 'Create Company', - 'title' => 'Company', + 'title' => 'Empresa', 'update' => 'Update Company', 'name' => 'Company Name', 'id' => 'ID', diff --git a/resources/lang/ca/admin/components/general.php b/resources/lang/ca-ES/admin/components/general.php similarity index 100% rename from resources/lang/ca/admin/components/general.php rename to resources/lang/ca-ES/admin/components/general.php diff --git a/resources/lang/ca/admin/components/message.php b/resources/lang/ca-ES/admin/components/message.php similarity index 100% rename from resources/lang/ca/admin/components/message.php rename to resources/lang/ca-ES/admin/components/message.php diff --git a/resources/lang/ca/admin/components/table.php b/resources/lang/ca-ES/admin/components/table.php similarity index 100% rename from resources/lang/ca/admin/components/table.php rename to resources/lang/ca-ES/admin/components/table.php diff --git a/resources/lang/ca/admin/consumables/general.php b/resources/lang/ca-ES/admin/consumables/general.php similarity index 100% rename from resources/lang/ca/admin/consumables/general.php rename to resources/lang/ca-ES/admin/consumables/general.php diff --git a/resources/lang/ca/admin/consumables/message.php b/resources/lang/ca-ES/admin/consumables/message.php similarity index 100% rename from resources/lang/ca/admin/consumables/message.php rename to resources/lang/ca-ES/admin/consumables/message.php diff --git a/resources/lang/ca/admin/consumables/table.php b/resources/lang/ca-ES/admin/consumables/table.php similarity index 100% rename from resources/lang/ca/admin/consumables/table.php rename to resources/lang/ca-ES/admin/consumables/table.php diff --git a/resources/lang/ca/admin/custom_fields/general.php b/resources/lang/ca-ES/admin/custom_fields/general.php similarity index 100% rename from resources/lang/ca/admin/custom_fields/general.php rename to resources/lang/ca-ES/admin/custom_fields/general.php diff --git a/resources/lang/ca/admin/custom_fields/message.php b/resources/lang/ca-ES/admin/custom_fields/message.php similarity index 100% rename from resources/lang/ca/admin/custom_fields/message.php rename to resources/lang/ca-ES/admin/custom_fields/message.php diff --git a/resources/lang/ca/admin/departments/message.php b/resources/lang/ca-ES/admin/departments/message.php similarity index 100% rename from resources/lang/ca/admin/departments/message.php rename to resources/lang/ca-ES/admin/departments/message.php diff --git a/resources/lang/ca/admin/departments/table.php b/resources/lang/ca-ES/admin/departments/table.php similarity index 100% rename from resources/lang/ca/admin/departments/table.php rename to resources/lang/ca-ES/admin/departments/table.php diff --git a/resources/lang/ca/admin/depreciations/general.php b/resources/lang/ca-ES/admin/depreciations/general.php similarity index 100% rename from resources/lang/ca/admin/depreciations/general.php rename to resources/lang/ca-ES/admin/depreciations/general.php diff --git a/resources/lang/ca/admin/depreciations/message.php b/resources/lang/ca-ES/admin/depreciations/message.php similarity index 100% rename from resources/lang/ca/admin/depreciations/message.php rename to resources/lang/ca-ES/admin/depreciations/message.php diff --git a/resources/lang/ca/admin/depreciations/table.php b/resources/lang/ca-ES/admin/depreciations/table.php similarity index 100% rename from resources/lang/ca/admin/depreciations/table.php rename to resources/lang/ca-ES/admin/depreciations/table.php diff --git a/resources/lang/ca/admin/groups/message.php b/resources/lang/ca-ES/admin/groups/message.php similarity index 100% rename from resources/lang/ca/admin/groups/message.php rename to resources/lang/ca-ES/admin/groups/message.php diff --git a/resources/lang/ca/admin/groups/table.php b/resources/lang/ca-ES/admin/groups/table.php similarity index 100% rename from resources/lang/ca/admin/groups/table.php rename to resources/lang/ca-ES/admin/groups/table.php diff --git a/resources/lang/ca/admin/groups/titles.php b/resources/lang/ca-ES/admin/groups/titles.php similarity index 100% rename from resources/lang/ca/admin/groups/titles.php rename to resources/lang/ca-ES/admin/groups/titles.php diff --git a/resources/lang/tl/admin/hardware/form.php b/resources/lang/ca-ES/admin/hardware/form.php similarity index 98% rename from resources/lang/tl/admin/hardware/form.php rename to resources/lang/ca-ES/admin/hardware/form.php index ee3fa20fb0..9afc06c0c8 100644 --- a/resources/lang/tl/admin/hardware/form.php +++ b/resources/lang/ca-ES/admin/hardware/form.php @@ -41,7 +41,7 @@ return [ 'select_statustype' => 'Select Status Type', 'serial' => 'Serial', 'status' => 'Status', - 'tag' => 'Asset Tag', + 'tag' => 'Etiqueta de Recurs', 'update' => 'Asset Update', 'warranty' => 'Warranty', 'warranty_expires' => 'Warranty Expires', diff --git a/resources/lang/tl/admin/hardware/general.php b/resources/lang/ca-ES/admin/hardware/general.php similarity index 97% rename from resources/lang/tl/admin/hardware/general.php rename to resources/lang/ca-ES/admin/hardware/general.php index dd7d74e433..5c39a03c1d 100644 --- a/resources/lang/tl/admin/hardware/general.php +++ b/resources/lang/ca-ES/admin/hardware/general.php @@ -3,8 +3,8 @@ return [ 'about_assets_title' => 'About Assets', 'about_assets_text' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - 'archived' => 'Archived', - 'asset' => 'Asset', + 'archived' => 'Arxivat', + 'asset' => 'Recurs', 'bulk_checkout' => 'Checkout Assets', 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', diff --git a/resources/lang/ca/admin/hardware/message.php b/resources/lang/ca-ES/admin/hardware/message.php similarity index 100% rename from resources/lang/ca/admin/hardware/message.php rename to resources/lang/ca-ES/admin/hardware/message.php diff --git a/resources/lang/iu/admin/hardware/table.php b/resources/lang/ca-ES/admin/hardware/table.php similarity index 92% rename from resources/lang/iu/admin/hardware/table.php rename to resources/lang/ca-ES/admin/hardware/table.php index 06b60bfd83..20c4f910ef 100644 --- a/resources/lang/iu/admin/hardware/table.php +++ b/resources/lang/ca-ES/admin/hardware/table.php @@ -2,7 +2,7 @@ return [ - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Etiqueta de Recurs', 'asset_model' => 'Model', 'book_value' => 'Current Value', 'change' => 'In/Out', @@ -20,7 +20,7 @@ return [ 'purchase_date' => 'Purchased', 'serial' => 'Serial', 'status' => 'Status', - 'title' => 'Asset ', + 'title' => 'Recurs ', 'image' => 'Device Image', 'days_without_acceptance' => 'Days Without Acceptance', 'monthly_depreciation' => 'Monthly Depreciation', diff --git a/resources/lang/am/admin/kits/general.php b/resources/lang/ca-ES/admin/kits/general.php similarity index 100% rename from resources/lang/am/admin/kits/general.php rename to resources/lang/ca-ES/admin/kits/general.php diff --git a/resources/lang/ca/admin/labels/message.php b/resources/lang/ca-ES/admin/labels/message.php similarity index 100% rename from resources/lang/ca/admin/labels/message.php rename to resources/lang/ca-ES/admin/labels/message.php diff --git a/resources/lang/am/admin/labels/table.php b/resources/lang/ca-ES/admin/labels/table.php similarity index 100% rename from resources/lang/am/admin/labels/table.php rename to resources/lang/ca-ES/admin/labels/table.php diff --git a/resources/lang/sk/admin/licenses/form.php b/resources/lang/ca-ES/admin/licenses/form.php similarity index 96% rename from resources/lang/sk/admin/licenses/form.php rename to resources/lang/ca-ES/admin/licenses/form.php index ce29167874..92707aa1b7 100644 --- a/resources/lang/sk/admin/licenses/form.php +++ b/resources/lang/ca-ES/admin/licenses/form.php @@ -2,7 +2,7 @@ return array( - 'asset' => 'Asset', + 'asset' => 'Recurs', 'checkin' => 'Checkin', 'create' => 'Create License', 'expiration' => 'Expiration Date', diff --git a/resources/lang/ca/admin/licenses/general.php b/resources/lang/ca-ES/admin/licenses/general.php similarity index 100% rename from resources/lang/ca/admin/licenses/general.php rename to resources/lang/ca-ES/admin/licenses/general.php diff --git a/resources/lang/ca/admin/licenses/message.php b/resources/lang/ca-ES/admin/licenses/message.php similarity index 100% rename from resources/lang/ca/admin/licenses/message.php rename to resources/lang/ca-ES/admin/licenses/message.php diff --git a/resources/lang/ca/admin/licenses/table.php b/resources/lang/ca-ES/admin/licenses/table.php similarity index 100% rename from resources/lang/ca/admin/licenses/table.php rename to resources/lang/ca-ES/admin/licenses/table.php diff --git a/resources/lang/ca/admin/locations/message.php b/resources/lang/ca-ES/admin/locations/message.php similarity index 100% rename from resources/lang/ca/admin/locations/message.php rename to resources/lang/ca-ES/admin/locations/message.php diff --git a/resources/lang/so/admin/locations/table.php b/resources/lang/ca-ES/admin/locations/table.php similarity index 82% rename from resources/lang/so/admin/locations/table.php rename to resources/lang/ca-ES/admin/locations/table.php index 0cfaa4fdc3..e97ee26d12 100644 --- a/resources/lang/so/admin/locations/table.php +++ b/resources/lang/ca-ES/admin/locations/table.php @@ -3,18 +3,18 @@ return [ 'about_locations_title' => 'About Locations', 'about_locations' => 'Locations are used to track location information for users, assets, and other items', - 'assets_rtd' => 'Assets', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. + 'assets_rtd' => 'Recursos', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. 'assets_checkedout' => 'Assets Assigned', 'id' => 'ID', - 'city' => 'City', + 'city' => 'Municipi', 'state' => 'State', - 'country' => 'Country', + 'country' => 'País', 'create' => 'Create Location', 'update' => 'Update Location', 'print_assigned' => 'Print Assigned', 'print_all_assigned' => 'Print All Assigned', 'name' => 'Location Name', - 'address' => 'Address', + 'address' => 'Adreça', 'address2' => 'Address Line 2', 'zip' => 'Postal Code', 'locations' => 'Locations', @@ -22,11 +22,11 @@ return [ 'currency' => 'Location Currency', 'ldap_ou' => 'LDAP Search OU', 'user_name' => 'User Name', - 'department' => 'Department', + 'department' => 'Departament', 'location' => 'Location', 'asset_tag' => 'Assets Tag', 'asset_name' => 'Name', - 'asset_category' => 'Category', + 'asset_category' => 'Categoria', 'asset_manufacturer' => 'Manufacturer', 'asset_model' => 'Model', 'asset_serial' => 'Serial', diff --git a/resources/lang/ca/admin/manufacturers/message.php b/resources/lang/ca-ES/admin/manufacturers/message.php similarity index 100% rename from resources/lang/ca/admin/manufacturers/message.php rename to resources/lang/ca-ES/admin/manufacturers/message.php diff --git a/resources/lang/ca/admin/manufacturers/table.php b/resources/lang/ca-ES/admin/manufacturers/table.php similarity index 100% rename from resources/lang/ca/admin/manufacturers/table.php rename to resources/lang/ca-ES/admin/manufacturers/table.php diff --git a/resources/lang/ca/admin/models/general.php b/resources/lang/ca-ES/admin/models/general.php similarity index 100% rename from resources/lang/ca/admin/models/general.php rename to resources/lang/ca-ES/admin/models/general.php diff --git a/resources/lang/ca/admin/models/message.php b/resources/lang/ca-ES/admin/models/message.php similarity index 100% rename from resources/lang/ca/admin/models/message.php rename to resources/lang/ca-ES/admin/models/message.php diff --git a/resources/lang/so/admin/models/table.php b/resources/lang/ca-ES/admin/models/table.php similarity index 84% rename from resources/lang/so/admin/models/table.php rename to resources/lang/ca-ES/admin/models/table.php index 11a512b3d3..abb59f3526 100644 --- a/resources/lang/so/admin/models/table.php +++ b/resources/lang/ca-ES/admin/models/table.php @@ -7,8 +7,8 @@ return array( 'eol' => 'EOL', 'modelnumber' => 'Model No.', 'name' => 'Asset Model Name', - 'numassets' => 'Assets', - 'title' => 'Asset Models', + 'numassets' => 'Recursos', + 'title' => 'Models de Recurs', 'update' => 'Update Asset Model', 'view' => 'View Asset Model', 'update' => 'Update Asset Model', diff --git a/resources/lang/ca/admin/reports/general.php b/resources/lang/ca-ES/admin/reports/general.php similarity index 100% rename from resources/lang/ca/admin/reports/general.php rename to resources/lang/ca-ES/admin/reports/general.php diff --git a/resources/lang/ca/admin/reports/message.php b/resources/lang/ca-ES/admin/reports/message.php similarity index 100% rename from resources/lang/ca/admin/reports/message.php rename to resources/lang/ca-ES/admin/reports/message.php diff --git a/resources/lang/am/admin/settings/general.php b/resources/lang/ca-ES/admin/settings/general.php similarity index 99% rename from resources/lang/am/admin/settings/general.php rename to resources/lang/ca-ES/admin/settings/general.php index 64d0aef53e..c8d6306036 100644 --- a/resources/lang/am/admin/settings/general.php +++ b/resources/lang/ca-ES/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/ca/admin/settings/message.php b/resources/lang/ca-ES/admin/settings/message.php similarity index 100% rename from resources/lang/ca/admin/settings/message.php rename to resources/lang/ca-ES/admin/settings/message.php diff --git a/resources/lang/am/admin/settings/table.php b/resources/lang/ca-ES/admin/settings/table.php similarity index 100% rename from resources/lang/am/admin/settings/table.php rename to resources/lang/ca-ES/admin/settings/table.php diff --git a/resources/lang/iu/admin/statuslabels/message.php b/resources/lang/ca-ES/admin/statuslabels/message.php similarity index 97% rename from resources/lang/iu/admin/statuslabels/message.php rename to resources/lang/ca-ES/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/iu/admin/statuslabels/message.php +++ b/resources/lang/ca-ES/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/tl/admin/statuslabels/table.php b/resources/lang/ca-ES/admin/statuslabels/table.php similarity index 96% rename from resources/lang/tl/admin/statuslabels/table.php rename to resources/lang/ca-ES/admin/statuslabels/table.php index 27befb5ef7..23427227a8 100644 --- a/resources/lang/tl/admin/statuslabels/table.php +++ b/resources/lang/ca-ES/admin/statuslabels/table.php @@ -2,7 +2,7 @@ return array( 'about' => 'About Status Labels', - 'archived' => 'Archived', + 'archived' => 'Arxivat', 'create' => 'Create Status Label', 'color' => 'Chart Color', 'default_label' => 'Default Label', diff --git a/resources/lang/ca/admin/suppliers/message.php b/resources/lang/ca-ES/admin/suppliers/message.php similarity index 100% rename from resources/lang/ca/admin/suppliers/message.php rename to resources/lang/ca-ES/admin/suppliers/message.php diff --git a/resources/lang/iu/admin/suppliers/table.php b/resources/lang/ca-ES/admin/suppliers/table.php similarity index 87% rename from resources/lang/iu/admin/suppliers/table.php rename to resources/lang/ca-ES/admin/suppliers/table.php index 2a7b07ca93..ef376fcb24 100644 --- a/resources/lang/iu/admin/suppliers/table.php +++ b/resources/lang/ca-ES/admin/suppliers/table.php @@ -4,10 +4,10 @@ return array( 'about_suppliers_title' => 'About Suppliers', 'about_suppliers_text' => 'Suppliers are used to track the source of items', 'address' => 'Supplier Address', - 'assets' => 'Assets', - 'city' => 'City', + 'assets' => 'Recursos', + 'city' => 'Municipi', 'contact' => 'Contact Name', - 'country' => 'Country', + 'country' => 'País', 'create' => 'Create Supplier', 'email' => 'Email', 'fax' => 'Fax', diff --git a/resources/lang/ca/admin/users/general.php b/resources/lang/ca-ES/admin/users/general.php similarity index 100% rename from resources/lang/ca/admin/users/general.php rename to resources/lang/ca-ES/admin/users/general.php diff --git a/resources/lang/ca/admin/users/message.php b/resources/lang/ca-ES/admin/users/message.php similarity index 100% rename from resources/lang/ca/admin/users/message.php rename to resources/lang/ca-ES/admin/users/message.php diff --git a/resources/lang/so/admin/users/table.php b/resources/lang/ca-ES/admin/users/table.php similarity index 92% rename from resources/lang/so/admin/users/table.php rename to resources/lang/ca-ES/admin/users/table.php index 21e2154280..cbd1be8cda 100644 --- a/resources/lang/so/admin/users/table.php +++ b/resources/lang/ca-ES/admin/users/table.php @@ -3,7 +3,7 @@ return array( 'activated' => 'Active', 'allow' => 'Allow', - 'checkedout' => 'Assets', + 'checkedout' => 'Recursos', 'created_at' => 'Created', 'createuser' => 'Create User', 'deny' => 'Deny', @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirm Password', 'password' => 'Password', diff --git a/resources/lang/ca/auth.php b/resources/lang/ca-ES/auth.php similarity index 100% rename from resources/lang/ca/auth.php rename to resources/lang/ca-ES/auth.php diff --git a/resources/lang/ca/auth/general.php b/resources/lang/ca-ES/auth/general.php similarity index 100% rename from resources/lang/ca/auth/general.php rename to resources/lang/ca-ES/auth/general.php diff --git a/resources/lang/ca/auth/message.php b/resources/lang/ca-ES/auth/message.php similarity index 100% rename from resources/lang/ca/auth/message.php rename to resources/lang/ca-ES/auth/message.php diff --git a/resources/lang/iu/button.php b/resources/lang/ca-ES/button.php similarity index 90% rename from resources/lang/iu/button.php rename to resources/lang/ca-ES/button.php index 22821b8157..59ff9a02a4 100644 --- a/resources/lang/iu/button.php +++ b/resources/lang/ca-ES/button.php @@ -3,9 +3,9 @@ return [ 'actions' => 'Actions', 'add' => 'Add New', - 'cancel' => 'Cancel', + 'cancel' => 'Cancel·la', 'checkin_and_delete' => 'Checkin All / Delete User', - 'delete' => 'Delete', + 'delete' => 'Suprimeix', 'edit' => 'Edit', 'restore' => 'Restore', 'remove' => 'Remove', diff --git a/resources/lang/ca/general.php b/resources/lang/ca-ES/general.php similarity index 97% rename from resources/lang/ca/general.php rename to resources/lang/ca-ES/general.php index 0f596f351f..3c97e80214 100644 --- a/resources/lang/ca/general.php +++ b/resources/lang/ca-ES/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'Podeu importar recursos, accessoris, llicències, components, consumibles, and usuaris via fitxer CSV.

El CSV cal que estigui delimitat per comes i formatat amb capçaleres que coincideixin amb les de les mostres de CSV a la documentació.', 'import-history' => 'Import History', @@ -375,7 +376,7 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_warning' => 'Atenció', 'notification_info' => 'Info', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% completar', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/am/help.php b/resources/lang/ca-ES/help.php similarity index 100% rename from resources/lang/am/help.php rename to resources/lang/ca-ES/help.php diff --git a/resources/lang/ar/localizations.php b/resources/lang/ca-ES/localizations.php similarity index 99% rename from resources/lang/ar/localizations.php rename to resources/lang/ca-ES/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/ar/localizations.php +++ b/resources/lang/ca-ES/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/sk/mail.php b/resources/lang/ca-ES/mail.php similarity index 98% rename from resources/lang/sk/mail.php rename to resources/lang/ca-ES/mail.php index 7dd8d6181c..690effe068 100644 --- a/resources/lang/sk/mail.php +++ b/resources/lang/ca-ES/mail.php @@ -8,10 +8,10 @@ return [ 'accessory_name' => 'Accessory Name:', 'additional_notes' => 'Additional Notes:', 'admin_has_created' => 'An administrator has created an account for you on the :web website.', - 'asset' => 'Asset:', + 'asset' => 'Recurs:', 'asset_name' => 'Asset Name:', 'asset_requested' => 'Asset requested', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Etiqueta de Recurs', 'assigned_to' => 'Assigned To', 'best_regards' => 'Best regards,', 'canceled' => 'Canceled:', diff --git a/resources/lang/ca/pagination.php b/resources/lang/ca-ES/pagination.php similarity index 100% rename from resources/lang/ca/pagination.php rename to resources/lang/ca-ES/pagination.php diff --git a/resources/lang/ca/passwords.php b/resources/lang/ca-ES/passwords.php similarity index 100% rename from resources/lang/ca/passwords.php rename to resources/lang/ca-ES/passwords.php diff --git a/resources/lang/ca/reminders.php b/resources/lang/ca-ES/reminders.php similarity index 100% rename from resources/lang/ca/reminders.php rename to resources/lang/ca-ES/reminders.php diff --git a/resources/lang/iu/table.php b/resources/lang/ca-ES/table.php similarity index 79% rename from resources/lang/iu/table.php rename to resources/lang/ca-ES/table.php index f7a49d86c1..7feca3e104 100644 --- a/resources/lang/iu/table.php +++ b/resources/lang/ca-ES/table.php @@ -3,7 +3,7 @@ return array( 'actions' => 'Actions', - 'action' => 'Action', + 'action' => 'Acció', 'by' => 'By', 'item' => 'Item', diff --git a/resources/lang/am/validation.php b/resources/lang/ca-ES/validation.php similarity index 99% rename from resources/lang/am/validation.php rename to resources/lang/ca-ES/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/am/validation.php +++ b/resources/lang/ca-ES/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/cs/account/general.php b/resources/lang/cs-CZ/account/general.php similarity index 100% rename from resources/lang/cs/account/general.php rename to resources/lang/cs-CZ/account/general.php diff --git a/resources/lang/cs/admin/accessories/general.php b/resources/lang/cs-CZ/admin/accessories/general.php similarity index 100% rename from resources/lang/cs/admin/accessories/general.php rename to resources/lang/cs-CZ/admin/accessories/general.php diff --git a/resources/lang/cs/admin/accessories/message.php b/resources/lang/cs-CZ/admin/accessories/message.php similarity index 100% rename from resources/lang/cs/admin/accessories/message.php rename to resources/lang/cs-CZ/admin/accessories/message.php diff --git a/resources/lang/cs/admin/accessories/table.php b/resources/lang/cs-CZ/admin/accessories/table.php similarity index 100% rename from resources/lang/cs/admin/accessories/table.php rename to resources/lang/cs-CZ/admin/accessories/table.php diff --git a/resources/lang/cs/admin/asset_maintenances/form.php b/resources/lang/cs-CZ/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/cs/admin/asset_maintenances/form.php rename to resources/lang/cs-CZ/admin/asset_maintenances/form.php diff --git a/resources/lang/cs/admin/asset_maintenances/general.php b/resources/lang/cs-CZ/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/cs/admin/asset_maintenances/general.php rename to resources/lang/cs-CZ/admin/asset_maintenances/general.php diff --git a/resources/lang/cs/admin/asset_maintenances/message.php b/resources/lang/cs-CZ/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/cs/admin/asset_maintenances/message.php rename to resources/lang/cs-CZ/admin/asset_maintenances/message.php diff --git a/resources/lang/cs/admin/asset_maintenances/table.php b/resources/lang/cs-CZ/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/cs/admin/asset_maintenances/table.php rename to resources/lang/cs-CZ/admin/asset_maintenances/table.php diff --git a/resources/lang/cs/admin/categories/general.php b/resources/lang/cs-CZ/admin/categories/general.php similarity index 100% rename from resources/lang/cs/admin/categories/general.php rename to resources/lang/cs-CZ/admin/categories/general.php diff --git a/resources/lang/cs/admin/categories/message.php b/resources/lang/cs-CZ/admin/categories/message.php similarity index 100% rename from resources/lang/cs/admin/categories/message.php rename to resources/lang/cs-CZ/admin/categories/message.php diff --git a/resources/lang/cs/admin/categories/table.php b/resources/lang/cs-CZ/admin/categories/table.php similarity index 100% rename from resources/lang/cs/admin/categories/table.php rename to resources/lang/cs-CZ/admin/categories/table.php diff --git a/resources/lang/cs/admin/companies/general.php b/resources/lang/cs-CZ/admin/companies/general.php similarity index 100% rename from resources/lang/cs/admin/companies/general.php rename to resources/lang/cs-CZ/admin/companies/general.php diff --git a/resources/lang/cs/admin/companies/message.php b/resources/lang/cs-CZ/admin/companies/message.php similarity index 100% rename from resources/lang/cs/admin/companies/message.php rename to resources/lang/cs-CZ/admin/companies/message.php diff --git a/resources/lang/cs/admin/companies/table.php b/resources/lang/cs-CZ/admin/companies/table.php similarity index 100% rename from resources/lang/cs/admin/companies/table.php rename to resources/lang/cs-CZ/admin/companies/table.php diff --git a/resources/lang/cs/admin/components/general.php b/resources/lang/cs-CZ/admin/components/general.php similarity index 100% rename from resources/lang/cs/admin/components/general.php rename to resources/lang/cs-CZ/admin/components/general.php diff --git a/resources/lang/cs/admin/components/message.php b/resources/lang/cs-CZ/admin/components/message.php similarity index 100% rename from resources/lang/cs/admin/components/message.php rename to resources/lang/cs-CZ/admin/components/message.php diff --git a/resources/lang/cs/admin/components/table.php b/resources/lang/cs-CZ/admin/components/table.php similarity index 100% rename from resources/lang/cs/admin/components/table.php rename to resources/lang/cs-CZ/admin/components/table.php diff --git a/resources/lang/cs/admin/consumables/general.php b/resources/lang/cs-CZ/admin/consumables/general.php similarity index 100% rename from resources/lang/cs/admin/consumables/general.php rename to resources/lang/cs-CZ/admin/consumables/general.php diff --git a/resources/lang/cs/admin/consumables/message.php b/resources/lang/cs-CZ/admin/consumables/message.php similarity index 100% rename from resources/lang/cs/admin/consumables/message.php rename to resources/lang/cs-CZ/admin/consumables/message.php diff --git a/resources/lang/cs/admin/consumables/table.php b/resources/lang/cs-CZ/admin/consumables/table.php similarity index 100% rename from resources/lang/cs/admin/consumables/table.php rename to resources/lang/cs-CZ/admin/consumables/table.php diff --git a/resources/lang/cs/admin/custom_fields/general.php b/resources/lang/cs-CZ/admin/custom_fields/general.php similarity index 92% rename from resources/lang/cs/admin/custom_fields/general.php rename to resources/lang/cs-CZ/admin/custom_fields/general.php index ea4ed5c980..37c63a3b67 100644 --- a/resources/lang/cs/admin/custom_fields/general.php +++ b/resources/lang/cs-CZ/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Nové vlastní pole', 'create_field_title' => 'Vytvořít vlastní fieldset', 'value_encrypted' => 'Hodnota tohoto pole je zašifrována v databázi. Pouze administrátoři budou moci zobrazit dešifrovanou hodnotu', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Zahrnout hodnotu této kolonky do e-mailu o vyskladnění pro uživatele? Šifrované kolonky nemohou být součástí e-mailů', 'show_in_email_short' => 'Include in emails.', 'help_text' => 'Text nápovědy', 'help_text_description' => 'Toto je volitelný text, který se zobrazí pod formulářovými prvky při úpravách aktiva pro poskytnutí kontextu v poli.', @@ -52,7 +52,7 @@ return [ 'display_in_user_view_table' => 'Viditelné pro uživatele', 'auto_add_to_fieldsets' => 'Automaticky přidat do každé nové sady polí', 'add_to_preexisting_fieldsets' => 'Přidat do všech stávajících sad polí', - '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' => 'Zobrazovat v seznamech. Autorizovaní uživatelé si hodnotu i nadále budou moci skrýt skrze výběr sloupců', 'show_in_listview_short' => 'Zobrazovat v seznamech', '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', diff --git a/resources/lang/cs/admin/custom_fields/message.php b/resources/lang/cs-CZ/admin/custom_fields/message.php similarity index 100% rename from resources/lang/cs/admin/custom_fields/message.php rename to resources/lang/cs-CZ/admin/custom_fields/message.php diff --git a/resources/lang/cs/admin/departments/message.php b/resources/lang/cs-CZ/admin/departments/message.php similarity index 100% rename from resources/lang/cs/admin/departments/message.php rename to resources/lang/cs-CZ/admin/departments/message.php diff --git a/resources/lang/cs/admin/departments/table.php b/resources/lang/cs-CZ/admin/departments/table.php similarity index 100% rename from resources/lang/cs/admin/departments/table.php rename to resources/lang/cs-CZ/admin/departments/table.php diff --git a/resources/lang/cs/admin/depreciations/general.php b/resources/lang/cs-CZ/admin/depreciations/general.php similarity index 100% rename from resources/lang/cs/admin/depreciations/general.php rename to resources/lang/cs-CZ/admin/depreciations/general.php diff --git a/resources/lang/cs/admin/depreciations/message.php b/resources/lang/cs-CZ/admin/depreciations/message.php similarity index 100% rename from resources/lang/cs/admin/depreciations/message.php rename to resources/lang/cs-CZ/admin/depreciations/message.php diff --git a/resources/lang/cs/admin/depreciations/table.php b/resources/lang/cs-CZ/admin/depreciations/table.php similarity index 100% rename from resources/lang/cs/admin/depreciations/table.php rename to resources/lang/cs-CZ/admin/depreciations/table.php diff --git a/resources/lang/cs/admin/groups/message.php b/resources/lang/cs-CZ/admin/groups/message.php similarity index 100% rename from resources/lang/cs/admin/groups/message.php rename to resources/lang/cs-CZ/admin/groups/message.php diff --git a/resources/lang/cs/admin/groups/table.php b/resources/lang/cs-CZ/admin/groups/table.php similarity index 100% rename from resources/lang/cs/admin/groups/table.php rename to resources/lang/cs-CZ/admin/groups/table.php diff --git a/resources/lang/cs/admin/groups/titles.php b/resources/lang/cs-CZ/admin/groups/titles.php similarity index 100% rename from resources/lang/cs/admin/groups/titles.php rename to resources/lang/cs-CZ/admin/groups/titles.php diff --git a/resources/lang/cs/admin/hardware/form.php b/resources/lang/cs-CZ/admin/hardware/form.php similarity index 100% rename from resources/lang/cs/admin/hardware/form.php rename to resources/lang/cs-CZ/admin/hardware/form.php diff --git a/resources/lang/cs/admin/hardware/general.php b/resources/lang/cs-CZ/admin/hardware/general.php similarity index 100% rename from resources/lang/cs/admin/hardware/general.php rename to resources/lang/cs-CZ/admin/hardware/general.php diff --git a/resources/lang/cs/admin/hardware/message.php b/resources/lang/cs-CZ/admin/hardware/message.php similarity index 100% rename from resources/lang/cs/admin/hardware/message.php rename to resources/lang/cs-CZ/admin/hardware/message.php diff --git a/resources/lang/cs/admin/hardware/table.php b/resources/lang/cs-CZ/admin/hardware/table.php similarity index 100% rename from resources/lang/cs/admin/hardware/table.php rename to resources/lang/cs-CZ/admin/hardware/table.php diff --git a/resources/lang/cs/admin/kits/general.php b/resources/lang/cs-CZ/admin/kits/general.php similarity index 100% rename from resources/lang/cs/admin/kits/general.php rename to resources/lang/cs-CZ/admin/kits/general.php diff --git a/resources/lang/cs/admin/labels/message.php b/resources/lang/cs-CZ/admin/labels/message.php similarity index 100% rename from resources/lang/cs/admin/labels/message.php rename to resources/lang/cs-CZ/admin/labels/message.php diff --git a/resources/lang/cs-CZ/admin/labels/table.php b/resources/lang/cs-CZ/admin/labels/table.php new file mode 100644 index 0000000000..2e1b36ce8b --- /dev/null +++ b/resources/lang/cs-CZ/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Štítky', + 'support_fields' => 'Pole', + 'support_asset_tag' => 'Značka', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logo', + 'support_title' => 'Název', + +]; \ No newline at end of file diff --git a/resources/lang/cs/admin/licenses/form.php b/resources/lang/cs-CZ/admin/licenses/form.php similarity index 100% rename from resources/lang/cs/admin/licenses/form.php rename to resources/lang/cs-CZ/admin/licenses/form.php diff --git a/resources/lang/cs/admin/licenses/general.php b/resources/lang/cs-CZ/admin/licenses/general.php similarity index 100% rename from resources/lang/cs/admin/licenses/general.php rename to resources/lang/cs-CZ/admin/licenses/general.php diff --git a/resources/lang/cs/admin/licenses/message.php b/resources/lang/cs-CZ/admin/licenses/message.php similarity index 100% rename from resources/lang/cs/admin/licenses/message.php rename to resources/lang/cs-CZ/admin/licenses/message.php diff --git a/resources/lang/cs/admin/licenses/table.php b/resources/lang/cs-CZ/admin/licenses/table.php similarity index 100% rename from resources/lang/cs/admin/licenses/table.php rename to resources/lang/cs-CZ/admin/licenses/table.php diff --git a/resources/lang/cs/admin/locations/message.php b/resources/lang/cs-CZ/admin/locations/message.php similarity index 100% rename from resources/lang/cs/admin/locations/message.php rename to resources/lang/cs-CZ/admin/locations/message.php diff --git a/resources/lang/cs/admin/locations/table.php b/resources/lang/cs-CZ/admin/locations/table.php similarity index 100% rename from resources/lang/cs/admin/locations/table.php rename to resources/lang/cs-CZ/admin/locations/table.php diff --git a/resources/lang/cs/admin/manufacturers/message.php b/resources/lang/cs-CZ/admin/manufacturers/message.php similarity index 100% rename from resources/lang/cs/admin/manufacturers/message.php rename to resources/lang/cs-CZ/admin/manufacturers/message.php diff --git a/resources/lang/cs/admin/manufacturers/table.php b/resources/lang/cs-CZ/admin/manufacturers/table.php similarity index 100% rename from resources/lang/cs/admin/manufacturers/table.php rename to resources/lang/cs-CZ/admin/manufacturers/table.php diff --git a/resources/lang/cs/admin/models/general.php b/resources/lang/cs-CZ/admin/models/general.php similarity index 100% rename from resources/lang/cs/admin/models/general.php rename to resources/lang/cs-CZ/admin/models/general.php diff --git a/resources/lang/cs/admin/models/message.php b/resources/lang/cs-CZ/admin/models/message.php similarity index 100% rename from resources/lang/cs/admin/models/message.php rename to resources/lang/cs-CZ/admin/models/message.php diff --git a/resources/lang/cs/admin/models/table.php b/resources/lang/cs-CZ/admin/models/table.php similarity index 100% rename from resources/lang/cs/admin/models/table.php rename to resources/lang/cs-CZ/admin/models/table.php diff --git a/resources/lang/cs/admin/reports/general.php b/resources/lang/cs-CZ/admin/reports/general.php similarity index 100% rename from resources/lang/cs/admin/reports/general.php rename to resources/lang/cs-CZ/admin/reports/general.php diff --git a/resources/lang/cs/admin/reports/message.php b/resources/lang/cs-CZ/admin/reports/message.php similarity index 100% rename from resources/lang/cs/admin/reports/message.php rename to resources/lang/cs-CZ/admin/reports/message.php diff --git a/resources/lang/cs/admin/settings/general.php b/resources/lang/cs-CZ/admin/settings/general.php similarity index 99% rename from resources/lang/cs/admin/settings/general.php rename to resources/lang/cs-CZ/admin/settings/general.php index 2c6da31c11..bbd728f741 100644 --- a/resources/lang/cs/admin/settings/general.php +++ b/resources/lang/cs-CZ/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Uživatel není povinen psát "uzivatel@domena.local", může pouze napsat "uzivatel".', 'admin_cc_email' => 'Ve skryté kopii', 'admin_cc_email_help' => 'Chcete-li poslat kopii e-mailů pro check-in / checkout, které jsou uživatelům zaslány na další e-mailový účet, zadejte je zde. V opačném případě nechte toto pole prázdné.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Toto je server služby Active Directory', 'alerts' => 'Výstrahy', 'alert_title' => 'Aktualizace nastavení oznámení', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Název', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Typ 2D čárového kódu', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/cs/admin/settings/message.php b/resources/lang/cs-CZ/admin/settings/message.php similarity index 90% rename from resources/lang/cs/admin/settings/message.php rename to resources/lang/cs-CZ/admin/settings/message.php index 7142c1b789..0d01a0b382 100644 --- a/resources/lang/cs/admin/settings/message.php +++ b/resources/lang/cs-CZ/admin/settings/message.php @@ -36,11 +36,11 @@ return [ 'webhook' => [ 'sending' => 'Sending :app test message...', 'success' => 'Your :webhook_name Integration works!', - 'success_pt1' => 'Success! Check the ', - 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', + 'success_pt1' => 'Úspěšně! Zkontrolujte ', + 'success_pt2' => ' kanál pro vaši testovací zprávu a ujistěte se, že klepněte na tlačítko ULOŽIT pro uložení nastavení.', '500' => '500 Server Error.', 'error' => 'Something went wrong. :app responded with: :error_message', 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', - 'error_misc' => 'Something went wrong. :( ', + 'error_misc' => 'Něco se nepovedlo.', ] ]; diff --git a/resources/lang/cs/admin/settings/table.php b/resources/lang/cs-CZ/admin/settings/table.php similarity index 100% rename from resources/lang/cs/admin/settings/table.php rename to resources/lang/cs-CZ/admin/settings/table.php diff --git a/resources/lang/cs/admin/statuslabels/message.php b/resources/lang/cs-CZ/admin/statuslabels/message.php similarity index 97% rename from resources/lang/cs/admin/statuslabels/message.php rename to resources/lang/cs-CZ/admin/statuslabels/message.php index 39c106b074..2eeb996eb6 100644 --- a/resources/lang/cs/admin/statuslabels/message.php +++ b/resources/lang/cs-CZ/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Stavový štítek neexistuje.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Tento stavový štítek je právě přiřazena alespoň k jednomu modelu majetku a nemůže tak být odstraněn. Odeberte jeho vazbu z patřičných modelů a akci opakujte. ', 'create' => [ diff --git a/resources/lang/cs/admin/statuslabels/table.php b/resources/lang/cs-CZ/admin/statuslabels/table.php similarity index 100% rename from resources/lang/cs/admin/statuslabels/table.php rename to resources/lang/cs-CZ/admin/statuslabels/table.php diff --git a/resources/lang/cs/admin/suppliers/message.php b/resources/lang/cs-CZ/admin/suppliers/message.php similarity index 100% rename from resources/lang/cs/admin/suppliers/message.php rename to resources/lang/cs-CZ/admin/suppliers/message.php diff --git a/resources/lang/cs/admin/suppliers/table.php b/resources/lang/cs-CZ/admin/suppliers/table.php similarity index 100% rename from resources/lang/cs/admin/suppliers/table.php rename to resources/lang/cs-CZ/admin/suppliers/table.php diff --git a/resources/lang/cs/admin/users/general.php b/resources/lang/cs-CZ/admin/users/general.php similarity index 100% rename from resources/lang/cs/admin/users/general.php rename to resources/lang/cs-CZ/admin/users/general.php diff --git a/resources/lang/cs/admin/users/message.php b/resources/lang/cs-CZ/admin/users/message.php similarity index 100% rename from resources/lang/cs/admin/users/message.php rename to resources/lang/cs-CZ/admin/users/message.php diff --git a/resources/lang/cs/admin/users/table.php b/resources/lang/cs-CZ/admin/users/table.php similarity index 95% rename from resources/lang/cs/admin/users/table.php rename to resources/lang/cs-CZ/admin/users/table.php index 4334e799db..1d17ced175 100644 --- a/resources/lang/cs/admin/users/table.php +++ b/resources/lang/cs-CZ/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Nadřízený', 'managed_locations' => 'Spravovaná místa', 'name' => 'Položka', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Poznámky', 'password_confirm' => 'Potvrzení hesla', 'password' => 'Heslo', diff --git a/resources/lang/cs/auth.php b/resources/lang/cs-CZ/auth.php similarity index 100% rename from resources/lang/cs/auth.php rename to resources/lang/cs-CZ/auth.php diff --git a/resources/lang/cs/auth/general.php b/resources/lang/cs-CZ/auth/general.php similarity index 100% rename from resources/lang/cs/auth/general.php rename to resources/lang/cs-CZ/auth/general.php diff --git a/resources/lang/cs/auth/message.php b/resources/lang/cs-CZ/auth/message.php similarity index 100% rename from resources/lang/cs/auth/message.php rename to resources/lang/cs-CZ/auth/message.php diff --git a/resources/lang/cs/button.php b/resources/lang/cs-CZ/button.php similarity index 100% rename from resources/lang/cs/button.php rename to resources/lang/cs-CZ/button.php diff --git a/resources/lang/cs/general.php b/resources/lang/cs-CZ/general.php similarity index 96% rename from resources/lang/cs/general.php rename to resources/lang/cs-CZ/general.php index b75685fed8..63998167fe 100644 --- a/resources/lang/cs/general.php +++ b/resources/lang/cs-CZ/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Podporované typy souborů jsou jpg, png, gif, a svg. Velikost může být nejvýše :size.', 'unaccepted_image_type' => 'Soubor s obrázkem nebyl čitelný. Přijatelné druhy souborů jsou jpg, webp, png, gif, a svg. Tento soubor je druhu: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importování', 'importing_help' => 'Prostřednictvím souboru CSV můžete importovat majetek, příslušenství, licence, komponenty, spotřební materiál a uživatele.

CSV by měl být oddělený čárkou a formátovaný s hlavičkami, které odpovídají vzorovému CSV.', 'import-history' => 'Historie importu', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Dodavatel', 'suppliers' => 'Dodavatelé', 'sure_to_delete' => 'Opravdu si přejete odstranit', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Opravdu chcete smazat :item?', 'delete_what' => 'Delete :item', 'submit' => 'Odeslat', 'target' => 'Cíl', @@ -371,15 +372,15 @@ return [ 'consumables_count' => 'Počet spotřebních materiálů', 'components_count' => 'Počet komponentů', 'licenses_count' => 'Počet licencí', - 'notification_error' => 'Error', + 'notification_error' => 'Chyba', 'notification_error_hint' => 'Pro chyby zkontrolujte formulář níže', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => 'Hotovo', + 'notification_warning' => 'Pozor', + 'notification_info' => 'Informace', 'asset_information' => 'Informace o aktivu', - 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'model_name' => 'Model', + 'asset_name' => 'Název majetku', 'consumable_information' => 'Spotřební informace:', 'consumable_name' => 'Název sp. materiálu:', 'accessory_information' => 'Informace o příslušenství:', @@ -416,7 +417,7 @@ return [ 'pre_flight' => 'Pre-Flight', 'skip_to_main_content' => 'Skip to main content', 'toggle_navigation' => 'Toggle navigation', - 'alerts' => 'Alerts', + 'alerts' => 'Výstrahy', 'tasks_view_all' => 'View all tasks', 'true' => 'Souhlasí', 'false' => 'Nesouhlasí', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':název položky', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% dokončit', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'upravit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/cs/help.php b/resources/lang/cs-CZ/help.php similarity index 100% rename from resources/lang/cs/help.php rename to resources/lang/cs-CZ/help.php diff --git a/resources/lang/cs/localizations.php b/resources/lang/cs-CZ/localizations.php similarity index 99% rename from resources/lang/cs/localizations.php rename to resources/lang/cs-CZ/localizations.php index 594c00f421..83bee0f64d 100644 --- a/resources/lang/cs/localizations.php +++ b/resources/lang/cs-CZ/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irština', 'it'=> 'Italština', 'ja'=> 'Japonština', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korejština', 'lv'=>'Lotyšština', 'lt'=> 'Litevština', diff --git a/resources/lang/cs/mail.php b/resources/lang/cs-CZ/mail.php similarity index 100% rename from resources/lang/cs/mail.php rename to resources/lang/cs-CZ/mail.php diff --git a/resources/lang/cs/pagination.php b/resources/lang/cs-CZ/pagination.php similarity index 100% rename from resources/lang/cs/pagination.php rename to resources/lang/cs-CZ/pagination.php diff --git a/resources/lang/cs/passwords.php b/resources/lang/cs-CZ/passwords.php similarity index 100% rename from resources/lang/cs/passwords.php rename to resources/lang/cs-CZ/passwords.php diff --git a/resources/lang/cs/reminders.php b/resources/lang/cs-CZ/reminders.php similarity index 100% rename from resources/lang/cs/reminders.php rename to resources/lang/cs-CZ/reminders.php diff --git a/resources/lang/cs/table.php b/resources/lang/cs-CZ/table.php similarity index 100% rename from resources/lang/cs/table.php rename to resources/lang/cs-CZ/table.php diff --git a/resources/lang/cs/validation.php b/resources/lang/cs-CZ/validation.php similarity index 99% rename from resources/lang/cs/validation.php rename to resources/lang/cs-CZ/validation.php index aaca9fd0b0..0440fef04e 100644 --- a/resources/lang/cs/validation.php +++ b/resources/lang/cs-CZ/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'Je třeba, aby se :attribute neopakoval.', 'non_circular' => ':attribute nesmí vytvořit kruhový odkaz.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Heslo nemůže být stejné jako uživatelské jméno.', 'letters' => 'Heslo musí obsahovat nejméně jedno písmeno.', 'numbers' => 'Heslo musí obsahovat alespoň jednu číslici.', diff --git a/resources/lang/ca/account/general.php b/resources/lang/cy-GB/account/general.php similarity index 100% rename from resources/lang/ca/account/general.php rename to resources/lang/cy-GB/account/general.php diff --git a/resources/lang/cy/admin/accessories/general.php b/resources/lang/cy-GB/admin/accessories/general.php similarity index 100% rename from resources/lang/cy/admin/accessories/general.php rename to resources/lang/cy-GB/admin/accessories/general.php diff --git a/resources/lang/cy/admin/accessories/message.php b/resources/lang/cy-GB/admin/accessories/message.php similarity index 100% rename from resources/lang/cy/admin/accessories/message.php rename to resources/lang/cy-GB/admin/accessories/message.php diff --git a/resources/lang/cy/admin/accessories/table.php b/resources/lang/cy-GB/admin/accessories/table.php similarity index 100% rename from resources/lang/cy/admin/accessories/table.php rename to resources/lang/cy-GB/admin/accessories/table.php diff --git a/resources/lang/cy/admin/asset_maintenances/form.php b/resources/lang/cy-GB/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/cy/admin/asset_maintenances/form.php rename to resources/lang/cy-GB/admin/asset_maintenances/form.php diff --git a/resources/lang/cy/admin/asset_maintenances/general.php b/resources/lang/cy-GB/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/cy/admin/asset_maintenances/general.php rename to resources/lang/cy-GB/admin/asset_maintenances/general.php diff --git a/resources/lang/cy/admin/asset_maintenances/message.php b/resources/lang/cy-GB/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/cy/admin/asset_maintenances/message.php rename to resources/lang/cy-GB/admin/asset_maintenances/message.php diff --git a/resources/lang/cy/admin/asset_maintenances/table.php b/resources/lang/cy-GB/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/cy/admin/asset_maintenances/table.php rename to resources/lang/cy-GB/admin/asset_maintenances/table.php diff --git a/resources/lang/cy/admin/categories/general.php b/resources/lang/cy-GB/admin/categories/general.php similarity index 100% rename from resources/lang/cy/admin/categories/general.php rename to resources/lang/cy-GB/admin/categories/general.php diff --git a/resources/lang/cy/admin/categories/message.php b/resources/lang/cy-GB/admin/categories/message.php similarity index 100% rename from resources/lang/cy/admin/categories/message.php rename to resources/lang/cy-GB/admin/categories/message.php diff --git a/resources/lang/cy/admin/categories/table.php b/resources/lang/cy-GB/admin/categories/table.php similarity index 100% rename from resources/lang/cy/admin/categories/table.php rename to resources/lang/cy-GB/admin/categories/table.php diff --git a/resources/lang/cy/admin/companies/general.php b/resources/lang/cy-GB/admin/companies/general.php similarity index 87% rename from resources/lang/cy/admin/companies/general.php rename to resources/lang/cy-GB/admin/companies/general.php index c3a948e524..21d73dd347 100644 --- a/resources/lang/cy/admin/companies/general.php +++ b/resources/lang/cy-GB/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Dewis Cwmni', - 'about_companies' => 'About Companies', + 'about_companies' => 'Amdan Cwmniau', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/cy/admin/companies/message.php b/resources/lang/cy-GB/admin/companies/message.php similarity index 100% rename from resources/lang/cy/admin/companies/message.php rename to resources/lang/cy-GB/admin/companies/message.php diff --git a/resources/lang/cy/admin/companies/table.php b/resources/lang/cy-GB/admin/companies/table.php similarity index 100% rename from resources/lang/cy/admin/companies/table.php rename to resources/lang/cy-GB/admin/companies/table.php diff --git a/resources/lang/cy/admin/components/general.php b/resources/lang/cy-GB/admin/components/general.php similarity index 100% rename from resources/lang/cy/admin/components/general.php rename to resources/lang/cy-GB/admin/components/general.php diff --git a/resources/lang/cy/admin/components/message.php b/resources/lang/cy-GB/admin/components/message.php similarity index 100% rename from resources/lang/cy/admin/components/message.php rename to resources/lang/cy-GB/admin/components/message.php diff --git a/resources/lang/cy/admin/components/table.php b/resources/lang/cy-GB/admin/components/table.php similarity index 100% rename from resources/lang/cy/admin/components/table.php rename to resources/lang/cy-GB/admin/components/table.php diff --git a/resources/lang/cy/admin/consumables/general.php b/resources/lang/cy-GB/admin/consumables/general.php similarity index 100% rename from resources/lang/cy/admin/consumables/general.php rename to resources/lang/cy-GB/admin/consumables/general.php diff --git a/resources/lang/cy/admin/consumables/message.php b/resources/lang/cy-GB/admin/consumables/message.php similarity index 100% rename from resources/lang/cy/admin/consumables/message.php rename to resources/lang/cy-GB/admin/consumables/message.php diff --git a/resources/lang/cy/admin/consumables/table.php b/resources/lang/cy-GB/admin/consumables/table.php similarity index 100% rename from resources/lang/cy/admin/consumables/table.php rename to resources/lang/cy-GB/admin/consumables/table.php diff --git a/resources/lang/cy/admin/custom_fields/general.php b/resources/lang/cy-GB/admin/custom_fields/general.php similarity index 96% rename from resources/lang/cy/admin/custom_fields/general.php rename to resources/lang/cy-GB/admin/custom_fields/general.php index e7b97b3c03..3fa05de73e 100644 --- a/resources/lang/cy/admin/custom_fields/general.php +++ b/resources/lang/cy-GB/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Maes Addasedig newydd', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Mae gwerth y maes hwn wedi\'i amgryptio yn y gronfa ddata. Dim ond defnyddwyr gweinyddol fydd yn gallu gweld y gwerth wedi\'i ddadgryptio', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Cynnwys gwerth y maes hwn mewn e-byst talu a anfonir at y defnyddiwr? Ni ellir cynnwys meysydd wedi\'u hamgryptio mewn e-byst', '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.', diff --git a/resources/lang/cy/admin/custom_fields/message.php b/resources/lang/cy-GB/admin/custom_fields/message.php similarity index 100% rename from resources/lang/cy/admin/custom_fields/message.php rename to resources/lang/cy-GB/admin/custom_fields/message.php diff --git a/resources/lang/cy/admin/departments/message.php b/resources/lang/cy-GB/admin/departments/message.php similarity index 100% rename from resources/lang/cy/admin/departments/message.php rename to resources/lang/cy-GB/admin/departments/message.php diff --git a/resources/lang/cy/admin/departments/table.php b/resources/lang/cy-GB/admin/departments/table.php similarity index 100% rename from resources/lang/cy/admin/departments/table.php rename to resources/lang/cy-GB/admin/departments/table.php diff --git a/resources/lang/cy/admin/depreciations/general.php b/resources/lang/cy-GB/admin/depreciations/general.php similarity index 100% rename from resources/lang/cy/admin/depreciations/general.php rename to resources/lang/cy-GB/admin/depreciations/general.php diff --git a/resources/lang/cy/admin/depreciations/message.php b/resources/lang/cy-GB/admin/depreciations/message.php similarity index 100% rename from resources/lang/cy/admin/depreciations/message.php rename to resources/lang/cy-GB/admin/depreciations/message.php diff --git a/resources/lang/cy/admin/depreciations/table.php b/resources/lang/cy-GB/admin/depreciations/table.php similarity index 100% rename from resources/lang/cy/admin/depreciations/table.php rename to resources/lang/cy-GB/admin/depreciations/table.php diff --git a/resources/lang/cy/admin/groups/message.php b/resources/lang/cy-GB/admin/groups/message.php similarity index 100% rename from resources/lang/cy/admin/groups/message.php rename to resources/lang/cy-GB/admin/groups/message.php diff --git a/resources/lang/cy/admin/groups/table.php b/resources/lang/cy-GB/admin/groups/table.php similarity index 100% rename from resources/lang/cy/admin/groups/table.php rename to resources/lang/cy-GB/admin/groups/table.php diff --git a/resources/lang/cy/admin/groups/titles.php b/resources/lang/cy-GB/admin/groups/titles.php similarity index 100% rename from resources/lang/cy/admin/groups/titles.php rename to resources/lang/cy-GB/admin/groups/titles.php diff --git a/resources/lang/cy/admin/hardware/form.php b/resources/lang/cy-GB/admin/hardware/form.php similarity index 100% rename from resources/lang/cy/admin/hardware/form.php rename to resources/lang/cy-GB/admin/hardware/form.php diff --git a/resources/lang/cy/admin/hardware/general.php b/resources/lang/cy-GB/admin/hardware/general.php similarity index 100% rename from resources/lang/cy/admin/hardware/general.php rename to resources/lang/cy-GB/admin/hardware/general.php diff --git a/resources/lang/cy/admin/hardware/message.php b/resources/lang/cy-GB/admin/hardware/message.php similarity index 98% rename from resources/lang/cy/admin/hardware/message.php rename to resources/lang/cy-GB/admin/hardware/message.php index e19317dd30..891f0e76bd 100644 --- a/resources/lang/cy/admin/hardware/message.php +++ b/resources/lang/cy-GB/admin/hardware/message.php @@ -24,7 +24,7 @@ return [ 'restore' => [ 'error' => 'Nid oedd yn bosib adfer yr ased, ceisiwch eto o. g. y. dd', 'success' => 'Ased wedi adfer yn llwyddiannus.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Ased wedi adfer yn llwyddiannus.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/cy/admin/hardware/table.php b/resources/lang/cy-GB/admin/hardware/table.php similarity index 95% rename from resources/lang/cy/admin/hardware/table.php rename to resources/lang/cy-GB/admin/hardware/table.php index d49e7599bc..4eed9bba47 100644 --- a/resources/lang/cy/admin/hardware/table.php +++ b/resources/lang/cy-GB/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Delwedd Dyfais', 'days_without_acceptance' => 'Diwrnodau Heb Derbyn', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Wedi Neilltuo i', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Wedi newid', diff --git a/resources/lang/cy-GB/admin/kits/general.php b/resources/lang/cy-GB/admin/kits/general.php new file mode 100644 index 0000000000..72359d5cde --- /dev/null +++ b/resources/lang/cy-GB/admin/kits/general.php @@ -0,0 +1,50 @@ + 'About Predefined Kits', + 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', + 'checkout' => 'Checkout Kit ', + 'create_success' => 'Kit was successfully created.', + 'create' => 'Create Predefined Kit', + 'update' => 'Update Predefined Kit', + 'delete_success' => 'Kit was successfully deleted.', + 'update_success' => 'Kit was successfully updated.', + 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', + 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', + 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', + 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'License already attached to kit', + 'license_added_success' => 'License added successfully', + 'license_updated' => 'License was successfully updated', + 'license_none' => 'Nid yw\'r trwydded yn bodoli', + 'license_detached' => 'License was successfully detached', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Delete was successful', + 'consumable_none' => 'Nid yw\'r nwydd traul yn bodoli', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Accessory added successfully', + 'accessory_updated' => 'Accessory was successfully updated', + 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_error' => 'Accessory already attached to kit', + 'accessory_deleted' => 'Delete was successful', + 'accessory_none' => 'Accessory does not exist', + 'checkout_success' => 'Checkout was successful', + 'checkout_error' => 'Checkout error', + 'kit_none' => 'Kit does not exist', + 'kit_created' => 'Kit was successfully created', + 'kit_updated' => 'Kit was successfully updated', + 'kit_not_found' => 'Kit not found', + 'kit_deleted' => 'Kit was successfully deleted', + 'kit_model_updated' => 'Model was successfully updated', + 'kit_model_detached' => 'Model was successfully detached', +]; diff --git a/resources/lang/cy/admin/labels/message.php b/resources/lang/cy-GB/admin/labels/message.php similarity index 100% rename from resources/lang/cy/admin/labels/message.php rename to resources/lang/cy-GB/admin/labels/message.php diff --git a/resources/lang/en/admin/labels/table.php b/resources/lang/cy-GB/admin/labels/table.php similarity index 72% rename from resources/lang/en/admin/labels/table.php rename to resources/lang/cy-GB/admin/labels/table.php index 87dee4bad0..737a37fdd2 100644 --- a/resources/lang/en/admin/labels/table.php +++ b/resources/lang/cy-GB/admin/labels/table.php @@ -2,12 +2,12 @@ return [ - 'labels_per_page' => 'Labels', + 'labels_per_page' => 'Labelau', 'support_fields' => 'Fields', 'support_asset_tag' => 'Tag', 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Teitl', ]; \ No newline at end of file diff --git a/resources/lang/cy/admin/licenses/form.php b/resources/lang/cy-GB/admin/licenses/form.php similarity index 100% rename from resources/lang/cy/admin/licenses/form.php rename to resources/lang/cy-GB/admin/licenses/form.php diff --git a/resources/lang/cy/admin/licenses/general.php b/resources/lang/cy-GB/admin/licenses/general.php similarity index 100% rename from resources/lang/cy/admin/licenses/general.php rename to resources/lang/cy-GB/admin/licenses/general.php diff --git a/resources/lang/cy/admin/licenses/message.php b/resources/lang/cy-GB/admin/licenses/message.php similarity index 100% rename from resources/lang/cy/admin/licenses/message.php rename to resources/lang/cy-GB/admin/licenses/message.php diff --git a/resources/lang/cy/admin/licenses/table.php b/resources/lang/cy-GB/admin/licenses/table.php similarity index 100% rename from resources/lang/cy/admin/licenses/table.php rename to resources/lang/cy-GB/admin/licenses/table.php diff --git a/resources/lang/cy/admin/locations/message.php b/resources/lang/cy-GB/admin/locations/message.php similarity index 100% rename from resources/lang/cy/admin/locations/message.php rename to resources/lang/cy-GB/admin/locations/message.php diff --git a/resources/lang/cy/admin/locations/table.php b/resources/lang/cy-GB/admin/locations/table.php similarity index 85% rename from resources/lang/cy/admin/locations/table.php rename to resources/lang/cy-GB/admin/locations/table.php index c992c1404b..b64554e8bf 100644 --- a/resources/lang/cy/admin/locations/table.php +++ b/resources/lang/cy-GB/admin/locations/table.php @@ -12,7 +12,7 @@ return [ 'create' => 'Creu Lleoliad', 'update' => 'Diweddaru Lleoliad', 'print_assigned' => 'Print Assigned', - 'print_all_assigned' => 'Print All Assigned', + 'print_all_assigned' => 'Argraffu Asedau', 'name' => 'Enw Lleoliad', 'address' => 'Cyfeiriad', 'address2' => 'Address Line 2', @@ -25,13 +25,13 @@ return [ 'department' => 'Adran', 'location' => 'Lleoliad', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', + 'asset_name' => 'Enw', + 'asset_category' => 'Categori', + 'asset_manufacturer' => 'Gwneuthyrwr', 'asset_model' => 'Model', 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_location' => 'Lleoliad', + 'asset_checked_out' => 'Allan', 'asset_expected_checkin' => 'Expected Checkin', 'date' => 'Dyddiad:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', diff --git a/resources/lang/cy/admin/manufacturers/message.php b/resources/lang/cy-GB/admin/manufacturers/message.php similarity index 100% rename from resources/lang/cy/admin/manufacturers/message.php rename to resources/lang/cy-GB/admin/manufacturers/message.php diff --git a/resources/lang/cy/admin/manufacturers/table.php b/resources/lang/cy-GB/admin/manufacturers/table.php similarity index 100% rename from resources/lang/cy/admin/manufacturers/table.php rename to resources/lang/cy-GB/admin/manufacturers/table.php diff --git a/resources/lang/cy/admin/models/general.php b/resources/lang/cy-GB/admin/models/general.php similarity index 100% rename from resources/lang/cy/admin/models/general.php rename to resources/lang/cy-GB/admin/models/general.php diff --git a/resources/lang/cy/admin/models/message.php b/resources/lang/cy-GB/admin/models/message.php similarity index 100% rename from resources/lang/cy/admin/models/message.php rename to resources/lang/cy-GB/admin/models/message.php diff --git a/resources/lang/cy/admin/models/table.php b/resources/lang/cy-GB/admin/models/table.php similarity index 100% rename from resources/lang/cy/admin/models/table.php rename to resources/lang/cy-GB/admin/models/table.php diff --git a/resources/lang/cy/admin/reports/general.php b/resources/lang/cy-GB/admin/reports/general.php similarity index 100% rename from resources/lang/cy/admin/reports/general.php rename to resources/lang/cy-GB/admin/reports/general.php diff --git a/resources/lang/cy/admin/reports/message.php b/resources/lang/cy-GB/admin/reports/message.php similarity index 100% rename from resources/lang/cy/admin/reports/message.php rename to resources/lang/cy-GB/admin/reports/message.php diff --git a/resources/lang/cy/admin/settings/general.php b/resources/lang/cy-GB/admin/settings/general.php similarity index 96% rename from resources/lang/cy/admin/settings/general.php rename to resources/lang/cy-GB/admin/settings/general.php index 508fb27776..1722d21fdd 100644 --- a/resources/lang/cy/admin/settings/general.php +++ b/resources/lang/cy-GB/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Ebost', 'admin_cc_email_help' => 'Os ydych am i cyfrif ebost derbyn copi o negeseuon i ddefnyddwyr wrth nodi asdedau allan i defnyddwyr ac yn ol i fewn rhowch o yma. Fel arall, gadewch yn wag.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Mae hwn yn Server Active Directory', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -56,13 +57,13 @@ return [ 'email_logo' => 'Logo ebyst', 'barcode_type' => 'Math Barcode 2D', 'alt_barcode_type' => 'Math Barcode 1D', - 'email_logo_size' => 'Square logos in email look best. ', + 'email_logo_size' => 'Logo sgwar sydd edrych orau mewn ebost. ', 'enabled' => 'Enabled', 'eula_settings' => 'Gosodiadau CTDT', 'eula_markdown' => 'Mae\'r CTDT yma yn caniatau markdown GitHub.', 'favicon' => 'Favicon', - 'favicon_format' => 'Accepted filetypes are ico, png, and gif. Other image formats may not work in all browsers.', - 'favicon_size' => 'Favicons should be square images, 16x16 pixels.', + 'favicon_format' => 'Mathau o ffeiliau a dderbynnir yw ico, png, a gif. Mae\'n bosib cewch trafferthion hefo rhai gwahanol mewn rhai porrwyr.', + 'favicon_size' => 'Dylith favicons bod yn delweddau sgwar 16x16 pixels.', 'footer_text' => 'Testun Troedyn Ychwanegol ', 'footer_text_help' => 'Dangosir y text yma ir ochor dde yn y troedyn. Mae lincs yn dderbyniol gan defnyddio Github flavored markdown. Line breaks, headers, images, etc may result in unpredictable results.', 'general_settings' => 'Gosodiadau Cyffredinol', @@ -71,8 +72,8 @@ return [ 'generate_backup' => 'Creu copi-wrth-gefn', 'header_color' => 'Lliw penawd', 'info' => 'Mae\'r gosodiadau yma yn caniatau i chi addasu elfennau o\'r system.', - 'label_logo' => 'Label Logo', - 'label_logo_size' => 'Square logos look best - will be displayed in the top right of each asset label. ', + 'label_logo' => 'Logo Label', + 'label_logo_size' => 'Logos sgwar sydd orau - dangosir ar y dde ar top label ased. ', 'laravel' => 'Fersiwn Laravel', 'ldap' => 'LDAP', 'ldap_default_group' => 'Default Permissions Group', @@ -137,8 +138,8 @@ return [ 'login_common_disabled_help' => 'Mae\'r opsiwn yma yn analluogi dulliau eraill o mewngofnodi. Alluogch yr opsiwn yma os ydych yn sicr bod yr opsiwn REMOTE_USER yn weithredol', 'login_remote_user_custom_logout_url_text' => 'URL Allgofnodi', 'login_remote_user_custom_logout_url_help' => 'Os oes URL yma mi fydd defnyddwyr yn cael ei gyfeirio yma wrth mewngofnodi. Mae hyn yn defnyddiol i cau sesiynau hefo\'r endid sydd yn darparu\'r gwasanaeth dilysu.', - 'login_remote_user_header_name_text' => 'Custom user name header', - 'login_remote_user_header_name_help' => 'Use the specified header instead of REMOTE_USER', + 'login_remote_user_header_name_text' => 'Pennawd enw defnyddiwr personol', + 'login_remote_user_header_name_help' => 'Defnyddio\'r pennawd penodedig yn lle REMOTE_USER', 'logo' => 'Logo', 'logo_print_assets' => 'Defnyddio wrth argraffu', 'logo_print_assets_help' => 'Defnyddio branding ar rhestrau asedau i\'w argraffu ', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Lleiafswm o cymeriadau mewn cyfrinair', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Gwerth lleiaf a dderbynir yw 8', 'pwd_secure_uncommon' => 'Nadu cyfrineiriau cyffredin', 'pwd_secure_uncommon_help' => 'Fydd hyn yn nadu defnyddwyr rhag defnyddio\'r 10,000 o cyfrineiriau sydd wedi adnabod yn rhan o digwyddiadau siber.', 'qr_help' => 'Alluogwch QR codes cyntaf er mwyn gosod hyn', @@ -282,7 +283,7 @@ return [ 'unique_serial' => 'Rhifau serial unigryw', 'unique_serial_help_text' => 'Bydd gwirio\'r blwch hwn yn gorfodi cyfyngiad unigryw ar gyfresi asedau', 'zerofill_count' => 'Hyd y tagiau asedau, gan gynnwys zerofill', - 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', + 'username_format_help' => 'Dim ond os na ddarperir enw defnyddiwr y bydd y gosodiad hwn yn cael ei ddefnyddio a bod yn rhaid i ni gynhyrchu enw defnyddiwr i chi.', 'oauth_title' => 'OAuth API Settings', 'oauth' => 'OAuth', 'oauth_help' => 'Oauth Endpoint Settings', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Clirio cofnodion sydd wedi\'i dileu', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Teitl', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Math Barcode 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/cy/admin/settings/message.php b/resources/lang/cy-GB/admin/settings/message.php similarity index 100% rename from resources/lang/cy/admin/settings/message.php rename to resources/lang/cy-GB/admin/settings/message.php diff --git a/resources/lang/et/admin/settings/table.php b/resources/lang/cy-GB/admin/settings/table.php similarity index 60% rename from resources/lang/et/admin/settings/table.php rename to resources/lang/cy-GB/admin/settings/table.php index 22db5c84ed..216913f9c4 100644 --- a/resources/lang/et/admin/settings/table.php +++ b/resources/lang/cy-GB/admin/settings/table.php @@ -1,6 +1,6 @@ 'Created', + 'created' => 'Crëwyd', 'size' => 'Size', ); diff --git a/resources/lang/cy/admin/statuslabels/message.php b/resources/lang/cy-GB/admin/statuslabels/message.php similarity index 85% rename from resources/lang/cy/admin/statuslabels/message.php rename to resources/lang/cy-GB/admin/statuslabels/message.php index 626324317e..d7f6d7c8fc 100644 --- a/resources/lang/cy/admin/statuslabels/message.php +++ b/resources/lang/cy-GB/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Nid ywr label Statws yma yn bodoli.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Mae\'r label statws yma wedi perthnasu i oleiaf un ased a nid yw\'n bosib dileu. Diweddarwch eich asedau i beidio cyfeirio at y label yma ac yna ceisiwch eto. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Nid yw\'n bosib clustnodi\'r ased yma I ddefnyddwyr.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Mae\'r asedau yma ar gael i\'w defnyddio. Unwaith y cânt eu haseinio, byddant yn cymryd statws meta Mewn Defnydd.', 'archived' => 'Ni ellir newid statws yr asedau hyn, dim ond yn yr olygfa archifedig y byddant yn ymddangos. Mae hyn yn ddefnyddiol ar gyfer cadw gwybodaeth am asedau at ddibenion cyllidebu / hanesyddol ond eu cadw allan o\'r rhestr asedau o ddydd i ddydd.', 'pending' => 'Ni ellir aseinio\'r asedau hyn i unrhyw un eto, ddefnyddir yn aml ar gyfer eitemau sydd allan i\'w hatgyweirio, ond y disgwylir iddynt ddychwelyd i\'w cylchrediad.', ], diff --git a/resources/lang/cy/admin/statuslabels/table.php b/resources/lang/cy-GB/admin/statuslabels/table.php similarity index 100% rename from resources/lang/cy/admin/statuslabels/table.php rename to resources/lang/cy-GB/admin/statuslabels/table.php diff --git a/resources/lang/cy/admin/suppliers/message.php b/resources/lang/cy-GB/admin/suppliers/message.php similarity index 100% rename from resources/lang/cy/admin/suppliers/message.php rename to resources/lang/cy-GB/admin/suppliers/message.php diff --git a/resources/lang/cy/admin/suppliers/table.php b/resources/lang/cy-GB/admin/suppliers/table.php similarity index 100% rename from resources/lang/cy/admin/suppliers/table.php rename to resources/lang/cy-GB/admin/suppliers/table.php diff --git a/resources/lang/cy/admin/users/general.php b/resources/lang/cy-GB/admin/users/general.php similarity index 97% rename from resources/lang/cy/admin/users/general.php rename to resources/lang/cy-GB/admin/users/general.php index 67fa1dea68..d0003c5994 100644 --- a/resources/lang/cy/admin/users/general.php +++ b/resources/lang/cy-GB/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Gweld Defnyddiwr :name', 'usercsv' => 'Ffeil CSV', 'two_factor_admin_optin_help' => 'Mae eich gosodiadau admin yn caniatau gorfodaeth dewisol o dilysiant dau-factor. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Dyfais D2F Wedi Ymuno ', + 'two_factor_active' => 'D2F Weithredol ', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/cy/admin/users/message.php b/resources/lang/cy-GB/admin/users/message.php similarity index 98% rename from resources/lang/cy/admin/users/message.php rename to resources/lang/cy-GB/admin/users/message.php index 6a42ac43d4..2fce454f3e 100644 --- a/resources/lang/cy/admin/users/message.php +++ b/resources/lang/cy-GB/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Rydych wedi llwyddo I wrthod yr ased yma.', 'bulk_manager_warn' => 'Mae eich defnyddwyr wedi diweddaru\'n llwyddiannus ond mae\'r blwch rheolwr heb newid gan fod y rheolwr yn y rhestr o defnyddwyr. Dewisiwch eto heb cynnwys y rheolwr.', 'user_exists' => 'Defnyddiwr yn bodoli yn barod!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Nid yw\'r defnyddiwr yn bodoli.', 'user_login_required' => 'Mae angen llenwi\'r maes login', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Rhaid gosod cyfrinair.', diff --git a/resources/lang/cy/admin/users/table.php b/resources/lang/cy-GB/admin/users/table.php similarity index 95% rename from resources/lang/cy/admin/users/table.php rename to resources/lang/cy-GB/admin/users/table.php index baddae0e86..10e710192d 100644 --- a/resources/lang/cy/admin/users/table.php +++ b/resources/lang/cy-GB/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Rheolwr', 'managed_locations' => 'Lleoliadau a Reolir', 'name' => 'Enw', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Nodiadau', 'password_confirm' => 'Cadarnhau\'r Cyfrinair', 'password' => 'Cyfrinair', diff --git a/resources/lang/cy/auth.php b/resources/lang/cy-GB/auth.php similarity index 100% rename from resources/lang/cy/auth.php rename to resources/lang/cy-GB/auth.php diff --git a/resources/lang/cy/auth/general.php b/resources/lang/cy-GB/auth/general.php similarity index 100% rename from resources/lang/cy/auth/general.php rename to resources/lang/cy-GB/auth/general.php diff --git a/resources/lang/cy/auth/message.php b/resources/lang/cy-GB/auth/message.php similarity index 100% rename from resources/lang/cy/auth/message.php rename to resources/lang/cy-GB/auth/message.php diff --git a/resources/lang/cy/button.php b/resources/lang/cy-GB/button.php similarity index 85% rename from resources/lang/cy/button.php rename to resources/lang/cy-GB/button.php index 7c855f2d9d..b5514d7020 100644 --- a/resources/lang/cy/button.php +++ b/resources/lang/cy-GB/button.php @@ -14,8 +14,8 @@ return [ 'upload' => 'Uwchlwytho', 'select_file' => 'Dewis ffeil...', 'select_files' => 'Dewis ffeiliau...', - 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'generate_labels' => '{1} Cynhyrchu Label[2,*] Cynhyrchu Labeli', + 'send_password_link' => 'Danfonwch Linc Ail-osod Cyfrinair', 'go' => 'Mynd', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', diff --git a/resources/lang/cy/general.php b/resources/lang/cy-GB/general.php similarity index 94% rename from resources/lang/cy/general.php rename to resources/lang/cy-GB/general.php index e30fc9717c..d7fec60f1e 100644 --- a/resources/lang/cy/general.php +++ b/resources/lang/cy-GB/general.php @@ -48,7 +48,7 @@ return [ 'bulk_checkin_delete' => 'Bulk Checkin / Delete Users', 'byod' => 'BYOD', 'byod_help' => 'This device is owned by the user', - 'bystatus' => 'by Status', + 'bystatus' => 'yn ol statws', 'cancel' => 'Canslo', 'categories' => 'Categoriau', 'category' => 'Categori', @@ -121,14 +121,14 @@ return [ 'firstname_lastname_format' => 'Enw Cyntaf Enw Olaf (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'Enw Cyntaf Enw Olaf (jane.smith@example.com)', 'lastnamefirstinitial_format' => 'Enw Olaf Llythyren Cyntaf Enw Cyntaf (smithj@example.com)', - 'firstintial_dot_lastname_format' => 'First Initial Last Name (j.smith@example.com)', + 'firstintial_dot_lastname_format' => 'Llythyren Cyntaf Enw Cyntaf Cyfenw (jsmith@example.com)', 'firstname_lastname_display' => 'First Name Last Name (Jane Smith)', 'lastname_firstname_display' => 'Last Name First Name (Smith Jane)', 'name_display_format' => 'Name Display Format', 'first' => 'Cyntaf', 'firstnamelastname' => 'First Name Last Name (janesmith@example.com)', 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', - 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', + 'firstinitial.lastname' => 'Llythyren Cyntaf Enw Cyntaf Cyfenw (jsmith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', 'first_name' => 'Enw cyntaf', 'first_name_format' => 'Enw Cyntaf (jane@example.com)', @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Mewnforio', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Mewnforio hanes', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Barod i\'w defnyddio', 'recent_activity' => 'Gweithgareddau Diweddar', - 'remaining' => 'Remaining', + 'remaining' => 'Yn weddill', 'remove_company' => 'Dileu Cymdeithas y Cwmni', 'reports' => 'Adroddiadau', 'restored' => 'wedi adfer', - 'restore' => 'Restore', + 'restore' => 'Adfer', 'requestable_models' => 'Requestable Models', 'requested' => 'Gofynnwyd amdano', 'requested_date' => 'Requested Date', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Cyflenwr', 'suppliers' => 'Cyflenwyr', 'sure_to_delete' => 'Ydych chi\'n sicr eich bod eisiau dileu', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Ydych chi\'n sicr eich bod eisiau dileu\'r :item?', 'delete_what' => 'Delete :item', 'submit' => 'Cyflwyno', 'target' => 'Targed', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Ddim modd nodi allan', 'unknown_admin' => 'Gweinydd Anhysbys', 'username_format' => 'Fformat enw defnyddiwr', - 'username' => 'Username', + 'username' => 'Enw defnyddiwr', 'update' => 'Diweddaru', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Wedi Uwchlwytho', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'Ebost', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,14 +333,14 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Allan', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', 'expected_checkin' => 'Expected Checkin', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', + 'changed' => 'Wedi newid', 'to' => 'To', 'report_fields_info' => '

Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.

If you would like to export only certain assets, use the options below to fine-tune your results.

', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error', + 'notification_error' => 'Gwall', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => 'Llwyddiant', + 'notification_warning' => 'Rhybudd', + 'notification_info' => 'Gwybodaeth', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Enw Ased', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Enw nwydd traul:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Enw Ategolyn:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% wedi cwbwlhau', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'addasu', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/cy-GB/help.php b/resources/lang/cy-GB/help.php new file mode 100644 index 0000000000..acee5671fe --- /dev/null +++ b/resources/lang/cy-GB/help.php @@ -0,0 +1,35 @@ + 'Mwy o wybodaeth', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Mae asedau wedi tracio trwy rhif cofrestru neu rhif ased. Maen yn tueddu fod yn eitemau gwerthfawr lle mae adnabod offer penodol yn bwysig.', + + 'categories' => 'Mae categoriau yn cynorthwyo chi i cadw trefn ar eich eitemau. Enghreifftiau o categoriau yw "Cyfrifiadur pen-bwrdd", "Gliniadur", "Ffôn Symudol", "Tabledi", ac yn y blaen, ond cewch gosod rhain yn ol eich angen.', + + 'accessories' => 'Mae ategolion yn unrhyw offer sydd yn cael eu ddosbarthu i defnyddwyr ond ddim hefo rhif cofrestru. (Neu nid oes angen tracio). Er enghraifft, llygod, ategolion.', + + 'companies' => 'Defnyddir cwmniau fel maes syml, neu i rheoli mynediad at grwpiau o offer, defnyddwyr os ydi cefnogaeth cwmniau wedi alluogi.', + + 'components' => 'Mae cydrannau yn darnau sydd yn rhan o ased, er enghraifft cof, disg caled, ayyb.', + + 'consumables' => 'Mae unrhwy eitem sydd yn cael eu defnyddio i fyny dros amser yn nwydd traul. Er enghraifft, inc neu paper argraffydd.', + + 'depreciations' => 'Cewch creu mathau o dibrisiant i dibrisio asedau yn seiliedig ar dibrisiant llinell syth.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/ca/localizations.php b/resources/lang/cy-GB/localizations.php similarity index 99% rename from resources/lang/ca/localizations.php rename to resources/lang/cy-GB/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/ca/localizations.php +++ b/resources/lang/cy-GB/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/cy/mail.php b/resources/lang/cy-GB/mail.php similarity index 99% rename from resources/lang/cy/mail.php rename to resources/lang/cy-GB/mail.php index c2f8723bf5..ad4900258a 100644 --- a/resources/lang/cy/mail.php +++ b/resources/lang/cy-GB/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Ased:', 'asset_name' => 'Enw Ased:', 'asset_requested' => 'Gofynnwyd am ased', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Tag Ased', 'assigned_to' => 'Wedi Neilltuo i', 'best_regards' => 'Cofon gorau,', 'canceled' => 'Wedi canslo:', diff --git a/resources/lang/cy/pagination.php b/resources/lang/cy-GB/pagination.php similarity index 100% rename from resources/lang/cy/pagination.php rename to resources/lang/cy-GB/pagination.php diff --git a/resources/lang/cy/passwords.php b/resources/lang/cy-GB/passwords.php similarity index 100% rename from resources/lang/cy/passwords.php rename to resources/lang/cy-GB/passwords.php diff --git a/resources/lang/cy/reminders.php b/resources/lang/cy-GB/reminders.php similarity index 100% rename from resources/lang/cy/reminders.php rename to resources/lang/cy-GB/reminders.php diff --git a/resources/lang/cy/table.php b/resources/lang/cy-GB/table.php similarity index 100% rename from resources/lang/cy/table.php rename to resources/lang/cy-GB/table.php diff --git a/resources/lang/cy/validation.php b/resources/lang/cy-GB/validation.php similarity index 99% rename from resources/lang/cy/validation.php rename to resources/lang/cy-GB/validation.php index 323c543add..a9944d229a 100644 --- a/resources/lang/cy/validation.php +++ b/resources/lang/cy-GB/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'Rhaid i\'r :attribute bod yn unigryw.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/cy/help.php b/resources/lang/cy/help.php deleted file mode 100644 index 4b0efdacac..0000000000 --- a/resources/lang/cy/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Mwy o wybodaeth', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/cy/localizations.php b/resources/lang/cy/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/cy/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/da/account/general.php b/resources/lang/da-DK/account/general.php similarity index 100% rename from resources/lang/da/account/general.php rename to resources/lang/da-DK/account/general.php diff --git a/resources/lang/da/admin/accessories/general.php b/resources/lang/da-DK/admin/accessories/general.php similarity index 100% rename from resources/lang/da/admin/accessories/general.php rename to resources/lang/da-DK/admin/accessories/general.php diff --git a/resources/lang/da/admin/accessories/message.php b/resources/lang/da-DK/admin/accessories/message.php similarity index 100% rename from resources/lang/da/admin/accessories/message.php rename to resources/lang/da-DK/admin/accessories/message.php diff --git a/resources/lang/da/admin/accessories/table.php b/resources/lang/da-DK/admin/accessories/table.php similarity index 100% rename from resources/lang/da/admin/accessories/table.php rename to resources/lang/da-DK/admin/accessories/table.php diff --git a/resources/lang/da/admin/asset_maintenances/form.php b/resources/lang/da-DK/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/da/admin/asset_maintenances/form.php rename to resources/lang/da-DK/admin/asset_maintenances/form.php diff --git a/resources/lang/da/admin/asset_maintenances/general.php b/resources/lang/da-DK/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/da/admin/asset_maintenances/general.php rename to resources/lang/da-DK/admin/asset_maintenances/general.php diff --git a/resources/lang/da/admin/asset_maintenances/message.php b/resources/lang/da-DK/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/da/admin/asset_maintenances/message.php rename to resources/lang/da-DK/admin/asset_maintenances/message.php diff --git a/resources/lang/da/admin/asset_maintenances/table.php b/resources/lang/da-DK/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/da/admin/asset_maintenances/table.php rename to resources/lang/da-DK/admin/asset_maintenances/table.php diff --git a/resources/lang/da/admin/categories/general.php b/resources/lang/da-DK/admin/categories/general.php similarity index 100% rename from resources/lang/da/admin/categories/general.php rename to resources/lang/da-DK/admin/categories/general.php diff --git a/resources/lang/da/admin/categories/message.php b/resources/lang/da-DK/admin/categories/message.php similarity index 100% rename from resources/lang/da/admin/categories/message.php rename to resources/lang/da-DK/admin/categories/message.php diff --git a/resources/lang/da/admin/categories/table.php b/resources/lang/da-DK/admin/categories/table.php similarity index 100% rename from resources/lang/da/admin/categories/table.php rename to resources/lang/da-DK/admin/categories/table.php diff --git a/resources/lang/da/admin/companies/general.php b/resources/lang/da-DK/admin/companies/general.php similarity index 100% rename from resources/lang/da/admin/companies/general.php rename to resources/lang/da-DK/admin/companies/general.php diff --git a/resources/lang/da/admin/companies/message.php b/resources/lang/da-DK/admin/companies/message.php similarity index 100% rename from resources/lang/da/admin/companies/message.php rename to resources/lang/da-DK/admin/companies/message.php diff --git a/resources/lang/da/admin/companies/table.php b/resources/lang/da-DK/admin/companies/table.php similarity index 100% rename from resources/lang/da/admin/companies/table.php rename to resources/lang/da-DK/admin/companies/table.php diff --git a/resources/lang/da/admin/components/general.php b/resources/lang/da-DK/admin/components/general.php similarity index 100% rename from resources/lang/da/admin/components/general.php rename to resources/lang/da-DK/admin/components/general.php diff --git a/resources/lang/da/admin/components/message.php b/resources/lang/da-DK/admin/components/message.php similarity index 100% rename from resources/lang/da/admin/components/message.php rename to resources/lang/da-DK/admin/components/message.php diff --git a/resources/lang/da/admin/components/table.php b/resources/lang/da-DK/admin/components/table.php similarity index 100% rename from resources/lang/da/admin/components/table.php rename to resources/lang/da-DK/admin/components/table.php diff --git a/resources/lang/da/admin/consumables/general.php b/resources/lang/da-DK/admin/consumables/general.php similarity index 100% rename from resources/lang/da/admin/consumables/general.php rename to resources/lang/da-DK/admin/consumables/general.php diff --git a/resources/lang/da/admin/consumables/message.php b/resources/lang/da-DK/admin/consumables/message.php similarity index 100% rename from resources/lang/da/admin/consumables/message.php rename to resources/lang/da-DK/admin/consumables/message.php diff --git a/resources/lang/da/admin/consumables/table.php b/resources/lang/da-DK/admin/consumables/table.php similarity index 100% rename from resources/lang/da/admin/consumables/table.php rename to resources/lang/da-DK/admin/consumables/table.php diff --git a/resources/lang/da/admin/custom_fields/general.php b/resources/lang/da-DK/admin/custom_fields/general.php similarity index 96% rename from resources/lang/da/admin/custom_fields/general.php rename to resources/lang/da-DK/admin/custom_fields/general.php index 9a7eb04ef7..54c5928ad4 100644 --- a/resources/lang/da/admin/custom_fields/general.php +++ b/resources/lang/da-DK/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Nyt Brugerdefinerede Felt', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Værdien af dette felt er krypteret i databasen. Kun admins vil være i stand til at se den krypteret værdi', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Inkludér værdien af ​​dette felt i tjekud-e-mail til brugeren? Krypterede felter kan ikke medtages i e-mails', '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.', diff --git a/resources/lang/da/admin/custom_fields/message.php b/resources/lang/da-DK/admin/custom_fields/message.php similarity index 100% rename from resources/lang/da/admin/custom_fields/message.php rename to resources/lang/da-DK/admin/custom_fields/message.php diff --git a/resources/lang/da/admin/departments/message.php b/resources/lang/da-DK/admin/departments/message.php similarity index 100% rename from resources/lang/da/admin/departments/message.php rename to resources/lang/da-DK/admin/departments/message.php diff --git a/resources/lang/da/admin/departments/table.php b/resources/lang/da-DK/admin/departments/table.php similarity index 100% rename from resources/lang/da/admin/departments/table.php rename to resources/lang/da-DK/admin/departments/table.php diff --git a/resources/lang/da/admin/depreciations/general.php b/resources/lang/da-DK/admin/depreciations/general.php similarity index 100% rename from resources/lang/da/admin/depreciations/general.php rename to resources/lang/da-DK/admin/depreciations/general.php diff --git a/resources/lang/da/admin/depreciations/message.php b/resources/lang/da-DK/admin/depreciations/message.php similarity index 100% rename from resources/lang/da/admin/depreciations/message.php rename to resources/lang/da-DK/admin/depreciations/message.php diff --git a/resources/lang/da/admin/depreciations/table.php b/resources/lang/da-DK/admin/depreciations/table.php similarity index 100% rename from resources/lang/da/admin/depreciations/table.php rename to resources/lang/da-DK/admin/depreciations/table.php diff --git a/resources/lang/da/admin/groups/message.php b/resources/lang/da-DK/admin/groups/message.php similarity index 100% rename from resources/lang/da/admin/groups/message.php rename to resources/lang/da-DK/admin/groups/message.php diff --git a/resources/lang/da/admin/groups/table.php b/resources/lang/da-DK/admin/groups/table.php similarity index 100% rename from resources/lang/da/admin/groups/table.php rename to resources/lang/da-DK/admin/groups/table.php diff --git a/resources/lang/da/admin/groups/titles.php b/resources/lang/da-DK/admin/groups/titles.php similarity index 100% rename from resources/lang/da/admin/groups/titles.php rename to resources/lang/da-DK/admin/groups/titles.php diff --git a/resources/lang/da/admin/hardware/form.php b/resources/lang/da-DK/admin/hardware/form.php similarity index 100% rename from resources/lang/da/admin/hardware/form.php rename to resources/lang/da-DK/admin/hardware/form.php diff --git a/resources/lang/da/admin/hardware/general.php b/resources/lang/da-DK/admin/hardware/general.php similarity index 100% rename from resources/lang/da/admin/hardware/general.php rename to resources/lang/da-DK/admin/hardware/general.php diff --git a/resources/lang/da/admin/hardware/message.php b/resources/lang/da-DK/admin/hardware/message.php similarity index 98% rename from resources/lang/da/admin/hardware/message.php rename to resources/lang/da-DK/admin/hardware/message.php index 99e007fd16..e9016e386a 100644 --- a/resources/lang/da/admin/hardware/message.php +++ b/resources/lang/da-DK/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Akten blev ikke gendannet, prøv igen', 'success' => 'Asset restaureret med succes.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Asset restaureret med succes.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/da/admin/hardware/table.php b/resources/lang/da-DK/admin/hardware/table.php similarity index 88% rename from resources/lang/da/admin/hardware/table.php rename to resources/lang/da-DK/admin/hardware/table.php index b90024753b..2589d5a7ab 100644 --- a/resources/lang/da/admin/hardware/table.php +++ b/resources/lang/da-DK/admin/hardware/table.php @@ -24,9 +24,9 @@ return [ 'image' => 'Enhedsbillede', 'days_without_acceptance' => 'Dage uden accept', 'monthly_depreciation' => 'Månedlig afskrivning', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Tildelt', 'requesting_user' => 'Requesting User', - 'requested_date' => 'Requested Date', - 'changed' => 'Changed', + 'requested_date' => 'Anmodningsdato', + 'changed' => 'Ændret', 'icon' => 'Icon', ]; diff --git a/resources/lang/da/admin/kits/general.php b/resources/lang/da-DK/admin/kits/general.php similarity index 90% rename from resources/lang/da/admin/kits/general.php rename to resources/lang/da-DK/admin/kits/general.php index d6cf228e04..89c3f14cb1 100644 --- a/resources/lang/da/admin/kits/general.php +++ b/resources/lang/da-DK/admin/kits/general.php @@ -24,13 +24,13 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Licens eksistere ikke', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Forbrugsstoffer findes ikke', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', @@ -41,10 +41,10 @@ return [ 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', + 'kit_created' => 'Kit blev oprettet', + 'kit_updated' => 'Kit blev opdateret', 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', + 'kit_deleted' => 'Kit blev slettet', 'kit_model_updated' => 'Model was successfully updated', 'kit_model_detached' => 'Model was successfully detached', ]; diff --git a/resources/lang/da/admin/labels/message.php b/resources/lang/da-DK/admin/labels/message.php similarity index 100% rename from resources/lang/da/admin/labels/message.php rename to resources/lang/da-DK/admin/labels/message.php diff --git a/resources/lang/da-DK/admin/labels/table.php b/resources/lang/da-DK/admin/labels/table.php new file mode 100644 index 0000000000..55884bbbb8 --- /dev/null +++ b/resources/lang/da-DK/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Felter', + 'support_asset_tag' => 'Mærkat', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logo', + 'support_title' => 'Titel', + +]; \ No newline at end of file diff --git a/resources/lang/da/admin/licenses/form.php b/resources/lang/da-DK/admin/licenses/form.php similarity index 100% rename from resources/lang/da/admin/licenses/form.php rename to resources/lang/da-DK/admin/licenses/form.php diff --git a/resources/lang/da/admin/licenses/general.php b/resources/lang/da-DK/admin/licenses/general.php similarity index 100% rename from resources/lang/da/admin/licenses/general.php rename to resources/lang/da-DK/admin/licenses/general.php diff --git a/resources/lang/da/admin/licenses/message.php b/resources/lang/da-DK/admin/licenses/message.php similarity index 100% rename from resources/lang/da/admin/licenses/message.php rename to resources/lang/da-DK/admin/licenses/message.php diff --git a/resources/lang/da/admin/licenses/table.php b/resources/lang/da-DK/admin/licenses/table.php similarity index 100% rename from resources/lang/da/admin/licenses/table.php rename to resources/lang/da-DK/admin/licenses/table.php diff --git a/resources/lang/da/admin/locations/message.php b/resources/lang/da-DK/admin/locations/message.php similarity index 100% rename from resources/lang/da/admin/locations/message.php rename to resources/lang/da-DK/admin/locations/message.php diff --git a/resources/lang/da/admin/locations/table.php b/resources/lang/da-DK/admin/locations/table.php similarity index 100% rename from resources/lang/da/admin/locations/table.php rename to resources/lang/da-DK/admin/locations/table.php diff --git a/resources/lang/da/admin/manufacturers/message.php b/resources/lang/da-DK/admin/manufacturers/message.php similarity index 100% rename from resources/lang/da/admin/manufacturers/message.php rename to resources/lang/da-DK/admin/manufacturers/message.php diff --git a/resources/lang/da/admin/manufacturers/table.php b/resources/lang/da-DK/admin/manufacturers/table.php similarity index 100% rename from resources/lang/da/admin/manufacturers/table.php rename to resources/lang/da-DK/admin/manufacturers/table.php diff --git a/resources/lang/da/admin/models/general.php b/resources/lang/da-DK/admin/models/general.php similarity index 100% rename from resources/lang/da/admin/models/general.php rename to resources/lang/da-DK/admin/models/general.php diff --git a/resources/lang/da/admin/models/message.php b/resources/lang/da-DK/admin/models/message.php similarity index 100% rename from resources/lang/da/admin/models/message.php rename to resources/lang/da-DK/admin/models/message.php diff --git a/resources/lang/da/admin/models/table.php b/resources/lang/da-DK/admin/models/table.php similarity index 100% rename from resources/lang/da/admin/models/table.php rename to resources/lang/da-DK/admin/models/table.php diff --git a/resources/lang/da/admin/reports/general.php b/resources/lang/da-DK/admin/reports/general.php similarity index 100% rename from resources/lang/da/admin/reports/general.php rename to resources/lang/da-DK/admin/reports/general.php diff --git a/resources/lang/da/admin/reports/message.php b/resources/lang/da-DK/admin/reports/message.php similarity index 100% rename from resources/lang/da/admin/reports/message.php rename to resources/lang/da-DK/admin/reports/message.php diff --git a/resources/lang/da/admin/settings/general.php b/resources/lang/da-DK/admin/settings/general.php similarity index 98% rename from resources/lang/da/admin/settings/general.php rename to resources/lang/da-DK/admin/settings/general.php index 094c5b4895..fd5fa638de 100644 --- a/resources/lang/da/admin/settings/general.php +++ b/resources/lang/da-DK/admin/settings/general.php @@ -9,8 +9,9 @@ return [ 'ad_append_domain_help' => 'Brugeren er ikke forpligtet til at skrive "username@domain.local", de kan bare skrive "brugernavn".', 'admin_cc_email' => 'CC email', 'admin_cc_email_help' => 'Hvis du vil sende en kopi af checkin/checkout emails som er sendt til brugere til en ekstra email konto, så tilføj den her. Ellers efterlad feltet tomt.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Dette er en Active Directory-server', - 'alerts' => 'Alerts', + 'alerts' => 'Advarsler', 'alert_title' => 'Update Notification Settings', 'alert_email' => 'Send advarsler til', 'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated', @@ -125,7 +126,7 @@ return [ 'login' => 'Login Attempts', 'login_attempt' => 'Login Attempt', 'login_ip' => 'IP Address', - 'login_success' => 'Success?', + 'login_success' => 'Succes?', 'login_user_agent' => 'User Agent', 'login_help' => 'List of attempted logins', 'login_note' => 'Login Note', @@ -181,7 +182,7 @@ return [ 'saml_idp_metadata_help' => 'Du kan angive IdP metadata ved hjælp af en URL eller XML-fil.', 'saml_attr_mapping_username' => 'Attribute Mapping - Brugernavn', 'saml_attr_mapping_username_help' => 'NavnID vil blive brugt hvis attributmapping er uspecificeret eller ugyldig.', - 'saml_forcelogin_label' => 'SAML Force Login', + 'saml_forcelogin_label' => 'SAML gennemtving Login', 'saml_forcelogin' => 'Gør SAML til det primære login', 'saml_forcelogin_help' => 'Du kan bruge \'/login?nosaml\' for at komme til den normale loginside.', 'saml_slo_label' => 'SAML Single log af', @@ -316,10 +317,10 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Ryd slettet poster', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Medarbejdernummer', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Titel', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D stregkode type', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/da/admin/settings/message.php b/resources/lang/da-DK/admin/settings/message.php similarity index 100% rename from resources/lang/da/admin/settings/message.php rename to resources/lang/da-DK/admin/settings/message.php diff --git a/resources/lang/da/admin/settings/table.php b/resources/lang/da-DK/admin/settings/table.php similarity index 100% rename from resources/lang/da/admin/settings/table.php rename to resources/lang/da-DK/admin/settings/table.php diff --git a/resources/lang/da/admin/statuslabels/message.php b/resources/lang/da-DK/admin/statuslabels/message.php similarity index 96% rename from resources/lang/da/admin/statuslabels/message.php rename to resources/lang/da-DK/admin/statuslabels/message.php index f20e581b27..04175040ac 100644 --- a/resources/lang/da/admin/statuslabels/message.php +++ b/resources/lang/da-DK/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Statuslabel eksisterer ikke.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Dette statusmærke er i øjeblikket forbundet med mindst én aktiv og kan ikke slettes. Opdater dine aktiver for ikke længere at henvise til denne status, og prøv igen.', 'create' => [ diff --git a/resources/lang/da/admin/statuslabels/table.php b/resources/lang/da-DK/admin/statuslabels/table.php similarity index 100% rename from resources/lang/da/admin/statuslabels/table.php rename to resources/lang/da-DK/admin/statuslabels/table.php diff --git a/resources/lang/da/admin/suppliers/message.php b/resources/lang/da-DK/admin/suppliers/message.php similarity index 100% rename from resources/lang/da/admin/suppliers/message.php rename to resources/lang/da-DK/admin/suppliers/message.php diff --git a/resources/lang/da/admin/suppliers/table.php b/resources/lang/da-DK/admin/suppliers/table.php similarity index 100% rename from resources/lang/da/admin/suppliers/table.php rename to resources/lang/da-DK/admin/suppliers/table.php diff --git a/resources/lang/da/admin/users/general.php b/resources/lang/da-DK/admin/users/general.php similarity index 97% rename from resources/lang/da/admin/users/general.php rename to resources/lang/da-DK/admin/users/general.php index 636c35bfc6..a718bb4987 100644 --- a/resources/lang/da/admin/users/general.php +++ b/resources/lang/da-DK/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Se bruger :navn', 'usercsv' => 'CSV-fil', 'two_factor_admin_optin_help' => 'Dine nuværende administratorindstillinger tillader selektiv håndhævelse af tofaktors godkendelse.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA Device Enrolled', + 'two_factor_active' => '2FA aktiv ', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/da/admin/users/message.php b/resources/lang/da-DK/admin/users/message.php similarity index 98% rename from resources/lang/da/admin/users/message.php rename to resources/lang/da-DK/admin/users/message.php index 060c3473b7..ca6acd433a 100644 --- a/resources/lang/da/admin/users/message.php +++ b/resources/lang/da-DK/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Du har afvist dette aktiv.', 'bulk_manager_warn' => 'Dine brugere er blevet opdateret, men din administratorindgang blev ikke gemt, fordi den valgte leder også var på brugerlisten, der skulle redigeres, og brugerne er måske ikke deres egen administrator. Vælg venligst dine brugere igen, undtagen manager.', 'user_exists' => 'Bruger eksistere allerede!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Bruger eksisterer ikke.', 'user_login_required' => 'Login-feltet er påkrævet', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Adgangskoden er påkrævet.', diff --git a/resources/lang/da/admin/users/table.php b/resources/lang/da-DK/admin/users/table.php similarity index 95% rename from resources/lang/da/admin/users/table.php rename to resources/lang/da-DK/admin/users/table.php index 0da068bd79..6861480e97 100644 --- a/resources/lang/da/admin/users/table.php +++ b/resources/lang/da-DK/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Administrerede placeringer', 'name' => 'Navn', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Noter', 'password_confirm' => 'Bekræft adgangskode', 'password' => 'Adgangskode', diff --git a/resources/lang/da/auth.php b/resources/lang/da-DK/auth.php similarity index 100% rename from resources/lang/da/auth.php rename to resources/lang/da-DK/auth.php diff --git a/resources/lang/da/auth/general.php b/resources/lang/da-DK/auth/general.php similarity index 100% rename from resources/lang/da/auth/general.php rename to resources/lang/da-DK/auth/general.php diff --git a/resources/lang/da/auth/message.php b/resources/lang/da-DK/auth/message.php similarity index 100% rename from resources/lang/da/auth/message.php rename to resources/lang/da-DK/auth/message.php diff --git a/resources/lang/da/button.php b/resources/lang/da-DK/button.php similarity index 100% rename from resources/lang/da/button.php rename to resources/lang/da-DK/button.php diff --git a/resources/lang/da/general.php b/resources/lang/da-DK/general.php similarity index 96% rename from resources/lang/da/general.php rename to resources/lang/da-DK/general.php index 4b01f34c87..666f688f1e 100644 --- a/resources/lang/da/general.php +++ b/resources/lang/da-DK/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Tilladte filtyper er jpg, png, gif, og svg. Maximalt tilladte upload størrelse er :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Importér', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importerer', 'importing_help' => 'Du kan importere assets, tilbehør, licenser, komponenter, forbrugsvarer og brugere via CSV-fil.

CSV skal være kommasepareret og formateret med overskrifter, der matcher dem i sample CSV\'er i dokumentationen.', 'import-history' => 'Importhistorik', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Leverandør', 'suppliers' => 'Leverandører', 'sure_to_delete' => 'Er du sikker på, at du vil slette', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Er du sikker på at du vil slette :item?', 'delete_what' => 'Delete :item', 'submit' => 'Indsend', 'target' => 'Mål', @@ -371,15 +372,15 @@ return [ 'consumables_count' => 'Antal forbrugsvarer', 'components_count' => 'Antal komponenter', 'licenses_count' => 'Antal licenser', - 'notification_error' => 'Error', + 'notification_error' => 'Fejl', 'notification_error_hint' => 'Tjek venligst nedenstående formular for fejl', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => 'Succes', + 'notification_warning' => 'Advarsel', + 'notification_info' => 'Information', 'asset_information' => 'Aktivoplysninger', - 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'model_name' => 'Modelnavn', + 'asset_name' => 'Aktivnavn', 'consumable_information' => 'Forbrugsvareoplysninger:', 'consumable_name' => 'Forbrugsvarenavn:', 'accessory_information' => 'Tilbehøroplysninger:', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':emnenavn', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% komplet', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'rediger', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/da/help.php b/resources/lang/da-DK/help.php similarity index 100% rename from resources/lang/da/help.php rename to resources/lang/da-DK/help.php diff --git a/resources/lang/da/localizations.php b/resources/lang/da-DK/localizations.php similarity index 99% rename from resources/lang/da/localizations.php rename to resources/lang/da-DK/localizations.php index d0e2e4f51f..929f0900b2 100644 --- a/resources/lang/da/localizations.php +++ b/resources/lang/da-DK/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irsk', 'it'=> 'Italiensk', 'ja'=> 'Japansk', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Koreansk', 'lv'=>'Lettisk', 'lt'=> 'Litauisk', diff --git a/resources/lang/da/mail.php b/resources/lang/da-DK/mail.php similarity index 100% rename from resources/lang/da/mail.php rename to resources/lang/da-DK/mail.php diff --git a/resources/lang/da/pagination.php b/resources/lang/da-DK/pagination.php similarity index 100% rename from resources/lang/da/pagination.php rename to resources/lang/da-DK/pagination.php diff --git a/resources/lang/da/passwords.php b/resources/lang/da-DK/passwords.php similarity index 100% rename from resources/lang/da/passwords.php rename to resources/lang/da-DK/passwords.php diff --git a/resources/lang/da/reminders.php b/resources/lang/da-DK/reminders.php similarity index 100% rename from resources/lang/da/reminders.php rename to resources/lang/da-DK/reminders.php diff --git a/resources/lang/da/table.php b/resources/lang/da-DK/table.php similarity index 100% rename from resources/lang/da/table.php rename to resources/lang/da-DK/table.php diff --git a/resources/lang/da/validation.php b/resources/lang/da-DK/validation.php similarity index 99% rename from resources/lang/da/validation.php rename to resources/lang/da-DK/validation.php index b0f783b510..b63ed4d7c5 100644 --- a/resources/lang/da/validation.php +++ b/resources/lang/da-DK/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute skal være unik.', 'non_circular' => ':attribute må ikke oprette en cirkulær reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Adgangskoden må ikke være det samme som brugernavnet.', 'letters' => 'Adgangskoden skal indeholde mindst ét bogstav.', 'numbers' => 'Adgangskoden skal indeholde mindst ét tal.', diff --git a/resources/lang/de/account/general.php b/resources/lang/de-DE/account/general.php similarity index 100% rename from resources/lang/de/account/general.php rename to resources/lang/de-DE/account/general.php diff --git a/resources/lang/de/admin/accessories/general.php b/resources/lang/de-DE/admin/accessories/general.php similarity index 100% rename from resources/lang/de/admin/accessories/general.php rename to resources/lang/de-DE/admin/accessories/general.php diff --git a/resources/lang/de/admin/accessories/message.php b/resources/lang/de-DE/admin/accessories/message.php similarity index 100% rename from resources/lang/de/admin/accessories/message.php rename to resources/lang/de-DE/admin/accessories/message.php diff --git a/resources/lang/de-i/admin/accessories/table.php b/resources/lang/de-DE/admin/accessories/table.php similarity index 100% rename from resources/lang/de-i/admin/accessories/table.php rename to resources/lang/de-DE/admin/accessories/table.php diff --git a/resources/lang/de/admin/asset_maintenances/form.php b/resources/lang/de-DE/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/de/admin/asset_maintenances/form.php rename to resources/lang/de-DE/admin/asset_maintenances/form.php diff --git a/resources/lang/de/admin/asset_maintenances/general.php b/resources/lang/de-DE/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/de/admin/asset_maintenances/general.php rename to resources/lang/de-DE/admin/asset_maintenances/general.php diff --git a/resources/lang/de/admin/asset_maintenances/message.php b/resources/lang/de-DE/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/de/admin/asset_maintenances/message.php rename to resources/lang/de-DE/admin/asset_maintenances/message.php diff --git a/resources/lang/de-i/admin/asset_maintenances/table.php b/resources/lang/de-DE/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/de-i/admin/asset_maintenances/table.php rename to resources/lang/de-DE/admin/asset_maintenances/table.php diff --git a/resources/lang/de/admin/categories/general.php b/resources/lang/de-DE/admin/categories/general.php similarity index 56% rename from resources/lang/de/admin/categories/general.php rename to resources/lang/de-DE/admin/categories/general.php index 4d0bbe2f15..7e9873ac98 100644 --- a/resources/lang/de/admin/categories/general.php +++ b/resources/lang/de-DE/admin/categories/general.php @@ -2,24 +2,24 @@ return array( 'asset_categories' => 'Asset-Kategorien', - 'category_name' => 'Kategoriename', + 'category_name' => 'Kategorie Name', 'checkin_email' => 'Beim Checkin/Checkout eine E-Mail an den Benutzer senden.', - 'checkin_email_notification' => 'Dieser Nutzer erhält beim Checkin / Checkout eine E-Mail.', + 'checkin_email_notification' => 'Dieser Benutzer erhält beim Checkin / Checkout eine E-Mail.', 'clone' => 'Kategorie duplizieren', 'create' => 'Kategorie erstellen', 'edit' => 'Kategorie bearbeiten', 'email_will_be_sent_due_to_global_eula' => 'Eine E-Mail wird an den Benutzer gesendet, da die globale EULA verwendet wird.', 'email_will_be_sent_due_to_category_eula' => 'Eine E-Mail wird an den Benutzer gesendet, da eine EULA für diese Kategorie festgelegt ist.', 'eula_text' => 'Kategorie EULA', - 'eula_text_help' => 'Dieses Feld erlaubt Ihnen die EULA für bestimmte Asset Typen anzupassen. Wenn Sie nur eine EULA für alle Assets haben, aktivieren Sie die Checkbox unterhalb um die Standard-EULA zu verwenden.', + 'eula_text_help' => 'Dieses Feld erlaubt Ihnen die EULA Ihren Bedürfnissen nach Asset Typ anzupassen.Wenn Sie nur eine EULA für alle Assets haben, aktivieren Sie die Checkbox unterhalb um die Standard EULA zu verwenden.', 'name' => 'Kategoriename', - 'require_acceptance' => 'Benutzer müssen die Annahme von Assets dieser Kategorie bestätigen.', + 'require_acceptance' => 'Benutzer müssen bei Assets in dieser Kategorie Ihre Zustimmung bestätigen.', 'required_acceptance' => 'Der Benutzer erhält eine E-Mail zur Bestätigung der Annahme des Gegenstands.', 'required_eula' => 'Dieser Benutzer erhält eine Kopie der EULA via Email', - 'no_default_eula' => 'Keine Standard-EULA definiert. Bitte fügen Sie eine in den Einstellungen hinzu.', + 'no_default_eula' => 'Keine Standard EULA gefunden. Bitte fügen Sie eine in den Einstellungen hinzu.', 'update' => 'Kategorie aktualisieren', - 'use_default_eula' => 'Die Standard EULA stattdessen verwenden.', - 'use_default_eula_disabled' => 'Die Standard-EULA verwenden. Es wurde keine Standard-EULA definiert. Bitte fügen Sie eine in den Einstellungen hinzu.', - 'use_default_eula_column' => 'Standard EULA verwenden', + 'use_default_eula' => 'Die Standard EULA statt dessen verwenden.', + 'use_default_eula_disabled' => 'Die Standard EULA verwenden.Es wurde keine Standard EULA definiert.Bitte fügen Sie in den Einstellungen eine hinzu.', + 'use_default_eula_column' => 'Standard-EULA verwenden', ); diff --git a/resources/lang/de/admin/categories/message.php b/resources/lang/de-DE/admin/categories/message.php similarity index 89% rename from resources/lang/de/admin/categories/message.php rename to resources/lang/de-DE/admin/categories/message.php index 73ba25c373..6a11ebbcbd 100644 --- a/resources/lang/de/admin/categories/message.php +++ b/resources/lang/de-DE/admin/categories/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Diese Kategorie existiert nicht.', - 'assoc_models' => 'Diese Kategorie kann nicht gelöscht werden da sie bereits einem Modell zugewiesen ist. Bitte entfernen Sie diese Kategorie von Ihren Modellen und versuchen Sie es erneut. ', + 'assoc_models' => 'Diese Kategorie kann nicht gelöscht werden, da sie bereits einem Modell zugewiesen ist. Bitte entfernen Sie diese Kategorie von Ihren Modellen und versuchen Sie es erneut. ', 'assoc_items' => 'Diese Kategorie kann nicht gelöscht werden da sie bereits mit einem :asset_type verbunden ist. Bitte trennen Sie diese Kategorie von Ihrem :asset_type und versuchen Sie es erneut. ', 'create' => array( diff --git a/resources/lang/de/admin/categories/table.php b/resources/lang/de-DE/admin/categories/table.php similarity index 81% rename from resources/lang/de/admin/categories/table.php rename to resources/lang/de-DE/admin/categories/table.php index 5adea5eab2..eb8653291b 100644 --- a/resources/lang/de/admin/categories/table.php +++ b/resources/lang/de-DE/admin/categories/table.php @@ -3,7 +3,7 @@ return array( 'eula_text' => 'EULA', 'id' => 'ID', - 'parent' => 'Übergeordneten', + 'parent' => 'Übergeordnet', 'require_acceptance' => 'Zustimmung', 'title' => 'Name der Asset-Kategorie', diff --git a/resources/lang/de/admin/companies/general.php b/resources/lang/de-DE/admin/companies/general.php similarity index 51% rename from resources/lang/de/admin/companies/general.php rename to resources/lang/de-DE/admin/companies/general.php index ad64cefe03..24aa916028 100644 --- a/resources/lang/de/admin/companies/general.php +++ b/resources/lang/de-DE/admin/companies/general.php @@ -3,5 +3,5 @@ return [ 'select_company' => 'Firma auswählen', 'about_companies' => 'Über Unternehmen', - 'about_companies_description' => ' Unternehmen können als ein einfaches Informationsfeld verwendet werden, oder um die Sichtbarkeit und Verfügbarkeit von Vermögenswerten auf Benutzer eines bestimmten Unternehmens zu beschränken. Hierfür muss die Mehrmandanten-Unterstützung für Firmen in den Admin-Einstellungen aktiviert werden.', + 'about_companies_description' => ' Unternehmen können als ein einfaches Informationsfeld verwendet werden, oder um die Sichtbarkeit und Verfügbarkeit von Assets auf Benutzer eines bestimmten Unternehmens zu beschränken. Hierfür muss die Mehrmandanten-Unterstützung für Firmen in den Admin-Einstellungen aktiviert werden.', ]; diff --git a/resources/lang/de/admin/companies/message.php b/resources/lang/de-DE/admin/companies/message.php similarity index 59% rename from resources/lang/de/admin/companies/message.php rename to resources/lang/de-DE/admin/companies/message.php index 1d8bb656bb..e1221df9bf 100644 --- a/resources/lang/de/admin/companies/message.php +++ b/resources/lang/de-DE/admin/companies/message.php @@ -3,14 +3,14 @@ return [ 'does_not_exist' => 'Firma existiert nicht.', 'deleted' => 'Gelöschte Firma', - 'assoc_users' => 'Diese Firma ist mit mindestens einem Modell verknüpft und kann nicht gelöscht werden. Bitte ändere die Modelle um die Verknüpfung zu lösen. ', + 'assoc_users' => 'Diese Firma ist mit mindestens einem Modell verknüpft und kann nicht gelöscht werden. Bitte ändern Sie die Modelle um die Verknüpfung zu lösen, und versuchen Sie es erneut. ', 'create' => [ - 'error' => 'Firma wurde nicht erstellt. Bitte versuchen Sie es erneut.', + 'error' => 'Firma wurde nicht erstellt, bitte versuchen Sie es noch einmal.', 'success' => 'Firma wurde erfolgreich angelegt.', ], 'update' => [ - 'error' => 'Firma wurde nicht geändert, bitte versuchen Sie es erneut', - 'success' => 'Firma erfolgreich geändert.', + 'error' => 'Firma wurde nicht aktualisiert, bitte versuchen Sie es erneut', + 'success' => 'Firma erfolgreich aktualisiert.', ], 'delete' => [ 'confirm' => 'Sind Sie sich sicher, dass Sie diese Firma löschen wollen?', diff --git a/resources/lang/de-i/admin/companies/table.php b/resources/lang/de-DE/admin/companies/table.php similarity index 100% rename from resources/lang/de-i/admin/companies/table.php rename to resources/lang/de-DE/admin/companies/table.php diff --git a/resources/lang/de/admin/components/general.php b/resources/lang/de-DE/admin/components/general.php similarity index 85% rename from resources/lang/de/admin/components/general.php rename to resources/lang/de-DE/admin/components/general.php index dffffb2805..ca4d62f6e1 100644 --- a/resources/lang/de/admin/components/general.php +++ b/resources/lang/de-DE/admin/components/general.php @@ -2,13 +2,13 @@ return array( 'component_name' => 'Komponentenname', - 'checkin' => 'Komponente zurücknehmen', + 'checkin' => 'Komponente einchecken', 'checkout' => 'Komponente herausgeben', 'cost' => 'Einkaufspreis', 'create' => 'Komponente erstellen', 'edit' => 'Komponente bearbeiten', 'date' => 'Kaufdatum', - 'order' => 'Artikelnummer', + 'order' => 'Auftragsnummer', 'remaining' => 'Verbleibend', 'total' => 'Gesamt', 'update' => 'Komponente aktualisieren', diff --git a/resources/lang/de/admin/components/message.php b/resources/lang/de-DE/admin/components/message.php similarity index 70% rename from resources/lang/de/admin/components/message.php rename to resources/lang/de-DE/admin/components/message.php index e65d336fa3..e7c93558e8 100644 --- a/resources/lang/de/admin/components/message.php +++ b/resources/lang/de-DE/admin/components/message.php @@ -5,17 +5,17 @@ return array( 'does_not_exist' => 'Komponente existiert nicht.', 'create' => array( - 'error' => 'Komponente wurde nicht erstellt. Bitte versuchen Sie es erneut.', + 'error' => 'Komponente wurde nicht erstellt, bitte versuche es noch einmal.', 'success' => 'Komponente wurde erfolgreich erstellt.' ), 'update' => array( - 'error' => 'Komponente wurde nicht geändert. Bitte versuchen Sie es erneut', + 'error' => 'Komponente wurde nicht geändert, bitte versuche es noch einmal', 'success' => 'Komponente erfolgreich geändert.' ), 'delete' => array( - 'confirm' => 'Sind Sie sicher, dass Sie diese Komponente löschen möchten?', + 'confirm' => 'Sind Sie sich sicher das sie diese Komponente löschen wollen?', 'error' => 'Beim Löschen der Komponente ist ein Fehler aufgetreten. Bitte probieren Sie es noch einmal.', 'success' => 'Die Komponente wurde erfolgreich gelöscht.' ), @@ -28,8 +28,8 @@ return array( ), 'checkin' => array( - 'error' => 'Komponente konnte nicht zurückgenommen werden. Bitte versuchen Sie es erneut', - 'success' => 'Komponente wurde erfolgreich zurückgenommen.', + 'error' => 'Komponente konnte nicht eingebucht werden. Bitte versuchen Sie es erneut', + 'success' => 'Komponente wurde erfolgreich eingebucht.', 'user_does_not_exist' => 'Dieser Benutzer existiert nicht. Bitte versuchen Sie es erneut.' ) diff --git a/resources/lang/de-i/admin/components/table.php b/resources/lang/de-DE/admin/components/table.php similarity index 100% rename from resources/lang/de-i/admin/components/table.php rename to resources/lang/de-DE/admin/components/table.php diff --git a/resources/lang/de/admin/consumables/general.php b/resources/lang/de-DE/admin/consumables/general.php similarity index 78% rename from resources/lang/de/admin/consumables/general.php rename to resources/lang/de-DE/admin/consumables/general.php index ce5fc13d38..5e13c1c97c 100644 --- a/resources/lang/de/admin/consumables/general.php +++ b/resources/lang/de-DE/admin/consumables/general.php @@ -1,11 +1,11 @@ 'Verbrauchsmaterial an Benutzer herausgeben', + 'checkout' => 'Verbrauchsmaterial an Benutzer ausgeben', 'consumable_name' => 'Name des Verbrauchsmaterials', 'create' => 'Verbrauchsmaterial erstellen', 'item_no' => 'Artikel Nr.', 'remaining' => 'Verbleibend', 'total' => 'Gesamt', - 'update' => 'Verbrauchsmaterial aktualisieren', + 'update' => 'Verbrauchsmaterial bearbeiten', ); diff --git a/resources/lang/de/admin/consumables/message.php b/resources/lang/de-DE/admin/consumables/message.php similarity index 100% rename from resources/lang/de/admin/consumables/message.php rename to resources/lang/de-DE/admin/consumables/message.php diff --git a/resources/lang/de-i/admin/consumables/table.php b/resources/lang/de-DE/admin/consumables/table.php similarity index 100% rename from resources/lang/de-i/admin/consumables/table.php rename to resources/lang/de-DE/admin/consumables/table.php diff --git a/resources/lang/de/admin/custom_fields/general.php b/resources/lang/de-DE/admin/custom_fields/general.php similarity index 86% rename from resources/lang/de/admin/custom_fields/general.php rename to resources/lang/de-DE/admin/custom_fields/general.php index 76db756370..a2937a1160 100644 --- a/resources/lang/de/admin/custom_fields/general.php +++ b/resources/lang/de-DE/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Neues benutzerdefiniertes Feld', 'create_field_title' => 'Neues benutzerdefiniertes Feld erstellen', 'value_encrypted' => 'Der Wert dieses Feldes ist in der Datenbank verschlüsselt. Nur Benutzer mit Administratorrechten können den entschlüsselten Wert anzeigen', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Feld miteinbeziehen bei Herausgabe-Emails an die Benutzer? Verschlüsselte Felder können nicht miteinbezogen werden', 'show_in_email_short' => 'In E-Mails mit einbeziehen.', 'help_text' => 'Hilfetext', 'help_text_description' => 'Dies ist ein optionaler Text, der unter den Formularelementen erscheint, während eine Datei bearbeitet wird, um Kontext für das Feld bereitzustellen.', @@ -52,10 +52,10 @@ return [ 'display_in_user_view_table' => 'Für Benutzer sichtbar', 'auto_add_to_fieldsets' => 'Automatisch zu jedem neuen Feldsatz hinzufügen', 'add_to_preexisting_fieldsets' => 'Zu allen existierenden Feldsätzen hinzufügen', - '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' => 'Standardmäßig in Listenansichten anzeigen. Berechtigte Benutzer können weiterhin über die Spaltenauswahl ein-/ausblenden', 'show_in_listview_short' => 'In Listen anzeigen', - '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.', + 'show_in_requestable_list_short' => 'In anforderbarer Asset-Liste anzeigen', + 'show_in_requestable_list' => 'Wert in der anforderbaren Asset-Liste anzeigen. Verschlüsselte Felder werden nicht angezeigt', + 'encrypted_options' => 'Dieses Feld ist verschlüsselt, so dass einige Anzeigeoptionen nicht verfügbar sind.', ]; diff --git a/resources/lang/de/admin/custom_fields/message.php b/resources/lang/de-DE/admin/custom_fields/message.php similarity index 100% rename from resources/lang/de/admin/custom_fields/message.php rename to resources/lang/de-DE/admin/custom_fields/message.php diff --git a/resources/lang/de/admin/departments/message.php b/resources/lang/de-DE/admin/departments/message.php similarity index 100% rename from resources/lang/de/admin/departments/message.php rename to resources/lang/de-DE/admin/departments/message.php diff --git a/resources/lang/de-i/admin/departments/table.php b/resources/lang/de-DE/admin/departments/table.php similarity index 100% rename from resources/lang/de-i/admin/departments/table.php rename to resources/lang/de-DE/admin/departments/table.php diff --git a/resources/lang/de/admin/depreciations/general.php b/resources/lang/de-DE/admin/depreciations/general.php similarity index 100% rename from resources/lang/de/admin/depreciations/general.php rename to resources/lang/de-DE/admin/depreciations/general.php diff --git a/resources/lang/de/admin/depreciations/message.php b/resources/lang/de-DE/admin/depreciations/message.php similarity index 100% rename from resources/lang/de/admin/depreciations/message.php rename to resources/lang/de-DE/admin/depreciations/message.php diff --git a/resources/lang/de-i/admin/depreciations/table.php b/resources/lang/de-DE/admin/depreciations/table.php similarity index 100% rename from resources/lang/de-i/admin/depreciations/table.php rename to resources/lang/de-DE/admin/depreciations/table.php diff --git a/resources/lang/de/admin/groups/message.php b/resources/lang/de-DE/admin/groups/message.php similarity index 100% rename from resources/lang/de/admin/groups/message.php rename to resources/lang/de-DE/admin/groups/message.php diff --git a/resources/lang/de-i/admin/groups/table.php b/resources/lang/de-DE/admin/groups/table.php similarity index 100% rename from resources/lang/de-i/admin/groups/table.php rename to resources/lang/de-DE/admin/groups/table.php diff --git a/resources/lang/de-i/admin/groups/titles.php b/resources/lang/de-DE/admin/groups/titles.php similarity index 100% rename from resources/lang/de-i/admin/groups/titles.php rename to resources/lang/de-DE/admin/groups/titles.php diff --git a/resources/lang/de/admin/hardware/form.php b/resources/lang/de-DE/admin/hardware/form.php similarity index 89% rename from resources/lang/de/admin/hardware/form.php rename to resources/lang/de-DE/admin/hardware/form.php index 714523e00b..5f93dd4182 100644 --- a/resources/lang/de/admin/hardware/form.php +++ b/resources/lang/de-DE/admin/hardware/form.php @@ -10,9 +10,9 @@ return [ 'bulk_update' => 'Massenaktualisierung von Assets', 'bulk_update_help' => 'Diese Eingabemaske erlaubt Ihnen die Aktualisierung von mehreren Assets zugleich. Füllen Sie die Felder aus welche Sie ändern möchten. Alle leeren Felder bleiben unverändert. ', 'bulk_update_warn' => 'Sie sind dabei, die Eigenschaften eines einzelnen Assets zu bearbeiten. |Sie sind dabei, die Eigenschaften von :asset_count Assets zu bearbeiten.', - 'bulk_update_with_custom_field' => 'Note the assets are :asset_model_count different types of models.', - 'bulk_update_model_prefix' => 'On Models', - 'bulk_update_custom_field_unique' => 'This is a unique field and can not be bulk edited.', + 'bulk_update_with_custom_field' => 'Beachten Sie, dass die Assets :asset_model_count verschiedene Arten von Modellen sind.', + 'bulk_update_model_prefix' => 'Auf Modellen', + 'bulk_update_custom_field_unique' => 'Dies ist ein einzigartiges Feld und kann nicht in Bulk bearbeitet werden.', 'checkedout_to' => 'Herausgegeben an', 'checkout_date' => 'Herausgabedatum', 'checkin_date' => 'Rücknahmedatum', @@ -49,7 +49,7 @@ return [ 'asset_location' => 'Standort des Assets aktualisieren', 'asset_location_update_default_current' => 'Standardort und aktuellen Standort aktualisieren', 'asset_location_update_default' => 'Nur den Standardort aktualisieren', - 'asset_location_update_actual' => 'Update only actual location', + 'asset_location_update_actual' => 'Nur aktuellen Standort aktualisieren', 'asset_not_deployable' => 'Dieses Asset ist nicht verfügbar und kann nicht herausgegeben werden.', 'asset_deployable' => 'Dieses Asset ist verfügbar und kann herausgegeben werden.', 'processing_spinner' => 'Verarbeitung... (Dies kann bei großen Dateien etwas Zeit in Anspruch nehmen)', diff --git a/resources/lang/de/admin/hardware/general.php b/resources/lang/de-DE/admin/hardware/general.php similarity index 100% rename from resources/lang/de/admin/hardware/general.php rename to resources/lang/de-DE/admin/hardware/general.php diff --git a/resources/lang/de/admin/hardware/message.php b/resources/lang/de-DE/admin/hardware/message.php similarity index 95% rename from resources/lang/de/admin/hardware/message.php rename to resources/lang/de-DE/admin/hardware/message.php index f688f59731..b4f925f8ec 100644 --- a/resources/lang/de/admin/hardware/message.php +++ b/resources/lang/de-DE/admin/hardware/message.php @@ -11,7 +11,7 @@ return [ 'create' => [ 'error' => 'Asset wurde nicht erstellt. Bitte versuchen Sie es erneut. :(', 'success' => 'Asset wurde erfolgreich erstellt. :)', - 'success_linked' => 'Asset with tag :tag was created successfully. Click here to view.', + 'success_linked' => 'Asset mit Tag :tag wurde erfolgreich erstellt. Klicken Sie hier, um anzuzeigen.', ], 'update' => [ @@ -52,7 +52,7 @@ return [ 'success' => 'Ihre Datei wurde importiert', 'file_delete_success' => 'Die Datei wurde erfolgreich gelöscht', 'file_delete_error' => 'Die Datei konnte nicht gelöscht werden', - 'file_missing' => 'The file selected is missing', + 'file_missing' => 'Die ausgewählte Datei fehlt', 'header_row_has_malformed_characters' => 'Ein oder mehrere Attribute in der Kopfzeile enthalten fehlerhafte UTF-8 Zeichen', 'content_row_has_malformed_characters' => 'Ein oder mehrere Attribute in der ersten Zeile des Inhalts enthalten fehlerhafte UTF-8-Zeichen', ], diff --git a/resources/lang/de/admin/hardware/table.php b/resources/lang/de-DE/admin/hardware/table.php similarity index 94% rename from resources/lang/de/admin/hardware/table.php rename to resources/lang/de-DE/admin/hardware/table.php index e6ceb4f8be..b794aa7e43 100644 --- a/resources/lang/de/admin/hardware/table.php +++ b/resources/lang/de-DE/admin/hardware/table.php @@ -14,7 +14,7 @@ return [ 'dl_csv' => 'CSV Herunterladen', 'eol' => 'EOL', 'id' => 'ID', - 'last_checkin_date' => 'Last Checkin Date', + 'last_checkin_date' => 'Letztes Rücknahmedatum', 'location' => 'Standort', 'purchase_cost' => 'Kosten', 'purchase_date' => 'Kaufdatum', diff --git a/resources/lang/de/admin/kits/general.php b/resources/lang/de-DE/admin/kits/general.php similarity index 100% rename from resources/lang/de/admin/kits/general.php rename to resources/lang/de-DE/admin/kits/general.php diff --git a/resources/lang/de-i/admin/labels/message.php b/resources/lang/de-DE/admin/labels/message.php similarity index 100% rename from resources/lang/de-i/admin/labels/message.php rename to resources/lang/de-DE/admin/labels/message.php diff --git a/resources/lang/de-i/admin/labels/table.php b/resources/lang/de-DE/admin/labels/table.php similarity index 100% rename from resources/lang/de-i/admin/labels/table.php rename to resources/lang/de-DE/admin/labels/table.php diff --git a/resources/lang/de/admin/licenses/form.php b/resources/lang/de-DE/admin/licenses/form.php similarity index 100% rename from resources/lang/de/admin/licenses/form.php rename to resources/lang/de-DE/admin/licenses/form.php diff --git a/resources/lang/de/admin/licenses/general.php b/resources/lang/de-DE/admin/licenses/general.php similarity index 100% rename from resources/lang/de/admin/licenses/general.php rename to resources/lang/de-DE/admin/licenses/general.php diff --git a/resources/lang/de/admin/licenses/message.php b/resources/lang/de-DE/admin/licenses/message.php similarity index 94% rename from resources/lang/de/admin/licenses/message.php rename to resources/lang/de-DE/admin/licenses/message.php index 032e78d2a7..695b664010 100644 --- a/resources/lang/de/admin/licenses/message.php +++ b/resources/lang/de-DE/admin/licenses/message.php @@ -9,7 +9,7 @@ return array( 'assoc_users' => 'Diese Lizenz ist derzeit mindestens einem Benutzer zugeordnet und kann nicht gelöscht werden. Bitte nehmen Sie die Lizenz zurück und versuchen Sie anschließend erneut diese zu löschen. ', 'select_asset_or_person' => 'Sie müssen ein Asset oder einen Benutzer auswählen, aber nicht beides.', 'not_found' => 'Lizenz nicht gefunden', - 'seats_available' => ':seat_count seats available', + 'seats_available' => ':seat_count Plätze verfügbar', 'create' => array( @@ -43,7 +43,7 @@ return array( 'checkout' => array( 'error' => 'Lizenz wurde nicht herausgegeben, bitte versuchen Sie es erneut.', 'success' => 'Lizenz wurde erfolgreich herausgegeben', - 'not_enough_seats' => 'Not enough license seats available for checkout', + 'not_enough_seats' => 'Nicht genügend Lizenz-Sitze zur Herausgabe verfügbar', ), 'checkin' => array( diff --git a/resources/lang/de/admin/licenses/table.php b/resources/lang/de-DE/admin/licenses/table.php similarity index 100% rename from resources/lang/de/admin/licenses/table.php rename to resources/lang/de-DE/admin/licenses/table.php diff --git a/resources/lang/de-DE/admin/locations/message.php b/resources/lang/de-DE/admin/locations/message.php new file mode 100644 index 0000000000..dc1b589f8e --- /dev/null +++ b/resources/lang/de-DE/admin/locations/message.php @@ -0,0 +1,29 @@ + 'Standort nicht verfügbar.', + 'assoc_users' => 'Dieser Standort ist aktuell mindestens einem Benutzer zugewiesen und kann nicht gelöscht werden. Bitte entfernen Sie die Standortzuweisung bei den jeweiligen Benutzern und versuchen Sie es erneut. ', + 'assoc_assets' => 'Dieser Standort ist aktuell mindestens einem Gegenstand zugewiesen und kann nicht gelöscht werden. Bitte entfernen Sie die Standortzuweisung bei den jeweiligen Gegenständen und versuchen Sie es erneut diesen Standort zu entfernen. ', + 'assoc_child_loc' => 'Dieser Ort ist aktuell mindestens einem anderen Ort übergeordnet und kann nicht gelöscht werden. Bitte Orte aktualisieren, so dass dieser Standort nicht mehr verknüpft ist und erneut versuchen. ', + 'assigned_assets' => 'Zugeordnete Assets', + 'current_location' => 'Aktueller Standort', + + + 'create' => array( + 'error' => 'Standort wurde nicht erstellt, bitte versuchen Sie es erneut.', + 'success' => 'Standort erfolgreich erstellt.' + ), + + 'update' => array( + 'error' => 'Standort wurde nicht aktualisiert, bitte erneut versuchen', + 'success' => 'Standort erfolgreich aktualisiert.' + ), + + 'delete' => array( + 'confirm' => 'Möchten Sie diesen Standort wirklich entfernen?', + 'error' => 'Es gab einen Fehler beim Löschen des Standorts. Bitte erneut versuchen.', + 'success' => 'Der Standort wurde erfolgreich gelöscht.' + ) + +); diff --git a/resources/lang/de/admin/locations/table.php b/resources/lang/de-DE/admin/locations/table.php similarity index 81% rename from resources/lang/de/admin/locations/table.php rename to resources/lang/de-DE/admin/locations/table.php index d7e16e4b1f..c4271c570f 100644 --- a/resources/lang/de/admin/locations/table.php +++ b/resources/lang/de-DE/admin/locations/table.php @@ -3,19 +3,19 @@ return [ 'about_locations_title' => 'Über Standorte', 'about_locations' => 'Standorte werden verwendet, um Standortinformationen für Benutzer, Assets und andere Elemente zu verfolgen', - 'assets_rtd' => 'Assets', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. - 'assets_checkedout' => 'Zugewiesene Assets', + 'assets_rtd' => 'Gegenstände', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. + 'assets_checkedout' => 'Zugewiesene Gegenstände', 'id' => 'ID', - 'city' => 'Stadt', + 'city' => 'Ort', 'state' => 'Bundesland', 'country' => 'Land', 'create' => 'Standort erstellen', 'update' => 'Standort aktualisieren', 'print_assigned' => 'Zugewiesene drucken', - 'print_all_assigned' => 'Alles zugewiesene drucken', + 'print_all_assigned' => 'Alles Zugewiesene drucken', 'name' => 'Standortname', 'address' => 'Adresse', - 'address2' => 'Address Line 2', + 'address2' => 'Adresszeile 2', 'zip' => 'Postleitzahl', 'locations' => 'Standorte', 'parent' => 'Übergeordneter Standort', @@ -24,7 +24,7 @@ return [ 'user_name' => 'Benutzername', 'department' => 'Abteilung', 'location' => 'Standort', - 'asset_tag' => 'Asset-Tag', + 'asset_tag' => 'Asset Tag', 'asset_name' => 'Name', 'asset_category' => 'Kategorie', 'asset_manufacturer' => 'Hersteller', diff --git a/resources/lang/de/admin/manufacturers/message.php b/resources/lang/de-DE/admin/manufacturers/message.php similarity index 79% rename from resources/lang/de/admin/manufacturers/message.php rename to resources/lang/de-DE/admin/manufacturers/message.php index 3bbacee7ed..cd070cf0e7 100644 --- a/resources/lang/de/admin/manufacturers/message.php +++ b/resources/lang/de-DE/admin/manufacturers/message.php @@ -2,7 +2,7 @@ return array( - 'support_url_help' => 'Variables {LOCALE}, {SERIAL}, {MODEL_NUMBER}, and {MODEL_NAME} may be used in your URL to have those values auto-populate when viewing assets - for example https://support.apple.com/{LOCALE}/{SERIAL}.', + 'support_url_help' => 'Variablen {LOCALE}, {SERIAL}, {MODEL_NUMBER}, und {MODEL_NAME} kann in Ihrer URL verwendet werden, um diese Werte automatisch zu füllen, wenn Sie Assets anzeigen - zum Beispiel https://support. pple.com/{LOCALE}/{SERIAL}.', 'does_not_exist' => 'Hersteller existiert nicht.', 'assoc_users' => 'Dieser Hersteller ist bereits mit einem Model verknüpft und kann nicht gelöscht werden. Bitte trennen sie Ihre Modelle von diesem Hersteller und versuchen Sie es Erneut.', diff --git a/resources/lang/de/admin/manufacturers/table.php b/resources/lang/de-DE/admin/manufacturers/table.php similarity index 100% rename from resources/lang/de/admin/manufacturers/table.php rename to resources/lang/de-DE/admin/manufacturers/table.php diff --git a/resources/lang/de/admin/models/general.php b/resources/lang/de-DE/admin/models/general.php similarity index 100% rename from resources/lang/de/admin/models/general.php rename to resources/lang/de-DE/admin/models/general.php diff --git a/resources/lang/de/admin/models/message.php b/resources/lang/de-DE/admin/models/message.php similarity index 67% rename from resources/lang/de/admin/models/message.php rename to resources/lang/de-DE/admin/models/message.php index a7e24dd000..92bbc77b36 100644 --- a/resources/lang/de/admin/models/message.php +++ b/resources/lang/de-DE/admin/models/message.php @@ -2,11 +2,11 @@ return array( - 'deleted' => 'Deleted asset model', + 'deleted' => 'Gelöschtes Asset-Modell', 'does_not_exist' => 'Modell existiert nicht.', 'no_association' => 'WARNUNG! Das Asset Modell für dieses Element ist ungültig oder fehlt!', 'no_association_fix' => 'Dies wird Dinge auf seltsame und schreckliche Weise zerstören. Bearbeite dieses Asset jetzt, um ihm ein Modell zuzuordnen.', - 'assoc_users' => 'Dieses Modell ist zur Zeit mit einem oder mehreren Assets verknüpft und kann nicht gelöscht werden. Bitte lösche die Assets und versuche dann erneut das Modell zu löschen. ', + 'assoc_users' => 'Dieses Modell ist zurzeit mit einem oder mehreren Assets verknüpft und kann nicht gelöscht werden. Bitte lösche die Assets und versuche dann erneut das Modell zu löschen. ', 'create' => array( @@ -21,20 +21,20 @@ return array( ), 'delete' => array( - 'confirm' => 'Sind Sie sicher, dass Sie dieses Asset-Modell löschen möchten?', - 'error' => 'Beim Löschen des Modell ist ein Fehler aufgetreten. Bitte probieren Sie es noch einmal.', + 'confirm' => 'Sind Sie sicher, dass Sie dieses Asset Modell löschen möchten?', + 'error' => 'Beim Löschen des Modells ist ein Fehler aufgetreten. Bitte probieren Sie es noch einmal.', 'success' => 'Das Modell wurde erfolgreich gelöscht.' ), 'restore' => array( 'error' => 'Das Modell konnte nicht Wiederhergestellt werden, bitte versuchen Sie es erneut', - 'success' => 'Das Modell wurde erfolgreich Wiederhergestellt.' + 'success' => 'Das Modell wurde erfolgreich wiederhergestellt.' ), 'bulkedit' => array( - 'error' => 'Es wurden keine Felder ausgewählt, somit wurde auch nichts aktualisiert.', + 'error' => 'Es wurden keine Felder geändert, daher wurde nichts aktualisiert.', 'success' => 'Modell erfolgreich aktualisiert. |:model_count Modelle erfolgreich aktualisiert.', - 'warn' => 'Du bist dabei, die Eigenschaften des folgenden Modells zu aktualisieren: |Du bist dabei, die Eigenschaften der folgenden :model_count Modelle zu bearbeiten:', + 'warn' => 'Sie sind dabei, die Eigenschaften des folgenden Modells zu aktualisieren: |Sie sind dabei, die Eigenschaften der folgenden :model_count Modelle zu bearbeiten:', ), diff --git a/resources/lang/de-DE/admin/models/table.php b/resources/lang/de-DE/admin/models/table.php new file mode 100644 index 0000000000..63dbc88e3a --- /dev/null +++ b/resources/lang/de-DE/admin/models/table.php @@ -0,0 +1,17 @@ + 'Asset-Modell erstellen', + 'created_at' => 'Erstellt am', + 'eol' => 'EOL', + 'modelnumber' => 'Modellnummer', + 'name' => 'Gegenstands Modellname', + 'numassets' => 'Gegenstände', + 'title' => 'Gegenstands Modelle', + 'update' => 'Gegenstands Modell aktualisieren', + 'view' => 'Gegenstands Modell ansehen', + 'update' => 'Gegenstands Modell aktualisieren', + 'clone' => 'Modell duplizieren', + 'edit' => 'Modell bearbeiten', +); diff --git a/resources/lang/de/admin/reports/general.php b/resources/lang/de-DE/admin/reports/general.php similarity index 100% rename from resources/lang/de/admin/reports/general.php rename to resources/lang/de-DE/admin/reports/general.php diff --git a/resources/lang/de/admin/reports/message.php b/resources/lang/de-DE/admin/reports/message.php similarity index 100% rename from resources/lang/de/admin/reports/message.php rename to resources/lang/de-DE/admin/reports/message.php diff --git a/resources/lang/de/admin/settings/general.php b/resources/lang/de-DE/admin/settings/general.php similarity index 98% rename from resources/lang/de/admin/settings/general.php rename to resources/lang/de-DE/admin/settings/general.php index 54f0689dfc..81bec40ac8 100644 --- a/resources/lang/de/admin/settings/general.php +++ b/resources/lang/de-DE/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Benutzer muss nicht "username@domain.local" eingeben, "username" ist ausreichend.', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'Wenn Sie eine Kopie der Rücknahme- / Herausgabe-E-Mails, die an Benutzer gehen auch an zusätzliche E-Mail-Empfänger versenden möchten, geben Sie sie hier ein. Ansonsten lassen Sie dieses Feld leer.', + 'admin_settings' => 'Admin-Einstellungen', 'is_ad' => 'Dies ist ein Active Directory Server', 'alerts' => 'Alarme', 'alert_title' => 'Benachrichtigungseinstellungen ändern', @@ -150,7 +151,7 @@ return [ 'php' => 'PHP Version', 'php_info' => 'PHP Info', 'php_overview' => 'PHP', - 'php_overview_keywords' => 'phpinfo, System, Info', + 'php_overview_keywords' => 'php Info, System, Info', 'php_overview_help' => 'PHP-Systeminfo', 'php_gd_info' => 'Um QR-Codes anzeigen zu können muss php-gd installiert sein, siehe Installationshinweise.', 'php_gd_warning' => 'PHP Image Processing and GD Plugin ist NICHT installiert.', @@ -356,10 +357,10 @@ return [ 'google_login' => 'Google Workspace Anmeldeeinstellungen', 'enable_google_login' => 'Anmelden mit Google Workspace für Benutzer aktivieren', 'enable_google_login_help' => 'Benutzer werden nicht automatisch bereitgestellt. Sie müssen ein bestehendes Konto hier UND in Google Workspace haben, und Ihr Benutzername muss mit der E-Mail-Adresse von Google Workspace übereinstimmen. ', - 'mail_reply_to' => 'Mail Reply-To Address', - 'mail_from' => 'Mail From Address', - 'database_driver' => 'Database Driver', - 'bs_table_storage' => 'Table Storage', - 'timezone' => 'Timezone', + 'mail_reply_to' => 'E-Mail Antwort-An Adresse', + 'mail_from' => 'E-Mail Absenderadresse', + 'database_driver' => 'Datenbanktreiber', + 'bs_table_storage' => 'Tabellen Speicher', + 'timezone' => 'Zeitzone', ]; diff --git a/resources/lang/de/admin/settings/message.php b/resources/lang/de-DE/admin/settings/message.php similarity index 91% rename from resources/lang/de/admin/settings/message.php rename to resources/lang/de-DE/admin/settings/message.php index 48e49065f7..c5130f0b44 100644 --- a/resources/lang/de/admin/settings/message.php +++ b/resources/lang/de-DE/admin/settings/message.php @@ -35,12 +35,12 @@ return [ ], 'webhook' => [ 'sending' => ':app Testnachricht wird gesendet...', - 'success' => 'Your :webhook_name Integration works!', + 'success' => 'Ihre :webhook_name Integration funktioniert!', 'success_pt1' => 'Erfolgreich! Überprüfen Sie den ', 'success_pt2' => ' Kanal für Ihre Testnachricht und klicken Sie auf Speichern, um Ihre Einstellungen zu speichern.', '500' => '500 Server Error.', 'error' => 'Etwas ist schief gelaufen. :app antwortete mit: :error_message', - 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', + 'error_redirect' => 'FEHLER: 301/302 :endpoint gibt eine Umleitung zurück. Aus Sicherheitsgründen folgen wir keinen Umleitungen. Bitte verwenden Sie den aktuellen Endpunkt.', 'error_misc' => 'Etwas ist schiefgelaufen. :( ', ] ]; diff --git a/resources/lang/de-i/admin/settings/table.php b/resources/lang/de-DE/admin/settings/table.php similarity index 100% rename from resources/lang/de-i/admin/settings/table.php rename to resources/lang/de-DE/admin/settings/table.php diff --git a/resources/lang/de/admin/statuslabels/message.php b/resources/lang/de-DE/admin/statuslabels/message.php similarity index 97% rename from resources/lang/de/admin/statuslabels/message.php rename to resources/lang/de-DE/admin/statuslabels/message.php index a1e2934252..995b167a9e 100644 --- a/resources/lang/de/admin/statuslabels/message.php +++ b/resources/lang/de-DE/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Diese Statusbezeichnung existiert nicht.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Auf diese Statusbezeichnung bezieht sich momentan mindestens ein Asset und kann daher nicht gelöscht werden. Bitte sorgen Sie dafür, dass sich kein Asset mehr auf diese Statusbezeichnung bezieht und versuchen Sie es erneut. ', 'create' => [ diff --git a/resources/lang/de/admin/statuslabels/table.php b/resources/lang/de-DE/admin/statuslabels/table.php similarity index 100% rename from resources/lang/de/admin/statuslabels/table.php rename to resources/lang/de-DE/admin/statuslabels/table.php diff --git a/resources/lang/de/admin/suppliers/message.php b/resources/lang/de-DE/admin/suppliers/message.php similarity index 97% rename from resources/lang/de/admin/suppliers/message.php rename to resources/lang/de-DE/admin/suppliers/message.php index 2d326d4af2..aeadc09cdc 100644 --- a/resources/lang/de/admin/suppliers/message.php +++ b/resources/lang/de-DE/admin/suppliers/message.php @@ -2,7 +2,7 @@ return array( - 'deleted' => 'Deleted supplier', + 'deleted' => 'Gelöschter Lieferant', 'does_not_exist' => 'Lieferant ist nicht vorhanden.', diff --git a/resources/lang/de/admin/suppliers/table.php b/resources/lang/de-DE/admin/suppliers/table.php similarity index 100% rename from resources/lang/de/admin/suppliers/table.php rename to resources/lang/de-DE/admin/suppliers/table.php diff --git a/resources/lang/de/admin/users/general.php b/resources/lang/de-DE/admin/users/general.php similarity index 100% rename from resources/lang/de/admin/users/general.php rename to resources/lang/de-DE/admin/users/general.php diff --git a/resources/lang/de/admin/users/message.php b/resources/lang/de-DE/admin/users/message.php similarity index 95% rename from resources/lang/de/admin/users/message.php rename to resources/lang/de-DE/admin/users/message.php index 150cf3639b..f1ef456d86 100644 --- a/resources/lang/de/admin/users/message.php +++ b/resources/lang/de-DE/admin/users/message.php @@ -8,7 +8,7 @@ return array( 'user_exists' => 'Benutzer existiert bereits!', 'user_not_found' => 'Benutzer existiert nicht.', 'user_login_required' => 'Das Loginfeld ist erforderlich', - 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', + 'user_has_no_assets_assigned' => 'Derzeit sind keine Assets dem Benutzer zugewiesen.', 'user_password_required' => 'Das Passswortfeld ist erforderlich.', 'insufficient_permissions' => 'Unzureichende Berechtigungen.', 'user_deleted_warning' => 'Dieser Benutzer wurde gelöscht. Sie müssen ihn wiederherstellen, um ihn zu bearbeiten oder neue Assets zuzuweisen.', @@ -16,7 +16,7 @@ return array( 'password_resets_sent' => 'Den ausgewählten Benutzern, die aktiviert sind und eine gültige E-Mail-Adresse haben, wurde ein Link zum Zurücksetzen des Passworts gesendet.', 'password_reset_sent' => 'Der Link zum Zurücksetzen des Passworts wurde an :email gesendet!', 'user_has_no_email' => 'Dieser Benutzer hat keine E-Mail-Adresse in seinem Profil.', - 'log_record_not_found' => 'A matching log record for this user could not be found.', + 'log_record_not_found' => 'Ein passender Logeintrag für diesen Benutzer konnte nicht gefunden werden.', 'success' => array( diff --git a/resources/lang/de/admin/users/table.php b/resources/lang/de-DE/admin/users/table.php similarity index 86% rename from resources/lang/de/admin/users/table.php rename to resources/lang/de-DE/admin/users/table.php index 6b30ee6b15..786f5cfc36 100644 --- a/resources/lang/de/admin/users/table.php +++ b/resources/lang/de-DE/admin/users/table.php @@ -1,7 +1,7 @@ 'Active', + 'activated' => 'Aktiv', 'allow' => 'Erlauben', 'checkedout' => 'Assets', 'created_at' => 'Erstellt', @@ -12,8 +12,8 @@ return array( 'first_name' => 'Vorname', 'groupnotes' => 'Wählen Sie eine Gruppe aus, die dem Benutzer zugewiesen werden soll. Denken Sie daran, dass ein Benutzer die Berechtigungen der zugewiesenen Gruppe erhält. Benutzen Sie Strg+Klick (oder cmd+Klick bei MacOS), um Gruppen aus der Auswahl zu entfernen.', 'id' => 'Id', - 'inherit' => 'Vererben', - 'job' => 'Berufsbezeichnung', + 'inherit' => 'Erben', + 'job' => 'Job-Titel', 'last_login' => 'Letzte Anmeldung', 'last_name' => 'Familienname', 'location' => 'Ort', @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Verwaltete Standorte', 'name' => 'Name', + 'nogroup' => 'Es wurden noch keine Gruppen erstellt. Um eine hinzuzufügen, besuchen Sie: ', 'notes' => 'Notizen', 'password_confirm' => 'Kennwort bestätigen', 'password' => 'Passwort', @@ -29,7 +30,7 @@ return array( 'show_deleted' => 'Zeige gelöschte Benutzer', 'title' => 'Titel', 'to_restore_them' => 'zum Wiederherstellen.', - 'total_assets_cost' => "Total Assets Cost", + 'total_assets_cost' => "Gesamtkosten für Assets", 'updateuser' => 'Benutzer aktualisieren', 'username' => 'Benutzername', 'user_deleted_text' => 'Dieser Benutzer wurde als gelöscht markiert.', diff --git a/resources/lang/de/auth.php b/resources/lang/de-DE/auth.php similarity index 100% rename from resources/lang/de/auth.php rename to resources/lang/de-DE/auth.php diff --git a/resources/lang/de/auth/general.php b/resources/lang/de-DE/auth/general.php similarity index 100% rename from resources/lang/de/auth/general.php rename to resources/lang/de-DE/auth/general.php diff --git a/resources/lang/de/auth/message.php b/resources/lang/de-DE/auth/message.php similarity index 100% rename from resources/lang/de/auth/message.php rename to resources/lang/de-DE/auth/message.php diff --git a/resources/lang/de/button.php b/resources/lang/de-DE/button.php similarity index 100% rename from resources/lang/de/button.php rename to resources/lang/de-DE/button.php diff --git a/resources/lang/de/general.php b/resources/lang/de-DE/general.php similarity index 82% rename from resources/lang/de/general.php rename to resources/lang/de-DE/general.php index b0b572a1d0..d03ea45182 100644 --- a/resources/lang/de/general.php +++ b/resources/lang/de-DE/general.php @@ -5,43 +5,43 @@ return [ 'activated' => 'Aktiviert', 'accepted_date' => 'Datum akzeptiert', 'accessory' => 'Zubehör', - 'accessory_report' => 'Zubehör Bericht', + 'accessory_report' => 'Zubehör-Bericht', 'action' => 'Aktion', - 'activity_report' => 'Aktivitätsreport', + 'activity_report' => 'Aktivitätsbericht', 'address' => 'Adresse', 'admin' => 'Administrator', 'administrator' => 'Administrator', - 'add_seats' => 'Lizenzen hinzugefügt', + 'add_seats' => 'Plätze hinzugefügt', 'age' => "Alter", - 'all_assets' => 'Alle Assets', + 'all_assets' => 'Alle Gegenstände', 'all' => 'Alle', 'archived' => 'Archiviert', - 'asset_models' => 'Modellbezeichnungen', + 'asset_models' => 'Asset Modelle', 'asset_model' => 'Modell', 'asset' => 'Asset', - 'asset_report' => 'Bestandsbericht', - 'asset_tag' => 'Kennzeichnung', - 'asset_tags' => 'Inventarnummern', + 'asset_report' => 'Asset Bericht', + 'asset_tag' => 'Asset Tag', + 'asset_tags' => 'Asset Tags', 'assets_available' => 'Verfügbare Assets', 'accept_assets' => 'Assets :name akzeptieren', 'accept_assets_menu' => 'Assets akzeptieren', 'audit' => 'Prüfung', - 'audit_report' => 'Audit-Log', - 'assets' => 'Assets', - 'assets_audited' => 'Assets auditiert', - 'assets_checked_in_count' => 'Asset zurückgenommen', + 'audit_report' => 'Prüfungs-Log', + 'assets' => 'Anzahl', + 'assets_audited' => 'geprüfte Assets', + 'assets_checked_in_count' => 'Assets zurückgenommen', 'assets_checked_out_count' => 'Assets herausgegeben', 'asset_deleted_warning' => 'Dieses Asset wurde gelöscht. Sie müssen es wiederherstellen, bevor Sie es jemandem zuweisen können.', 'assigned_date' => 'Zuweisungsdatum', - 'assigned_to' => 'Herausgegeben an :name', - 'assignee' => 'Herausgegeben an', + 'assigned_to' => 'Zugewiesen an :name', + 'assignee' => 'Zugewiesen an', 'avatar_delete' => 'Avatar löschen', 'avatar_upload' => 'Avatar hochladen', 'back' => 'Zurück', 'bad_data' => 'Nichts gefunden. Vielleicht defekte Daten?', 'bulkaudit' => 'Massenprüfung', - 'bulkaudit_status' => 'Audit-Status', - 'bulk_checkout' => 'Massen-Herausgeben', + 'bulkaudit_status' => 'Prüfungs-Status', + 'bulk_checkout' => 'Massen-Herausgabe', 'bulk_edit' => 'Massenbearbeitung', 'bulk_delete' => 'Massenlöschung', 'bulk_actions' => 'Massenaktionen', @@ -72,9 +72,9 @@ return [ 'consumable' => 'Verbrauchsmaterial', 'consumables' => 'Verbrauchsmaterialien', 'country' => 'Land', - 'could_not_restore' => 'Error restoring :item_type: :error', - 'not_deleted' => 'The :item_type is not deleted so it cannot be restored', - 'create' => 'Hinzufügen', + 'could_not_restore' => 'Fehler beim Wiederherstellen von :item_type: :error', + 'not_deleted' => ':item_type wurde nicht gelöscht, kann daher nicht wiederhergestellt werden', + 'create' => 'Erstellen', 'created' => 'Eintrag erstellt', 'created_asset' => 'Asset angelegt', 'created_at' => 'Erstellt am', @@ -88,15 +88,15 @@ return [ 'custom_report' => 'Benutzerdefinierter Asset-Bericht', 'dashboard' => 'Dashboard', 'days' => 'Tage', - 'days_to_next_audit' => 'Tage bis zum nächsten Audit', + 'days_to_next_audit' => 'Tage bis zur nächsten Prüfung', 'date' => 'Datum', 'debug_warning' => 'Warnung!', - 'debug_warning_text' => 'Diese Anwendung läuft im Produktionsmodus mit debugging aktiviert. Dies kann sensible Daten verfügbar machen, wenn Ihre Anwendung öffentlich zugänglich ist. Deaktivieren Sie den Debug-Modus, indem Sie den APP_DEBUG-Wert in der .env Datei auf false setzen.', + 'debug_warning_text' => 'Diese Anwendung läuft im Produktionsmodus mit Debugging aktiviert. Dies kann sensible Daten verfügbar machen, wenn Ihre Anwendung öffentlich zugänglich ist. Deaktivieren Sie den Debug-Modus, indem Sie den APP_DEBUG-Wert in der .env Datei auf false setzen.', 'delete' => 'Löschen', 'delete_confirm' => 'Sind Sie sicher, dass Sie :item löschen möchten?', - 'delete_confirm_no_undo' => 'Möchtest du :item wirklich löschen? Dies kann nicht rückgängig gemacht werden.', + 'delete_confirm_no_undo' => 'Sind Sie sicher, dass Sie :item löschen möchten? Dies kann nicht rückgängig gemacht werden.', 'deleted' => 'Gelöscht', - 'delete_seats' => 'Gelöschte Lizenzen', + 'delete_seats' => 'Gelöschte Plätze', 'deletion_failed' => 'Löschen fehlgeschlagen', 'departments' => 'Abteilungen', 'department' => 'Abteilung', @@ -105,12 +105,12 @@ return [ 'depreciations' => 'Abschreibungen', 'depreciation_report' => 'Abschreibungsbericht', 'details' => 'Details', - 'download' => 'Download', + 'download' => 'Herunterladen', 'download_all' => 'Alle herunterladen', 'editprofile' => 'Profil bearbeiten', 'eol' => 'EOL', - 'email_domain' => 'E-Mail-Domain', - 'email_format' => 'E-Mail-Format', + 'email_domain' => 'E-Mail-Domäne', + 'email_format' => 'E-Mail Format', 'employee_number' => 'Mitarbeiternummer', 'email_domain_help' => 'Dies wird verwendet, um E-Mail-Adressen beim Importieren zu generieren', 'error' => 'Fehler', @@ -121,15 +121,15 @@ return [ 'firstname_lastname_format' => 'Vorname.Nachname (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'Vorname_Nachname (max_mustermann@beispiel.com)', 'lastnamefirstinitial_format' => 'Nachname & Initiale des Vornamens (musterm@beispiel.com)', - 'firstintial_dot_lastname_format' => 'Initial des Vornamen.Nachname (j.smith@example.com)', + 'firstintial_dot_lastname_format' => 'Initiale des Vornamen.Nachname (j.smith@example.com)', 'firstname_lastname_display' => 'Vorname Nachname (Jane Smith)', 'lastname_firstname_display' => 'Nachname Vorname (Smith Jane)', 'name_display_format' => 'Name Anzeigeformat', 'first' => 'Erste', 'firstnamelastname' => 'VornameNachname (ErikaMustermann@beispiel.de)', - 'lastname_firstinitial' => 'Nachname_Initial des Vornamens (mustermann_e@beispiel.de)', - 'firstinitial.lastname' => 'Initial des Vornamens.Nachname (e.mustermann@beispiel.de)', - 'firstnamelastinitial' => 'Vorname und Initial des Nachnamen (erika_m@beispiel.de)', + 'lastname_firstinitial' => 'Nachname_Initiale des Vornamens (mustermann_e@beispiel.de)', + 'firstinitial.lastname' => 'Initiale des Vornamens.Nachname (e.mustermann@beispiel.de)', + 'firstnamelastinitial' => 'Vorname und Initiale des Nachnamen (erika_m@beispiel.de)', 'first_name' => 'Vorname', 'first_name_format' => 'Vorname (jane@example.com)', 'files' => 'Dateien', @@ -139,25 +139,26 @@ return [ 'file_uploads' => 'Datei-Uploads', 'file_upload' => 'Datei-Upload', 'generate' => 'Generieren', - 'generate_labels' => 'Label generieren', + 'generate_labels' => 'Etikett generieren', 'github_markdown' => 'Dieses Feld akzeptiert Github Flavored markdown.', 'groups' => 'Gruppen', 'gravatar_email' => 'Gravatar E-Mail Adresse', 'gravatar_url' => 'Ändern Sie Ihren Avatar auf Gravatar.com.', - 'history' => 'Historie', + 'history' => 'Verlauf', 'history_for' => 'Verlauf für', - 'id' => 'Id', - 'image' => 'Abbildung', + 'id' => 'ID', + 'image' => 'Bild', 'image_delete' => 'Bild löschen', - 'include_deleted' => 'Gelöschte Assets einbeziehen', - 'image_upload' => 'Bild hinzufügen', - 'filetypes_accepted_help' => 'Akzeptierter Dateityp ist :types. Maximal zulässige Upload-Größe ist :size.|Akzeptierte Dateitypen sind :types. Maximal erlaubte Upload-Größe ist :size.', - 'filetypes_size_help' => 'Maximal erlaubte Upload-Größe ist :size.', - 'image_filetypes_help' => 'Akzeptierte Dateitypen sind jpg, png, gif und svg. Maximale Uploadgröße ist :size.', + 'include_deleted' => 'Gelöschte Gegenstände einbeziehen', + 'image_upload' => 'Bild hochladen', + 'filetypes_accepted_help' => 'Akzeptierter Dateityp ist :types. Maximal zulässige Hochlade-Größe ist :size.|Akzeptierte Dateitypen sind :types. Maximal erlaubte Hochlade-Größe ist :size.', + 'filetypes_size_help' => 'Maximal erlaubte Hochlade-Größe ist :size.', + 'image_filetypes_help' => 'Akzeptierte Dateitypen sind jpg, png, gif und svg. Maximale Hochladegröße ist :size.', 'unaccepted_image_type' => 'Diese Bilddatei ist nicht lesbar. Akzeptierte Dateitypen sind jpg, webp, png, gif und svg. Der MIME-Type dieser Datei ist: :mimetype.', 'import' => 'Importieren', + 'import_this_file' => 'Felder zuordnen und diese Datei bearbeiten', 'importing' => 'Wird importiert', - 'importing_help' => 'Sie können Assets, Zubehör, Lizenzen, Komponenten, Verbrauchsmaterialien und Benutzer mittels einer CSV-Datei importieren.

Die CSV-Datei sollte kommagetrennt sein und eine Kopfzeile enthalten, die mit den Beispiel-CSVs aus der Dokumentation übereinstimmen.', + 'importing_help' => 'Sie können Assets, Zubehör, Lizenzen, Komponenten, Verbrauchsmaterialien und Benutzer mittels CSV-Datei importieren.

Die CSV-Datei sollte kommagetrennt sein und eine Kopfzeile enthalten, die mit den Beispiel-CSVs aus der Dokumentation übereinstimmen.', 'import-history' => 'Import-Verlauf', 'asset_maintenance' => 'Asset Wartung', 'asset_maintenance_report' => 'Asset Wartungsbericht', @@ -165,21 +166,21 @@ return [ 'item' => 'Gegenstand', 'item_name' => 'Artikelname', 'import_file' => 'CSV-Datei importieren', - 'import_type' => 'CSV Typ', + 'import_type' => 'CSV-Import-Typ', 'insufficient_permissions' => 'Unzureichende Berechtigungen!', 'kits' => 'Vordefinierte Kits', 'language' => 'Sprache', 'last' => 'Letzte', 'last_login' => 'Letzte Anmeldung', - 'last_name' => 'Familienname', + 'last_name' => 'Nachname', 'license' => 'Lizenz', - 'license_report' => 'Lizenz Report', + 'license_report' => 'Lizenzbericht', 'licenses_available' => 'Verfügbare Lizenzen', 'licenses' => 'Lizenzen', 'list_all' => 'Alle auflisten', - 'loading' => 'Wird geladen, bitte warten...', + 'loading' => 'Wird geladen... Bitte warten....', 'lock_passwords' => 'Dieser Feldwert wird in einer Demo-Installation nicht gespeichert.', - 'feature_disabled' => 'Diese Funktion wurde für die Demo-Installation deaktiviert.', + 'feature_disabled' => 'Dieses Feature wurde für die Demo-Installation deaktiviert.', 'location' => 'Standort', 'locations' => 'Standorte', 'logo_size' => 'Quadratische Logos sehen am besten aus, mit Logo + Text. Die maximale Logo-Größe beträgt 50px Höhe x 500px Breite. ', @@ -198,57 +199,57 @@ return [ 'name' => 'Name', 'new_password' => 'Neues Passwort', 'next' => 'Nächste', - 'next_audit_date' => 'Nächstes Auditdatum', - 'last_audit' => 'Letztes Audit', + 'next_audit_date' => 'Nächstes Prüfungsdatum', + 'last_audit' => 'Letzte Prüfung', 'new' => 'Neu!', 'no_depreciation' => 'Nicht abschreiben', 'no_results' => 'Keine Treffer.', 'no' => 'Nein', 'notes' => 'Notizen', - 'order_number' => 'Auftragsnummer', - 'only_deleted' => 'Nur gelöschte Assets', + 'order_number' => 'Bestellnummer', + 'only_deleted' => 'Nur gelöschte Gegenstände', 'page_menu' => 'Zeige _MENU_ Einträge', 'pagination_info' => 'Zeige _START_ bis _END_ von _TOTAL_ Einträgen', 'pending' => 'Ausstehende', - 'people' => 'Personen', + 'people' => 'Benutzer', 'per_page' => 'Ergebnisse pro Seite', 'previous' => 'Vorherige', - 'processing' => 'In Arbeit', + 'processing' => 'Wird verarbeitet', 'profile' => 'Ihr Profil', 'purchase_cost' => 'Einkaufspreis', 'purchase_date' => 'Kaufdatum', 'qty' => 'Menge', - 'quantity' => 'Anzahl', + 'quantity' => 'Menge', 'quantity_minimum' => ':count Artikel sind unter oder fast unter der Mindestmenge', - 'quickscan_checkin' => 'Schnell Rücknahme', + 'quickscan_checkin' => 'Schnell-Rücknahme', 'quickscan_checkin_status' => 'Rückgabe Status', 'ready_to_deploy' => 'Bereit zum Herausgeben', - 'recent_activity' => 'Letzte Aktivität', - 'remaining' => 'Übrig', + 'recent_activity' => 'Neueste Aktivität', + 'remaining' => 'Verbleibend', 'remove_company' => 'Firmenzuordnung entfernen', 'reports' => 'Berichte', 'restored' => 'wiederhergestellt', 'restore' => 'Wiederherstellen', 'requestable_models' => 'Angeforderte Modelle', - 'requested' => 'Angefragt', - 'requested_date' => 'Datum der Anfrage', + 'requested' => 'Angefordert', + 'requested_date' => 'Angefordertes Datum', 'requested_assets' => 'Angeforderte Assets', 'requested_assets_menu' => 'Angeforderte Assets', 'request_canceled' => 'Anfrage abgebrochen', 'save' => 'Speichern', 'select_var' => ':thing auswählen... ', // this will eventually replace all of our other selects - 'select' => 'auswählen', + 'select' => 'Auswählen', 'select_all' => 'Alle markieren', 'search' => 'Suche', 'select_category' => 'Kategorie auswählen', 'select_department' => 'Abteilung auswählen', - 'select_depreciation' => 'Wähle einen Abschreibungstyp', + 'select_depreciation' => 'Wählen Sie einen Abschreibungstyp', 'select_location' => 'Wählen Sie einen Standort', 'select_manufacturer' => 'Wählen Sie einen Hersteller', 'select_model' => 'Wählen Sie ein Modell', 'select_supplier' => 'Wählen Sie einen Lieferanten', 'select_user' => 'Wählen Sie einen Benutzer', - 'select_date' => 'Wählen Sie ein Datum (JJJJ-MM-TT)', + 'select_date' => 'Wählen Sie ein Datum (JJJJ-MM-DD)', 'select_statuslabel' => 'Status auswählen', 'select_company' => 'Firma auswählen', 'select_asset' => 'Asset auswählen', @@ -256,12 +257,12 @@ return [ 'show_deleted' => 'Gelöschte anzeigen', 'show_current' => 'Aktuelles anzeigen', 'sign_in' => 'Anmelden', - 'signature' => 'Unterschrift', - 'signed_off_by' => 'Unterschrieben von', + 'signature' => 'Signatur', + 'signed_off_by' => 'Freigegeben von', 'skin' => 'Skin', 'webhook_msg_note' => 'Eine Benachrichtigung wird über den Webhook gesendet', 'webhook_test_msg' => 'Oh hey! Sieht so aus, als ob Ihre :app Integration mit Snipe-IT funktioniert!', - 'some_features_disabled' => 'Einige Funktionen sind für den DEMO-Modus deaktiviert.', + 'some_features_disabled' => 'DEMO-MODE: Einige Funktionen sind für diese Installation deaktiviert.', 'site_name' => 'Seitenname', 'state' => 'Bundesland', 'status_labels' => 'Statusbezeichnungen', @@ -269,12 +270,12 @@ return [ 'accept_eula' => 'Annahmeerklärung', 'supplier' => 'Lieferant', 'suppliers' => 'Lieferanten', - 'sure_to_delete' => 'Sind Sie sich sicher, dass Sie löschen möchten', + 'sure_to_delete' => 'Sind Sie sich sicher, dass Sie löschen möchten?', 'sure_to_delete_var' => 'Sind Sie sicher, dass Sie :item löschen möchten?', 'delete_what' => ':item löschen', 'submit' => 'Abschicken', 'target' => 'Ziel', - 'time_and_date_display' => 'Zeit- und Datumsanzeige', + 'time_and_date_display' => 'Zeit und Datum', 'total_assets' => 'Gesamte Assets', 'total_licenses' => 'Lizenzen insgesamt', 'total_accessories' => 'gesamtes Zubehör', @@ -294,26 +295,26 @@ return [ 'unaccepted_asset_report' => 'Nicht akzeptierte Assets', 'users' => 'Benutzer', 'viewall' => 'Alle anzeigen', - 'viewassets' => 'Zugeordnete Assets anzeigen', + 'viewassets' => 'Zugewiesene Assets anzeigen', 'viewassetsfor' => 'Assets von :name anzeigen', 'website' => 'Webseite', 'welcome' => 'Willkommen, :name', 'years' => 'Jahre', 'yes' => 'Ja', 'zip' => 'Postleitzahl', - 'noimage' => 'Kein Bild hochgeladen oder kein Bild gefunden.', + 'noimage' => 'Kein Bild hochgeladen oder Bild nicht gefunden.', 'file_does_not_exist' => 'Die angeforderte Datei existiert nicht.', 'file_upload_success' => 'Dateiupload erfolgreich!', 'no_files_uploaded' => 'Dateiupload erfolgreich!', 'token_expired' => 'Ihre Sitzung ist abgelaufen. Bitte versuchen Sie es erneut.', 'login_enabled' => 'Login aktiviert', - 'audit_due' => 'Audit fällig', - 'audit_overdue' => 'Audit überfällig', - 'accept' => 'Erhalt bestätigen: :asset', + 'audit_due' => 'Prüfung fällig', + 'audit_overdue' => 'Prüfung überfällig', + 'accept' => ':asset akzeptieren', 'i_accept' => 'Ich akzeptiere', 'i_decline' => 'Ich lehne ab', 'accept_decline' => 'Akzeptieren/Ablehnen', - 'sign_tos' => 'Unterzeichnen Sie unten, um den Nutzungsbedingungen zuzustimmen:', + 'sign_tos' => 'Unterschreiben Sie unten, um den Nutzungsbedingungen zuzustimmen:', 'clear_signature' => 'Unterschrift löschen', 'show_help' => 'Hilfe anzeigen', 'hide_help' => 'Hilfe ausblenden', @@ -355,8 +356,8 @@ return [ 'synchronize' => 'Synchronisieren', 'sync_results' => 'Status der Synchronisierung', 'license_serial' => 'Seriennummer/Produktschlüssel', - 'invalid_category' => 'Invalid or missing category', - 'invalid_item_category_single' => 'Invalid or missing :type category. Please update the category of this :type to include a valid category before checking out.', + 'invalid_category' => 'Ungültige oder fehlende Kategorie', + 'invalid_item_category_single' => 'Ungültige oder fehlende :type Kategorie. Bitte aktualisieren Sie die Kategorie dieses :type um eine gültige Kategorie vor der Herausgabe hinzuzufügen.', 'dashboard_info' => 'Dies ist Ihr Dashboard. Es gibt viele ähnliche, aber dieses ist Ihres.', '60_percent_warning' => '60% abgeschlossen (Warnung)', 'dashboard_empty' => 'Es sieht so aus, als hätten Sie noch nichts hinzugefügt, so dass wir nichts großartiges zum Anzeigen haben. Beginnen Sie jetzt mit dem Hinzufügen einiger Gegenstände, Zubehör, Verbrauchsmaterialien oder Lizenzen!', @@ -462,8 +463,8 @@ return [ 'serial_number' => 'Seriennummer', 'item_notes' => ':item Notizen', 'item_name_var' => ':item Name', - 'error_user_company' => 'Checkout target company and asset company do not match', - 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', + 'error_user_company' => 'Checkout Zielfirma und Asset-Gesellschaft stimmen nicht überein', + 'error_user_company_accept_view' => 'Ein Asset, das Ihnen zugewiesen wurde, gehört zu einem anderen Unternehmen, so dass Sie es nicht akzeptieren oder ablehnen können. Bitte wenden Sie sich an Ihren Manager', 'importer' => [ 'checked_out_to_fullname' => 'Herausgegeben an: Voller Name', 'checked_out_to_first_name' => 'Herausgegeben an: Vorname', @@ -488,8 +489,15 @@ return [ ], 'percent_complete' => '% vollständig', 'uploading' => 'Wird hochgeladen ... ', - 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', + 'upload_error' => 'Fehler beim Hochladen der Datei. Bitte überprüfen Sie, dass keine leeren Zeilen vorhanden sind und keine Spaltennamen dupliziert werden.', 'copy_to_clipboard' => 'In die Zwischenablage kopieren', 'copied' => 'Kopiert!', + 'status_compatibility' => 'Wenn Assets bereits zugewiesen sind, können sie nicht zu einem nicht einsetzbaren Statustyp geändert werden, und diese Änderung wird übersprungen.', + 'rtd_location_help' => 'Dies ist der Standort des Assets wenn es nicht ausgecheckt wird', + 'item_not_found' => ':item_type ID :id existiert nicht oder wurde gelöscht', + 'action_permission_denied' => 'Sie haben keine Berechtigung für :action :item_type ID :id', + 'action_permission_generic' => 'Sie haben keine Berechtigung für :action :item_type Id :id', + 'edit' => 'bearbeiten', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/de/help.php b/resources/lang/de-DE/help.php similarity index 96% rename from resources/lang/de/help.php rename to resources/lang/de-DE/help.php index f6ea93d27e..2dd85d5579 100644 --- a/resources/lang/de/help.php +++ b/resources/lang/de-DE/help.php @@ -31,5 +31,5 @@ return [ 'depreciations' => 'Sie können Asset-Abschreibungen einrichten, um Assets linear abzuschreiben.', - 'empty_file' => 'The importer detects that this file is empty.' + 'empty_file' => 'Der Importeur stellt fest, dass diese Datei leer ist.' ]; diff --git a/resources/lang/de/localizations.php b/resources/lang/de-DE/localizations.php similarity index 99% rename from resources/lang/de/localizations.php rename to resources/lang/de-DE/localizations.php index 48fe365aab..fc2ee0e0ff 100644 --- a/resources/lang/de/localizations.php +++ b/resources/lang/de-DE/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irisch', 'it'=> 'Italienisch', 'ja'=> 'Japanisch', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Koreanisch', 'lv'=>'Lettisch', 'lt'=> 'Litauisch', diff --git a/resources/lang/de/mail.php b/resources/lang/de-DE/mail.php similarity index 100% rename from resources/lang/de/mail.php rename to resources/lang/de-DE/mail.php diff --git a/resources/lang/de-i/pagination.php b/resources/lang/de-DE/pagination.php similarity index 100% rename from resources/lang/de-i/pagination.php rename to resources/lang/de-DE/pagination.php diff --git a/resources/lang/de/passwords.php b/resources/lang/de-DE/passwords.php similarity index 90% rename from resources/lang/de/passwords.php rename to resources/lang/de-DE/passwords.php index b0fef74335..69d7c58b50 100644 --- a/resources/lang/de/passwords.php +++ b/resources/lang/de-DE/passwords.php @@ -5,5 +5,5 @@ return [ 'user' => 'Wenn ein passender Benutzer mit einer gültigen E-Mail-Adresse in unserem System existiert, wurde eine E-Mail zur Wiederherstellung des Passworts gesendet.', 'token' => 'Dieser Token zum Zurücksetzen des Passworts ist ungültig oder abgelaufen oder entspricht nicht dem angegebenen Benutzernamen.', 'reset' => 'Ihr Passwort wurde zurückgesetzt!', - 'password_change' => 'Your password has been updated!', + 'password_change' => 'Ihr Passwort wurde aktualisiert!', ]; diff --git a/resources/lang/de/reminders.php b/resources/lang/de-DE/reminders.php similarity index 100% rename from resources/lang/de/reminders.php rename to resources/lang/de-DE/reminders.php diff --git a/resources/lang/de-i/table.php b/resources/lang/de-DE/table.php similarity index 100% rename from resources/lang/de-i/table.php rename to resources/lang/de-DE/table.php diff --git a/resources/lang/de/validation.php b/resources/lang/de-DE/validation.php similarity index 98% rename from resources/lang/de/validation.php rename to resources/lang/de-DE/validation.php index 0d21812dc2..557d88edfd 100644 --- a/resources/lang/de/validation.php +++ b/resources/lang/de-DE/validation.php @@ -90,14 +90,13 @@ return [ ], 'string' => 'Das Attribut muss eine Zeichenfolge sein.', 'timezone' => ':attribute muss eine gültige Zeitzone sein.', - 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', + 'two_column_unique_undeleted' => ':attribute muss in :table1 und :table2 einzigartig sein. ', 'unique' => ':attribute schon benutzt.', 'uploaded' => ':attribute konnte nicht hochgeladen werden.', 'url' => ':attribute Format ist ungültig.', 'unique_undeleted' => 'Die Variable :attribute muss eindeutig sein.', 'non_circular' => 'Das :attribute darf keinen Zirkelbezug ergeben.', 'not_array' => ':attribute Feld darf kein Array sein.', - 'unique_serial' => 'Die Variable :attribute müssen eindeutig sein.', 'disallow_same_pwd_as_user_fields' => 'Das Passwort muss sich vom Nutzernamen unterscheiden.', 'letters' => 'Das Passwort muss mindestens einen Buchstaben beinhalten.', 'numbers' => 'Das Passwort muss mindestens eine Zahl beinhalten.', diff --git a/resources/lang/de-i/account/general.php b/resources/lang/de-if/account/general.php similarity index 100% rename from resources/lang/de-i/account/general.php rename to resources/lang/de-if/account/general.php diff --git a/resources/lang/de-i/admin/accessories/general.php b/resources/lang/de-if/admin/accessories/general.php similarity index 100% rename from resources/lang/de-i/admin/accessories/general.php rename to resources/lang/de-if/admin/accessories/general.php diff --git a/resources/lang/de-i/admin/accessories/message.php b/resources/lang/de-if/admin/accessories/message.php similarity index 100% rename from resources/lang/de-i/admin/accessories/message.php rename to resources/lang/de-if/admin/accessories/message.php diff --git a/resources/lang/de/admin/accessories/table.php b/resources/lang/de-if/admin/accessories/table.php similarity index 100% rename from resources/lang/de/admin/accessories/table.php rename to resources/lang/de-if/admin/accessories/table.php diff --git a/resources/lang/de-i/admin/asset_maintenances/form.php b/resources/lang/de-if/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/de-i/admin/asset_maintenances/form.php rename to resources/lang/de-if/admin/asset_maintenances/form.php diff --git a/resources/lang/de-i/admin/asset_maintenances/general.php b/resources/lang/de-if/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/de-i/admin/asset_maintenances/general.php rename to resources/lang/de-if/admin/asset_maintenances/general.php diff --git a/resources/lang/de-i/admin/asset_maintenances/message.php b/resources/lang/de-if/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/de-i/admin/asset_maintenances/message.php rename to resources/lang/de-if/admin/asset_maintenances/message.php diff --git a/resources/lang/de/admin/asset_maintenances/table.php b/resources/lang/de-if/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/de/admin/asset_maintenances/table.php rename to resources/lang/de-if/admin/asset_maintenances/table.php diff --git a/resources/lang/de-i/admin/categories/general.php b/resources/lang/de-if/admin/categories/general.php similarity index 100% rename from resources/lang/de-i/admin/categories/general.php rename to resources/lang/de-if/admin/categories/general.php diff --git a/resources/lang/de-i/admin/categories/message.php b/resources/lang/de-if/admin/categories/message.php similarity index 100% rename from resources/lang/de-i/admin/categories/message.php rename to resources/lang/de-if/admin/categories/message.php diff --git a/resources/lang/de-i/admin/categories/table.php b/resources/lang/de-if/admin/categories/table.php similarity index 100% rename from resources/lang/de-i/admin/categories/table.php rename to resources/lang/de-if/admin/categories/table.php diff --git a/resources/lang/de-i/admin/companies/general.php b/resources/lang/de-if/admin/companies/general.php similarity index 100% rename from resources/lang/de-i/admin/companies/general.php rename to resources/lang/de-if/admin/companies/general.php diff --git a/resources/lang/de-i/admin/companies/message.php b/resources/lang/de-if/admin/companies/message.php similarity index 100% rename from resources/lang/de-i/admin/companies/message.php rename to resources/lang/de-if/admin/companies/message.php diff --git a/resources/lang/de/admin/companies/table.php b/resources/lang/de-if/admin/companies/table.php similarity index 80% rename from resources/lang/de/admin/companies/table.php rename to resources/lang/de-if/admin/companies/table.php index 34b116a5e5..170c72dc97 100644 --- a/resources/lang/de/admin/companies/table.php +++ b/resources/lang/de-if/admin/companies/table.php @@ -3,7 +3,7 @@ return array( 'companies' => 'Firmen', 'create' => 'Firma erstellen', 'title' => 'Firma', - 'update' => 'Firma bearbeiten', + 'update' => 'Firma aktualisieren', 'name' => 'Firmenname', 'id' => 'ID', ); diff --git a/resources/lang/de-i/admin/components/general.php b/resources/lang/de-if/admin/components/general.php similarity index 100% rename from resources/lang/de-i/admin/components/general.php rename to resources/lang/de-if/admin/components/general.php diff --git a/resources/lang/de-i/admin/components/message.php b/resources/lang/de-if/admin/components/message.php similarity index 100% rename from resources/lang/de-i/admin/components/message.php rename to resources/lang/de-if/admin/components/message.php diff --git a/resources/lang/de/admin/components/table.php b/resources/lang/de-if/admin/components/table.php similarity index 100% rename from resources/lang/de/admin/components/table.php rename to resources/lang/de-if/admin/components/table.php diff --git a/resources/lang/de-i/admin/consumables/general.php b/resources/lang/de-if/admin/consumables/general.php similarity index 100% rename from resources/lang/de-i/admin/consumables/general.php rename to resources/lang/de-if/admin/consumables/general.php diff --git a/resources/lang/de-i/admin/consumables/message.php b/resources/lang/de-if/admin/consumables/message.php similarity index 100% rename from resources/lang/de-i/admin/consumables/message.php rename to resources/lang/de-if/admin/consumables/message.php diff --git a/resources/lang/de/admin/consumables/table.php b/resources/lang/de-if/admin/consumables/table.php similarity index 100% rename from resources/lang/de/admin/consumables/table.php rename to resources/lang/de-if/admin/consumables/table.php diff --git a/resources/lang/de-i/admin/custom_fields/general.php b/resources/lang/de-if/admin/custom_fields/general.php similarity index 84% rename from resources/lang/de-i/admin/custom_fields/general.php rename to resources/lang/de-if/admin/custom_fields/general.php index c3a8d56319..940ef407bd 100644 --- a/resources/lang/de-i/admin/custom_fields/general.php +++ b/resources/lang/de-if/admin/custom_fields/general.php @@ -34,8 +34,8 @@ return [ 'create_field' => 'Neues benutzerdefiniertes Feld', 'create_field_title' => 'Neues benutzerdefiniertes Feld erstellen', 'value_encrypted' => 'Der Wert dieses Feldes ist in der Datenbank verschlüsselt. Nur Benutzer mit Administratorrechten können den entschlüsselten Wert anzeigen', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', - 'show_in_email_short' => 'In E-Mails mit einbeziehen.', + 'show_in_email' => 'Feld miteinbeziehen bei Herausgabe-Emails an die Benutzer? Verschlüsselte Felder können nicht miteinbezogen werden', + 'show_in_email_short' => 'In E-Mails einbeziehen.', 'help_text' => 'Hilfetext', 'help_text_description' => 'Dies ist ein optionaler Text, der unter den Formularelementen erscheint, während eine Datei bearbeitet wird, um Kontext für das Feld bereitzustellen.', 'about_custom_fields_title' => 'Über benutzerdefinierte Felder', @@ -52,10 +52,10 @@ return [ 'display_in_user_view_table' => 'Für Benutzer sichtbar', 'auto_add_to_fieldsets' => 'Automatisch zu jedem neuen Feldsatz hinzufügen', 'add_to_preexisting_fieldsets' => 'Zu allen existierenden Feldsätzen hinzufügen', - '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' => 'Standardmäßig in Listenansichten anzeigen. Berechtigte Benutzer können weiterhin über die Spaltenauswahl ein-/ausblenden', 'show_in_listview_short' => 'In Listen anzeigen', - '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.', + 'show_in_requestable_list_short' => 'In anforderbarer Asset-Liste anzeigen', + 'show_in_requestable_list' => 'Wert in der anforderbaren Asset-Liste anzeigen. Verschlüsselte Felder werden nicht angezeigt', + 'encrypted_options' => 'Dieses Feld ist verschlüsselt, so dass einige Display-Optionen nicht verfügbar sind.', ]; diff --git a/resources/lang/de-i/admin/custom_fields/message.php b/resources/lang/de-if/admin/custom_fields/message.php similarity index 100% rename from resources/lang/de-i/admin/custom_fields/message.php rename to resources/lang/de-if/admin/custom_fields/message.php diff --git a/resources/lang/de-i/admin/departments/message.php b/resources/lang/de-if/admin/departments/message.php similarity index 100% rename from resources/lang/de-i/admin/departments/message.php rename to resources/lang/de-if/admin/departments/message.php diff --git a/resources/lang/de/admin/departments/table.php b/resources/lang/de-if/admin/departments/table.php similarity index 100% rename from resources/lang/de/admin/departments/table.php rename to resources/lang/de-if/admin/departments/table.php diff --git a/resources/lang/de-i/admin/depreciations/general.php b/resources/lang/de-if/admin/depreciations/general.php similarity index 100% rename from resources/lang/de-i/admin/depreciations/general.php rename to resources/lang/de-if/admin/depreciations/general.php diff --git a/resources/lang/de-i/admin/depreciations/message.php b/resources/lang/de-if/admin/depreciations/message.php similarity index 100% rename from resources/lang/de-i/admin/depreciations/message.php rename to resources/lang/de-if/admin/depreciations/message.php diff --git a/resources/lang/de/admin/depreciations/table.php b/resources/lang/de-if/admin/depreciations/table.php similarity index 100% rename from resources/lang/de/admin/depreciations/table.php rename to resources/lang/de-if/admin/depreciations/table.php diff --git a/resources/lang/de-i/admin/groups/message.php b/resources/lang/de-if/admin/groups/message.php similarity index 100% rename from resources/lang/de-i/admin/groups/message.php rename to resources/lang/de-if/admin/groups/message.php diff --git a/resources/lang/de/admin/groups/table.php b/resources/lang/de-if/admin/groups/table.php similarity index 100% rename from resources/lang/de/admin/groups/table.php rename to resources/lang/de-if/admin/groups/table.php diff --git a/resources/lang/de/admin/groups/titles.php b/resources/lang/de-if/admin/groups/titles.php similarity index 100% rename from resources/lang/de/admin/groups/titles.php rename to resources/lang/de-if/admin/groups/titles.php diff --git a/resources/lang/de-i/admin/hardware/form.php b/resources/lang/de-if/admin/hardware/form.php similarity index 100% rename from resources/lang/de-i/admin/hardware/form.php rename to resources/lang/de-if/admin/hardware/form.php diff --git a/resources/lang/de-i/admin/hardware/general.php b/resources/lang/de-if/admin/hardware/general.php similarity index 100% rename from resources/lang/de-i/admin/hardware/general.php rename to resources/lang/de-if/admin/hardware/general.php diff --git a/resources/lang/de-i/admin/hardware/message.php b/resources/lang/de-if/admin/hardware/message.php similarity index 95% rename from resources/lang/de-i/admin/hardware/message.php rename to resources/lang/de-if/admin/hardware/message.php index 066493b11e..7bc5c5ac09 100644 --- a/resources/lang/de-i/admin/hardware/message.php +++ b/resources/lang/de-if/admin/hardware/message.php @@ -11,7 +11,7 @@ return [ 'create' => [ 'error' => 'Asset wurde nicht erstellt. Bitte versuche es erneut. :(', 'success' => 'Asset wurde erfolgreich erstellt. :)', - 'success_linked' => 'Asset with tag :tag was created successfully. Click here to view.', + 'success_linked' => 'Asset mit Tag :tag wurde erfolgreich erstellt. Klicke hier, um anzuzeigen.', ], 'update' => [ @@ -52,7 +52,7 @@ return [ 'success' => 'Deine Datei wurde importiert', 'file_delete_success' => 'Deine Datei wurde erfolgreich gelöscht', 'file_delete_error' => 'Die Datei konnte nicht gelöscht werden', - 'file_missing' => 'The file selected is missing', + 'file_missing' => 'Die ausgewählte Datei fehlt', 'header_row_has_malformed_characters' => 'Ein oder mehrere Attribute in der Kopfzeile enthalten fehlerhafte UTF-8 Zeichen', 'content_row_has_malformed_characters' => 'Ein oder mehrere Attribute in der ersten Zeile des Inhalts enthalten fehlerhafte UTF-8-Zeichen', ], diff --git a/resources/lang/de-i/admin/hardware/table.php b/resources/lang/de-if/admin/hardware/table.php similarity index 100% rename from resources/lang/de-i/admin/hardware/table.php rename to resources/lang/de-if/admin/hardware/table.php diff --git a/resources/lang/de-i/admin/kits/general.php b/resources/lang/de-if/admin/kits/general.php similarity index 100% rename from resources/lang/de-i/admin/kits/general.php rename to resources/lang/de-if/admin/kits/general.php diff --git a/resources/lang/de/admin/labels/message.php b/resources/lang/de-if/admin/labels/message.php similarity index 100% rename from resources/lang/de/admin/labels/message.php rename to resources/lang/de-if/admin/labels/message.php diff --git a/resources/lang/de/admin/labels/table.php b/resources/lang/de-if/admin/labels/table.php similarity index 100% rename from resources/lang/de/admin/labels/table.php rename to resources/lang/de-if/admin/labels/table.php diff --git a/resources/lang/de-i/admin/licenses/form.php b/resources/lang/de-if/admin/licenses/form.php similarity index 100% rename from resources/lang/de-i/admin/licenses/form.php rename to resources/lang/de-if/admin/licenses/form.php diff --git a/resources/lang/de-i/admin/licenses/general.php b/resources/lang/de-if/admin/licenses/general.php similarity index 100% rename from resources/lang/de-i/admin/licenses/general.php rename to resources/lang/de-if/admin/licenses/general.php diff --git a/resources/lang/de-i/admin/licenses/message.php b/resources/lang/de-if/admin/licenses/message.php similarity index 94% rename from resources/lang/de-i/admin/licenses/message.php rename to resources/lang/de-if/admin/licenses/message.php index 2485ba985f..3add4f025d 100644 --- a/resources/lang/de-i/admin/licenses/message.php +++ b/resources/lang/de-if/admin/licenses/message.php @@ -9,7 +9,7 @@ return array( 'assoc_users' => 'Diese Lizenz ist derzeit einem Benutzer zugeordnet und kann nicht gelöscht werden. Bitte nimm die Lizenz zurück und versuche anschließend erneut, diese zu löschen. ', 'select_asset_or_person' => 'Du musst ein Asset oder einen Benutzer auswählen, aber nicht beides.', 'not_found' => 'Lizenz nicht gefunden', - 'seats_available' => ':seat_count seats available', + 'seats_available' => ':seat_count Plätze verfügbar', 'create' => array( @@ -43,7 +43,7 @@ return array( 'checkout' => array( 'error' => 'Lizenz wurde nicht herausgegeben, bitte versuche es erneut.', 'success' => 'Lizenz wurde erfolgreich herausgegeben', - 'not_enough_seats' => 'Not enough license seats available for checkout', + 'not_enough_seats' => 'Nicht genügend Lizenz-Plätze zur Herausgabe verfügbar', ), 'checkin' => array( diff --git a/resources/lang/de-i/admin/licenses/table.php b/resources/lang/de-if/admin/licenses/table.php similarity index 100% rename from resources/lang/de-i/admin/licenses/table.php rename to resources/lang/de-if/admin/licenses/table.php diff --git a/resources/lang/de-i/admin/locations/message.php b/resources/lang/de-if/admin/locations/message.php similarity index 100% rename from resources/lang/de-i/admin/locations/message.php rename to resources/lang/de-if/admin/locations/message.php diff --git a/resources/lang/de-i/admin/locations/table.php b/resources/lang/de-if/admin/locations/table.php similarity index 100% rename from resources/lang/de-i/admin/locations/table.php rename to resources/lang/de-if/admin/locations/table.php diff --git a/resources/lang/de-i/admin/manufacturers/message.php b/resources/lang/de-if/admin/manufacturers/message.php similarity index 100% rename from resources/lang/de-i/admin/manufacturers/message.php rename to resources/lang/de-if/admin/manufacturers/message.php diff --git a/resources/lang/de-i/admin/manufacturers/table.php b/resources/lang/de-if/admin/manufacturers/table.php similarity index 100% rename from resources/lang/de-i/admin/manufacturers/table.php rename to resources/lang/de-if/admin/manufacturers/table.php diff --git a/resources/lang/de-i/admin/models/general.php b/resources/lang/de-if/admin/models/general.php similarity index 100% rename from resources/lang/de-i/admin/models/general.php rename to resources/lang/de-if/admin/models/general.php diff --git a/resources/lang/de-i/admin/models/message.php b/resources/lang/de-if/admin/models/message.php similarity index 100% rename from resources/lang/de-i/admin/models/message.php rename to resources/lang/de-if/admin/models/message.php diff --git a/resources/lang/de-i/admin/models/table.php b/resources/lang/de-if/admin/models/table.php similarity index 100% rename from resources/lang/de-i/admin/models/table.php rename to resources/lang/de-if/admin/models/table.php diff --git a/resources/lang/de-i/admin/reports/general.php b/resources/lang/de-if/admin/reports/general.php similarity index 100% rename from resources/lang/de-i/admin/reports/general.php rename to resources/lang/de-if/admin/reports/general.php diff --git a/resources/lang/de-i/admin/reports/message.php b/resources/lang/de-if/admin/reports/message.php similarity index 100% rename from resources/lang/de-i/admin/reports/message.php rename to resources/lang/de-if/admin/reports/message.php diff --git a/resources/lang/de-i/admin/settings/general.php b/resources/lang/de-if/admin/settings/general.php similarity index 99% rename from resources/lang/de-i/admin/settings/general.php rename to resources/lang/de-if/admin/settings/general.php index d7b58f6c0e..77532bf59c 100644 --- a/resources/lang/de-i/admin/settings/general.php +++ b/resources/lang/de-if/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Benutzer muss nicht "username@domain.local" eingeben, "username" ist ausreichend.', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'Wenn Du eine Kopie der Rücknahme-/Herausgabe-E-Mails, die an Benutzer gehen, auch an zusätzliche E-Mail-Empfänger versenden möchtest, gebe sie hier ein. Ansonsten lass dieses Feld blank.', + 'admin_settings' => 'Admin-Einstellungen', 'is_ad' => 'Dies ist ein Active Directory Server', 'alerts' => 'Alarme', 'alert_title' => 'Benachrichtigungseinstellungen ändern', @@ -356,10 +357,10 @@ return [ 'google_login' => 'Google Workspace Anmeldeeinstellungen', 'enable_google_login' => 'Anmelden mit Google Workspace für Benutzer aktivieren', 'enable_google_login_help' => 'Benutzer werden nicht automatisch bereitgestellt. Du musst ein bestehendes Konto hier UND in Google Workspace haben, und dein Benutzername muss mit der E-Mail-Adresse von Google Workspace übereinstimmen. ', - 'mail_reply_to' => 'Mail Reply-To Address', - 'mail_from' => 'Mail From Address', - 'database_driver' => 'Database Driver', - 'bs_table_storage' => 'Table Storage', - 'timezone' => 'Timezone', + 'mail_reply_to' => 'E-Mail Antwort-An Adresse', + 'mail_from' => 'E-Mail Absenderadresse', + 'database_driver' => 'Datenbanktreiber', + 'bs_table_storage' => 'Tabellen Speicher', + 'timezone' => 'Zeitzone', ]; diff --git a/resources/lang/de-i/admin/settings/message.php b/resources/lang/de-if/admin/settings/message.php similarity index 100% rename from resources/lang/de-i/admin/settings/message.php rename to resources/lang/de-if/admin/settings/message.php diff --git a/resources/lang/de/admin/settings/table.php b/resources/lang/de-if/admin/settings/table.php similarity index 100% rename from resources/lang/de/admin/settings/table.php rename to resources/lang/de-if/admin/settings/table.php diff --git a/resources/lang/de-i/admin/statuslabels/message.php b/resources/lang/de-if/admin/statuslabels/message.php similarity index 97% rename from resources/lang/de-i/admin/statuslabels/message.php rename to resources/lang/de-if/admin/statuslabels/message.php index 6d7e8246a7..9cac577460 100644 --- a/resources/lang/de-i/admin/statuslabels/message.php +++ b/resources/lang/de-if/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Diese Statusbezeichnung existiert nicht.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Auf diese Statusbezeichnung bezieht sich momentan mindestens ein Asset und kann daher nicht gelöscht werden. Bitte sorge dafür, dass sich kein Asset mehr auf diese Statusbezeichnung bezieht und versuche es erneut. ', 'create' => [ diff --git a/resources/lang/de-i/admin/statuslabels/table.php b/resources/lang/de-if/admin/statuslabels/table.php similarity index 100% rename from resources/lang/de-i/admin/statuslabels/table.php rename to resources/lang/de-if/admin/statuslabels/table.php diff --git a/resources/lang/de-i/admin/suppliers/message.php b/resources/lang/de-if/admin/suppliers/message.php similarity index 100% rename from resources/lang/de-i/admin/suppliers/message.php rename to resources/lang/de-if/admin/suppliers/message.php diff --git a/resources/lang/de-i/admin/suppliers/table.php b/resources/lang/de-if/admin/suppliers/table.php similarity index 100% rename from resources/lang/de-i/admin/suppliers/table.php rename to resources/lang/de-if/admin/suppliers/table.php diff --git a/resources/lang/de-i/admin/users/general.php b/resources/lang/de-if/admin/users/general.php similarity index 100% rename from resources/lang/de-i/admin/users/general.php rename to resources/lang/de-if/admin/users/general.php diff --git a/resources/lang/de-i/admin/users/message.php b/resources/lang/de-if/admin/users/message.php similarity index 98% rename from resources/lang/de-i/admin/users/message.php rename to resources/lang/de-if/admin/users/message.php index be2eac2f01..83aca3faf5 100644 --- a/resources/lang/de-i/admin/users/message.php +++ b/resources/lang/de-if/admin/users/message.php @@ -8,7 +8,7 @@ return array( 'user_exists' => 'Benutzer existiert bereits!', 'user_not_found' => 'Benutzer existiert nicht.', 'user_login_required' => 'Das Loginfeld ist erforderlich', - 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', + 'user_has_no_assets_assigned' => 'Derzeit sind keine Assets dem Benutzer zugewiesen.', 'user_password_required' => 'Das Passswortfeld ist erforderlich.', 'insufficient_permissions' => 'Unzureichende Berechtigungen.', 'user_deleted_warning' => 'Dieser Benutzer wurde gelöscht. Du musst ihn wiederherstellen, um ihn zu bearbeiten, oder neue Assets zuzuweisen.', diff --git a/resources/lang/de-i/admin/users/table.php b/resources/lang/de-if/admin/users/table.php similarity index 94% rename from resources/lang/de-i/admin/users/table.php rename to resources/lang/de-if/admin/users/table.php index fb5b278c57..ca6ae750bb 100644 --- a/resources/lang/de-i/admin/users/table.php +++ b/resources/lang/de-if/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Verwaltete Standorte', 'name' => 'Name', + 'nogroup' => 'Es wurden noch keine Gruppen erstellt. Um eine hinzuzufügen, besuche: ', 'notes' => 'Notizen', 'password_confirm' => 'Passwort bestätigen', 'password' => 'Passwort', diff --git a/resources/lang/de-i/auth.php b/resources/lang/de-if/auth.php similarity index 100% rename from resources/lang/de-i/auth.php rename to resources/lang/de-if/auth.php diff --git a/resources/lang/de-i/auth/general.php b/resources/lang/de-if/auth/general.php similarity index 100% rename from resources/lang/de-i/auth/general.php rename to resources/lang/de-if/auth/general.php diff --git a/resources/lang/de-i/auth/message.php b/resources/lang/de-if/auth/message.php similarity index 100% rename from resources/lang/de-i/auth/message.php rename to resources/lang/de-if/auth/message.php diff --git a/resources/lang/de-i/button.php b/resources/lang/de-if/button.php similarity index 100% rename from resources/lang/de-i/button.php rename to resources/lang/de-if/button.php diff --git a/resources/lang/de-i/general.php b/resources/lang/de-if/general.php similarity index 92% rename from resources/lang/de-i/general.php rename to resources/lang/de-if/general.php index 0bdd2cee79..b05cef4588 100644 --- a/resources/lang/de-i/general.php +++ b/resources/lang/de-if/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Akzeptierte Dateitypen sind jpg, png, gif und svg. Maximale Uploadgröße ist :size.', 'unaccepted_image_type' => 'Diese Bilddatei ist nicht lesbar. Akzeptierte Dateitypen sind jpg, webp, png, gif und svg. Der MIME-Type dieser Datei ist: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Felder zuordnen und diese Datei bearbeiten', 'importing' => 'Importiere', 'importing_help' => 'Du kannst Assets, Zubehör, Lizenzen, Komponenten, Verbrauchsmaterialien und Benutzer mittels CSV-Datei importieren.

Die CSV-Datei sollte kommagetrennt sein und eine Kopfzeile enthalten, die mit den Beispiel-CSVs aus der Dokumentation übereinstimmen.', 'import-history' => 'Import Verlauf', @@ -240,8 +241,8 @@ return [ 'select' => 'Auswählen', 'select_all' => 'Alle markieren', 'search' => 'Suche', - 'select_category' => 'Kategorie auswählen', - 'select_department' => 'Abteilung auswählen', + 'select_category' => 'Wähle eine Kategorie', + 'select_department' => 'Wähle eine Abteilung', 'select_depreciation' => 'Wähle einen Abschreibungstyp', 'select_location' => 'Wähle einen Standort', 'select_manufacturer' => 'Wähle einen Hersteller', @@ -249,7 +250,7 @@ return [ 'select_supplier' => 'Wähle einen Lieferanten', 'select_user' => 'Wähle einen Benutzer', 'select_date' => 'Datum auswählen (JJJJ-MM-TT)', - 'select_statuslabel' => 'Status auswählen', + 'select_statuslabel' => 'Wähle einen Status', 'select_company' => 'Firma auswählen', 'select_asset' => 'Asset auswählen', 'settings' => 'Einstellungen', @@ -260,7 +261,7 @@ return [ 'signed_off_by' => 'Unterschrieben von', 'skin' => 'Skin', 'webhook_msg_note' => 'Eine Benachrichtigung wird über den Webhook gesendet', - 'webhook_test_msg' => 'Oh hey! Sieht so aus, als ob deine :app Integration mit Snipe-IT funktioniert!', + 'webhook_test_msg' => 'Oh hey! Sieht so aus, als ob Deine :app Integration mit Snipe-IT funktioniert!', 'some_features_disabled' => 'Einige Funktionen sind für den DEMO-Modus deaktiviert.', 'site_name' => 'Seitenname', 'state' => 'Bundesland', @@ -269,16 +270,16 @@ return [ 'accept_eula' => 'Annahmeerklärung', 'supplier' => 'Lieferant', 'suppliers' => 'Lieferanten', - 'sure_to_delete' => 'Bist du dir sicher, dass du das löschen möchtest', - 'sure_to_delete_var' => 'Willst du :item wirklich löschen?', + 'sure_to_delete' => 'Bist Du Dir sicher, dass du das löschen möchtest', + 'sure_to_delete_var' => 'Willst Du :item wirklich löschen?', 'delete_what' => ':item löschen', 'submit' => 'Abschicken', 'target' => 'Ziel', 'time_and_date_display' => 'Zeit- und Datumsanzeige', 'total_assets' => 'Assets', - 'total_licenses' => 'Lizenzen', + 'total_licenses' => 'gesamte Lizenzen', 'total_accessories' => 'Zubehör', - 'total_consumables' => 'Verbrauchsmaterial', + 'total_consumables' => 'gesamtes Verbrauchsmaterial', 'type' => 'Typ', 'undeployable' => 'Nicht herausgebbar', 'unknown_admin' => 'Unbekannter Administrator', @@ -313,7 +314,7 @@ return [ 'i_accept' => 'Ich akzeptiere', 'i_decline' => 'Ich lehne ab', 'accept_decline' => 'Akzeptieren/Ablehnen', - 'sign_tos' => 'Unterzeichnen Sie unten, um den Nutzungsbedingungen zuzustimmen:', + 'sign_tos' => 'Unterschreibe unten, um den Nutzungsbedingungen zuzustimmen:', 'clear_signature' => 'Unterschrift löschen', 'show_help' => 'Hilfe anzeigen', 'hide_help' => 'Hilfe ausblenden', @@ -338,11 +339,11 @@ return [ 'last_checkout' => 'Letzte Herausgabe', 'due_to_checkin' => 'Folgende :count Elemente werden demnächst zurückgenommen:', 'expected_checkin' => 'Erwartetes Rückgabedatum', - 'reminder_checked_out_items' => 'Dies ist eine Erinnerung an die Artikel, die gerade an Sie herausgegeben sind. Wenn Sie der Meinung sind, dass die Angaben falsch sind (fehlender Artikel oder Artikel, den Sie nie erhalten haben), senden Sie bitte eine E-Mail an :reply_to_name unter :reply_to_address.', + 'reminder_checked_out_items' => 'Dies ist eine Erinnerung an die Artikel, die gerade an Dich herausgegeben sind. Wenn Du der Meinung bist, dass die Angaben falsch sind (fehlender Artikel oder Artikel, den Du nie erhalten hast), sende bitte eine E-Mail an :reply_to_name unter :reply_to_address.', 'changed' => 'Geändert', 'to' => 'An', - 'report_fields_info' => '

Wähle die Felder aus, die du in deinem benutzerdefinierten Bericht einfügen möchtest, und klicke auf Generieren. Die Datei (custom-asset-report-YYYY-mm-dd.csv) wird automatisch heruntergeladen und du kannst diese in Excel öffnen.

-

Wenn du nur bestimmte Artikel exportieren möchten, verwende die folgenden Optionen, um das Ergebnis zu verfeinern.

', + 'report_fields_info' => '

Wähle die Felder aus, die Du in Deinem benutzerdefinierten Bericht einfügen möchtest, und klicke auf Generieren. Die Datei (custom-asset-report-YYYY-mm-dd.csv) wird automatisch heruntergeladen und Du kannst diese in Excel öffnen.

+

Wenn Du nur bestimmte Artikel exportieren möchten, verwende die folgenden Optionen, um das Ergebnis zu verfeinern.

', 'range' => 'Bereich', 'bom_remark' => 'Füge ein BOM (Byte-Reihenfolge-Markierung) zu dieser CSV hinzu', 'improvements' => 'Verbesserungen', @@ -357,9 +358,9 @@ return [ 'license_serial' => 'Seriennummer/Produktschlüssel', 'invalid_category' => 'Ungültige oder fehlende Kategorie', 'invalid_item_category_single' => 'Ungültige oder fehlende :type Kategorie. Bitte aktualisiere die Kategorie dieses :type um eine gültige Kategorie vor dem Auschecken hinzuzufügen.', - 'dashboard_info' => 'Das ist dein Dashboard. Es gibt viele wie dieses, aber das hier ist deins.', + 'dashboard_info' => 'Das ist Dein Dashboard. Es gibt viele wie dieses, aber das hier ist Deins.', '60_percent_warning' => '60% abgeschlossen (Warnung)', - 'dashboard_empty' => 'Es sieht so aus, als hättest du noch nichts hinzugefügt, sodass wir nichts Großartiges zum Anzeigen haben. Beginne jetzt mit dem Hinzufügen einiger Gegenstände, Zubehör, Verbrauchsmaterialien oder Lizenzen!', + 'dashboard_empty' => 'Es sieht so aus, als hättest Du noch nichts hinzugefügt, sodass wir nichts Großartiges zum Anzeigen haben. Beginne jetzt mit dem Hinzufügen einiger Gegenstände, Zubehör, Verbrauchsmaterialien oder Lizenzen!', 'new_asset' => 'Neues Asset', 'new_license' => 'Neue Lizenz', 'new_accessory' => 'Neues Zubehör', @@ -385,16 +386,16 @@ return [ 'accessory_information' => 'Zubehör Information:', 'accessory_name' => 'Zubehörname:', 'clone_item' => 'Element klonen', - 'checkout_tooltip' => 'Diesen Gegenstand zuweisen', + 'checkout_tooltip' => 'Diesen Gegenstand heraugeben', 'checkin_tooltip' => 'Diesen Artikel zurücknehmen', 'checkout_user_tooltip' => 'Diesen Artikel an einen Benutzer herausgeben', - 'maintenance_mode' => 'Der Dienst ist wegen Wartungsarbeiten vorübergehend nicht verfügbar. Bitte versuchen Sie es später noch einmal.', + 'maintenance_mode' => 'Der Dienst ist wegen Wartungsarbeiten vorübergehend nicht verfügbar. Bitte versuche es später noch einmal.', 'maintenance_mode_title' => 'System vorübergehend nicht verfügbar', - 'ldap_import' => 'Benutzerkennwort sollte nicht von LDAP verwaltet werden. (Das erlaubt es dir, Passwortrücksetzungen zu versenden.)', - 'purge_not_allowed' => 'Löschen von "gelöschten Daten" wurde in der .env-Datei verboten. Kontaktiere den Support oder deinen Systemadministrator.', - 'backup_delete_not_allowed' => 'Das Löschen von Sicherungen wurde in der .env-Datei verboten. Kontaktiere den Support oder deinen Systemadministrator.', + 'ldap_import' => 'Benutzerkennwort sollte nicht von LDAP verwaltet werden. (Das erlaubt es Dir, Passwortrücksetzungen zu versenden.)', + 'purge_not_allowed' => 'Löschen von "gelöschten Daten" wurde in der .env-Datei verboten. Kontaktiere den Support oder Deinen Systemadministrator.', + 'backup_delete_not_allowed' => 'Das Löschen von Sicherungen wurde in der .env-Datei verboten. Kontaktiere den Support oder Deinen Systemadministrator.', 'additional_files' => 'Zusätzliche Dateien', - 'shitty_browser' => 'Keine Signatur erkannt. Wenn du einen älteren Browser benutzt, verwende bitte einen moderneren Browser, um den Erhalt zu bestätigen.', + 'shitty_browser' => 'Keine Signatur erkannt. Wenn Du einen älteren Browser benutzt, verwende bitte einen moderneren Browser, um den Erhalt zu bestätigen.', 'bulk_soft_delete' =>'Auch diese Benutzer soft-löschen. Die Assets-Historie bleibt erhalten, solange/bis die markierten Datensätze nicht in den Admin-Einstellungen endgültig gelöscht werden.', 'bulk_checkin_delete_success' => 'Die ausgewählten Benutzer wurden gelöscht und ihre Assets wurden eingecheckt.', 'bulk_checkin_success' => 'Die Assets der ausgewählten Benutzer wurden eingecheckt.', @@ -423,7 +424,7 @@ return [ 'integration_option' => 'Integrationsoptionen', 'log_does_not_exist' => 'Es existiert kein passender Logeintrag.', 'merge_users' => 'Benutzer zusammenführen', - 'merge_information' => 'Dies wird die :count Benutzer zu einem Benutzer zusammenführen. Wähle den Benutzer, in den du die anderen zusammenführen möchtest. Die zugehörigen Assets, Lizenzen, etc. werden in den ausgewählten Benutzer verschoben und die anderen Benutzer werden als gelöscht markiert.', + 'merge_information' => 'Dies wird die :count Benutzer zu einem Benutzer zusammenführen. Wähle den Benutzer, in den Du die anderen zusammenführen möchtest. Die zugehörigen Assets, Lizenzen, etc. werden in den ausgewählten Benutzer verschoben und die anderen Benutzer werden als gelöscht markiert.', 'warning_merge_information' => 'Diese Aktion kann NICHT rückgängig gemacht werden und sollte NUR verwendet werden, wenn Benutzer aufgrund eines falschen Imports oder einer fehlerhaften Synchronisation zusammengeführt werden müssen. Stelle sicher, dass zuerst ein Backup erstellt wird.', 'no_users_selected' => 'Keine Benutzer ausgewählt', 'not_enough_users_selected' => 'Mindestens :count Benutzer müssen ausgewählt sein', @@ -456,14 +457,14 @@ return [ 'autoassign_licenses_help' => 'Erlaube diesem Benutzer die Zuweisung von Lizenzen über die Benutzeroberfläche für die Massenzuweisung von Lizenzen oder über die CLI-Tools.', 'autoassign_licenses_help_long' => 'Es erlaubt einem Benutzer, Lizenzen über die Massen-Zuweisung GUI oder CLI-Tools zugewiesen zu bekommen. (Zum Beispiel möchtest du den Auftragnehmern möglicherweise nicht automatisch eine Lizenz zuweisen, die nur Mitarbeitern zur Verfügung stehen würde. Du kannst diesen Benutzern weiterhin einzelne Lizenzen zuweisen, aber sie werden nicht in der Lizenzen Massenherausgabe der Benutzer berücksichtigt.)', 'no_autoassign_licenses_help' => 'Den Benutzer nicht bei der Lizenzen Massen-Zuweisung GUI oder CLI-Tools berücksichtigen.', - 'modal_confirm_generic' => 'Bist du dir sicher?', + 'modal_confirm_generic' => 'Bist Du dir sicher?', 'cannot_be_deleted' => 'Dieser Gegenstand kann nicht gelöscht werden', 'undeployable_tooltip' => 'Dieser Gegenstand kann nicht herausgegeben werden. Überprüfe die verbleibende Menge.', 'serial_number' => 'Seriennummer', 'item_notes' => ':item Notizen', 'item_name_var' => ':item Name', 'error_user_company' => 'Checkout Zielfirma und Asset-Gesellschaft stimmen nicht überein', - 'error_user_company_accept_view' => 'Ein Asset, welches dir zugewiesen wurde, gehört einem anderen Unternehmen, sodass du es nicht akzeptieren oder ablehnen kannst. Bitte prüfe das mit deinem Vorgesetzten', + 'error_user_company_accept_view' => 'Ein Asset, welches Dir zugewiesen wurde, gehört einem anderen Unternehmen, sodass Du es nicht akzeptieren oder ablehnen kannst. Bitte prüfe das mit deinem Vorgesetzten', 'importer' => [ 'checked_out_to_fullname' => 'Herausgegeben an: Voller Name', 'checked_out_to_first_name' => 'Herausgegeben an: Vorname', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Fehler beim Hochladen der Datei. Bitte überprüfe, dass keine leeren Zeilen vorhanden sind und keine Spaltennamen dupliziert werden.', 'copy_to_clipboard' => 'In Zwischenablage kopieren', 'copied' => 'Kopiert!', + 'status_compatibility' => 'Wenn Assets bereits zugewiesen sind, können sie nicht zu einem nicht einsetzbaren Statustyp geändert werden, und diese Änderung wird übersprungen.', + 'rtd_location_help' => 'Dies ist der Ort des Assets, wenn es nicht herausgegeben ist', + 'item_not_found' => ':item_type ID :id existiert nicht oder wurde gelöscht', + 'action_permission_denied' => 'Du hast keine Berechtigung für :action :item_type ID :id', + 'action_permission_generic' => 'Du hast keine Berechtigung für :action :item_type Id :id', + 'edit' => 'bearbeiten', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/de-i/help.php b/resources/lang/de-if/help.php similarity index 100% rename from resources/lang/de-i/help.php rename to resources/lang/de-if/help.php diff --git a/resources/lang/de-i/localizations.php b/resources/lang/de-if/localizations.php similarity index 99% rename from resources/lang/de-i/localizations.php rename to resources/lang/de-if/localizations.php index 3de0d1aaf1..c03da20c12 100644 --- a/resources/lang/de-i/localizations.php +++ b/resources/lang/de-if/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irisch', 'it'=> 'Italienisch', 'ja'=> 'Japanisch', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Koreanisch', 'lv'=>'Lettisch', 'lt'=> 'Litauisch', diff --git a/resources/lang/de-i/mail.php b/resources/lang/de-if/mail.php similarity index 100% rename from resources/lang/de-i/mail.php rename to resources/lang/de-if/mail.php diff --git a/resources/lang/de/pagination.php b/resources/lang/de-if/pagination.php similarity index 100% rename from resources/lang/de/pagination.php rename to resources/lang/de-if/pagination.php diff --git a/resources/lang/de-i/passwords.php b/resources/lang/de-if/passwords.php similarity index 100% rename from resources/lang/de-i/passwords.php rename to resources/lang/de-if/passwords.php diff --git a/resources/lang/de-i/reminders.php b/resources/lang/de-if/reminders.php similarity index 100% rename from resources/lang/de-i/reminders.php rename to resources/lang/de-if/reminders.php diff --git a/resources/lang/de/table.php b/resources/lang/de-if/table.php similarity index 100% rename from resources/lang/de/table.php rename to resources/lang/de-if/table.php diff --git a/resources/lang/de-i/validation.php b/resources/lang/de-if/validation.php similarity index 98% rename from resources/lang/de-i/validation.php rename to resources/lang/de-if/validation.php index c1876a06ab..630d194fd6 100644 --- a/resources/lang/de-i/validation.php +++ b/resources/lang/de-if/validation.php @@ -90,14 +90,13 @@ return [ ], 'string' => 'Das Attribut muss eine Zeichenfolge sein.', 'timezone' => ':attribute muss eine gültige Zone sein.', - 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', + 'two_column_unique_undeleted' => ':attribute muss in :table1 und :table2 einzigartig sein. ', 'unique' => ':attribute ist bereits vergeben.', 'uploaded' => ':attribute konnte nicht hochgeladen werden.', 'url' => ':attribute Format ungültig.', 'unique_undeleted' => 'Die Variable :attribute muss eindeutig sein.', 'non_circular' => 'Das :attribute darf keinen Zirkelbezug ergeben.', 'not_array' => ':attribute Feld darf kein Array sein.', - 'unique_serial' => 'Die Variable :attribute müssen eindeutig sein.', 'disallow_same_pwd_as_user_fields' => 'Das Passwort muss sich vom Nutzernamen unterscheiden.', 'letters' => 'Das Passwort muss mindestens einen Buchstaben beinhalten.', 'numbers' => 'Das Passwort muss mindestens eine Zahl beinhalten.', diff --git a/resources/lang/de/admin/locations/message.php b/resources/lang/de/admin/locations/message.php deleted file mode 100644 index 757b90ac4b..0000000000 --- a/resources/lang/de/admin/locations/message.php +++ /dev/null @@ -1,29 +0,0 @@ - 'Der Standort ist nicht vorhanden.', - 'assoc_users' => 'Dieser Standort ist mindestens einem Benutzer zugewiesen und kann nicht gelöscht werden. Bitte entfernen Sie die Standortzuweisung bei den jeweiligen Benutzern und versuchen Sie es erneut diesen Standort zu entfernen. ', - 'assoc_assets' => 'Dieser Standort ist mindestens einem Gegenstand zugewiesen und kann nicht gelöscht werden. Bitte entfernen Sie die Standortzuweisung bei den jeweiligen Gegenständen und versuchen Sie es erneut diesen Standort zu entfernen. ', - 'assoc_child_loc' => 'Dieser Ort ist mindestens einem anderen Ort übergeordnet und kann nicht gelöscht werden. Bitte Orte aktualisieren, so dass dieser Standort nicht mehr verknüpft ist und erneut versuchen. ', - 'assigned_assets' => 'Zugeordnete Assets', - 'current_location' => 'Aktueller Standort', - - - 'create' => array( - 'error' => 'Standort wurde nicht erstellt, bitte versuchen Sie es erneut.', - 'success' => 'Standort erfolgreich erstellt.' - ), - - 'update' => array( - 'error' => 'Standort wurde nicht aktualisiert, bitte erneut versuchen', - 'success' => 'Standort erfolgreich aktualisiert.' - ), - - 'delete' => array( - 'confirm' => 'Möchten Sie diesen Standort wirklich entfernen?', - 'error' => 'Es gab einen Fehler beim Löschen des Standorts. Bitte erneut versuchen.', - 'success' => 'Der Standort wurde erfolgreich gelöscht.' - ) - -); diff --git a/resources/lang/de/admin/models/table.php b/resources/lang/de/admin/models/table.php deleted file mode 100644 index ebf8e7c636..0000000000 --- a/resources/lang/de/admin/models/table.php +++ /dev/null @@ -1,17 +0,0 @@ - 'Asset-Modell erstellen', - 'created_at' => 'Erstellt am', - 'eol' => 'EOL', - 'modelnumber' => 'Modellnummer', - 'name' => 'Asset Modellname', - 'numassets' => 'Assets', - 'title' => 'Asset Modelle', - 'update' => 'Asset Modell aktualisieren', - 'view' => 'Asset Modell ansehen', - 'update' => 'Asset Modell aktualisieren', - 'clone' => 'Modell duplizieren', - 'edit' => 'Modell bearbeiten', -); diff --git a/resources/lang/cy/account/general.php b/resources/lang/el-GR/account/general.php similarity index 100% rename from resources/lang/cy/account/general.php rename to resources/lang/el-GR/account/general.php diff --git a/resources/lang/el/admin/accessories/general.php b/resources/lang/el-GR/admin/accessories/general.php similarity index 100% rename from resources/lang/el/admin/accessories/general.php rename to resources/lang/el-GR/admin/accessories/general.php diff --git a/resources/lang/el/admin/accessories/message.php b/resources/lang/el-GR/admin/accessories/message.php similarity index 100% rename from resources/lang/el/admin/accessories/message.php rename to resources/lang/el-GR/admin/accessories/message.php diff --git a/resources/lang/el/admin/accessories/table.php b/resources/lang/el-GR/admin/accessories/table.php similarity index 100% rename from resources/lang/el/admin/accessories/table.php rename to resources/lang/el-GR/admin/accessories/table.php diff --git a/resources/lang/el/admin/asset_maintenances/form.php b/resources/lang/el-GR/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/el/admin/asset_maintenances/form.php rename to resources/lang/el-GR/admin/asset_maintenances/form.php diff --git a/resources/lang/el/admin/asset_maintenances/general.php b/resources/lang/el-GR/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/el/admin/asset_maintenances/general.php rename to resources/lang/el-GR/admin/asset_maintenances/general.php diff --git a/resources/lang/el/admin/asset_maintenances/message.php b/resources/lang/el-GR/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/el/admin/asset_maintenances/message.php rename to resources/lang/el-GR/admin/asset_maintenances/message.php diff --git a/resources/lang/el/admin/asset_maintenances/table.php b/resources/lang/el-GR/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/el/admin/asset_maintenances/table.php rename to resources/lang/el-GR/admin/asset_maintenances/table.php diff --git a/resources/lang/el/admin/categories/general.php b/resources/lang/el-GR/admin/categories/general.php similarity index 100% rename from resources/lang/el/admin/categories/general.php rename to resources/lang/el-GR/admin/categories/general.php diff --git a/resources/lang/el/admin/categories/message.php b/resources/lang/el-GR/admin/categories/message.php similarity index 100% rename from resources/lang/el/admin/categories/message.php rename to resources/lang/el-GR/admin/categories/message.php diff --git a/resources/lang/el/admin/categories/table.php b/resources/lang/el-GR/admin/categories/table.php similarity index 100% rename from resources/lang/el/admin/categories/table.php rename to resources/lang/el-GR/admin/categories/table.php diff --git a/resources/lang/el/admin/companies/general.php b/resources/lang/el-GR/admin/companies/general.php similarity index 81% rename from resources/lang/el/admin/companies/general.php rename to resources/lang/el-GR/admin/companies/general.php index aaee909c12..12b006ffc6 100644 --- a/resources/lang/el/admin/companies/general.php +++ b/resources/lang/el-GR/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Επιλογή εταιρείας', - 'about_companies' => 'About Companies', + 'about_companies' => 'Σχετικά με τις εταιρείες', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/el/admin/companies/message.php b/resources/lang/el-GR/admin/companies/message.php similarity index 100% rename from resources/lang/el/admin/companies/message.php rename to resources/lang/el-GR/admin/companies/message.php diff --git a/resources/lang/el/admin/companies/table.php b/resources/lang/el-GR/admin/companies/table.php similarity index 100% rename from resources/lang/el/admin/companies/table.php rename to resources/lang/el-GR/admin/companies/table.php diff --git a/resources/lang/el/admin/components/general.php b/resources/lang/el-GR/admin/components/general.php similarity index 100% rename from resources/lang/el/admin/components/general.php rename to resources/lang/el-GR/admin/components/general.php diff --git a/resources/lang/el/admin/components/message.php b/resources/lang/el-GR/admin/components/message.php similarity index 100% rename from resources/lang/el/admin/components/message.php rename to resources/lang/el-GR/admin/components/message.php diff --git a/resources/lang/el/admin/components/table.php b/resources/lang/el-GR/admin/components/table.php similarity index 100% rename from resources/lang/el/admin/components/table.php rename to resources/lang/el-GR/admin/components/table.php diff --git a/resources/lang/el/admin/consumables/general.php b/resources/lang/el-GR/admin/consumables/general.php similarity index 100% rename from resources/lang/el/admin/consumables/general.php rename to resources/lang/el-GR/admin/consumables/general.php diff --git a/resources/lang/el/admin/consumables/message.php b/resources/lang/el-GR/admin/consumables/message.php similarity index 100% rename from resources/lang/el/admin/consumables/message.php rename to resources/lang/el-GR/admin/consumables/message.php diff --git a/resources/lang/el/admin/consumables/table.php b/resources/lang/el-GR/admin/consumables/table.php similarity index 100% rename from resources/lang/el/admin/consumables/table.php rename to resources/lang/el-GR/admin/consumables/table.php diff --git a/resources/lang/el/admin/custom_fields/general.php b/resources/lang/el-GR/admin/custom_fields/general.php similarity index 94% rename from resources/lang/el/admin/custom_fields/general.php rename to resources/lang/el-GR/admin/custom_fields/general.php index e6bc7dedc5..be6008cfc8 100644 --- a/resources/lang/el/admin/custom_fields/general.php +++ b/resources/lang/el-GR/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Νέο προσαρμοσμένο πεδίο', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Η τιμή αυτού του πεδίου είναι κρυπτογραφημένη στη βάση δεδομένων. Μόνο οι διαχειριστές θα μπορούν να δουν την αποκρυπτογραφημένη τιμή', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Να περιλαμβάνεται η τιμή αυτού του πεδίου στα emails χρέωσης ου αποστέλονται στους χρήστες; Κρυπτογραφημένα πεδία δεν μπορούν να περιληφθούν σε emails', '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.', diff --git a/resources/lang/el/admin/custom_fields/message.php b/resources/lang/el-GR/admin/custom_fields/message.php similarity index 100% rename from resources/lang/el/admin/custom_fields/message.php rename to resources/lang/el-GR/admin/custom_fields/message.php diff --git a/resources/lang/el/admin/departments/message.php b/resources/lang/el-GR/admin/departments/message.php similarity index 100% rename from resources/lang/el/admin/departments/message.php rename to resources/lang/el-GR/admin/departments/message.php diff --git a/resources/lang/el/admin/departments/table.php b/resources/lang/el-GR/admin/departments/table.php similarity index 100% rename from resources/lang/el/admin/departments/table.php rename to resources/lang/el-GR/admin/departments/table.php diff --git a/resources/lang/el/admin/depreciations/general.php b/resources/lang/el-GR/admin/depreciations/general.php similarity index 100% rename from resources/lang/el/admin/depreciations/general.php rename to resources/lang/el-GR/admin/depreciations/general.php diff --git a/resources/lang/el/admin/depreciations/message.php b/resources/lang/el-GR/admin/depreciations/message.php similarity index 100% rename from resources/lang/el/admin/depreciations/message.php rename to resources/lang/el-GR/admin/depreciations/message.php diff --git a/resources/lang/el/admin/depreciations/table.php b/resources/lang/el-GR/admin/depreciations/table.php similarity index 100% rename from resources/lang/el/admin/depreciations/table.php rename to resources/lang/el-GR/admin/depreciations/table.php diff --git a/resources/lang/el/admin/groups/message.php b/resources/lang/el-GR/admin/groups/message.php similarity index 100% rename from resources/lang/el/admin/groups/message.php rename to resources/lang/el-GR/admin/groups/message.php diff --git a/resources/lang/el/admin/groups/table.php b/resources/lang/el-GR/admin/groups/table.php similarity index 100% rename from resources/lang/el/admin/groups/table.php rename to resources/lang/el-GR/admin/groups/table.php diff --git a/resources/lang/el/admin/groups/titles.php b/resources/lang/el-GR/admin/groups/titles.php similarity index 100% rename from resources/lang/el/admin/groups/titles.php rename to resources/lang/el-GR/admin/groups/titles.php diff --git a/resources/lang/el/admin/hardware/form.php b/resources/lang/el-GR/admin/hardware/form.php similarity index 100% rename from resources/lang/el/admin/hardware/form.php rename to resources/lang/el-GR/admin/hardware/form.php diff --git a/resources/lang/el/admin/hardware/general.php b/resources/lang/el-GR/admin/hardware/general.php similarity index 100% rename from resources/lang/el/admin/hardware/general.php rename to resources/lang/el-GR/admin/hardware/general.php diff --git a/resources/lang/el/admin/hardware/message.php b/resources/lang/el-GR/admin/hardware/message.php similarity index 98% rename from resources/lang/el/admin/hardware/message.php rename to resources/lang/el-GR/admin/hardware/message.php index 1a7675813a..4542e562fe 100644 --- a/resources/lang/el/admin/hardware/message.php +++ b/resources/lang/el-GR/admin/hardware/message.php @@ -24,7 +24,7 @@ return [ 'restore' => [ 'error' => 'Το ενεργητικό δεν έχει αποκατασταθεί, δοκιμάστε ξανά', 'success' => 'Τα πάγια επαναφέρθηκαν επιτυχώς.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Τα πάγια επαναφέρθηκαν επιτυχώς.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/el/admin/hardware/table.php b/resources/lang/el-GR/admin/hardware/table.php similarity index 95% rename from resources/lang/el/admin/hardware/table.php rename to resources/lang/el-GR/admin/hardware/table.php index 29da5ceaa5..fdb10c4826 100644 --- a/resources/lang/el/admin/hardware/table.php +++ b/resources/lang/el-GR/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Φωτογραφία συσκευής', 'days_without_acceptance' => 'Ημέρες χωρίς αποδοχή', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Ανατέθηκε στον', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/el-GR/admin/kits/general.php b/resources/lang/el-GR/admin/kits/general.php new file mode 100644 index 0000000000..d302ed7f03 --- /dev/null +++ b/resources/lang/el-GR/admin/kits/general.php @@ -0,0 +1,50 @@ + 'About Predefined Kits', + 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', + 'checkout' => 'Checkout Kit ', + 'create_success' => 'Kit was successfully created.', + 'create' => 'Create Predefined Kit', + 'update' => 'Update Predefined Kit', + 'delete_success' => 'Kit was successfully deleted.', + 'update_success' => 'Kit was successfully updated.', + 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', + 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', + 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', + 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'License already attached to kit', + 'license_added_success' => 'License added successfully', + 'license_updated' => 'License was successfully updated', + 'license_none' => 'Δεν υπάρχει άδεια χρήσης', + 'license_detached' => 'License was successfully detached', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Delete was successful', + 'consumable_none' => 'Το αναλώσιμο δεν υπάρχει', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Accessory added successfully', + 'accessory_updated' => 'Accessory was successfully updated', + 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_error' => 'Accessory already attached to kit', + 'accessory_deleted' => 'Delete was successful', + 'accessory_none' => 'Accessory does not exist', + 'checkout_success' => 'Checkout was successful', + 'checkout_error' => 'Checkout error', + 'kit_none' => 'Kit does not exist', + 'kit_created' => 'Kit was successfully created', + 'kit_updated' => 'Kit was successfully updated', + 'kit_not_found' => 'Kit not found', + 'kit_deleted' => 'Kit was successfully deleted', + 'kit_model_updated' => 'Model was successfully updated', + 'kit_model_detached' => 'Model was successfully detached', +]; diff --git a/resources/lang/el/admin/labels/message.php b/resources/lang/el-GR/admin/labels/message.php similarity index 100% rename from resources/lang/el/admin/labels/message.php rename to resources/lang/el-GR/admin/labels/message.php diff --git a/resources/lang/el-GR/admin/labels/table.php b/resources/lang/el-GR/admin/labels/table.php new file mode 100644 index 0000000000..bf0eb094f5 --- /dev/null +++ b/resources/lang/el-GR/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Ετικέτα', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Λογότυπο', + 'support_title' => 'Τίτλος', + +]; \ No newline at end of file diff --git a/resources/lang/el/admin/licenses/form.php b/resources/lang/el-GR/admin/licenses/form.php similarity index 100% rename from resources/lang/el/admin/licenses/form.php rename to resources/lang/el-GR/admin/licenses/form.php diff --git a/resources/lang/el/admin/licenses/general.php b/resources/lang/el-GR/admin/licenses/general.php similarity index 100% rename from resources/lang/el/admin/licenses/general.php rename to resources/lang/el-GR/admin/licenses/general.php diff --git a/resources/lang/el/admin/licenses/message.php b/resources/lang/el-GR/admin/licenses/message.php similarity index 100% rename from resources/lang/el/admin/licenses/message.php rename to resources/lang/el-GR/admin/licenses/message.php diff --git a/resources/lang/el/admin/licenses/table.php b/resources/lang/el-GR/admin/licenses/table.php similarity index 100% rename from resources/lang/el/admin/licenses/table.php rename to resources/lang/el-GR/admin/licenses/table.php diff --git a/resources/lang/el/admin/locations/message.php b/resources/lang/el-GR/admin/locations/message.php similarity index 100% rename from resources/lang/el/admin/locations/message.php rename to resources/lang/el-GR/admin/locations/message.php diff --git a/resources/lang/el/admin/locations/table.php b/resources/lang/el-GR/admin/locations/table.php similarity index 82% rename from resources/lang/el/admin/locations/table.php rename to resources/lang/el-GR/admin/locations/table.php index 0e88718221..52e2cd0978 100644 --- a/resources/lang/el/admin/locations/table.php +++ b/resources/lang/el-GR/admin/locations/table.php @@ -22,18 +22,18 @@ return [ 'currency' => 'Τοπικό νόμισμα', 'ldap_ou' => 'LDAP Αναζήτηση OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Τμήμα', + 'location' => 'Τοποθεσία', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', + 'asset_name' => 'Ονομα', + 'asset_category' => 'Κατηγορία', + 'asset_manufacturer' => 'Κατασκευαστής', + 'asset_model' => 'Μοντέλο', 'asset_serial' => 'Σειριακός', - 'asset_location' => 'Location', + 'asset_location' => 'Τοποθεσία', 'asset_checked_out' => 'Checked Out', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Ημερομηνία:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/el/admin/manufacturers/message.php b/resources/lang/el-GR/admin/manufacturers/message.php similarity index 100% rename from resources/lang/el/admin/manufacturers/message.php rename to resources/lang/el-GR/admin/manufacturers/message.php diff --git a/resources/lang/el/admin/manufacturers/table.php b/resources/lang/el-GR/admin/manufacturers/table.php similarity index 100% rename from resources/lang/el/admin/manufacturers/table.php rename to resources/lang/el-GR/admin/manufacturers/table.php diff --git a/resources/lang/el/admin/models/general.php b/resources/lang/el-GR/admin/models/general.php similarity index 100% rename from resources/lang/el/admin/models/general.php rename to resources/lang/el-GR/admin/models/general.php diff --git a/resources/lang/el/admin/models/message.php b/resources/lang/el-GR/admin/models/message.php similarity index 100% rename from resources/lang/el/admin/models/message.php rename to resources/lang/el-GR/admin/models/message.php diff --git a/resources/lang/el/admin/models/table.php b/resources/lang/el-GR/admin/models/table.php similarity index 100% rename from resources/lang/el/admin/models/table.php rename to resources/lang/el-GR/admin/models/table.php diff --git a/resources/lang/el/admin/reports/general.php b/resources/lang/el-GR/admin/reports/general.php similarity index 100% rename from resources/lang/el/admin/reports/general.php rename to resources/lang/el-GR/admin/reports/general.php diff --git a/resources/lang/el/admin/reports/message.php b/resources/lang/el-GR/admin/reports/message.php similarity index 100% rename from resources/lang/el/admin/reports/message.php rename to resources/lang/el-GR/admin/reports/message.php diff --git a/resources/lang/el/admin/settings/general.php b/resources/lang/el-GR/admin/settings/general.php similarity index 99% rename from resources/lang/el/admin/settings/general.php rename to resources/lang/el-GR/admin/settings/general.php index 1ff8db2bf0..c5e87f40e1 100644 --- a/resources/lang/el/admin/settings/general.php +++ b/resources/lang/el-GR/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'Επασύναψη email', 'admin_cc_email_help' => 'Εάν θέλετε να στείλετε ένα αντίγραφο checkin/checkout emails που αποστέλλονται στους χρήστες σε έναν επιπλέον λογαριασμό email, εισαγάγετέ το εδώ. Διαφορετικά, αφήστε αυτό το πεδίο κενό.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Αυτός είναι ένας διακομιστής υπηρεσίας καταλόγου Active Directory', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Κωδικοί ελάχιστων χαρακτήρων', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Η ελάχιστη επιτρεπόμενη τιμή είναι 8', 'pwd_secure_uncommon' => 'Αποτρέψτε τους κοινούς κωδικούς πρόσβασης', 'pwd_secure_uncommon_help' => 'Αυτό θα αποκλείσει τους χρήστες από τη χρήση κοινών κωδικών πρόσβασης από τους κορυφαίους 10.000 κωδικούς πρόσβασης που αναφέρονται σε παραβιάσεις.', 'qr_help' => 'Ενεργοποιήστε πρώτα τους κωδικούς QR για να τις ορίσετε', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Καθαρισμός αρχείων που έχουν διαγραφεί', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,7 +335,7 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Τίτλος', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', diff --git a/resources/lang/el/admin/settings/message.php b/resources/lang/el-GR/admin/settings/message.php similarity index 100% rename from resources/lang/el/admin/settings/message.php rename to resources/lang/el-GR/admin/settings/message.php diff --git a/resources/lang/el-GR/admin/settings/table.php b/resources/lang/el-GR/admin/settings/table.php new file mode 100644 index 0000000000..e35be86862 --- /dev/null +++ b/resources/lang/el-GR/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Δημιουργήθηκε', + 'size' => 'Size', +); diff --git a/resources/lang/el/admin/statuslabels/message.php b/resources/lang/el-GR/admin/statuslabels/message.php similarity index 89% rename from resources/lang/el/admin/statuslabels/message.php rename to resources/lang/el-GR/admin/statuslabels/message.php index 52ee1f7d42..92275aceb6 100644 --- a/resources/lang/el/admin/statuslabels/message.php +++ b/resources/lang/el-GR/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Η ετικέτα κατάστασης δεν υπάρχει.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Αυτή η ετικέτα κατάστασης συσχετίζεται επί του παρόντος με ένα τουλάχιστον στοιχείο και δεν μπορεί να διαγραφεί. Ενημερώστε τα στοιχεία σας ώστε να μην αναφέρονται πλέον στην κατάσταση αυτή και να προσπαθήσετε ξανά.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Αυτά τα στοιχεία ενεργητικού δεν μπορούν να αποδοθούν σε κανέναν.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Αυτά τα περιουσιακά στοιχεία μπορούν να ελεγχθούν. Μόλις οριστούν, θα αναλάβουν μετα-κατάσταση Deployed.', 'archived' => 'Αυτά τα στοιχεία δεν μπορούν να εξακριβωθούν και θα εμφανιστούν μόνο στην προβολή Αρχειοθετημένη. Αυτό είναι χρήσιμο για τη διατήρηση πληροφοριών σχετικά με τα περιουσιακά στοιχεία για την κατάρτιση προϋπολογισμού / ιστορικούς σκοπούς, αλλά για τη διατήρησή τους εκτός της καθημερινής λίστας στοιχείων.', 'pending' => 'Αυτά τα στοιχεία ενεργητικού δεν μπορούν να αποδοθούν σε κανέναν, συχνά χρησιμοποιούμενα για αντικείμενα που πρόκειται να επισκευαστούν, αλλά αναμένεται να επιστρέψουν στην κυκλοφορία.', ], diff --git a/resources/lang/el/admin/statuslabels/table.php b/resources/lang/el-GR/admin/statuslabels/table.php similarity index 100% rename from resources/lang/el/admin/statuslabels/table.php rename to resources/lang/el-GR/admin/statuslabels/table.php diff --git a/resources/lang/el/admin/suppliers/message.php b/resources/lang/el-GR/admin/suppliers/message.php similarity index 100% rename from resources/lang/el/admin/suppliers/message.php rename to resources/lang/el-GR/admin/suppliers/message.php diff --git a/resources/lang/el/admin/suppliers/table.php b/resources/lang/el-GR/admin/suppliers/table.php similarity index 100% rename from resources/lang/el/admin/suppliers/table.php rename to resources/lang/el-GR/admin/suppliers/table.php diff --git a/resources/lang/el/admin/users/general.php b/resources/lang/el-GR/admin/users/general.php similarity index 97% rename from resources/lang/el/admin/users/general.php rename to resources/lang/el-GR/admin/users/general.php index 98909a65cd..588472b421 100644 --- a/resources/lang/el/admin/users/general.php +++ b/resources/lang/el-GR/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Προβολή χρήστη :ονόματος', 'usercsv' => 'CSV αρχείο', 'two_factor_admin_optin_help' => 'Οι τρέχουσες ρυθμίσεις διαχειριστή επιτρέπουν την επιλεκτική εφαρμογή ελέγχου ταυτότητας δύο παραγόντων.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Συσκευή εγγραφής 2FA', + 'two_factor_active' => '2FA Active', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/el/admin/users/message.php b/resources/lang/el-GR/admin/users/message.php similarity index 98% rename from resources/lang/el/admin/users/message.php rename to resources/lang/el-GR/admin/users/message.php index af6df4c78a..187ba8b757 100644 --- a/resources/lang/el/admin/users/message.php +++ b/resources/lang/el-GR/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Έχετε απορρίψει επιτυχώς αυτό το στοιχείο.', 'bulk_manager_warn' => 'Οι χρήστες σας ενημερώθηκαν με επιτυχία, ωστόσο η καταχώριση του διαχειριστή σας δεν αποθηκεύτηκε, επειδή ο διαχειριστής που επιλέξατε ήταν επίσης στη λίστα χρηστών για επεξεργασία και οι χρήστες ενδέχεται να μην είναι ο δικός τους διαχειριστής. Επιλέξτε ξανά τους χρήστες σας, εξαιρουμένου του διαχειριστή.', 'user_exists' => 'Ο χρήστης υπάρχει ήδη!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Ο χρήστης δεν υπάρχει.', 'user_login_required' => 'Το πεδίο εισόδου είναι υποχρεωτικό', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Ο κωδικός είναι απαραίτητος.', diff --git a/resources/lang/el/admin/users/table.php b/resources/lang/el-GR/admin/users/table.php similarity index 96% rename from resources/lang/el/admin/users/table.php rename to resources/lang/el-GR/admin/users/table.php index aa4d4fb5e3..1bbf8053b4 100644 --- a/resources/lang/el/admin/users/table.php +++ b/resources/lang/el-GR/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Διευθυντής', 'managed_locations' => 'Διαχειριζόμενες τοποθεσίες', 'name' => 'Όνομα', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Σημειώσεις', 'password_confirm' => 'Επιβεβαίωση Κωδικού Πρόσβασης', 'password' => 'Κωδικός Πρόσβασης', diff --git a/resources/lang/el/auth.php b/resources/lang/el-GR/auth.php similarity index 100% rename from resources/lang/el/auth.php rename to resources/lang/el-GR/auth.php diff --git a/resources/lang/el/auth/general.php b/resources/lang/el-GR/auth/general.php similarity index 100% rename from resources/lang/el/auth/general.php rename to resources/lang/el-GR/auth/general.php diff --git a/resources/lang/el/auth/message.php b/resources/lang/el-GR/auth/message.php similarity index 96% rename from resources/lang/el/auth/message.php rename to resources/lang/el-GR/auth/message.php index 3ccb9f58de..b3e110742c 100644 --- a/resources/lang/el/auth/message.php +++ b/resources/lang/el-GR/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Έχετε συνδεθεί επιτυχώς.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/el/button.php b/resources/lang/el-GR/button.php similarity index 87% rename from resources/lang/el/button.php rename to resources/lang/el-GR/button.php index f6d468b3c6..b67eb3ca02 100644 --- a/resources/lang/el/button.php +++ b/resources/lang/el-GR/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Επιλέξτε Αρχείο ...', 'select_files' => 'Επιλογή αρχείων...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Αποστολή συνδέσμου ακύρωσης κωδικού', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Νεό', ]; diff --git a/resources/lang/el/general.php b/resources/lang/el-GR/general.php similarity index 95% rename from resources/lang/el/general.php rename to resources/lang/el-GR/general.php index aaf0b65093..8130f3a987 100644 --- a/resources/lang/el/general.php +++ b/resources/lang/el-GR/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Εισαγωγή', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Ιστορικό Εισαγωγών', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Είστε έτοιμοι να αναπτύξετε', 'recent_activity' => 'Πρόσφατη Δραστηριότητα', - 'remaining' => 'Remaining', + 'remaining' => 'Απομένουν', 'remove_company' => 'Κατάργηση σύνδεσης εταιρείας', 'reports' => 'Αναφορές', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'Επαναφορά', 'requestable_models' => 'Requestable Models', 'requested' => 'Ζητήθηκαν', 'requested_date' => 'Requested Date', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Προμηθευτής', 'suppliers' => 'Προμηθευτές', 'sure_to_delete' => 'Είστε βέβαιοι ότι θέλετε να διαγράψετε', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Επιθυμείτε την διαφραφή :item;', 'delete_what' => 'Delete :item', 'submit' => 'Υποβολή', 'target' => 'Στόχος', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Δεν μπορεί να αναπτυχθεί', 'unknown_admin' => 'Άγνωστο Admin', 'username_format' => 'Τύπος ονόματος', - 'username' => 'Username', + 'username' => 'Όνομα χρήστη', 'update' => 'Ενημέρωση', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Ανέβηκε', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'Ηλεκτρονικό ταχυδρομείο', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Προσοχή', + 'notification_info' => 'Πληροφορίες', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Ονομασία του παγίου', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Όνομα αναλώσιμου:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Όνομα ανταλλακτικού:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% πλήρης', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'επεξεργασία', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/el-GR/help.php b/resources/lang/el-GR/help.php new file mode 100644 index 0000000000..729ce19f99 --- /dev/null +++ b/resources/lang/el-GR/help.php @@ -0,0 +1,35 @@ + 'Περισσότερες Πληροφορίες', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Τα στοιχεία ενεργητικού είναι στοιχεία που παρακολουθούνται με αύξοντα αριθμό ή ετικέτα στοιχείων. Έχουν την τάση να είναι στοιχεία υψηλότερης αξίας, όπου ο εντοπισμός ενός συγκεκριμένου στοιχείου έχει σημασία.', + + 'categories' => 'Οι κατηγορίες σας βοηθούν να οργανώσετε τα στοιχεία σας. Ορισμένες κατηγορίες παραδειγμάτων ενδέχεται να είναι "Desktops", "Laptops", "Mobile Phones", "Tablets" κ.ο.κ., αλλά μπορείτε να χρησιμοποιήσετε κατηγορίες με οποιονδήποτε τρόπο που έχει νόημα για εσάς.', + + 'accessories' => 'Τα αξεσουάρ είναι οτιδήποτε εκδίδετε στους χρήστες αλλά δεν έχουν αύξοντα αριθμό (ή δεν σας ενδιαφέρει να τα εντοπίζετε μοναδικά). Για παράδειγμα, ποντίκια υπολογιστή ή πληκτρολόγια.', + + 'companies' => 'Οι εταιρείες μπορούν να χρησιμοποιηθούν ως απλό πεδίο αναγνωριστικών ή μπορούν να χρησιμοποιηθούν για τον περιορισμό της ορατότητας των περιουσιακών στοιχείων, των χρηστών κ.λπ., εάν έχει ενεργοποιηθεί η πλήρης υποστήριξη της εταιρείας στις ρυθμίσεις διαχειριστή.', + + 'components' => 'Τα στοιχεία είναι στοιχεία που αποτελούν μέρος ενός περιουσιακού στοιχείου, για παράδειγμα σκληρό δίσκο, μνήμη RAM κ.λπ.', + + 'consumables' => 'Τα αναλώσιμα είναι οτιδήποτε αγοράζονται και θα χρησιμοποιηθούν με την πάροδο του χρόνου. Για παράδειγμα, μελάνι εκτυπωτή ή χαρτί φωτοαντιγραφικού.', + + 'depreciations' => 'Μπορείτε να ορίσετε αποσβέσεις του περιουσιακού στοιχείου προκειμένου να γίνει απόσβεση περιουσιακών στοιχείων βάσει σταθερής απόσβεσης.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/el-GR/localizations.php b/resources/lang/el-GR/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/el-GR/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/el/mail.php b/resources/lang/el-GR/mail.php similarity index 97% rename from resources/lang/el/mail.php rename to resources/lang/el-GR/mail.php index 554b0bf1b5..82e5307f39 100644 --- a/resources/lang/el/mail.php +++ b/resources/lang/el-GR/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Πάγιο:', 'asset_name' => 'Όνομα του περιουσιακού στοιχείου:', 'asset_requested' => 'Πάγιο αίτήθηκε', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Ετικέτα παγίων', 'assigned_to' => 'Ανατέθηκε στον', 'best_regards' => 'Τις καλύτερες ευχές,', 'canceled' => 'Ακυρωμένο:', @@ -55,7 +55,7 @@ return [ 'requested' => 'Ζητήθηκαν:', 'reset_link' => 'Αποστολή συνδέσμου ακύρωσης κωδικού', 'reset_password' => 'Κάντε κλικ εδώ για να επαναφέρετε τον κωδικό πρόσβασής σας:', - 'serial' => 'Serial', + 'serial' => 'Σειριακός', 'supplier' => 'Προμηθευτές', 'tag' => 'Ετικέτα', 'test_email' => 'Έλεγχος email για Snipe-IT', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'Για να επαναφέρετε τον κωδικό πρόσβασης στον ιστό, συμπληρώστε αυτήν τη φόρμα:', 'type' => 'Τύπος', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'Χρήστης', + 'username' => 'Όνομα χρήστη', 'welcome' => 'Καλώς ήρθατε, %name', 'welcome_to' => 'Καλώς ήλθατε στο!', 'your_credentials' => 'Τα διαπιστευτήρια σας Snipe-IT', diff --git a/resources/lang/el/pagination.php b/resources/lang/el-GR/pagination.php similarity index 100% rename from resources/lang/el/pagination.php rename to resources/lang/el-GR/pagination.php diff --git a/resources/lang/el/passwords.php b/resources/lang/el-GR/passwords.php similarity index 100% rename from resources/lang/el/passwords.php rename to resources/lang/el-GR/passwords.php diff --git a/resources/lang/el/reminders.php b/resources/lang/el-GR/reminders.php similarity index 100% rename from resources/lang/el/reminders.php rename to resources/lang/el-GR/reminders.php diff --git a/resources/lang/el/table.php b/resources/lang/el-GR/table.php similarity index 100% rename from resources/lang/el/table.php rename to resources/lang/el-GR/table.php diff --git a/resources/lang/el/validation.php b/resources/lang/el-GR/validation.php similarity index 99% rename from resources/lang/el/validation.php rename to resources/lang/el-GR/validation.php index 2154881663..55c48bca50 100644 --- a/resources/lang/el/validation.php +++ b/resources/lang/el-GR/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'Το :χαρακτηριστικό πρέπει να είναι μοναδικό.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/el/localizations.php b/resources/lang/el/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/el/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/en-GB/admin/settings/general.php b/resources/lang/en-GB/admin/settings/general.php index fed8756567..4db860f754 100644 --- a/resources/lang/en-GB/admin/settings/general.php +++ b/resources/lang/en-GB/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/en-GB/admin/statuslabels/message.php b/resources/lang/en-GB/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/en-GB/admin/statuslabels/message.php +++ b/resources/lang/en-GB/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/en-GB/admin/users/table.php b/resources/lang/en-GB/admin/users/table.php index 1145978e7e..9a77e0198d 100644 --- a/resources/lang/en-GB/admin/users/table.php +++ b/resources/lang/en-GB/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirm Password', 'password' => 'Password', diff --git a/resources/lang/en-GB/general.php b/resources/lang/en-GB/general.php index 7aa47dd14e..8b0381ccef 100644 --- a/resources/lang/en-GB/general.php +++ b/resources/lang/en-GB/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/en-GB/localizations.php b/resources/lang/en-GB/localizations.php index ca28cf7056..6521cb77aa 100644 --- a/resources/lang/en-GB/localizations.php +++ b/resources/lang/en-GB/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/en-GB/validation.php b/resources/lang/en-GB/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/en-GB/validation.php +++ b/resources/lang/en-GB/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/en-ID/admin/asset_maintenances/form.php b/resources/lang/en-ID/admin/asset_maintenances/form.php index 8231c162b1..e10573e77f 100644 --- a/resources/lang/en-ID/admin/asset_maintenances/form.php +++ b/resources/lang/en-ID/admin/asset_maintenances/form.php @@ -1,14 +1,14 @@ 'Asset Maintenance Type', + 'asset_maintenance_type' => 'Jenis Pemeliharaan Aset', 'title' => 'Judul', - 'start_date' => 'Start Date', - 'completion_date' => 'Completion Date', + 'start_date' => 'Tanggal Mulai', + 'completion_date' => 'Tanggal selesai', 'cost' => 'Biaya', 'is_warranty' => 'Peningkatan garansi', - 'asset_maintenance_time' => 'Asset Maintenance Time (in days)', + 'asset_maintenance_time' => 'Waktu Maintenance aset (dalam hari)', 'notes' => 'Catatan', - 'update' => 'Update Asset Maintenance', - 'create' => 'Create Asset Maintenance' + 'update' => 'Update Maintenance Aset', + 'create' => 'Buat Maintenance Aset' ]; diff --git a/resources/lang/en-ID/admin/companies/general.php b/resources/lang/en-ID/admin/companies/general.php index 21745ad909..a274575b3b 100644 --- a/resources/lang/en-ID/admin/companies/general.php +++ b/resources/lang/en-ID/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Pilih Perusahaan', - 'about_companies' => 'About Companies', + 'about_companies' => 'Tentang Perusahaan', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/en-ID/admin/custom_fields/general.php b/resources/lang/en-ID/admin/custom_fields/general.php index 9b56fbf430..f0d9c31258 100644 --- a/resources/lang/en-ID/admin/custom_fields/general.php +++ b/resources/lang/en-ID/admin/custom_fields/general.php @@ -35,7 +35,7 @@ return [ 'create_field' => 'Kostum field baru', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Nilai field ini dienkripsi dalam database. Hanya pengguna admin yang bisa melihat nilai dekripsi', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Sertakan nilai bidang ini dalam semua email keluar yang dikirim ke pengguna? Bidang yang terenkripsi tidak dapat disertakan dalam email', '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.', diff --git a/resources/lang/en-ID/admin/hardware/message.php b/resources/lang/en-ID/admin/hardware/message.php index e78a3b0a0f..920dfb61dd 100644 --- a/resources/lang/en-ID/admin/hardware/message.php +++ b/resources/lang/en-ID/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Aset tidak dikembalikan, coba lagi', 'success' => 'Aset Berhasil dikembalikan.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Aset Berhasil dikembalikan.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/en-ID/admin/hardware/table.php b/resources/lang/en-ID/admin/hardware/table.php index 976e1408b5..09b55e7cf8 100644 --- a/resources/lang/en-ID/admin/hardware/table.php +++ b/resources/lang/en-ID/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Perangkat Gambar', 'days_without_acceptance' => 'Hari tanpa penerimaan', 'monthly_depreciation' => 'Penyusutan Bulanan', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Ditetapkan untuk', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/en-ID/admin/kits/general.php b/resources/lang/en-ID/admin/kits/general.php index f724ecbf07..d88afa4297 100644 --- a/resources/lang/en-ID/admin/kits/general.php +++ b/resources/lang/en-ID/admin/kits/general.php @@ -24,20 +24,20 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Lisensi tidak ada', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Consumable Tidak ada', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', 'accessory_detached' => 'Accessory was successfully detached', 'accessory_error' => 'Accessory already attached to kit', 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', + 'accessory_none' => 'Aksesori tidak ditemukan', 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', diff --git a/resources/lang/en-ID/admin/labels/table.php b/resources/lang/en-ID/admin/labels/table.php index 87dee4bad0..88f132583e 100644 --- a/resources/lang/en-ID/admin/labels/table.php +++ b/resources/lang/en-ID/admin/labels/table.php @@ -8,6 +8,6 @@ return [ 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Judul', ]; \ No newline at end of file diff --git a/resources/lang/en-ID/admin/locations/table.php b/resources/lang/en-ID/admin/locations/table.php index 5dc4f60268..55ce9412c2 100644 --- a/resources/lang/en-ID/admin/locations/table.php +++ b/resources/lang/en-ID/admin/locations/table.php @@ -22,18 +22,18 @@ return [ 'currency' => 'Mata Uang Lokasi', 'ldap_ou' => 'LDAP Cari OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Departemen', + 'location' => 'Lokasi', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', + 'asset_name' => 'Nama', + 'asset_category' => 'Kategori', + 'asset_manufacturer' => 'Pabrikan', 'asset_model' => 'Model', 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_location' => 'Lokasi', + 'asset_checked_out' => 'Memeriksa', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Tanggal:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/en-ID/admin/settings/general.php b/resources/lang/en-ID/admin/settings/general.php index 23b955c516..8d4bf86997 100644 --- a/resources/lang/en-ID/admin/settings/general.php +++ b/resources/lang/en-ID/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Pengguna tidak diperlukan untuk menulis"namapengguna@domail.lokal", mereka dapat hanya menuliskan "namapengguna".', 'admin_cc_email' => 'Tembusan Email', 'admin_cc_email_help' => 'Jika Anda ingin mengirim salinan email checkin / checkout yang dikirimkan ke pengguna akun email tambahan, masukkan di sini. Jika tidak, biarkan bidang ini kosong.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Ini adalah server aktif direktori', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Karakter Minimal Kata Sandi', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Nilai Paling sedikit yang diizinkan adalah 8', 'pwd_secure_uncommon' => 'Mencegah kata Sandi Umum', 'pwd_secure_uncommon_help' => 'Ini akan melarang pengguna menggunakan kata kunci umum dari 10.000 sandi teratas yang dilaporkan mengalami pelanggaran.', 'qr_help' => 'Aktifkan kode QR terlebih dahulu untuk mengatur ini', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Bersihkan Arsip yang Dihapus', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Judul', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Tipe Kode Batang 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/en-ID/admin/settings/table.php b/resources/lang/en-ID/admin/settings/table.php index 22db5c84ed..2ff8f0a6da 100644 --- a/resources/lang/en-ID/admin/settings/table.php +++ b/resources/lang/en-ID/admin/settings/table.php @@ -1,6 +1,6 @@ 'Created', + 'created' => 'Dibuat', 'size' => 'Size', ); diff --git a/resources/lang/en-ID/admin/statuslabels/message.php b/resources/lang/en-ID/admin/statuslabels/message.php index 75dc74412e..7096987ed4 100644 --- a/resources/lang/en-ID/admin/statuslabels/message.php +++ b/resources/lang/en-ID/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Label Status tidak tersedia.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Label status ini dikaitkan dengan setidaknya satu aset dan tidak dapat dihapus. Harap perbarui aset anda agar tidak merujuk pada status ini dan coba lagi. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Aset ini tidak dapat diberikan kepada siapapun.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Aset ini bisa diperiksa. Begitu mereka ditetapkan, mereka akan menganggap status meta Deployed.', 'archived' => 'Aset ini tidak dapat diperiksa, dan hanya akan muncul di tampilan Arsip. Ini berguna untuk menyimpan informasi tentang aset untuk tujuan anggaran / sejarah namun menjauhkan mereka dari daftar aset sehari-hari.', 'pending' => 'Aset ini belum bisa diberikan kepada siapapun, sering digunakan untuk barang yang sedang diperbaiki, namun diperkirakan akan kembali beredar.', ], diff --git a/resources/lang/en-ID/admin/users/general.php b/resources/lang/en-ID/admin/users/general.php index e2d68f50b9..3de10a0bf5 100644 --- a/resources/lang/en-ID/admin/users/general.php +++ b/resources/lang/en-ID/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Lihat pengguna :name', 'usercsv' => 'Berkas CSV', 'two_factor_admin_optin_help' => 'Pengaturan admin anda saat ini membolehkan pelaksanaan otentifikasi dua-faktor secara selektif. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Perangkat 2FA Terdaftar ', + 'two_factor_active' => '2FA Aktif ', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/en-ID/admin/users/message.php b/resources/lang/en-ID/admin/users/message.php index a71d2c8672..afdd1cb185 100644 --- a/resources/lang/en-ID/admin/users/message.php +++ b/resources/lang/en-ID/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Anda sudah berhasil menolak aset ini.', 'bulk_manager_warn' => 'Pengguna anda sudah berhasil diperbarui, namun entri manajer anda tidak disimpan karena manajer yang anda pilih juga berada dalam daftar pengguna untuk disunting, dan pengguna mungkin bukan manajer mereka sendiri. Silahkan pilih pengguna anda lagi, tidak termasuk manajernya.', 'user_exists' => 'Pengguna sudah ada!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Pengguna tidak ada.', 'user_login_required' => 'Bidang masuk diperlukan', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Kata sandi diperlukan.', diff --git a/resources/lang/en-ID/admin/users/table.php b/resources/lang/en-ID/admin/users/table.php index 1082d99004..f47dfb9a45 100644 --- a/resources/lang/en-ID/admin/users/table.php +++ b/resources/lang/en-ID/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manajer', 'managed_locations' => 'Lokasi yang Dikelola', 'name' => 'Nama', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Catatan', 'password_confirm' => 'Konfirmasi kata sandi', 'password' => 'Kata Sandi', diff --git a/resources/lang/en-ID/auth/message.php b/resources/lang/en-ID/auth/message.php index e4c6902e57..19a7369f19 100644 --- a/resources/lang/en-ID/auth/message.php +++ b/resources/lang/en-ID/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Anda sudah berhasil masuk.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/en-ID/button.php b/resources/lang/en-ID/button.php index f021f165d6..2d87a1e11b 100644 --- a/resources/lang/en-ID/button.php +++ b/resources/lang/en-ID/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Pilih Berkas...', 'select_files' => 'Pilih file...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Kirim tautan atur ulang kata sandi', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Baru', ]; diff --git a/resources/lang/en-ID/general.php b/resources/lang/en-ID/general.php index 31b3bfaa34..b3233be17e 100644 --- a/resources/lang/en-ID/general.php +++ b/resources/lang/en-ID/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Impor', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Riwayat Impor', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Siap digunakan', 'recent_activity' => 'Aktifitas tebaru', - 'remaining' => 'Remaining', + 'remaining' => 'Sisa', 'remove_company' => 'Hapus Asosiasi Perusahaan', 'reports' => 'Laporan', 'restored' => 'dikembalikan', - 'restore' => 'Restore', + 'restore' => 'Kembalikan', 'requestable_models' => 'Requestable Models', 'requested' => 'Diminta', 'requested_date' => 'Requested Date', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Pemasok', 'suppliers' => 'Pemasok', 'sure_to_delete' => 'Apakah anda yakin ingin menghapus', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Apa Anda yakin untuk menghapus :item?', 'delete_what' => 'Delete :item', 'submit' => 'Kirim', 'target' => 'Target', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Tidak dapat disebarkan', 'unknown_admin' => 'Admin tidak diketahui', 'username_format' => 'Format nama pengguna', - 'username' => 'Username', + 'username' => 'Nama Pengguna', 'update' => 'Perbarui', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Unggah', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Memeriksa', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_warning' => 'Peringatan', 'notification_info' => 'Info', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Nama Aset', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Nama Konsumable:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Nama Aksesoris:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -406,7 +407,7 @@ return [ 'pie_chart_type' => 'Dashboard Pie Chart Type', 'hello_name' => 'Hello, :name!', 'unaccepted_profile_warning' => 'You have :count items requiring acceptance. Click here to accept or decline them', - 'start_date' => 'Start Date', + 'start_date' => 'Tanggal Mulai', 'end_date' => 'End Date', 'alt_uploaded_image_thumbnail' => 'Uploaded thumbnail', 'placeholder_kit' => 'Select a kit', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% lengkap', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'sunting', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/en-ID/help.php b/resources/lang/en-ID/help.php index a59e0056be..1c755b4eca 100644 --- a/resources/lang/en-ID/help.php +++ b/resources/lang/en-ID/help.php @@ -13,23 +13,23 @@ return [ | */ - 'more_info_title' => 'More Info', + 'more_info_title' => 'Info Lengkap', 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', + 'assets' => 'Aset adalah item yang dilacak dengan nomor seri atau tag aset. Mereka cenderung menjadi item nilai lebih tinggi di mana mengidentifikasi item tertentu yang penting.', - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', + 'categories' => 'Kategori membantu mengatur barang-barang anda. Beberapa contoh kategori seperti "Desktop", "Laptop", "Mobile Phones", "Tablet", dan sebagainya, namun Anda tetap dapat menggunakan kategori dengan cara apapun yang masuk akal bagi Anda.', - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', + 'accessories' => 'Aksesoris adalah Aset yang tidak memiliki nomor seri (atau Anda tidak peduli tentang pelacakan mereka secara unik). Misalnya, mouse komputer atau keyboard.', - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', + 'companies' => 'Cabang dapat digunakan untuk identitas atau untuk mengatur akses terhadap aset, user, dll.', - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', + 'components' => 'Komponen adalah bagian dari aset, contoh HDD, RAM, dll.', - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', + 'consumables' => 'Consumables adalah sesuatu yang dibeli yang akan digunakan dari waktu ke waktu. Misalnya, tinta printer atau kertas fotokopi.', - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', + 'depreciations' => 'Anda dapat mengatur depresiasi aset berdasarkan straight-line depreciation.', 'empty_file' => 'The importer detects that this file is empty.' ]; diff --git a/resources/lang/en-ID/localizations.php b/resources/lang/en-ID/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/en-ID/localizations.php +++ b/resources/lang/en-ID/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/en-ID/mail.php b/resources/lang/en-ID/mail.php index 5b1aca8b92..60ce6408c8 100644 --- a/resources/lang/en-ID/mail.php +++ b/resources/lang/en-ID/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Aset:', 'asset_name' => 'Nama Aset:', 'asset_requested' => 'Permintaan aset', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Penanda aset', 'assigned_to' => 'Ditetapkan untuk', 'best_regards' => 'Salam hormat,', 'canceled' => 'Dibatalkan:', diff --git a/resources/lang/en-ID/validation.php b/resources/lang/en-ID/validation.php index fcb3c98537..e1357fedc2 100644 --- a/resources/lang/en-ID/validation.php +++ b/resources/lang/en-ID/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute haruslah unik.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => ':atribute harus array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/el/account/general.php b/resources/lang/en-US/account/general.php similarity index 100% rename from resources/lang/el/account/general.php rename to resources/lang/en-US/account/general.php diff --git a/resources/lang/en/admin/accessories/general.php b/resources/lang/en-US/admin/accessories/general.php similarity index 100% rename from resources/lang/en/admin/accessories/general.php rename to resources/lang/en-US/admin/accessories/general.php diff --git a/resources/lang/en/admin/accessories/message.php b/resources/lang/en-US/admin/accessories/message.php similarity index 100% rename from resources/lang/en/admin/accessories/message.php rename to resources/lang/en-US/admin/accessories/message.php diff --git a/resources/lang/en/admin/accessories/table.php b/resources/lang/en-US/admin/accessories/table.php similarity index 100% rename from resources/lang/en/admin/accessories/table.php rename to resources/lang/en-US/admin/accessories/table.php diff --git a/resources/lang/en/admin/asset_maintenances/form.php b/resources/lang/en-US/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/en/admin/asset_maintenances/form.php rename to resources/lang/en-US/admin/asset_maintenances/form.php diff --git a/resources/lang/ca/admin/asset_maintenances/general.php b/resources/lang/en-US/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/ca/admin/asset_maintenances/general.php rename to resources/lang/en-US/admin/asset_maintenances/general.php diff --git a/resources/lang/en/admin/asset_maintenances/message.php b/resources/lang/en-US/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/en/admin/asset_maintenances/message.php rename to resources/lang/en-US/admin/asset_maintenances/message.php diff --git a/resources/lang/ca/admin/asset_maintenances/table.php b/resources/lang/en-US/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/ca/admin/asset_maintenances/table.php rename to resources/lang/en-US/admin/asset_maintenances/table.php diff --git a/resources/lang/en/admin/categories/general.php b/resources/lang/en-US/admin/categories/general.php similarity index 100% rename from resources/lang/en/admin/categories/general.php rename to resources/lang/en-US/admin/categories/general.php diff --git a/resources/lang/en/admin/categories/message.php b/resources/lang/en-US/admin/categories/message.php similarity index 100% rename from resources/lang/en/admin/categories/message.php rename to resources/lang/en-US/admin/categories/message.php diff --git a/resources/lang/en/admin/categories/table.php b/resources/lang/en-US/admin/categories/table.php similarity index 100% rename from resources/lang/en/admin/categories/table.php rename to resources/lang/en-US/admin/categories/table.php diff --git a/resources/lang/en/admin/companies/general.php b/resources/lang/en-US/admin/companies/general.php similarity index 100% rename from resources/lang/en/admin/companies/general.php rename to resources/lang/en-US/admin/companies/general.php diff --git a/resources/lang/en/admin/companies/message.php b/resources/lang/en-US/admin/companies/message.php similarity index 100% rename from resources/lang/en/admin/companies/message.php rename to resources/lang/en-US/admin/companies/message.php diff --git a/resources/lang/ca/admin/companies/table.php b/resources/lang/en-US/admin/companies/table.php similarity index 100% rename from resources/lang/ca/admin/companies/table.php rename to resources/lang/en-US/admin/companies/table.php diff --git a/resources/lang/en/admin/components/general.php b/resources/lang/en-US/admin/components/general.php similarity index 100% rename from resources/lang/en/admin/components/general.php rename to resources/lang/en-US/admin/components/general.php diff --git a/resources/lang/en/admin/components/message.php b/resources/lang/en-US/admin/components/message.php similarity index 100% rename from resources/lang/en/admin/components/message.php rename to resources/lang/en-US/admin/components/message.php diff --git a/resources/lang/en/admin/components/table.php b/resources/lang/en-US/admin/components/table.php similarity index 100% rename from resources/lang/en/admin/components/table.php rename to resources/lang/en-US/admin/components/table.php diff --git a/resources/lang/en/admin/consumables/general.php b/resources/lang/en-US/admin/consumables/general.php similarity index 100% rename from resources/lang/en/admin/consumables/general.php rename to resources/lang/en-US/admin/consumables/general.php diff --git a/resources/lang/en/admin/consumables/message.php b/resources/lang/en-US/admin/consumables/message.php similarity index 100% rename from resources/lang/en/admin/consumables/message.php rename to resources/lang/en-US/admin/consumables/message.php diff --git a/resources/lang/en/admin/consumables/table.php b/resources/lang/en-US/admin/consumables/table.php similarity index 100% rename from resources/lang/en/admin/consumables/table.php rename to resources/lang/en-US/admin/consumables/table.php diff --git a/resources/lang/en/admin/custom_fields/general.php b/resources/lang/en-US/admin/custom_fields/general.php similarity index 100% rename from resources/lang/en/admin/custom_fields/general.php rename to resources/lang/en-US/admin/custom_fields/general.php diff --git a/resources/lang/en/admin/custom_fields/message.php b/resources/lang/en-US/admin/custom_fields/message.php similarity index 100% rename from resources/lang/en/admin/custom_fields/message.php rename to resources/lang/en-US/admin/custom_fields/message.php diff --git a/resources/lang/en/admin/departments/message.php b/resources/lang/en-US/admin/departments/message.php similarity index 100% rename from resources/lang/en/admin/departments/message.php rename to resources/lang/en-US/admin/departments/message.php diff --git a/resources/lang/en/admin/departments/table.php b/resources/lang/en-US/admin/departments/table.php similarity index 100% rename from resources/lang/en/admin/departments/table.php rename to resources/lang/en-US/admin/departments/table.php diff --git a/resources/lang/en/admin/depreciations/general.php b/resources/lang/en-US/admin/depreciations/general.php similarity index 100% rename from resources/lang/en/admin/depreciations/general.php rename to resources/lang/en-US/admin/depreciations/general.php diff --git a/resources/lang/en/admin/depreciations/message.php b/resources/lang/en-US/admin/depreciations/message.php similarity index 100% rename from resources/lang/en/admin/depreciations/message.php rename to resources/lang/en-US/admin/depreciations/message.php diff --git a/resources/lang/en/admin/depreciations/table.php b/resources/lang/en-US/admin/depreciations/table.php similarity index 100% rename from resources/lang/en/admin/depreciations/table.php rename to resources/lang/en-US/admin/depreciations/table.php diff --git a/resources/lang/en/admin/groups/message.php b/resources/lang/en-US/admin/groups/message.php similarity index 100% rename from resources/lang/en/admin/groups/message.php rename to resources/lang/en-US/admin/groups/message.php diff --git a/resources/lang/en/admin/groups/table.php b/resources/lang/en-US/admin/groups/table.php similarity index 100% rename from resources/lang/en/admin/groups/table.php rename to resources/lang/en-US/admin/groups/table.php diff --git a/resources/lang/en/admin/groups/titles.php b/resources/lang/en-US/admin/groups/titles.php similarity index 100% rename from resources/lang/en/admin/groups/titles.php rename to resources/lang/en-US/admin/groups/titles.php diff --git a/resources/lang/am/admin/hardware/form.php b/resources/lang/en-US/admin/hardware/form.php similarity index 100% rename from resources/lang/am/admin/hardware/form.php rename to resources/lang/en-US/admin/hardware/form.php diff --git a/resources/lang/am/admin/hardware/general.php b/resources/lang/en-US/admin/hardware/general.php similarity index 100% rename from resources/lang/am/admin/hardware/general.php rename to resources/lang/en-US/admin/hardware/general.php diff --git a/resources/lang/en/admin/hardware/message.php b/resources/lang/en-US/admin/hardware/message.php similarity index 100% rename from resources/lang/en/admin/hardware/message.php rename to resources/lang/en-US/admin/hardware/message.php diff --git a/resources/lang/am/admin/hardware/table.php b/resources/lang/en-US/admin/hardware/table.php similarity index 100% rename from resources/lang/am/admin/hardware/table.php rename to resources/lang/en-US/admin/hardware/table.php diff --git a/resources/lang/lv/admin/kits/general.php b/resources/lang/en-US/admin/kits/general.php similarity index 98% rename from resources/lang/lv/admin/kits/general.php rename to resources/lang/en-US/admin/kits/general.php index f724ecbf07..f57fb645c4 100644 --- a/resources/lang/lv/admin/kits/general.php +++ b/resources/lang/en-US/admin/kits/general.php @@ -37,7 +37,7 @@ return [ 'accessory_detached' => 'Accessory was successfully detached', 'accessory_error' => 'Accessory already attached to kit', 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', + 'accessory_none' => 'The accessory does not exist', 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', diff --git a/resources/lang/en/admin/labels/message.php b/resources/lang/en-US/admin/labels/message.php similarity index 100% rename from resources/lang/en/admin/labels/message.php rename to resources/lang/en-US/admin/labels/message.php diff --git a/resources/lang/ar/admin/labels/table.php b/resources/lang/en-US/admin/labels/table.php similarity index 100% rename from resources/lang/ar/admin/labels/table.php rename to resources/lang/en-US/admin/labels/table.php diff --git a/resources/lang/am/admin/licenses/form.php b/resources/lang/en-US/admin/licenses/form.php similarity index 100% rename from resources/lang/am/admin/licenses/form.php rename to resources/lang/en-US/admin/licenses/form.php diff --git a/resources/lang/en/admin/licenses/general.php b/resources/lang/en-US/admin/licenses/general.php similarity index 100% rename from resources/lang/en/admin/licenses/general.php rename to resources/lang/en-US/admin/licenses/general.php diff --git a/resources/lang/en/admin/licenses/message.php b/resources/lang/en-US/admin/licenses/message.php similarity index 100% rename from resources/lang/en/admin/licenses/message.php rename to resources/lang/en-US/admin/licenses/message.php diff --git a/resources/lang/en/admin/licenses/table.php b/resources/lang/en-US/admin/licenses/table.php similarity index 100% rename from resources/lang/en/admin/licenses/table.php rename to resources/lang/en-US/admin/licenses/table.php diff --git a/resources/lang/en/admin/locations/message.php b/resources/lang/en-US/admin/locations/message.php similarity index 100% rename from resources/lang/en/admin/locations/message.php rename to resources/lang/en-US/admin/locations/message.php diff --git a/resources/lang/am/admin/locations/table.php b/resources/lang/en-US/admin/locations/table.php similarity index 100% rename from resources/lang/am/admin/locations/table.php rename to resources/lang/en-US/admin/locations/table.php diff --git a/resources/lang/en/admin/manufacturers/message.php b/resources/lang/en-US/admin/manufacturers/message.php similarity index 100% rename from resources/lang/en/admin/manufacturers/message.php rename to resources/lang/en-US/admin/manufacturers/message.php diff --git a/resources/lang/en/admin/manufacturers/table.php b/resources/lang/en-US/admin/manufacturers/table.php similarity index 100% rename from resources/lang/en/admin/manufacturers/table.php rename to resources/lang/en-US/admin/manufacturers/table.php diff --git a/resources/lang/en/admin/models/general.php b/resources/lang/en-US/admin/models/general.php similarity index 100% rename from resources/lang/en/admin/models/general.php rename to resources/lang/en-US/admin/models/general.php diff --git a/resources/lang/en/admin/models/message.php b/resources/lang/en-US/admin/models/message.php similarity index 100% rename from resources/lang/en/admin/models/message.php rename to resources/lang/en-US/admin/models/message.php diff --git a/resources/lang/am/admin/models/table.php b/resources/lang/en-US/admin/models/table.php similarity index 100% rename from resources/lang/am/admin/models/table.php rename to resources/lang/en-US/admin/models/table.php diff --git a/resources/lang/en/admin/reports/general.php b/resources/lang/en-US/admin/reports/general.php similarity index 100% rename from resources/lang/en/admin/reports/general.php rename to resources/lang/en-US/admin/reports/general.php diff --git a/resources/lang/en/admin/reports/message.php b/resources/lang/en-US/admin/reports/message.php similarity index 100% rename from resources/lang/en/admin/reports/message.php rename to resources/lang/en-US/admin/reports/message.php diff --git a/resources/lang/iu/admin/settings/general.php b/resources/lang/en-US/admin/settings/general.php similarity index 99% rename from resources/lang/iu/admin/settings/general.php rename to resources/lang/en-US/admin/settings/general.php index 64d0aef53e..c8d6306036 100644 --- a/resources/lang/iu/admin/settings/general.php +++ b/resources/lang/en-US/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/en/admin/settings/message.php b/resources/lang/en-US/admin/settings/message.php similarity index 100% rename from resources/lang/en/admin/settings/message.php rename to resources/lang/en-US/admin/settings/message.php diff --git a/resources/lang/ar/admin/settings/table.php b/resources/lang/en-US/admin/settings/table.php similarity index 100% rename from resources/lang/ar/admin/settings/table.php rename to resources/lang/en-US/admin/settings/table.php diff --git a/resources/lang/so/admin/statuslabels/message.php b/resources/lang/en-US/admin/statuslabels/message.php similarity index 97% rename from resources/lang/so/admin/statuslabels/message.php rename to resources/lang/en-US/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/so/admin/statuslabels/message.php +++ b/resources/lang/en-US/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/am/admin/statuslabels/table.php b/resources/lang/en-US/admin/statuslabels/table.php similarity index 100% rename from resources/lang/am/admin/statuslabels/table.php rename to resources/lang/en-US/admin/statuslabels/table.php diff --git a/resources/lang/en/admin/suppliers/message.php b/resources/lang/en-US/admin/suppliers/message.php similarity index 100% rename from resources/lang/en/admin/suppliers/message.php rename to resources/lang/en-US/admin/suppliers/message.php diff --git a/resources/lang/am/admin/suppliers/table.php b/resources/lang/en-US/admin/suppliers/table.php similarity index 100% rename from resources/lang/am/admin/suppliers/table.php rename to resources/lang/en-US/admin/suppliers/table.php diff --git a/resources/lang/en/admin/users/general.php b/resources/lang/en-US/admin/users/general.php similarity index 100% rename from resources/lang/en/admin/users/general.php rename to resources/lang/en-US/admin/users/general.php diff --git a/resources/lang/en/admin/users/message.php b/resources/lang/en-US/admin/users/message.php similarity index 100% rename from resources/lang/en/admin/users/message.php rename to resources/lang/en-US/admin/users/message.php diff --git a/resources/lang/en/admin/users/table.php b/resources/lang/en-US/admin/users/table.php similarity index 100% rename from resources/lang/en/admin/users/table.php rename to resources/lang/en-US/admin/users/table.php diff --git a/resources/lang/en/auth.php b/resources/lang/en-US/auth.php similarity index 100% rename from resources/lang/en/auth.php rename to resources/lang/en-US/auth.php diff --git a/resources/lang/en/auth/general.php b/resources/lang/en-US/auth/general.php similarity index 100% rename from resources/lang/en/auth/general.php rename to resources/lang/en-US/auth/general.php diff --git a/resources/lang/en/auth/message.php b/resources/lang/en-US/auth/message.php similarity index 100% rename from resources/lang/en/auth/message.php rename to resources/lang/en-US/auth/message.php diff --git a/resources/lang/am/button.php b/resources/lang/en-US/button.php similarity index 100% rename from resources/lang/am/button.php rename to resources/lang/en-US/button.php diff --git a/resources/lang/en/general.php b/resources/lang/en-US/general.php similarity index 100% rename from resources/lang/en/general.php rename to resources/lang/en-US/general.php diff --git a/resources/lang/ca/help.php b/resources/lang/en-US/help.php similarity index 100% rename from resources/lang/ca/help.php rename to resources/lang/en-US/help.php diff --git a/resources/lang/en-US/localizations.php b/resources/lang/en-US/localizations.php new file mode 100644 index 0000000000..58a267e6ec --- /dev/null +++ b/resources/lang/en-US/localizations.php @@ -0,0 +1,320 @@ + 'Select a language', + 'languages' => [ + 'en-US'=> 'English, US', + 'en-GB'=> 'English, UK', + 'am-ET' => 'Amharic', + 'af-ZA'=> 'Afrikaans', + 'ar-SA'=> 'Arabic', + 'bg-BG'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'ca-ES' => 'Catalan', + 'hr-HR'=> 'Croatian', + 'cs-CZ'=> 'Czech', + 'da-DK'=> 'Danish', + 'nl-NL'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et-EE'=> 'Estonian', + 'fil-PH'=> 'Filipino', + 'fi-FI'=> 'Finnish', + 'fr-FR'=> 'French', + 'de-DE'=> 'German', + 'de-if'=> 'German (Informal)', + 'el-GR'=> 'Greek', + 'he-IL'=> 'Hebrew', + 'hu-HU'=> 'Hungarian', + 'is-IS' => 'Icelandic', + 'id-ID'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it-IT'=> 'Italian', + 'ja-JP'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko-KR'=> 'Korean', + 'lt-LT'=>'Latvian', + 'lv-LV'=> 'Lithuanian', + 'mk-MK'=> 'Macedonian', + 'ms-MY'=> 'Malay', + 'mi-NZ'=> 'Maori', + 'mn-MN'=> 'Mongolian', + 'no-NO'=> 'Norwegian', + 'fa-IR'=> 'Persian', + 'pl-PL'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro-RO'=> 'Romanian', + 'ru-RU'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sk-SK'=> 'Slovak', + 'sl-SI'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl-PH'=> 'Tagalog', + 'ta-IN'=> 'Tamil', + 'th-TH'=> 'Thai', + 'tr-TR'=> 'Turkish', + 'uk-UA'=> 'Ukranian', + 'vi-VN'=> 'Vietnamese', + 'cy-GB'=> 'Welsh', + 'zu-ZA'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/am/mail.php b/resources/lang/en-US/mail.php similarity index 100% rename from resources/lang/am/mail.php rename to resources/lang/en-US/mail.php diff --git a/resources/lang/en/pagination.php b/resources/lang/en-US/pagination.php similarity index 100% rename from resources/lang/en/pagination.php rename to resources/lang/en-US/pagination.php diff --git a/resources/lang/en/passwords.php b/resources/lang/en-US/passwords.php similarity index 100% rename from resources/lang/en/passwords.php rename to resources/lang/en-US/passwords.php diff --git a/resources/lang/en/reminders.php b/resources/lang/en-US/reminders.php similarity index 100% rename from resources/lang/en/reminders.php rename to resources/lang/en-US/reminders.php diff --git a/resources/lang/am/table.php b/resources/lang/en-US/table.php similarity index 100% rename from resources/lang/am/table.php rename to resources/lang/en-US/table.php diff --git a/resources/lang/en-US/validation.php b/resources/lang/en-US/validation.php new file mode 100644 index 0000000000..4a1d192664 --- /dev/null +++ b/resources/lang/en-US/validation.php @@ -0,0 +1,154 @@ + 'The :attribute must be accepted.', + 'active_url' => 'The :attribute is not a valid URL.', + 'after' => 'The :attribute must be a date after :date.', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + 'alpha' => 'The :attribute may only contain letters.', + 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', + 'alpha_num' => 'The :attribute may only contain letters and numbers.', + 'array' => 'The :attribute must be an array.', + 'before' => 'The :attribute must be a date before :date.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'between' => [ + 'numeric' => 'The :attribute must be between :min - :max.', + 'file' => 'The :attribute must be between :min - :max kilobytes.', + 'string' => 'The :attribute must be between :min - :max characters.', + 'array' => 'The :attribute must have between :min and :max items.', + ], + 'boolean' => 'The :attribute must be true or false.', + 'confirmed' => 'The :attribute confirmation does not match.', + 'date' => 'The :attribute is not a valid date.', + 'date_format' => 'The :attribute does not match the format :format.', + 'different' => 'The :attribute and :other must be different.', + 'digits' => 'The :attribute must be :digits digits.', + 'digits_between' => 'The :attribute must be between :min and :max digits.', + 'dimensions' => 'The :attribute has invalid image dimensions.', + 'distinct' => 'The :attribute field has a duplicate value.', + 'email' => 'The :attribute format is invalid.', + 'exists' => 'The selected :attribute is invalid.', + 'file' => 'The :attribute must be a file.', + 'filled' => 'The :attribute field must have a value.', + 'image' => 'The :attribute must be an image.', + 'import_field_empty' => 'The value for :fieldname cannot be null.', + 'in' => 'The selected :attribute is invalid.', + 'in_array' => 'The :attribute field does not exist in :other.', + 'integer' => 'The :attribute must be an integer.', + 'ip' => 'The :attribute must be a valid IP address.', + 'ipv4' => 'The :attribute must be a valid IPv4 address.', + 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'is_unique_department' => 'The :attribute must be unique to this Company Location', + 'json' => 'The :attribute must be a valid JSON string.', + 'max' => [ + 'numeric' => 'The :attribute may not be greater than :max.', + 'file' => 'The :attribute may not be greater than :max kilobytes.', + 'string' => 'The :attribute may not be greater than :max characters.', + 'array' => 'The :attribute may not have more than :max items.', + ], + 'mimes' => 'The :attribute must be a file of type: :values.', + 'mimetypes' => 'The :attribute must be a file of type: :values.', + 'min' => [ + 'numeric' => 'The :attribute must be at least :min.', + 'file' => 'The :attribute must be at least :min kilobytes.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', + ], + 'starts_with' => 'The :attribute must start with one of the following: :values.', + 'ends_with' => 'The :attribute must end with one of the following: :values.', + + 'not_in' => 'The selected :attribute is invalid.', + 'numeric' => 'The :attribute must be a number.', + 'present' => 'The :attribute field must be present.', + 'valid_regex' => 'That is not a valid regex. ', + 'regex' => 'The :attribute format is invalid.', + 'required' => 'The :attribute field is required.', + 'required_if' => 'The :attribute field is required when :other is :value.', + 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_with' => 'The :attribute field is required when :values is present.', + 'required_with_all' => 'The :attribute field is required when :values is present.', + 'required_without' => 'The :attribute field is required when :values is not present.', + 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'same' => 'The :attribute and :other must match.', + 'size' => [ + 'numeric' => 'The :attribute must be :size.', + 'file' => 'The :attribute must be :size kilobytes.', + 'string' => 'The :attribute must be :size characters.', + 'array' => 'The :attribute must contain :size items.', + ], + 'string' => 'The :attribute must be a string.', + 'timezone' => 'The :attribute must be a valid zone.', + 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', + 'unique' => 'The :attribute has already been taken.', + 'uploaded' => 'The :attribute failed to upload.', + 'url' => 'The :attribute format is invalid.', + 'unique_undeleted' => 'The :attribute must be unique.', + 'non_circular' => 'The :attribute must not create a circular reference.', + 'not_array' => ':atribute harus array.', + 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', + 'letters' => 'Password must contain at least one letter.', + 'numbers' => 'Password must contain at least one number.', + 'case_diff' => 'Password must use mixed case.', + 'symbols' => 'Password must contain symbols.', + 'gte' => [ + 'numeric' => 'Value cannot be negative' + ], + + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'alpha_space' => 'The :attribute field contains a character that is not allowed.', + 'email_array' => 'One or more email addresses is invalid.', + 'hashed_pass' => 'Your current password is incorrect', + 'dumbpwd' => 'That password is too common.', + 'statuslabel_type' => 'You must select a valid status label type', + + // date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :( + // We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP + // people won't know how to format. + 'purchase_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'last_audit_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD hh:mm:ss format', + 'expiration_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'termination_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'expected_checkin.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'start_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'end_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [], + +]; diff --git a/resources/lang/es-CO/admin/companies/general.php b/resources/lang/es-CO/admin/companies/general.php index 4629638938..3bab87715a 100644 --- a/resources/lang/es-CO/admin/companies/general.php +++ b/resources/lang/es-CO/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Seleccionar Compañía', - 'about_companies' => 'Acerca de las empresas', + 'about_companies' => 'Acerca de las Compañías', 'about_companies_description' => ' Puede utilizar las empresas como un campo informativo simple, o puede utilizarlos para restringir la visibilidad de los activos y la disponibilidad a los usuarios con una empresa específica habilitando el soporte completo de la compañía en su Configuración de Administración.', ]; diff --git a/resources/lang/es-CO/admin/hardware/table.php b/resources/lang/es-CO/admin/hardware/table.php index 81ebc983d5..36b4e5f24a 100644 --- a/resources/lang/es-CO/admin/hardware/table.php +++ b/resources/lang/es-CO/admin/hardware/table.php @@ -5,7 +5,7 @@ return [ 'asset_tag' => 'Etiqueta de equipo', 'asset_model' => 'Modelo', 'book_value' => 'Valor Actual', - 'change' => 'Operación', + 'change' => 'Entrada/Salida', 'checkout_date' => 'Fecha de devolución', 'checkoutto' => 'Asignado a', 'components_cost' => 'Coste total de componentes', @@ -20,7 +20,7 @@ return [ 'purchase_date' => 'Comprado', 'serial' => 'Número de serie', 'status' => 'Estado', - 'title' => 'Equipo ', + 'title' => 'Activo ', 'image' => 'Imagen de dispositivo', 'days_without_acceptance' => 'Días Sin Aceptación', 'monthly_depreciation' => 'Depreciación mensual', diff --git a/resources/lang/es-CO/admin/kits/general.php b/resources/lang/es-CO/admin/kits/general.php index c1d2e00115..b5a23ad0e1 100644 --- a/resources/lang/es-CO/admin/kits/general.php +++ b/resources/lang/es-CO/admin/kits/general.php @@ -30,14 +30,14 @@ return [ 'consumable_updated' => 'Consumible actualizado correctamente', 'consumable_error' => 'Consumible ya vinculado al kit', 'consumable_deleted' => 'Eliminado correctamente', - 'consumable_none' => 'El Consumible no existe', + 'consumable_none' => 'El consumible no existe', 'consumable_detached' => 'Consumible desvinculado correctamente', 'accessory_added_success' => 'Accesorio añadido correctamente', 'accessory_updated' => 'Accesorio actualizado correctamente', 'accessory_detached' => 'Accesorio desvinculado correctamente', 'accessory_error' => 'El accesorio ya vinculado al kit', 'accessory_deleted' => 'Eliminado correctamente', - 'accessory_none' => 'El accesorio no existe', + 'accessory_none' => 'Accesorio no existe', 'checkout_success' => 'Asignación correcta', 'checkout_error' => 'Error al asignar', 'kit_none' => 'El Kit no existe', diff --git a/resources/lang/es-CO/admin/labels/table.php b/resources/lang/es-CO/admin/labels/table.php index 87dee4bad0..56dc414c41 100644 --- a/resources/lang/es-CO/admin/labels/table.php +++ b/resources/lang/es-CO/admin/labels/table.php @@ -2,12 +2,12 @@ return [ - 'labels_per_page' => 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', + 'labels_per_page' => 'Etiquetas', + 'support_fields' => 'Campos', + 'support_asset_tag' => 'Etiqueta', 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Puesto', ]; \ No newline at end of file diff --git a/resources/lang/es-CO/admin/licenses/form.php b/resources/lang/es-CO/admin/licenses/form.php index 3724e53dbd..73135171a6 100644 --- a/resources/lang/es-CO/admin/licenses/form.php +++ b/resources/lang/es-CO/admin/licenses/form.php @@ -3,7 +3,7 @@ return array( 'asset' => 'Equipo', - 'checkin' => 'Quita', + 'checkin' => 'Entrada', 'create' => 'Nueva Licencia', 'expiration' => 'Fecha de vencimiento', 'license_key' => 'Clave de producto', diff --git a/resources/lang/es-CO/admin/licenses/general.php b/resources/lang/es-CO/admin/licenses/general.php index e43f4c364d..58fba109c7 100644 --- a/resources/lang/es-CO/admin/licenses/general.php +++ b/resources/lang/es-CO/admin/licenses/general.php @@ -10,7 +10,7 @@ return array( 'filetype_info' => 'Tipos de archivos permitidos son png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, y rar.', 'clone' => 'Clonar Usuario', 'history_for' => 'Historial para ', - 'in_out' => 'Quita/Asigna', + 'in_out' => 'Entrada/Salida', 'info' => 'Info Licencia', 'license_seats' => 'Num. Instalaciones', 'seat' => 'Instalación', diff --git a/resources/lang/es-CO/admin/licenses/table.php b/resources/lang/es-CO/admin/licenses/table.php index c5b82e4147..6f1e5f59ff 100644 --- a/resources/lang/es-CO/admin/licenses/table.php +++ b/resources/lang/es-CO/admin/licenses/table.php @@ -2,16 +2,16 @@ return array( - 'assigned_to' => 'Asignada a', - 'checkout' => 'Quita/Asigna', + 'assigned_to' => 'Asignado a', + 'checkout' => 'Entrada/Salida', 'id' => 'ID', 'license_email' => 'Email', 'license_name' => 'Licenciado a', - 'purchase_date' => 'Fecha Compra', - 'purchased' => 'Comprada', + 'purchase_date' => 'Fecha de Compra', + 'purchased' => 'Comprado', 'seats' => 'Instalaciones', 'hardware' => 'Equipo', - 'serial' => 'N. Serie', + 'serial' => 'Número de serie', 'title' => 'Categoría de equipo', ); diff --git a/resources/lang/es-CO/admin/locations/table.php b/resources/lang/es-CO/admin/locations/table.php index d4b14ca92e..1f66c2ce8d 100644 --- a/resources/lang/es-CO/admin/locations/table.php +++ b/resources/lang/es-CO/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Imprimir todos los Asignados', 'name' => 'Nombre de ubicación', 'address' => 'Dirección', - 'address2' => 'Address Line 2', + 'address2' => 'Dirección (línea 2)', 'zip' => 'Código Postal', 'locations' => 'Ubicaciones', 'parent' => 'Ubicación Padre', @@ -31,7 +31,7 @@ return [ 'asset_model' => 'Modelo', 'asset_serial' => 'Número de serie', 'asset_location' => 'Ubicación', - 'asset_checked_out' => 'Asignado', + 'asset_checked_out' => 'Asignado a', 'asset_expected_checkin' => 'Fecha Esperada de Devolución', 'date' => 'Fecha:', 'signed_by_asset_auditor' => 'Firmado por (Juego de Acciones):', diff --git a/resources/lang/es-CO/admin/models/general.php b/resources/lang/es-CO/admin/models/general.php index 02a4b68d6a..def6837b22 100644 --- a/resources/lang/es-CO/admin/models/general.php +++ b/resources/lang/es-CO/admin/models/general.php @@ -12,7 +12,7 @@ return array( 'show_mac_address' => 'Mostrar el campo de la dirección MAC en los equipos de este modelo', 'view_deleted' => 'Ver Borrados', 'view_models' => 'Ver Modelos', - 'fieldset' => 'Grupos de campo', + 'fieldset' => 'Fieldset', 'no_custom_field' => 'No hay campos personalizados', 'add_default_values' => 'Agregar valores predeterminados', ); diff --git a/resources/lang/es-CO/admin/settings/general.php b/resources/lang/es-CO/admin/settings/general.php index 2ce59e76d5..0327212f9f 100644 --- a/resources/lang/es-CO/admin/settings/general.php +++ b/resources/lang/es-CO/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'El usuario no necesita escribir "username@domain.local", puede escribir únicamente "username".', 'admin_cc_email' => 'Email CC', 'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Este es un servidor de Directorio Activo', 'alerts' => 'Alertas', 'alert_title' => 'Actualizar ajustes de notificación', @@ -109,7 +110,7 @@ return [ 'ldap_pw_sync' => 'Sincronización de Contraseña LDAP', 'ldap_pw_sync_help' => 'Desmarca esta casilla si no quieres mantener las contraseñas LDAP sincronizadas con las contraseñas locales. Desactivar esto significa que tus usuarios no podrán acceder si tu servidor LDAP no está disponible por algún motivo.', 'ldap_username_field' => 'Campo de usuario', - 'ldap_lname_field' => 'Apellido', + 'ldap_lname_field' => 'Apellidos', 'ldap_fname_field' => 'Nombre LDAP', 'ldap_auth_filter_query' => 'Consulta de autentificación LDAP', 'ldap_version' => 'Versión LDAP', @@ -222,7 +223,7 @@ return [ 'version_footer_help' => 'Especifica quién ve la versión y el número de compilación de Snipe-IT.', 'system' => 'Información del Sistema', 'update' => 'Actualizar Parámetros', - 'value' => 'Valor', + 'value' => 'Precio', 'brand' => 'Marca', 'brand_keywords' => 'pie de página, logotipo, impresión, tema, piel, encabezado, colores, color, css', 'brand_help' => 'Logo, nombre del sitio', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Puesto', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Tipo de códigos de barras 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/es-CO/admin/statuslabels/message.php b/resources/lang/es-CO/admin/statuslabels/message.php index 303421e25e..a5639c6deb 100644 --- a/resources/lang/es-CO/admin/statuslabels/message.php +++ b/resources/lang/es-CO/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Etiqueta de Estado inexistente.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Esta etiqueta de estado está asociada con al menos un equipo actualmente, por lo que no puede ser eliminada. Por favor actualiza tus equipos para que no hagan uso de esta etiqueta, e inténtalo de nuevo. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Estos equipos no pueden ser asignados.', - 'deployable' => 'Estos activos pueden ser retirados. Una vez asignados, asumirán un estado meta de Desplegado.', + 'deployable' => 'Estos equipos pueden ser asignados. Una vez estén asignados, asumirán el meta estado de Asignado.', 'archived' => 'Estos equipos no pueden ser asignados, y solo se mostrarán en la vista de Archivados. Esto es útil para retener información sobre equipos por razones de presupuesto/revisión histórica, mientras están fuera de la lista de equipos del día a día.', 'pending' => 'Estos equipos no pueden ser asignados, suele usarse para ítems que están en reparación, o que se espera que regresen a circulación eventualmente.', ], diff --git a/resources/lang/es-CO/admin/suppliers/table.php b/resources/lang/es-CO/admin/suppliers/table.php index f576b2d372..9a92dc8d78 100644 --- a/resources/lang/es-CO/admin/suppliers/table.php +++ b/resources/lang/es-CO/admin/suppliers/table.php @@ -4,7 +4,7 @@ return array( 'about_suppliers_title' => 'Acerca de Proveedores', 'about_suppliers_text' => 'Los Proveedores son utilizados para hacer seguimiento de la fuente de los items', 'address' => 'Dirección del Proveedor', - 'assets' => 'Equipos', + 'assets' => 'Activos', 'city' => 'Ciudad', 'contact' => 'Nombre Contacto', 'country' => 'Pais', @@ -16,7 +16,7 @@ return array( 'name' => 'Nombre', 'notes' => 'Notas', 'phone' => 'Teléfono', - 'state' => 'Provincia', + 'state' => 'Departamento', 'suppliers' => 'Proveedores', 'update' => 'Actualizar Proveedor', 'url' => 'URL', diff --git a/resources/lang/es-CO/admin/users/table.php b/resources/lang/es-CO/admin/users/table.php index 3dde234f3a..725236c01a 100644 --- a/resources/lang/es-CO/admin/users/table.php +++ b/resources/lang/es-CO/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Jefe Inmediato', 'managed_locations' => 'Ubicaciones gestionadas', 'name' => 'Nombre', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notas', 'password_confirm' => 'Confirmar contraseña', 'password' => 'Contraseña', diff --git a/resources/lang/es-CO/auth/general.php b/resources/lang/es-CO/auth/general.php index dd8c671d6a..1be16aed87 100644 --- a/resources/lang/es-CO/auth/general.php +++ b/resources/lang/es-CO/auth/general.php @@ -5,7 +5,7 @@ return [ 'email_reset_password' => 'Restaurar contraseña email', 'reset_password' => 'Restablecer Contraseña', 'saml_login' => 'Iniciar sesión a través de SAML', - 'login' => 'Iniciar Sesión', + 'login' => 'Entrar', 'login_prompt' => 'Por favor, inicia sesión', 'forgot_password' => 'He olvidado mi contraseña', 'ldap_reset_password' => 'Haga clic aquí para restablecer su contraseña LDAP', diff --git a/resources/lang/es-CO/button.php b/resources/lang/es-CO/button.php index 10cbfec787..b76f94da9e 100644 --- a/resources/lang/es-CO/button.php +++ b/resources/lang/es-CO/button.php @@ -5,7 +5,7 @@ return [ 'add' => 'Agregar nuevo', 'cancel' => 'Cancelar', 'checkin_and_delete' => 'Checkin Todos / Eliminar Usuario', - 'delete' => 'Borrar', + 'delete' => 'Eliminar', 'edit' => 'Editar', 'restore' => 'Restaurar', 'remove' => 'Eliminar', diff --git a/resources/lang/es-CO/general.php b/resources/lang/es-CO/general.php index 7c8d8c23f9..889e63cbcd 100644 --- a/resources/lang/es-CO/general.php +++ b/resources/lang/es-CO/general.php @@ -65,7 +65,7 @@ return [ 'click_here' => 'Haz clic aquí', 'clear_selection' => 'Borrar selección', 'companies' => 'Compañías', - 'company' => 'Empresa', + 'company' => 'Compañía', 'component' => 'Componente', 'components' => 'Componentes', 'complete' => 'Completo', @@ -87,7 +87,7 @@ return [ 'customize_report' => 'Personalizar informe', 'custom_report' => 'Reporte de Equipos Personalizado', 'dashboard' => 'Tablero', - 'days' => 'días', + 'days' => 'dias', 'days_to_next_audit' => 'Días a la próxima auditoría', 'date' => 'Fecha Compra', 'debug_warning' => '¡Alerta!', @@ -101,14 +101,14 @@ return [ 'departments' => 'Departamentos', 'department' => 'Departamento', 'deployed' => 'Instalados - ', - 'depreciation' => 'Amortización', + 'depreciation' => 'Depreciación', 'depreciations' => 'Depreciaciones', 'depreciation_report' => 'Informe de amortización', 'details' => 'Detalles', 'download' => 'Descargar', 'download_all' => 'Descargar todo', 'editprofile' => 'Editar Perfil', - 'eol' => 'EOL', + 'eol' => 'Vida útil', 'email_domain' => 'Dominio de correo electrónico', 'email_format' => 'Formato de correo electrónico', 'employee_number' => 'Número de empleado', @@ -130,7 +130,7 @@ return [ 'lastname_firstinitial' => 'Apellido Inicial (smith_j@ejemplo.com)', 'firstinitial.lastname' => 'Inicial Apellido (j.smith@ejemplo.com)', 'firstnamelastinitial' => 'Primer nombre y última inicial (janes@example.com)', - 'first_name' => 'Nombre', + 'first_name' => 'Nombres', 'first_name_format' => 'Primer Nombre (jane@ejemplo.com)', 'files' => 'Archivos', 'file_name' => 'Archivo', @@ -146,7 +146,7 @@ return [ 'gravatar_url' => 'Cambia tu avatar en Gravatar.com.', 'history' => 'Historial', 'history_for' => 'Historial de', - 'id' => 'Id', + 'id' => 'ID', 'image' => 'Imagen', 'image_delete' => 'Borrar imagen', 'include_deleted' => 'Incluir activos eliminados', @@ -156,13 +156,14 @@ return [ 'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tamaño máximo permitido es :size.', 'unaccepted_image_type' => 'No se pudo leer este archivo de imagen. Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tipo mimetype de este archivo es: :mimetype.', 'import' => 'Importar', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importando', 'importing_help' => 'Puedes importar activos, accesorios, licencias, componentes, insumos y usuarios vía archivos CSV.

El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con aquellos definidos en los CSVs de muestra en la documentación.', 'import-history' => 'Historial de Importación', - 'asset_maintenance' => 'Mantenimiento de Equipo', + 'asset_maintenance' => 'Mantenimiento de Activos', 'asset_maintenance_report' => 'Reporte de Mantenimiento de Equipo', - 'asset_maintenances' => 'Mantenimientos de Equipo', - 'item' => 'Item', + 'asset_maintenances' => 'Mantenimiento de Activos', + 'item' => 'Articulo', 'item_name' => 'Nombre del ítem', 'import_file' => 'importar archivo CSV', 'import_type' => 'Tipo de importación CSV', @@ -180,8 +181,8 @@ return [ 'loading' => 'Cargando... por favor espere....', 'lock_passwords' => 'El valor de este campo no será guardado en una instalación de demostración.', 'feature_disabled' => 'Esta característica se ha desactivado para la versión de demostración.', - 'location' => 'Localización', - 'locations' => 'Localizaciones', + 'location' => 'Ubicación', + 'locations' => 'Ubicaciones', 'logo_size' => 'Los logotipos cuadrados se ven mejor con Logo + Texto. El tamaño máximo del logo es 50px de altura x 500px de ancho. ', 'logout' => 'Desconexión', 'lookup_by_tag' => 'Buscar por etiqueta de activo', @@ -192,10 +193,10 @@ return [ 'markdown' => 'Este campo permite Github con sabor a markdown.', 'min_amt' => 'Cantidad mínima', 'min_amt_help' => 'Número mínimo de elementos que deben estar disponibles antes de que se active una alerta. Deje la cantidad mínima en blanco si no desea recibir alertas de inventario bajo.', - 'model_no' => 'Modelo No.', - 'months' => 'Meses', - 'moreinfo' => 'Más Info', - 'name' => 'Nombre Localización', + 'model_no' => 'Modelo Nro.', + 'months' => 'meses', + 'moreinfo' => 'Más información', + 'name' => 'Nombre', 'new_password' => 'Nueva contraseña', 'next' => 'Siguiente', 'next_audit_date' => 'Próxima fecha de auditoría', @@ -205,19 +206,19 @@ return [ 'no_results' => 'Sin Resultados.', 'no' => 'No', 'notes' => 'Notas', - 'order_number' => 'Nùmero de orden', + 'order_number' => 'Orden Número', 'only_deleted' => 'Sólo activos eliminados', 'page_menu' => 'Mostrando elementos de _MENU_', 'pagination_info' => 'Mostrando _START_ de _END_ de elementos _TOTAL_', - 'pending' => 'Equipo Pendiente', + 'pending' => 'Equipos Pendiente', 'people' => 'Usuarios', 'per_page' => 'Resultados Por Pag', 'previous' => 'Previo', 'processing' => 'Procesando', 'profile' => 'Perfil', - 'purchase_cost' => 'Precio Compra', - 'purchase_date' => 'Fecha de compra', - 'qty' => 'Cant', + 'purchase_cost' => 'Precio de compra', + 'purchase_date' => 'Fecha de Compra', + 'qty' => 'Cantidad', 'quantity' => 'Cantidad', 'quantity_minimum' => 'Tienes :count elementos por debajo o casi por debajo de los niveles mínimos de cantidad', 'quickscan_checkin' => 'Escaneo rápido de entrada', @@ -250,7 +251,7 @@ return [ 'select_user' => 'Seleccionar un usuario', 'select_date' => 'Seleccione Fecha (AAAA-MM-DD)', 'select_statuslabel' => 'Seleccionar Estado', - 'select_company' => 'Seleccionar empresa', + 'select_company' => 'Seleccionar Compañía', 'select_asset' => 'Seleccionar activos', 'settings' => 'Opciones', 'show_deleted' => 'Mostrar Eliminado', @@ -263,14 +264,14 @@ return [ 'webhook_test_msg' => '¡Parece que tu integración de :app con Snipe-IT está funcionando!', 'some_features_disabled' => 'MODO DE DEMOSTRACIÓN: Algunas funciones estan desactivadas para esta instalación.', 'site_name' => 'Sitio', - 'state' => 'Provincia', - 'status_labels' => 'Etiquetas Estados', - 'status' => 'Estados', + 'state' => 'Departamento', + 'status_labels' => 'Etiquetas de Estado', + 'status' => 'Estado', 'accept_eula' => 'Acuerdo de Aceptación', 'supplier' => 'Proveedor', 'suppliers' => 'Proveedores', 'sure_to_delete' => '¿Está seguro que desea eliminar', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => '¿Estás seguro de eliminar :item?', 'delete_what' => 'Delete :item', 'submit' => 'Enviar', 'target' => 'Objetivo', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'No Instalable', 'unknown_admin' => 'Admin Desconocido', 'username_format' => 'Formato del nombre de usuario', - 'username' => 'Usuario', + 'username' => 'Nombre de usuario', 'update' => 'Actualizar', 'upload_filetypes_help' => 'Los tipos de archivo permitidos son png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf y rar. El tamaño máximo permitido es :size.', 'uploaded' => 'Subido', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Crear Usuario Admin', 'setup_done' => '¡Terminado!', 'bulk_edit_about_to' => 'Estás a punto de editar lo siguiente: ', - 'checked_out' => 'Asignado', + 'checked_out' => 'Asignado a', 'checked_out_to' => 'Asignado a', 'fields' => 'Campos', 'last_checkout' => 'Última Asignación', @@ -374,12 +375,12 @@ return [ 'notification_error' => 'Error', 'notification_error_hint' => 'Por favor revise si hay errores en el siguiente formulario', 'notification_bulk_error_hint' => 'Los siguientes campos tenían errores de validación y no han sido editados:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => 'Éxito', + 'notification_warning' => 'Advertencia', + 'notification_info' => 'Información', 'asset_information' => 'Información del activo', 'model_name' => 'Nombre del modelo', - 'asset_name' => 'Nombre del Equipo', + 'asset_name' => 'Nombre del Activo', 'consumable_information' => 'Información del consumible:', 'consumable_name' => 'Nombre del Consumible:', 'accessory_information' => 'Información del accesorio:', @@ -486,10 +487,17 @@ return [ 'address2' => 'Dirección (línea 2)', 'import_note' => 'Importado usando el importador de csv', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% completo', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'editar', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/es-CO/localizations.php b/resources/lang/es-CO/localizations.php index 4a869df6e4..7e07721468 100644 --- a/resources/lang/es-CO/localizations.php +++ b/resources/lang/es-CO/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irlandés', 'it'=> 'Italiano', 'ja'=> 'Japonés', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Coreano', 'lv'=>'Letón', 'lt'=> 'Lituano', diff --git a/resources/lang/es-CO/mail.php b/resources/lang/es-CO/mail.php index 7855099df4..d35d3b42af 100644 --- a/resources/lang/es-CO/mail.php +++ b/resources/lang/es-CO/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Activo:', 'asset_name' => 'Nombre del activo:', 'asset_requested' => 'Activo solicitado', - 'asset_tag' => 'Etiqueta de activo', + 'asset_tag' => 'Etiqueta de equipo', 'assigned_to' => 'Asignado a', 'best_regards' => 'Cordialmente,', 'canceled' => 'Cancelado:', @@ -27,8 +27,8 @@ return [ 'Confirm_asset_delivery' => 'Confirmación de entrega del activo', 'Confirm_consumable_delivery' => 'Confirmación de entrega del consumible', 'current_QTY' => 'Cantidad actual', - 'Days' => 'Días', - 'days' => 'Días', + 'Days' => 'Dias', + 'days' => 'Dias', 'expecting_checkin_date' => 'Fecha de devolución prevista:', 'expires' => 'Expira', 'Expiring_Assets_Report' => 'Informe de activos que expiran.', diff --git a/resources/lang/es-CO/table.php b/resources/lang/es-CO/table.php index 1ad5301590..678324c194 100644 --- a/resources/lang/es-CO/table.php +++ b/resources/lang/es-CO/table.php @@ -5,6 +5,6 @@ return array( 'actions' => 'Acciones', 'action' => 'Acción', 'by' => 'Por', - 'item' => 'Item', + 'item' => 'Articulo', ); diff --git a/resources/lang/es-CO/validation.php b/resources/lang/es-CO/validation.php index 2ffc34c93a..2a0acc719f 100644 --- a/resources/lang/es-CO/validation.php +++ b/resources/lang/es-CO/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'El :atrribute debe ser único.', 'non_circular' => ':attribute no debe crear una referencia circular.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'La contraseña no puede ser la misma que el usuario.', 'letters' => 'La contraseña debe contener al menos una letra.', 'numbers' => 'La contraseña debe contener al menos un número.', diff --git a/resources/lang/es-ES/admin/labels/table.php b/resources/lang/es-ES/admin/labels/table.php index 87dee4bad0..46af599a2b 100644 --- a/resources/lang/es-ES/admin/labels/table.php +++ b/resources/lang/es-ES/admin/labels/table.php @@ -2,12 +2,12 @@ return [ - 'labels_per_page' => 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', + 'labels_per_page' => 'Etiquetas', + 'support_fields' => 'Campos', + 'support_asset_tag' => 'Etiqueta', 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Título', ]; \ No newline at end of file diff --git a/resources/lang/es-ES/admin/locations/table.php b/resources/lang/es-ES/admin/locations/table.php index c28204f53a..7c5c7324d3 100644 --- a/resources/lang/es-ES/admin/locations/table.php +++ b/resources/lang/es-ES/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Imprimir todos los asignados', 'name' => 'Nombre Localización', 'address' => 'Dirección', - 'address2' => 'Address Line 2', + 'address2' => 'Dirección (línea 2)', 'zip' => 'Códio Postal', 'locations' => 'Localizaciones', 'parent' => 'Padre', diff --git a/resources/lang/es-ES/admin/settings/general.php b/resources/lang/es-ES/admin/settings/general.php index 2ce59e76d5..6e6097312a 100644 --- a/resources/lang/es-ES/admin/settings/general.php +++ b/resources/lang/es-ES/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'El usuario no necesita escribir "username@domain.local", puede escribir únicamente "username".', 'admin_cc_email' => 'Email CC', 'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Este es un servidor de Directorio Activo', 'alerts' => 'Alertas', 'alert_title' => 'Actualizar ajustes de notificación', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Título', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Tipo de códigos de barras 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/es-ES/admin/statuslabels/message.php b/resources/lang/es-ES/admin/statuslabels/message.php index 6a7e257b4c..527e8779b2 100644 --- a/resources/lang/es-ES/admin/statuslabels/message.php +++ b/resources/lang/es-ES/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Etiqueta de estado no existe.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Esta etiqueta de estado esta actualmente asociado con al menos un activo y no se puede eliminar. Por favor actualice sus activos para ya no hacer referencia a este estado y vuelva a intentarlo. ', 'create' => [ diff --git a/resources/lang/es-ES/admin/users/table.php b/resources/lang/es-ES/admin/users/table.php index 5edd745539..9b14f70857 100644 --- a/resources/lang/es-ES/admin/users/table.php +++ b/resources/lang/es-ES/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Responsable', 'managed_locations' => 'Ubicaciones gestionadas', 'name' => 'Usuario', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notas', 'password_confirm' => 'Confirmar Password', 'password' => 'Contraseña', diff --git a/resources/lang/es-ES/general.php b/resources/lang/es-ES/general.php index 137a8f912f..0b3b5049bf 100644 --- a/resources/lang/es-ES/general.php +++ b/resources/lang/es-ES/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tamaño máximo permitido es :size.', 'unaccepted_image_type' => 'No se pudo leer este archivo de imagen. Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tipo mimetype de este archivo es: :mimetype.', 'import' => 'Importar', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importando', 'importing_help' => 'Puedes importar activos, accesorios, licencias, componentes, insumos y usuarios vía archivos CSV.

El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con aquellos definidos en los CSVs de muestra en la documentación.', 'import-history' => 'Historial de Importación', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Proveedor', 'suppliers' => 'Proveedores', 'sure_to_delete' => '¿Está seguro que desea eliminar', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => '¿Estás seguro de eliminar :item?', 'delete_what' => 'Delete :item', 'submit' => 'Enviar', 'target' => 'Objetivo', @@ -374,9 +375,9 @@ return [ 'notification_error' => 'Error', 'notification_error_hint' => 'Por favor revise si hay errores en el siguiente formulario', 'notification_bulk_error_hint' => 'Los siguientes campos tenían errores de validación y no han sido editados:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => 'Éxito', + 'notification_warning' => 'Advertencia', + 'notification_info' => 'Información', 'asset_information' => 'Información del activo', 'model_name' => 'Nombre del modelo', 'asset_name' => 'Nombre del Equipo', @@ -486,10 +487,17 @@ return [ 'address2' => 'Dirección (línea 2)', 'import_note' => 'Importado usando el importador de csv', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% completo', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'editar', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/es-ES/localizations.php b/resources/lang/es-ES/localizations.php index 4a869df6e4..7e07721468 100644 --- a/resources/lang/es-ES/localizations.php +++ b/resources/lang/es-ES/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irlandés', 'it'=> 'Italiano', 'ja'=> 'Japonés', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Coreano', 'lv'=>'Letón', 'lt'=> 'Lituano', diff --git a/resources/lang/es-ES/validation.php b/resources/lang/es-ES/validation.php index ed0116374d..f2867f4593 100644 --- a/resources/lang/es-ES/validation.php +++ b/resources/lang/es-ES/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'El :atrribute debe ser único.', 'non_circular' => ':attribute no debe crear una referencia circular.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'La contraseña no puede ser la misma que el usuario.', 'letters' => 'La contraseña debe contener al menos una letra.', 'numbers' => 'La contraseña debe contener al menos un número.', diff --git a/resources/lang/es-MX/admin/custom_fields/general.php b/resources/lang/es-MX/admin/custom_fields/general.php index ce93330ad3..16f86abbbb 100644 --- a/resources/lang/es-MX/admin/custom_fields/general.php +++ b/resources/lang/es-MX/admin/custom_fields/general.php @@ -52,7 +52,7 @@ return [ 'display_in_user_view_table' => 'Visible al Usuario', 'auto_add_to_fieldsets' => 'Añadir automáticamente a cada nuevo conjunto de campos', 'add_to_preexisting_fieldsets' => 'Añadir a cualquier conjunto de campos existente', - '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' => 'Mostrar por defecto en las vistas de lista. Los usuarios autorizados aún podrán mostrar/ocultar a través del selector de columnas', 'show_in_listview_short' => 'Mostrar en listas', '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', diff --git a/resources/lang/es-MX/admin/locations/table.php b/resources/lang/es-MX/admin/locations/table.php index 1f1cb618a8..88fd49c69c 100644 --- a/resources/lang/es-MX/admin/locations/table.php +++ b/resources/lang/es-MX/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Imprimir Lo Asignado', 'name' => 'Nombre Localización', 'address' => 'Dirección', - 'address2' => 'Address Line 2', + 'address2' => '2da linea de Dirección', 'zip' => 'Códio Postal', 'locations' => 'Localizaciones', 'parent' => 'Padre', diff --git a/resources/lang/es-MX/admin/settings/general.php b/resources/lang/es-MX/admin/settings/general.php index 83d335fec6..2dc1d7398b 100644 --- a/resources/lang/es-MX/admin/settings/general.php +++ b/resources/lang/es-MX/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'No se requiere que el usuario escriba "username@dominio.empresa", ellos podrán, simplemente digitar su nombre de usuario "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Este es un servidor de Directorio Activo', 'alerts' => 'Alertas', 'alert_title' => 'Actualizar ajustes de notificación', diff --git a/resources/lang/es-MX/admin/statuslabels/message.php b/resources/lang/es-MX/admin/statuslabels/message.php index 450cbaebfa..36d2159d6a 100644 --- a/resources/lang/es-MX/admin/statuslabels/message.php +++ b/resources/lang/es-MX/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Etiqueta de estado no existe.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Esta etiqueta de estado esta actualmente asociado con al menos un activo y no se puede eliminar. Por favor actualice sus activos para ya no hacer referencia a este estado y vuelva a intentarlo. ', 'create' => [ diff --git a/resources/lang/es-MX/admin/users/table.php b/resources/lang/es-MX/admin/users/table.php index 9c49a2edac..e7906b49ec 100644 --- a/resources/lang/es-MX/admin/users/table.php +++ b/resources/lang/es-MX/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Responsable', 'managed_locations' => 'Ubicaciones gestionadas', 'name' => 'Usuario', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notas', 'password_confirm' => 'Confirmar Password', 'password' => 'Contraseña', diff --git a/resources/lang/es-MX/general.php b/resources/lang/es-MX/general.php index 45f3f1dfea..3e63ad1d8e 100644 --- a/resources/lang/es-MX/general.php +++ b/resources/lang/es-MX/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tamaño máximo permitido es :size.', 'unaccepted_image_type' => 'No fue posible leer este archivo de imagen. Tipos de archivo aceptados son jpg, webp, png, gif y svg. El mimetype de este archivo es: :mimetype.', 'import' => 'Importar', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importando', 'importing_help' => 'Puede importar activos, accesorios, licencias, componentes, consumibles y usuarios a través de un archivo CSV.

El CSV debe estar delimitado por comas y con formato de encabezados que coincidan con el archivo CSV de muestra en la documentación.', 'import-history' => 'Historial de Importación', @@ -374,9 +375,9 @@ return [ 'notification_error' => 'Error', 'notification_error_hint' => 'Por favor revise si hay errores en el siguiente formulario', 'notification_bulk_error_hint' => 'Los siguientes campos tenían errores de validación y no han sido editados:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => 'Éxito', + 'notification_warning' => 'Advertencia', + 'notification_info' => 'Información', 'asset_information' => 'Información del activo', 'model_name' => 'Nombre del modelo', 'asset_name' => 'Nombre del activo', @@ -486,10 +487,17 @@ return [ 'address2' => '2da linea de Dirección', 'import_note' => 'Importado usando el importador de csv', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% completo', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'editar', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/es-MX/localizations.php b/resources/lang/es-MX/localizations.php index c5c7aace3b..0461443382 100644 --- a/resources/lang/es-MX/localizations.php +++ b/resources/lang/es-MX/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irlandés', 'it'=> 'Italiano', 'ja'=> 'Japonés', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Coreano', 'lv'=>'Letón', 'lt'=> 'Lituano', diff --git a/resources/lang/es-MX/validation.php b/resources/lang/es-MX/validation.php index 5fa26b085f..c73b766b0f 100644 --- a/resources/lang/es-MX/validation.php +++ b/resources/lang/es-MX/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'El :atrribute debe ser único.', 'non_circular' => ':attribute no debe crear una referencia circular.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'La contraseña no puede ser la misma que el nombre de usuario.', 'letters' => 'La contraseña debe contener al menos una letra.', 'numbers' => 'La contraseña debe contener al menos un número.', diff --git a/resources/lang/es-VE/admin/hardware/message.php b/resources/lang/es-VE/admin/hardware/message.php index e275de40de..2a9519278b 100644 --- a/resources/lang/es-VE/admin/hardware/message.php +++ b/resources/lang/es-VE/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'El activo no fue restaurado, por favor, inténtalo de nuevo', 'success' => 'Activo restaurado correctamente.', - 'bulk_success' => 'Equipo restaurado correctamente.', + 'bulk_success' => 'Activo restaurado correctamente.', 'nothing_updated' => 'No se seleccionaron activos, por lo que no se restauró nada.', ], diff --git a/resources/lang/es-VE/admin/kits/general.php b/resources/lang/es-VE/admin/kits/general.php index 5096b479b4..0839e7be9b 100644 --- a/resources/lang/es-VE/admin/kits/general.php +++ b/resources/lang/es-VE/admin/kits/general.php @@ -29,8 +29,8 @@ return [ 'consumable_added_success' => 'Consumible creado con éxito', 'consumable_updated' => 'Consumible actualizado correctamente', 'consumable_error' => 'Consumible ya vinculado al kit', - 'consumable_deleted' => 'Eliminado correctamente', - 'consumable_none' => 'El Consumible no existe', + 'consumable_deleted' => 'El borrado fue exitoso', + 'consumable_none' => 'El consumible no existe', 'consumable_detached' => 'Consumible desvinculado correctamente', 'accessory_added_success' => 'Accesorio añadido correctamente', 'accessory_updated' => 'Accesorio actualizado correctamente', diff --git a/resources/lang/es-VE/admin/labels/table.php b/resources/lang/es-VE/admin/labels/table.php index 87dee4bad0..46af599a2b 100644 --- a/resources/lang/es-VE/admin/labels/table.php +++ b/resources/lang/es-VE/admin/labels/table.php @@ -2,12 +2,12 @@ return [ - 'labels_per_page' => 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', + 'labels_per_page' => 'Etiquetas', + 'support_fields' => 'Campos', + 'support_asset_tag' => 'Etiqueta', 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Título', ]; \ No newline at end of file diff --git a/resources/lang/es-VE/admin/locations/table.php b/resources/lang/es-VE/admin/locations/table.php index 2e7d33f431..89bacb736b 100644 --- a/resources/lang/es-VE/admin/locations/table.php +++ b/resources/lang/es-VE/admin/locations/table.php @@ -12,10 +12,10 @@ return [ 'create' => 'Crear Ubicación', 'update' => 'Actualizar Ubicación', 'print_assigned' => 'Imprimir los asignados', - 'print_all_assigned' => 'Imprimir todos los asignados', + 'print_all_assigned' => 'Imprimir Todos los Asignados', 'name' => 'Nombre de Ubicación', 'address' => 'Dirección', - 'address2' => 'Address Line 2', + 'address2' => 'Dirección (línea 2)', 'zip' => 'Código Postal', 'locations' => 'Ubicaciones', 'parent' => 'Padre', @@ -23,14 +23,14 @@ return [ 'ldap_ou' => 'Búsqueda LDAP OU', 'user_name' => 'Nombre de usuario', 'department' => 'Departamento', - 'location' => 'Ubicación', + 'location' => 'Localización', 'asset_tag' => 'Etiqueta de activo', 'asset_name' => 'Nombre', 'asset_category' => 'Categoría', 'asset_manufacturer' => 'Fabricante', 'asset_model' => 'Modelo', 'asset_serial' => 'Número de serie', - 'asset_location' => 'Ubicación', + 'asset_location' => 'Localización', 'asset_checked_out' => 'Asignado', 'asset_expected_checkin' => 'Fecha Esperada de Devolución', 'date' => 'Fecha:', diff --git a/resources/lang/es-VE/admin/settings/general.php b/resources/lang/es-VE/admin/settings/general.php index 473464093f..de1f5c20cc 100644 --- a/resources/lang/es-VE/admin/settings/general.php +++ b/resources/lang/es-VE/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'El usuario no necesita escribir "username@domain.local", puede escribir únicamente "username".', 'admin_cc_email' => 'Email CC', 'admin_cc_email_help' => 'Si deseas enviar una notificación por correo electrónico de las asignaciones de activos que se envían a los usuarios a una cuenta adicional, ingrésela aquí. De lo contrario, deja este campo en blanco.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Este es un servidor de Directorio Activo', 'alerts' => 'Alertas', 'alert_title' => 'Actualizar ajustes de notificación', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Título', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Tipo de código de barras 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/es-VE/admin/statuslabels/message.php b/resources/lang/es-VE/admin/statuslabels/message.php index 1581c953dd..3c765306ee 100644 --- a/resources/lang/es-VE/admin/statuslabels/message.php +++ b/resources/lang/es-VE/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Etiqueta de estado no existe.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Esta etiqueta de estado está actualmente asociado con al menos un Activo y no puede ser borrada. Por favor, actualiza tus activos para no referenciar más este estado e inténtalo de nuevo. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Estos activos no pueden asignarse a nadie.', - 'deployable' => 'Estos activos pueden ser retirados. Una vez asignados, asumirán un estado meta de Desplegado.', + 'deployable' => 'Estos activos pueden ser retirados. Una vez hayan sido asignados, asumirán el metaestado de Desplegados.', 'archived' => 'Estos activos no pueden ser asignados, y sólo se mostrarán en la vista archivada. Esto es útil para retener información acerca de activos para propósitos históricos o de presupuesto, pero manteniéndolos fuera de la lista de activos del día a día.', 'pending' => 'Estos activos no pueden ser asignados a nadie aún, usados a menudo para artículos que son para reparar pero se espera que vuelvan a circulación.', ], diff --git a/resources/lang/es-VE/admin/users/message.php b/resources/lang/es-VE/admin/users/message.php index bd6b49161d..92ed878cb1 100644 --- a/resources/lang/es-VE/admin/users/message.php +++ b/resources/lang/es-VE/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Has rechazado este activo con éxito.', 'bulk_manager_warn' => 'Tus usuarios han sido actualizados con éxito, sin embargo tu entrada de administrador no fue guardada debido que el administrador que seleccionaste también era un usuario de la lista que iba a ser editada, y los usuarios no pueden editar a su propio administrador. Por favor selecciona a tus usuarios de nuevo, excluyendo al administrador.', 'user_exists' => '¡El usuario ya existe!', - 'user_not_found' => 'Usuario inexistente.', + 'user_not_found' => 'El usuario no existe.', 'user_login_required' => 'El campo de usuario es obligatorio', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'La contraseña es obligatoria.', diff --git a/resources/lang/es-VE/admin/users/table.php b/resources/lang/es-VE/admin/users/table.php index 23242a8a40..fab9a461a8 100644 --- a/resources/lang/es-VE/admin/users/table.php +++ b/resources/lang/es-VE/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Responsable', 'managed_locations' => 'Ubicaciones adminsitradas', 'name' => 'Nombre', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notas', 'password_confirm' => 'Confirmar Contraseña', 'password' => 'Contraseña', diff --git a/resources/lang/es-VE/auth/message.php b/resources/lang/es-VE/auth/message.php index 147eace045..77d7390883 100644 --- a/resources/lang/es-VE/auth/message.php +++ b/resources/lang/es-VE/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Su dispositivo ya está inscrito.', - 'success' => 'Usted inició sesión correctamente.', + 'success' => 'Has iniciado sesión con éxito.', 'code_required' => 'Se requiere el código de 2FA(Autenticación en dos pasos) .', 'invalid_code' => 'El código de doble factor es inválido.', ), diff --git a/resources/lang/es-VE/general.php b/resources/lang/es-VE/general.php index 114f38b628..bceb792f0c 100644 --- a/resources/lang/es-VE/general.php +++ b/resources/lang/es-VE/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tamaño máximo permitido es :size.', 'unaccepted_image_type' => 'No se pudo leer este archivo de imagen. Los tipos de archivo aceptados son jpg, webp, png, gif y svg. El tipo mimetype de este archivo es: :mimetype.', 'import' => 'Importar', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importando', 'importing_help' => 'Puedes importar activos, accesorios, licencias, componentes, insumos y usuarios vía archivos CSV.

El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con aquellos definidos en los CSVs de muestra en la documentación.', 'import-history' => 'Importar Historial', @@ -231,7 +232,7 @@ return [ 'restore' => 'Restaurar', 'requestable_models' => 'Modelos disponibles para solicitar', 'requested' => 'Solicitado', - 'requested_date' => 'Fecha de solicitud', + 'requested_date' => 'Fecha solicitada', 'requested_assets' => 'Activos solicitados', 'requested_assets_menu' => 'Activos solicitados', 'request_canceled' => 'Solicitud Cancelada', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Proveedor', 'suppliers' => 'Proveedores', 'sure_to_delete' => '¿Está seguro que quieres borrar', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => '¿Estás seguro de eliminar :item?', 'delete_what' => 'Delete :item', 'submit' => 'Enviar', 'target' => 'Objetivo', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'No desplegable', 'unknown_admin' => 'Administrador Desconocido', 'username_format' => 'Formato de Nombre de Usuario', - 'username' => 'Usuario', + 'username' => 'Nombre de usuario', 'update' => 'Actualizar', 'upload_filetypes_help' => 'Los tipos de archivo permitidos son png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf y rar. El tamaño máximo permitido es :size.', 'uploaded' => 'Actualizado', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Ocultar ayuda', 'view_all' => 'ver todo', 'hide_deleted' => 'Ocultar eliminados', - 'email' => 'Email', + 'email' => 'Correo electrónico', 'do_not_change' => 'No cambiar', 'bug_report' => 'Reportar un fallo', 'user_manual' => 'Manual del usuario', @@ -374,16 +375,16 @@ return [ 'notification_error' => 'Error', 'notification_error_hint' => 'Por favor revise si hay errores en el siguiente formulario', 'notification_bulk_error_hint' => 'Los siguientes campos tenían errores de validación y no han sido editados:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_success' => 'Éxito', + 'notification_warning' => 'Advertencia', 'notification_info' => 'Info', 'asset_information' => 'Información del activo', 'model_name' => 'Nombre del modelo', - 'asset_name' => 'Nombre del Equipo', + 'asset_name' => 'Nombre de Activo', 'consumable_information' => 'Información del consumible:', 'consumable_name' => 'Nombre del Consumible:', 'accessory_information' => 'Información del accesorio:', - 'accessory_name' => 'Nombre de accesorio:', + 'accessory_name' => 'Nombre del Accesorio:', 'clone_item' => 'Clonar objeto', 'checkout_tooltip' => 'Registrar salida de este elemento', 'checkin_tooltip' => 'Registrar entrada de este elemento', @@ -486,10 +487,17 @@ return [ 'address2' => 'Dirección (línea 2)', 'import_note' => 'Importado usando el importador de csv', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% completo', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'editar', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/es-VE/localizations.php b/resources/lang/es-VE/localizations.php index 4a869df6e4..7e07721468 100644 --- a/resources/lang/es-VE/localizations.php +++ b/resources/lang/es-VE/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irlandés', 'it'=> 'Italiano', 'ja'=> 'Japonés', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Coreano', 'lv'=>'Letón', 'lt'=> 'Lituano', diff --git a/resources/lang/es-VE/validation.php b/resources/lang/es-VE/validation.php index 32949bb3e6..27a74406d4 100644 --- a/resources/lang/es-VE/validation.php +++ b/resources/lang/es-VE/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'El :atrribute debe ser único.', 'non_circular' => ':attribute no debe crear una referencia circular.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'La contraseña no puede ser la misma que el usuario.', 'letters' => 'La contraseña debe contener al menos una letra.', 'numbers' => 'La contraseña debe contener al menos un número.', diff --git a/resources/lang/en/account/general.php b/resources/lang/et-EE/account/general.php similarity index 100% rename from resources/lang/en/account/general.php rename to resources/lang/et-EE/account/general.php diff --git a/resources/lang/et/admin/accessories/general.php b/resources/lang/et-EE/admin/accessories/general.php similarity index 100% rename from resources/lang/et/admin/accessories/general.php rename to resources/lang/et-EE/admin/accessories/general.php diff --git a/resources/lang/et/admin/accessories/message.php b/resources/lang/et-EE/admin/accessories/message.php similarity index 100% rename from resources/lang/et/admin/accessories/message.php rename to resources/lang/et-EE/admin/accessories/message.php diff --git a/resources/lang/et/admin/accessories/table.php b/resources/lang/et-EE/admin/accessories/table.php similarity index 100% rename from resources/lang/et/admin/accessories/table.php rename to resources/lang/et-EE/admin/accessories/table.php diff --git a/resources/lang/et/admin/asset_maintenances/form.php b/resources/lang/et-EE/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/et/admin/asset_maintenances/form.php rename to resources/lang/et-EE/admin/asset_maintenances/form.php diff --git a/resources/lang/et/admin/asset_maintenances/general.php b/resources/lang/et-EE/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/et/admin/asset_maintenances/general.php rename to resources/lang/et-EE/admin/asset_maintenances/general.php diff --git a/resources/lang/et/admin/asset_maintenances/message.php b/resources/lang/et-EE/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/et/admin/asset_maintenances/message.php rename to resources/lang/et-EE/admin/asset_maintenances/message.php diff --git a/resources/lang/et/admin/asset_maintenances/table.php b/resources/lang/et-EE/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/et/admin/asset_maintenances/table.php rename to resources/lang/et-EE/admin/asset_maintenances/table.php diff --git a/resources/lang/et/admin/categories/general.php b/resources/lang/et-EE/admin/categories/general.php similarity index 100% rename from resources/lang/et/admin/categories/general.php rename to resources/lang/et-EE/admin/categories/general.php diff --git a/resources/lang/et/admin/categories/message.php b/resources/lang/et-EE/admin/categories/message.php similarity index 100% rename from resources/lang/et/admin/categories/message.php rename to resources/lang/et-EE/admin/categories/message.php diff --git a/resources/lang/et/admin/categories/table.php b/resources/lang/et-EE/admin/categories/table.php similarity index 100% rename from resources/lang/et/admin/categories/table.php rename to resources/lang/et-EE/admin/categories/table.php diff --git a/resources/lang/et/admin/companies/general.php b/resources/lang/et-EE/admin/companies/general.php similarity index 87% rename from resources/lang/et/admin/companies/general.php rename to resources/lang/et-EE/admin/companies/general.php index d655be1f70..0df1e92db0 100644 --- a/resources/lang/et/admin/companies/general.php +++ b/resources/lang/et-EE/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Vali ettevõte', - 'about_companies' => 'About Companies', + 'about_companies' => 'Ettevõtetest', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/et/admin/companies/message.php b/resources/lang/et-EE/admin/companies/message.php similarity index 100% rename from resources/lang/et/admin/companies/message.php rename to resources/lang/et-EE/admin/companies/message.php diff --git a/resources/lang/et/admin/companies/table.php b/resources/lang/et-EE/admin/companies/table.php similarity index 100% rename from resources/lang/et/admin/companies/table.php rename to resources/lang/et-EE/admin/companies/table.php diff --git a/resources/lang/et/admin/components/general.php b/resources/lang/et-EE/admin/components/general.php similarity index 100% rename from resources/lang/et/admin/components/general.php rename to resources/lang/et-EE/admin/components/general.php diff --git a/resources/lang/et/admin/components/message.php b/resources/lang/et-EE/admin/components/message.php similarity index 100% rename from resources/lang/et/admin/components/message.php rename to resources/lang/et-EE/admin/components/message.php diff --git a/resources/lang/et/admin/components/table.php b/resources/lang/et-EE/admin/components/table.php similarity index 100% rename from resources/lang/et/admin/components/table.php rename to resources/lang/et-EE/admin/components/table.php diff --git a/resources/lang/et/admin/consumables/general.php b/resources/lang/et-EE/admin/consumables/general.php similarity index 100% rename from resources/lang/et/admin/consumables/general.php rename to resources/lang/et-EE/admin/consumables/general.php diff --git a/resources/lang/et/admin/consumables/message.php b/resources/lang/et-EE/admin/consumables/message.php similarity index 100% rename from resources/lang/et/admin/consumables/message.php rename to resources/lang/et-EE/admin/consumables/message.php diff --git a/resources/lang/et/admin/consumables/table.php b/resources/lang/et-EE/admin/consumables/table.php similarity index 100% rename from resources/lang/et/admin/consumables/table.php rename to resources/lang/et-EE/admin/consumables/table.php diff --git a/resources/lang/et/admin/custom_fields/general.php b/resources/lang/et-EE/admin/custom_fields/general.php similarity index 96% rename from resources/lang/et/admin/custom_fields/general.php rename to resources/lang/et-EE/admin/custom_fields/general.php index e67b18882a..1055aef191 100644 --- a/resources/lang/et/admin/custom_fields/general.php +++ b/resources/lang/et-EE/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Uus kohandatud väli', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Selle välja väärtust krüpteeritakse andmebaasis. Dežrooveeritud väärtust saab vaadata ainult administraatoritel', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Kas lisame selle välja väärtuse kasutajale väljastatud emailile? Krüpteerituid välju emailis pole näha', '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.', diff --git a/resources/lang/et/admin/custom_fields/message.php b/resources/lang/et-EE/admin/custom_fields/message.php similarity index 100% rename from resources/lang/et/admin/custom_fields/message.php rename to resources/lang/et-EE/admin/custom_fields/message.php diff --git a/resources/lang/et/admin/departments/message.php b/resources/lang/et-EE/admin/departments/message.php similarity index 100% rename from resources/lang/et/admin/departments/message.php rename to resources/lang/et-EE/admin/departments/message.php diff --git a/resources/lang/et/admin/departments/table.php b/resources/lang/et-EE/admin/departments/table.php similarity index 100% rename from resources/lang/et/admin/departments/table.php rename to resources/lang/et-EE/admin/departments/table.php diff --git a/resources/lang/et/admin/depreciations/general.php b/resources/lang/et-EE/admin/depreciations/general.php similarity index 100% rename from resources/lang/et/admin/depreciations/general.php rename to resources/lang/et-EE/admin/depreciations/general.php diff --git a/resources/lang/et/admin/depreciations/message.php b/resources/lang/et-EE/admin/depreciations/message.php similarity index 100% rename from resources/lang/et/admin/depreciations/message.php rename to resources/lang/et-EE/admin/depreciations/message.php diff --git a/resources/lang/et/admin/depreciations/table.php b/resources/lang/et-EE/admin/depreciations/table.php similarity index 100% rename from resources/lang/et/admin/depreciations/table.php rename to resources/lang/et-EE/admin/depreciations/table.php diff --git a/resources/lang/et/admin/groups/message.php b/resources/lang/et-EE/admin/groups/message.php similarity index 100% rename from resources/lang/et/admin/groups/message.php rename to resources/lang/et-EE/admin/groups/message.php diff --git a/resources/lang/et/admin/groups/table.php b/resources/lang/et-EE/admin/groups/table.php similarity index 100% rename from resources/lang/et/admin/groups/table.php rename to resources/lang/et-EE/admin/groups/table.php diff --git a/resources/lang/et/admin/groups/titles.php b/resources/lang/et-EE/admin/groups/titles.php similarity index 100% rename from resources/lang/et/admin/groups/titles.php rename to resources/lang/et-EE/admin/groups/titles.php diff --git a/resources/lang/et/admin/hardware/form.php b/resources/lang/et-EE/admin/hardware/form.php similarity index 100% rename from resources/lang/et/admin/hardware/form.php rename to resources/lang/et-EE/admin/hardware/form.php diff --git a/resources/lang/et/admin/hardware/general.php b/resources/lang/et-EE/admin/hardware/general.php similarity index 100% rename from resources/lang/et/admin/hardware/general.php rename to resources/lang/et-EE/admin/hardware/general.php diff --git a/resources/lang/et/admin/hardware/message.php b/resources/lang/et-EE/admin/hardware/message.php similarity index 98% rename from resources/lang/et/admin/hardware/message.php rename to resources/lang/et-EE/admin/hardware/message.php index 4e4f86ca2c..8d6f282d51 100644 --- a/resources/lang/et/admin/hardware/message.php +++ b/resources/lang/et-EE/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Vara ei taastatud, palun proovi uuesti', 'success' => 'Varad on edukalt taastatud.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Varad on edukalt taastatud.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/et/admin/hardware/table.php b/resources/lang/et-EE/admin/hardware/table.php similarity index 96% rename from resources/lang/et/admin/hardware/table.php rename to resources/lang/et-EE/admin/hardware/table.php index 9a9dbeacac..58f8251494 100644 --- a/resources/lang/et/admin/hardware/table.php +++ b/resources/lang/et-EE/admin/hardware/table.php @@ -27,6 +27,6 @@ return [ 'assigned_to' => 'Väljastatud kasutajale', 'requesting_user' => 'Taotlev kasutaja', 'requested_date' => 'Taotletav kuupäev', - 'changed' => 'Changed', + 'changed' => 'Muudetud', 'icon' => 'Ikoon', ]; diff --git a/resources/lang/et/admin/kits/general.php b/resources/lang/et-EE/admin/kits/general.php similarity index 96% rename from resources/lang/et/admin/kits/general.php rename to resources/lang/et-EE/admin/kits/general.php index 2b3b82fa1c..4e7b30ad31 100644 --- a/resources/lang/et/admin/kits/general.php +++ b/resources/lang/et-EE/admin/kits/general.php @@ -24,13 +24,13 @@ return [ 'license_error' => 'Litsents on juba komplektiga liidetud', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Luba pole olemas', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Kulumaterjal on juba komplektiga liidetud', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Kuluvahendit pole olemas', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', diff --git a/resources/lang/et/admin/labels/message.php b/resources/lang/et-EE/admin/labels/message.php similarity index 100% rename from resources/lang/et/admin/labels/message.php rename to resources/lang/et-EE/admin/labels/message.php diff --git a/resources/lang/et-EE/admin/labels/table.php b/resources/lang/et-EE/admin/labels/table.php new file mode 100644 index 0000000000..e253462f71 --- /dev/null +++ b/resources/lang/et-EE/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Väljad', + 'support_asset_tag' => 'Silt', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logo', + 'support_title' => 'Pealkiri', + +]; \ No newline at end of file diff --git a/resources/lang/et/admin/licenses/form.php b/resources/lang/et-EE/admin/licenses/form.php similarity index 100% rename from resources/lang/et/admin/licenses/form.php rename to resources/lang/et-EE/admin/licenses/form.php diff --git a/resources/lang/et/admin/licenses/general.php b/resources/lang/et-EE/admin/licenses/general.php similarity index 100% rename from resources/lang/et/admin/licenses/general.php rename to resources/lang/et-EE/admin/licenses/general.php diff --git a/resources/lang/et/admin/licenses/message.php b/resources/lang/et-EE/admin/licenses/message.php similarity index 100% rename from resources/lang/et/admin/licenses/message.php rename to resources/lang/et-EE/admin/licenses/message.php diff --git a/resources/lang/et/admin/licenses/table.php b/resources/lang/et-EE/admin/licenses/table.php similarity index 100% rename from resources/lang/et/admin/licenses/table.php rename to resources/lang/et-EE/admin/licenses/table.php diff --git a/resources/lang/et/admin/locations/message.php b/resources/lang/et-EE/admin/locations/message.php similarity index 100% rename from resources/lang/et/admin/locations/message.php rename to resources/lang/et-EE/admin/locations/message.php diff --git a/resources/lang/et/admin/locations/table.php b/resources/lang/et-EE/admin/locations/table.php similarity index 97% rename from resources/lang/et/admin/locations/table.php rename to resources/lang/et-EE/admin/locations/table.php index 5811df4424..a4b806ebf4 100644 --- a/resources/lang/et/admin/locations/table.php +++ b/resources/lang/et-EE/admin/locations/table.php @@ -12,7 +12,7 @@ return [ 'create' => 'Uus asukoht', 'update' => 'Uuenda asukohta', 'print_assigned' => 'Print Assigned', - 'print_all_assigned' => 'Print All Assigned', + 'print_all_assigned' => 'Prindi kõik varad', 'name' => 'Asukoha nimi', 'address' => 'Aadress', 'address2' => 'Address Line 2', diff --git a/resources/lang/et/admin/manufacturers/message.php b/resources/lang/et-EE/admin/manufacturers/message.php similarity index 100% rename from resources/lang/et/admin/manufacturers/message.php rename to resources/lang/et-EE/admin/manufacturers/message.php diff --git a/resources/lang/et/admin/manufacturers/table.php b/resources/lang/et-EE/admin/manufacturers/table.php similarity index 100% rename from resources/lang/et/admin/manufacturers/table.php rename to resources/lang/et-EE/admin/manufacturers/table.php diff --git a/resources/lang/et/admin/models/general.php b/resources/lang/et-EE/admin/models/general.php similarity index 100% rename from resources/lang/et/admin/models/general.php rename to resources/lang/et-EE/admin/models/general.php diff --git a/resources/lang/et/admin/models/message.php b/resources/lang/et-EE/admin/models/message.php similarity index 100% rename from resources/lang/et/admin/models/message.php rename to resources/lang/et-EE/admin/models/message.php diff --git a/resources/lang/et/admin/models/table.php b/resources/lang/et-EE/admin/models/table.php similarity index 100% rename from resources/lang/et/admin/models/table.php rename to resources/lang/et-EE/admin/models/table.php diff --git a/resources/lang/et/admin/reports/general.php b/resources/lang/et-EE/admin/reports/general.php similarity index 100% rename from resources/lang/et/admin/reports/general.php rename to resources/lang/et-EE/admin/reports/general.php diff --git a/resources/lang/et/admin/reports/message.php b/resources/lang/et-EE/admin/reports/message.php similarity index 100% rename from resources/lang/et/admin/reports/message.php rename to resources/lang/et-EE/admin/reports/message.php diff --git a/resources/lang/et/admin/settings/general.php b/resources/lang/et-EE/admin/settings/general.php similarity index 98% rename from resources/lang/et/admin/settings/general.php rename to resources/lang/et-EE/admin/settings/general.php index 9dbe101eee..527b777383 100644 --- a/resources/lang/et/admin/settings/general.php +++ b/resources/lang/et-EE/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Kasutaja ei pea kirjutama "username@domain.local", nad võivad lihtsalt kirjutada "username".', 'admin_cc_email' => 'CC e-mail', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'See on Active Directory server', 'alerts' => 'Märguanded', 'alert_title' => 'Update Notification Settings', @@ -125,7 +126,7 @@ return [ 'login' => 'Login Attempts', 'login_attempt' => 'Login Attempt', 'login_ip' => 'IP Address', - 'login_success' => 'Success?', + 'login_success' => 'Edukas?', 'login_user_agent' => 'User Agent', 'login_help' => 'List of attempted logins', 'login_note' => 'Logi sisse Märkus', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Parool miinimummärke', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Minimaalne lubatud väärtus on 8', 'pwd_secure_uncommon' => 'Vältida tavapäraseid paroole', 'pwd_secure_uncommon_help' => 'See keelab kasutajatel kasutada tavapäraseid paroole 10 000 paroole, mis on teatatud rikkumistest.', 'qr_help' => 'Luba QR-koodid esmalt selle seadistamiseks', @@ -316,10 +317,10 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Puhasta kustutatud dokumendid', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Töötaja number', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Pealkiri', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D-triipkoodi tüüp', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/et/admin/settings/message.php b/resources/lang/et-EE/admin/settings/message.php similarity index 100% rename from resources/lang/et/admin/settings/message.php rename to resources/lang/et-EE/admin/settings/message.php diff --git a/resources/lang/fi/admin/settings/table.php b/resources/lang/et-EE/admin/settings/table.php similarity index 60% rename from resources/lang/fi/admin/settings/table.php rename to resources/lang/et-EE/admin/settings/table.php index 22db5c84ed..41871c509c 100644 --- a/resources/lang/fi/admin/settings/table.php +++ b/resources/lang/et-EE/admin/settings/table.php @@ -1,6 +1,6 @@ 'Created', + 'created' => 'Loodud', 'size' => 'Size', ); diff --git a/resources/lang/et/admin/statuslabels/message.php b/resources/lang/et-EE/admin/statuslabels/message.php similarity index 97% rename from resources/lang/et/admin/statuslabels/message.php rename to resources/lang/et-EE/admin/statuslabels/message.php index a4fd78a847..d7684c3240 100644 --- a/resources/lang/et/admin/statuslabels/message.php +++ b/resources/lang/et-EE/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Olekumärki pole olemas.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'See olekuala märgis on praegu seotud vähemalt ühe varaga ja seda ei saa kustutada. Palun uuendage oma vara, et seda olekut enam mitte näidata, ja proovige uuesti.', 'create' => [ diff --git a/resources/lang/et/admin/statuslabels/table.php b/resources/lang/et-EE/admin/statuslabels/table.php similarity index 100% rename from resources/lang/et/admin/statuslabels/table.php rename to resources/lang/et-EE/admin/statuslabels/table.php diff --git a/resources/lang/et/admin/suppliers/message.php b/resources/lang/et-EE/admin/suppliers/message.php similarity index 100% rename from resources/lang/et/admin/suppliers/message.php rename to resources/lang/et-EE/admin/suppliers/message.php diff --git a/resources/lang/et/admin/suppliers/table.php b/resources/lang/et-EE/admin/suppliers/table.php similarity index 100% rename from resources/lang/et/admin/suppliers/table.php rename to resources/lang/et-EE/admin/suppliers/table.php diff --git a/resources/lang/et/admin/users/general.php b/resources/lang/et-EE/admin/users/general.php similarity index 97% rename from resources/lang/et/admin/users/general.php rename to resources/lang/et-EE/admin/users/general.php index 35726a8eaf..16349ba738 100644 --- a/resources/lang/et/admin/users/general.php +++ b/resources/lang/et-EE/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Vaata kasutajat :name', 'usercsv' => 'CSV fail', 'two_factor_admin_optin_help' => 'Sinu praegused admin seaded lubavad kahe-astmelist autantimis jõustada valikulselt. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA-seade on registreeritud', + 'two_factor_active' => '2FA aktiivne ', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/et/admin/users/message.php b/resources/lang/et-EE/admin/users/message.php similarity index 98% rename from resources/lang/et/admin/users/message.php rename to resources/lang/et-EE/admin/users/message.php index 4dec7adfdc..417c770598 100644 --- a/resources/lang/et/admin/users/message.php +++ b/resources/lang/et-EE/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Oled selle vahendi tagasi lükanud.', 'bulk_manager_warn' => 'Sinu kasutajad on edukalt muudetud, kuid sinu juhi-kirjet ei salvestatud sest juht, kelle valisid oli ka muudatavate kasutajate hulgas ning kasutaja ei või olla ise-enda juht. Palun vali oma kasutajad uuesti, jättes juhi kõrvale.', 'user_exists' => 'Kasutaja on juba olemas!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Kasutajat ei eksisteeri.', 'user_login_required' => 'Login väli on kohustuslik', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Parooli väli on kohustuslik.', diff --git a/resources/lang/et/admin/users/table.php b/resources/lang/et-EE/admin/users/table.php similarity index 95% rename from resources/lang/et/admin/users/table.php rename to resources/lang/et-EE/admin/users/table.php index 42dbcc8559..dcb47a0f7c 100644 --- a/resources/lang/et/admin/users/table.php +++ b/resources/lang/et-EE/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Juht', 'managed_locations' => 'Hallatavad asukohad', 'name' => 'Nimi', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Märkmed', 'password_confirm' => 'Kinnita parool', 'password' => 'Parool', diff --git a/resources/lang/et/auth.php b/resources/lang/et-EE/auth.php similarity index 100% rename from resources/lang/et/auth.php rename to resources/lang/et-EE/auth.php diff --git a/resources/lang/et/auth/general.php b/resources/lang/et-EE/auth/general.php similarity index 100% rename from resources/lang/et/auth/general.php rename to resources/lang/et-EE/auth/general.php diff --git a/resources/lang/et/auth/message.php b/resources/lang/et-EE/auth/message.php similarity index 100% rename from resources/lang/et/auth/message.php rename to resources/lang/et-EE/auth/message.php diff --git a/resources/lang/et/button.php b/resources/lang/et-EE/button.php similarity index 95% rename from resources/lang/et/button.php rename to resources/lang/et-EE/button.php index 22738e0cec..253b48c0b2 100644 --- a/resources/lang/et/button.php +++ b/resources/lang/et-EE/button.php @@ -20,5 +20,5 @@ return [ 'bulk_actions' => 'Hulgitoimingud', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Uus', ]; diff --git a/resources/lang/et/general.php b/resources/lang/et-EE/general.php similarity index 96% rename from resources/lang/et/general.php rename to resources/lang/et-EE/general.php index 7c756710b7..12062cc693 100644 --- a/resources/lang/et/general.php +++ b/resources/lang/et-EE/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Lubatud faililaiendid on jpg, png, gif ja svg. Suurim lubatud üleslaadimise maht on :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Impordi', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importimine', 'importing_help' => 'CSV-faili kaudu saate importida vahendeid, tarvikuid, litsentse, komponente, kulumaterjale ja kasutajaid.

CSV peaks olema komadega eraldatud ja vormindatud päistega, mis ühtivad CSV-de näidistega dokumentatsioonis.', 'import-history' => 'Impordi ajalugu', @@ -257,7 +258,7 @@ return [ 'show_current' => 'Näita käesolevat', 'sign_in' => 'Logi sisse', 'signature' => 'Allkiri', - 'signed_off_by' => 'Signed Off By', + 'signed_off_by' => 'Allkiri', 'skin' => 'Väljanägemine', 'webhook_msg_note' => 'A notification will be sent via webhook', 'webhook_test_msg' => 'Oh hai! Looks like your :app integration with Snipe-IT is working!', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Tarnija', 'suppliers' => 'Tarnijad', 'sure_to_delete' => 'Kas olete kindel, et soovite kustutada', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Kas olete kindel, et soovite kustutada :item?', 'delete_what' => 'Delete :item', 'submit' => 'Kinnita', 'target' => 'Sihtimine', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Peida abi', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'E-mail', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -371,15 +372,15 @@ return [ 'consumables_count' => 'Kulumaterjalide kogus', 'components_count' => 'Komponentide kogus', 'licenses_count' => 'Litsentside kogus', - 'notification_error' => 'Error', + 'notification_error' => 'Tõrge', 'notification_error_hint' => 'Palun kontrolli allolevat vormi vigade osas', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_success' => 'Edukas', + 'notification_warning' => 'Hoiatus', 'notification_info' => 'Info', 'asset_information' => 'Vahendi teave', - 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'model_name' => 'Mudel', + 'asset_name' => 'Vara nimi', 'consumable_information' => 'Kulumaterjali teave:', 'consumable_name' => 'Kulumaterjali nimi:', 'accessory_information' => 'Tarviku teave:', @@ -416,7 +417,7 @@ return [ 'pre_flight' => 'Pre-Flight', 'skip_to_main_content' => 'Skip to main content', 'toggle_navigation' => 'Toggle navigation', - 'alerts' => 'Alerts', + 'alerts' => 'Märguanded', 'tasks_view_all' => 'View all tasks', 'true' => 'True', 'false' => 'False', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':üksuse nimi', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% tehtud', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'muuda', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/et/help.php b/resources/lang/et-EE/help.php similarity index 71% rename from resources/lang/et/help.php rename to resources/lang/et-EE/help.php index edeffa12f8..afe3f1aec0 100644 --- a/resources/lang/et/help.php +++ b/resources/lang/et-EE/help.php @@ -21,13 +21,13 @@ return [ 'categories' => 'Kategooriad aitavad sul asju organiseerida. Kategooriad võivad olla näiteks: "Lauaarvutid","Sülearvutid","Mobiiltelefonid","Tahvelarvutid" jne, kuid võid kasutada kategooriaid igat moodi, mis tundub sulle endale mõistlik.', - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', + 'accessories' => 'Aksessuaarid on kõik, mida kasutajad teate, kuid kellel ei ole seerianumbrit (või te ei hooli nende jälgimisest unikaalselt). Näiteks arvutihiirid või klaviatuurid.', - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', + 'companies' => 'Ettevõtteid saab kasutada kui lihtsa identifikaatorina või kui vahendite, kasutajate jms nähtavuse piiramiseks kui täielik ettevõtete tugi on seadetes peale keeratud.', - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', + 'components' => 'Komponendid on asjad, mis on vahendite osadeks. Näiteks HDD, RAM jne.', - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', + 'consumables' => 'Kuluvahendid on kõik asjad, mis peale ostmist kasutatakse lõplikult ära. Näiteks printeritint või koopiapaber.', 'depreciations' => 'Sa saad seadistada vahendite amortisatsiooni, et neid amortiseeritakse lineaarse amortisatsiooni alusel.', diff --git a/resources/lang/et-EE/localizations.php b/resources/lang/et-EE/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/et-EE/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/et/mail.php b/resources/lang/et-EE/mail.php similarity index 100% rename from resources/lang/et/mail.php rename to resources/lang/et-EE/mail.php diff --git a/resources/lang/et/pagination.php b/resources/lang/et-EE/pagination.php similarity index 100% rename from resources/lang/et/pagination.php rename to resources/lang/et-EE/pagination.php diff --git a/resources/lang/et/passwords.php b/resources/lang/et-EE/passwords.php similarity index 100% rename from resources/lang/et/passwords.php rename to resources/lang/et-EE/passwords.php diff --git a/resources/lang/et/reminders.php b/resources/lang/et-EE/reminders.php similarity index 86% rename from resources/lang/et/reminders.php rename to resources/lang/et-EE/reminders.php index 625aab6fe3..8ed308f080 100644 --- a/resources/lang/et/reminders.php +++ b/resources/lang/et-EE/reminders.php @@ -15,7 +15,7 @@ return array( "password" => "Parool peab olema kuus tähemärki ja peab klappima kinnitusega.", "user" => "Kasutajanimi või parool on vale", - "token" => 'This password reset token is invalid or expired, or does not match the username provided.', + "token" => 'See parooli taastamise sessioon on kehtetu, aegunud või ei vasta sisestatud kasutajanimele.', 'sent' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.', ); diff --git a/resources/lang/et/table.php b/resources/lang/et-EE/table.php similarity index 100% rename from resources/lang/et/table.php rename to resources/lang/et-EE/table.php diff --git a/resources/lang/et/validation.php b/resources/lang/et-EE/validation.php similarity index 99% rename from resources/lang/et/validation.php rename to resources/lang/et-EE/validation.php index eaac95f357..9ec93b40da 100644 --- a/resources/lang/et/validation.php +++ b/resources/lang/et-EE/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute peab olema ainulaadne.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Parool ei saa sisaldada kasutajanime.', 'letters' => 'Parool peab sisaldama vähemalt ühte tähte.', 'numbers' => 'Parool peab sisaldama vähemalt ühte numbrit.', diff --git a/resources/lang/et/admin/labels/table.php b/resources/lang/et/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/et/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/et/localizations.php b/resources/lang/et/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/et/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/fa/account/general.php b/resources/lang/fa-IR/account/general.php similarity index 100% rename from resources/lang/fa/account/general.php rename to resources/lang/fa-IR/account/general.php diff --git a/resources/lang/fa/admin/accessories/general.php b/resources/lang/fa-IR/admin/accessories/general.php similarity index 100% rename from resources/lang/fa/admin/accessories/general.php rename to resources/lang/fa-IR/admin/accessories/general.php diff --git a/resources/lang/fa/admin/accessories/message.php b/resources/lang/fa-IR/admin/accessories/message.php similarity index 100% rename from resources/lang/fa/admin/accessories/message.php rename to resources/lang/fa-IR/admin/accessories/message.php diff --git a/resources/lang/fa/admin/accessories/table.php b/resources/lang/fa-IR/admin/accessories/table.php similarity index 100% rename from resources/lang/fa/admin/accessories/table.php rename to resources/lang/fa-IR/admin/accessories/table.php diff --git a/resources/lang/fa/admin/asset_maintenances/form.php b/resources/lang/fa-IR/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/fa/admin/asset_maintenances/form.php rename to resources/lang/fa-IR/admin/asset_maintenances/form.php diff --git a/resources/lang/fa/admin/asset_maintenances/general.php b/resources/lang/fa-IR/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/fa/admin/asset_maintenances/general.php rename to resources/lang/fa-IR/admin/asset_maintenances/general.php diff --git a/resources/lang/fa/admin/asset_maintenances/message.php b/resources/lang/fa-IR/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/fa/admin/asset_maintenances/message.php rename to resources/lang/fa-IR/admin/asset_maintenances/message.php diff --git a/resources/lang/fa/admin/asset_maintenances/table.php b/resources/lang/fa-IR/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/fa/admin/asset_maintenances/table.php rename to resources/lang/fa-IR/admin/asset_maintenances/table.php diff --git a/resources/lang/fa/admin/categories/general.php b/resources/lang/fa-IR/admin/categories/general.php similarity index 100% rename from resources/lang/fa/admin/categories/general.php rename to resources/lang/fa-IR/admin/categories/general.php diff --git a/resources/lang/fa/admin/categories/message.php b/resources/lang/fa-IR/admin/categories/message.php similarity index 100% rename from resources/lang/fa/admin/categories/message.php rename to resources/lang/fa-IR/admin/categories/message.php diff --git a/resources/lang/fa/admin/categories/table.php b/resources/lang/fa-IR/admin/categories/table.php similarity index 100% rename from resources/lang/fa/admin/categories/table.php rename to resources/lang/fa-IR/admin/categories/table.php diff --git a/resources/lang/fa/admin/companies/general.php b/resources/lang/fa-IR/admin/companies/general.php similarity index 100% rename from resources/lang/fa/admin/companies/general.php rename to resources/lang/fa-IR/admin/companies/general.php diff --git a/resources/lang/fa/admin/companies/message.php b/resources/lang/fa-IR/admin/companies/message.php similarity index 100% rename from resources/lang/fa/admin/companies/message.php rename to resources/lang/fa-IR/admin/companies/message.php diff --git a/resources/lang/fa/admin/companies/table.php b/resources/lang/fa-IR/admin/companies/table.php similarity index 100% rename from resources/lang/fa/admin/companies/table.php rename to resources/lang/fa-IR/admin/companies/table.php diff --git a/resources/lang/fa/admin/components/general.php b/resources/lang/fa-IR/admin/components/general.php similarity index 100% rename from resources/lang/fa/admin/components/general.php rename to resources/lang/fa-IR/admin/components/general.php diff --git a/resources/lang/fa/admin/components/message.php b/resources/lang/fa-IR/admin/components/message.php similarity index 100% rename from resources/lang/fa/admin/components/message.php rename to resources/lang/fa-IR/admin/components/message.php diff --git a/resources/lang/fa/admin/components/table.php b/resources/lang/fa-IR/admin/components/table.php similarity index 100% rename from resources/lang/fa/admin/components/table.php rename to resources/lang/fa-IR/admin/components/table.php diff --git a/resources/lang/fa/admin/consumables/general.php b/resources/lang/fa-IR/admin/consumables/general.php similarity index 100% rename from resources/lang/fa/admin/consumables/general.php rename to resources/lang/fa-IR/admin/consumables/general.php diff --git a/resources/lang/fa/admin/consumables/message.php b/resources/lang/fa-IR/admin/consumables/message.php similarity index 100% rename from resources/lang/fa/admin/consumables/message.php rename to resources/lang/fa-IR/admin/consumables/message.php diff --git a/resources/lang/fa/admin/consumables/table.php b/resources/lang/fa-IR/admin/consumables/table.php similarity index 100% rename from resources/lang/fa/admin/consumables/table.php rename to resources/lang/fa-IR/admin/consumables/table.php diff --git a/resources/lang/fa/admin/custom_fields/general.php b/resources/lang/fa-IR/admin/custom_fields/general.php similarity index 100% rename from resources/lang/fa/admin/custom_fields/general.php rename to resources/lang/fa-IR/admin/custom_fields/general.php diff --git a/resources/lang/fa/admin/custom_fields/message.php b/resources/lang/fa-IR/admin/custom_fields/message.php similarity index 100% rename from resources/lang/fa/admin/custom_fields/message.php rename to resources/lang/fa-IR/admin/custom_fields/message.php diff --git a/resources/lang/fa/admin/departments/message.php b/resources/lang/fa-IR/admin/departments/message.php similarity index 100% rename from resources/lang/fa/admin/departments/message.php rename to resources/lang/fa-IR/admin/departments/message.php diff --git a/resources/lang/fa/admin/departments/table.php b/resources/lang/fa-IR/admin/departments/table.php similarity index 100% rename from resources/lang/fa/admin/departments/table.php rename to resources/lang/fa-IR/admin/departments/table.php diff --git a/resources/lang/fa/admin/depreciations/general.php b/resources/lang/fa-IR/admin/depreciations/general.php similarity index 100% rename from resources/lang/fa/admin/depreciations/general.php rename to resources/lang/fa-IR/admin/depreciations/general.php diff --git a/resources/lang/fa/admin/depreciations/message.php b/resources/lang/fa-IR/admin/depreciations/message.php similarity index 100% rename from resources/lang/fa/admin/depreciations/message.php rename to resources/lang/fa-IR/admin/depreciations/message.php diff --git a/resources/lang/fa/admin/depreciations/table.php b/resources/lang/fa-IR/admin/depreciations/table.php similarity index 100% rename from resources/lang/fa/admin/depreciations/table.php rename to resources/lang/fa-IR/admin/depreciations/table.php diff --git a/resources/lang/fa/admin/groups/message.php b/resources/lang/fa-IR/admin/groups/message.php similarity index 100% rename from resources/lang/fa/admin/groups/message.php rename to resources/lang/fa-IR/admin/groups/message.php diff --git a/resources/lang/fa/admin/groups/table.php b/resources/lang/fa-IR/admin/groups/table.php similarity index 100% rename from resources/lang/fa/admin/groups/table.php rename to resources/lang/fa-IR/admin/groups/table.php diff --git a/resources/lang/fa/admin/groups/titles.php b/resources/lang/fa-IR/admin/groups/titles.php similarity index 100% rename from resources/lang/fa/admin/groups/titles.php rename to resources/lang/fa-IR/admin/groups/titles.php diff --git a/resources/lang/fa/admin/hardware/form.php b/resources/lang/fa-IR/admin/hardware/form.php similarity index 100% rename from resources/lang/fa/admin/hardware/form.php rename to resources/lang/fa-IR/admin/hardware/form.php diff --git a/resources/lang/fa/admin/hardware/general.php b/resources/lang/fa-IR/admin/hardware/general.php similarity index 100% rename from resources/lang/fa/admin/hardware/general.php rename to resources/lang/fa-IR/admin/hardware/general.php diff --git a/resources/lang/fa/admin/hardware/message.php b/resources/lang/fa-IR/admin/hardware/message.php similarity index 98% rename from resources/lang/fa/admin/hardware/message.php rename to resources/lang/fa-IR/admin/hardware/message.php index bd42f7b10c..e2f8e4e68a 100644 --- a/resources/lang/fa/admin/hardware/message.php +++ b/resources/lang/fa-IR/admin/hardware/message.php @@ -25,7 +25,7 @@ return [ 'restore' => [ 'error' => 'دارایی بازیابی نشد، لطفا دوباره تلاش کنید', 'success' => 'دارایی با موفقیت بازیابی شد.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'دارایی با موفقیت بازیابی شد.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/fa/admin/hardware/table.php b/resources/lang/fa-IR/admin/hardware/table.php similarity index 100% rename from resources/lang/fa/admin/hardware/table.php rename to resources/lang/fa-IR/admin/hardware/table.php diff --git a/resources/lang/fa/admin/kits/general.php b/resources/lang/fa-IR/admin/kits/general.php similarity index 100% rename from resources/lang/fa/admin/kits/general.php rename to resources/lang/fa-IR/admin/kits/general.php diff --git a/resources/lang/fa/admin/labels/message.php b/resources/lang/fa-IR/admin/labels/message.php similarity index 100% rename from resources/lang/fa/admin/labels/message.php rename to resources/lang/fa-IR/admin/labels/message.php diff --git a/resources/lang/fa-IR/admin/labels/table.php b/resources/lang/fa-IR/admin/labels/table.php new file mode 100644 index 0000000000..65c0a15bb3 --- /dev/null +++ b/resources/lang/fa-IR/admin/labels/table.php @@ -0,0 +1,13 @@ + 'برچسب ها', + 'support_fields' => 'فیلدها', + 'support_asset_tag' => 'برچسب', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'لوگو', + 'support_title' => 'عنوان', + +]; \ No newline at end of file diff --git a/resources/lang/fa/admin/licenses/form.php b/resources/lang/fa-IR/admin/licenses/form.php similarity index 100% rename from resources/lang/fa/admin/licenses/form.php rename to resources/lang/fa-IR/admin/licenses/form.php diff --git a/resources/lang/fa/admin/licenses/general.php b/resources/lang/fa-IR/admin/licenses/general.php similarity index 100% rename from resources/lang/fa/admin/licenses/general.php rename to resources/lang/fa-IR/admin/licenses/general.php diff --git a/resources/lang/fa/admin/licenses/message.php b/resources/lang/fa-IR/admin/licenses/message.php similarity index 100% rename from resources/lang/fa/admin/licenses/message.php rename to resources/lang/fa-IR/admin/licenses/message.php diff --git a/resources/lang/fa/admin/licenses/table.php b/resources/lang/fa-IR/admin/licenses/table.php similarity index 100% rename from resources/lang/fa/admin/licenses/table.php rename to resources/lang/fa-IR/admin/licenses/table.php diff --git a/resources/lang/fa/admin/locations/message.php b/resources/lang/fa-IR/admin/locations/message.php similarity index 100% rename from resources/lang/fa/admin/locations/message.php rename to resources/lang/fa-IR/admin/locations/message.php diff --git a/resources/lang/fa/admin/locations/table.php b/resources/lang/fa-IR/admin/locations/table.php similarity index 100% rename from resources/lang/fa/admin/locations/table.php rename to resources/lang/fa-IR/admin/locations/table.php diff --git a/resources/lang/fa/admin/manufacturers/message.php b/resources/lang/fa-IR/admin/manufacturers/message.php similarity index 100% rename from resources/lang/fa/admin/manufacturers/message.php rename to resources/lang/fa-IR/admin/manufacturers/message.php diff --git a/resources/lang/fa/admin/manufacturers/table.php b/resources/lang/fa-IR/admin/manufacturers/table.php similarity index 100% rename from resources/lang/fa/admin/manufacturers/table.php rename to resources/lang/fa-IR/admin/manufacturers/table.php diff --git a/resources/lang/fa/admin/models/general.php b/resources/lang/fa-IR/admin/models/general.php similarity index 100% rename from resources/lang/fa/admin/models/general.php rename to resources/lang/fa-IR/admin/models/general.php diff --git a/resources/lang/fa/admin/models/message.php b/resources/lang/fa-IR/admin/models/message.php similarity index 100% rename from resources/lang/fa/admin/models/message.php rename to resources/lang/fa-IR/admin/models/message.php diff --git a/resources/lang/fa/admin/models/table.php b/resources/lang/fa-IR/admin/models/table.php similarity index 100% rename from resources/lang/fa/admin/models/table.php rename to resources/lang/fa-IR/admin/models/table.php diff --git a/resources/lang/fa/admin/reports/general.php b/resources/lang/fa-IR/admin/reports/general.php similarity index 100% rename from resources/lang/fa/admin/reports/general.php rename to resources/lang/fa-IR/admin/reports/general.php diff --git a/resources/lang/fa/admin/reports/message.php b/resources/lang/fa-IR/admin/reports/message.php similarity index 100% rename from resources/lang/fa/admin/reports/message.php rename to resources/lang/fa-IR/admin/reports/message.php diff --git a/resources/lang/fa/admin/settings/general.php b/resources/lang/fa-IR/admin/settings/general.php similarity index 99% rename from resources/lang/fa/admin/settings/general.php rename to resources/lang/fa-IR/admin/settings/general.php index 3a2def14a0..11b21a95ef 100644 --- a/resources/lang/fa/admin/settings/general.php +++ b/resources/lang/fa-IR/admin/settings/general.php @@ -14,6 +14,7 @@ return [ ', 'admin_cc_email_help' => 'اگر می‌خواهید یک کپی از ایمیل‌های ورود/تسویه حساب که برای کاربران ارسال می‌شود را به یک حساب ایمیل اضافی ارسال کنید، آن را در اینجا وارد کنید. در غیر این صورت، این قسمت را خالی بگذارید. ', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'این سرور Active Directory است', 'alerts' => 'هشدار', 'alert_title' => 'Update Notification Settings', @@ -483,14 +484,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'عنوان', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'نوع بارکد 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/fa/admin/settings/message.php b/resources/lang/fa-IR/admin/settings/message.php similarity index 89% rename from resources/lang/fa/admin/settings/message.php rename to resources/lang/fa-IR/admin/settings/message.php index fe8c904b75..516ad0d4fa 100644 --- a/resources/lang/fa/admin/settings/message.php +++ b/resources/lang/fa-IR/admin/settings/message.php @@ -45,11 +45,13 @@ return [ 'webhook' => [ 'sending' => 'Sending :app test message...', 'success' => 'Your :webhook_name Integration works!', - 'success_pt1' => 'Success! Check the ', - 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', - '500' => '500 Server Error.', + 'success_pt1' => 'موفقیت! بررسی کنید +', + 'success_pt2' => 'برای پیام آزمایشی خود کانال را ارسال کنید و حتماً برای ذخیره تنظیمات خود روی ذخیره در زیر کلیک کنید. +', + '500' => 'خطای سرور', 'error' => 'Something went wrong. :app responded with: :error_message', 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', - 'error_misc' => 'Something went wrong. :( ', + 'error_misc' => 'مشکلی پیش آمده. :( ', ] ]; diff --git a/resources/lang/fa/admin/settings/table.php b/resources/lang/fa-IR/admin/settings/table.php similarity index 100% rename from resources/lang/fa/admin/settings/table.php rename to resources/lang/fa-IR/admin/settings/table.php diff --git a/resources/lang/fa/admin/statuslabels/message.php b/resources/lang/fa-IR/admin/statuslabels/message.php similarity index 97% rename from resources/lang/fa/admin/statuslabels/message.php rename to resources/lang/fa-IR/admin/statuslabels/message.php index 852ad7dca6..76e20929db 100644 --- a/resources/lang/fa/admin/statuslabels/message.php +++ b/resources/lang/fa-IR/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'برچسب وضعیت موجود نیست', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'این برچسب وضعیت در حال حاضر حداقل با یک دارایی همراه است و نمی تواند حذف شود. لطفا دارایی های خود را به روز کنید تا دیگر این وضعیت را رد نکنید و دوباره امتحان کنید.', 'create' => [ diff --git a/resources/lang/fa/admin/statuslabels/table.php b/resources/lang/fa-IR/admin/statuslabels/table.php similarity index 100% rename from resources/lang/fa/admin/statuslabels/table.php rename to resources/lang/fa-IR/admin/statuslabels/table.php diff --git a/resources/lang/fa/admin/suppliers/message.php b/resources/lang/fa-IR/admin/suppliers/message.php similarity index 100% rename from resources/lang/fa/admin/suppliers/message.php rename to resources/lang/fa-IR/admin/suppliers/message.php diff --git a/resources/lang/fa/admin/suppliers/table.php b/resources/lang/fa-IR/admin/suppliers/table.php similarity index 100% rename from resources/lang/fa/admin/suppliers/table.php rename to resources/lang/fa-IR/admin/suppliers/table.php diff --git a/resources/lang/fa/admin/users/general.php b/resources/lang/fa-IR/admin/users/general.php similarity index 100% rename from resources/lang/fa/admin/users/general.php rename to resources/lang/fa-IR/admin/users/general.php diff --git a/resources/lang/fa/admin/users/message.php b/resources/lang/fa-IR/admin/users/message.php similarity index 98% rename from resources/lang/fa/admin/users/message.php rename to resources/lang/fa-IR/admin/users/message.php index f8021da966..851ee7ae67 100644 --- a/resources/lang/fa/admin/users/message.php +++ b/resources/lang/fa-IR/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'شما با موفقیت این دارایی را به کاهش دادید.', 'bulk_manager_warn' => 'کاربران شما با موفقیت به روز شده اند، با این حال مدیر ورود شما ذخیره نشد زیرا مدیر شما انتخاب شده بود نیز در لیست کاربر برای ویرایش، و کاربران ممکن است مدیر خود نیست. لطفا کاربران خود را دوباره انتخاب کنید، به غیر از مدیر.', 'user_exists' => 'کاربر "{0}" در حال حاضر وجود دارد.', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'کاربر وجود ندارد.', 'user_login_required' => 'فیلد ورود الزامی است.', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'کلمه عبور ضروری است.', diff --git a/resources/lang/fa/admin/users/table.php b/resources/lang/fa-IR/admin/users/table.php similarity index 96% rename from resources/lang/fa/admin/users/table.php rename to resources/lang/fa-IR/admin/users/table.php index 9209d31d33..160c551f5f 100644 --- a/resources/lang/fa/admin/users/table.php +++ b/resources/lang/fa-IR/admin/users/table.php @@ -22,6 +22,7 @@ return array( 'manager' => 'مدیر', 'managed_locations' => 'مکان های مدیریت شده', 'name' => 'نام', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'یادداشت ها', 'password_confirm' => 'تایید رمز عبور', 'password' => 'رمز عبور', diff --git a/resources/lang/fa/auth.php b/resources/lang/fa-IR/auth.php similarity index 100% rename from resources/lang/fa/auth.php rename to resources/lang/fa-IR/auth.php diff --git a/resources/lang/fa/auth/general.php b/resources/lang/fa-IR/auth/general.php similarity index 100% rename from resources/lang/fa/auth/general.php rename to resources/lang/fa-IR/auth/general.php diff --git a/resources/lang/fa/auth/message.php b/resources/lang/fa-IR/auth/message.php similarity index 100% rename from resources/lang/fa/auth/message.php rename to resources/lang/fa-IR/auth/message.php diff --git a/resources/lang/fa/button.php b/resources/lang/fa-IR/button.php similarity index 100% rename from resources/lang/fa/button.php rename to resources/lang/fa-IR/button.php diff --git a/resources/lang/fa/general.php b/resources/lang/fa-IR/general.php similarity index 96% rename from resources/lang/fa/general.php rename to resources/lang/fa-IR/general.php index 7b4e3d8f01..8e6044eb68 100644 --- a/resources/lang/fa/general.php +++ b/resources/lang/fa-IR/general.php @@ -170,6 +170,7 @@ return [ 'image_filetypes_help' => 'نوع فایل های قابل قبول: jpg, webp, png, gif, و svg. حداکثر سایز فایل :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'واردات', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'در حال وارد کردن', 'importing_help' => 'می‌توانید دارایی‌ها، لوازم جانبی، مجوزها، اجزا، مواد مصرفی و کاربران را از طریق فایل CSV وارد کنید.

CSV باید با کاما محدود شود و با سرصفحه‌هایی که در مطابقت دارند قالب‌بندی شود. نمونه CSV در مستندات. ', @@ -298,7 +299,7 @@ return [ 'supplier' => 'تامین کننده', 'suppliers' => 'تامین کننده', 'sure_to_delete' => 'مطمئنید که میخواهید حذف شود', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'آیا اطمینان دارید که می خواهید این را حذف نمایید؟', 'delete_what' => 'Delete :item', 'submit' => 'ارسال', 'target' => 'هدف', @@ -441,17 +442,17 @@ return [ ', 'licenses_count' => 'تعداد مجوزها ', - 'notification_error' => 'Error', + 'notification_error' => 'خطا', 'notification_error_hint' => 'لطفاً فرم زیر را برای وجود خطا بررسی کنید ', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'هشدار', + 'notification_info' => 'اطلاعات', 'asset_information' => 'اطلاعات دارایی ', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'نام دارایی', 'consumable_information' => 'اطلاعات مصرفی: ', 'consumable_name' => 'نام های مصرفی:', @@ -504,7 +505,7 @@ return [ 'pre_flight' => 'Pre-Flight', 'skip_to_main_content' => 'Skip to main content', 'toggle_navigation' => 'Toggle navigation', - 'alerts' => 'Alerts', + 'alerts' => 'هشدار', 'tasks_view_all' => 'View all tasks', 'true' => 'True', 'false' => 'False', @@ -535,9 +536,12 @@ return [ 'warning' => 'WARNING: :warning', 'success_redirecting' => '"Success... Redirecting.', 'cancel_request' => 'Cancel this item request', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', + 'setup_successful_migrations' => 'جداول پایگاه داده شما ایجاد شده است +', + 'setup_migration_output' => 'خروجی مهاجرت: +', + 'setup_migration_create_user' => 'بعدی: ایجاد کاربر +', 'importer_generic_error' => 'Your file import is complete, but we did receive an error. This is usually caused by third-party API throttling from a notification webhook (such as Slack) and would not have interfered with the import itself, but you should confirm this.', 'confirm' => 'Confirm', 'autoassign_licenses' => 'Auto-Assign Licenses', @@ -549,7 +553,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':نام کالا', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -574,10 +578,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% تکمیل', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'ويرايش', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/fa/help.php b/resources/lang/fa-IR/help.php similarity index 100% rename from resources/lang/fa/help.php rename to resources/lang/fa-IR/help.php diff --git a/resources/lang/fa-IR/localizations.php b/resources/lang/fa-IR/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/fa-IR/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/fa/mail.php b/resources/lang/fa-IR/mail.php similarity index 100% rename from resources/lang/fa/mail.php rename to resources/lang/fa-IR/mail.php diff --git a/resources/lang/fa/pagination.php b/resources/lang/fa-IR/pagination.php similarity index 100% rename from resources/lang/fa/pagination.php rename to resources/lang/fa-IR/pagination.php diff --git a/resources/lang/fa/passwords.php b/resources/lang/fa-IR/passwords.php similarity index 100% rename from resources/lang/fa/passwords.php rename to resources/lang/fa-IR/passwords.php diff --git a/resources/lang/fa/reminders.php b/resources/lang/fa-IR/reminders.php similarity index 100% rename from resources/lang/fa/reminders.php rename to resources/lang/fa-IR/reminders.php diff --git a/resources/lang/fa/table.php b/resources/lang/fa-IR/table.php similarity index 100% rename from resources/lang/fa/table.php rename to resources/lang/fa-IR/table.php diff --git a/resources/lang/fa/validation.php b/resources/lang/fa-IR/validation.php similarity index 99% rename from resources/lang/fa/validation.php rename to resources/lang/fa-IR/validation.php index 669ae97471..ccab3bb1c6 100644 --- a/resources/lang/fa/validation.php +++ b/resources/lang/fa-IR/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ': attribute باید منحصر به فرد باشد.', 'non_circular' => 'ویژگی : نباید یک مرجع دایره ای ایجاد کند', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'رمز عبور نمی تواند همان آدرس ایمیل باشد.', 'letters' => 'گذرواژه باید دارای حداقل یک رقم باشد.', 'numbers' => 'گذرواژه باید دارای حداقل یک رقم باشد.', diff --git a/resources/lang/fa/admin/labels/table.php b/resources/lang/fa/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/fa/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/fa/localizations.php b/resources/lang/fa/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/fa/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/fi/account/general.php b/resources/lang/fi-FI/account/general.php similarity index 100% rename from resources/lang/fi/account/general.php rename to resources/lang/fi-FI/account/general.php diff --git a/resources/lang/fi/admin/accessories/general.php b/resources/lang/fi-FI/admin/accessories/general.php similarity index 100% rename from resources/lang/fi/admin/accessories/general.php rename to resources/lang/fi-FI/admin/accessories/general.php diff --git a/resources/lang/fi/admin/accessories/message.php b/resources/lang/fi-FI/admin/accessories/message.php similarity index 100% rename from resources/lang/fi/admin/accessories/message.php rename to resources/lang/fi-FI/admin/accessories/message.php diff --git a/resources/lang/fi/admin/accessories/table.php b/resources/lang/fi-FI/admin/accessories/table.php similarity index 100% rename from resources/lang/fi/admin/accessories/table.php rename to resources/lang/fi-FI/admin/accessories/table.php diff --git a/resources/lang/fi/admin/asset_maintenances/form.php b/resources/lang/fi-FI/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/fi/admin/asset_maintenances/form.php rename to resources/lang/fi-FI/admin/asset_maintenances/form.php diff --git a/resources/lang/fi/admin/asset_maintenances/general.php b/resources/lang/fi-FI/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/fi/admin/asset_maintenances/general.php rename to resources/lang/fi-FI/admin/asset_maintenances/general.php diff --git a/resources/lang/fi/admin/asset_maintenances/message.php b/resources/lang/fi-FI/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/fi/admin/asset_maintenances/message.php rename to resources/lang/fi-FI/admin/asset_maintenances/message.php diff --git a/resources/lang/fi/admin/asset_maintenances/table.php b/resources/lang/fi-FI/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/fi/admin/asset_maintenances/table.php rename to resources/lang/fi-FI/admin/asset_maintenances/table.php diff --git a/resources/lang/fi/admin/categories/general.php b/resources/lang/fi-FI/admin/categories/general.php similarity index 100% rename from resources/lang/fi/admin/categories/general.php rename to resources/lang/fi-FI/admin/categories/general.php diff --git a/resources/lang/fi/admin/categories/message.php b/resources/lang/fi-FI/admin/categories/message.php similarity index 100% rename from resources/lang/fi/admin/categories/message.php rename to resources/lang/fi-FI/admin/categories/message.php diff --git a/resources/lang/fi/admin/categories/table.php b/resources/lang/fi-FI/admin/categories/table.php similarity index 100% rename from resources/lang/fi/admin/categories/table.php rename to resources/lang/fi-FI/admin/categories/table.php diff --git a/resources/lang/fi/admin/companies/general.php b/resources/lang/fi-FI/admin/companies/general.php similarity index 100% rename from resources/lang/fi/admin/companies/general.php rename to resources/lang/fi-FI/admin/companies/general.php diff --git a/resources/lang/fi/admin/companies/message.php b/resources/lang/fi-FI/admin/companies/message.php similarity index 100% rename from resources/lang/fi/admin/companies/message.php rename to resources/lang/fi-FI/admin/companies/message.php diff --git a/resources/lang/fi/admin/companies/table.php b/resources/lang/fi-FI/admin/companies/table.php similarity index 100% rename from resources/lang/fi/admin/companies/table.php rename to resources/lang/fi-FI/admin/companies/table.php diff --git a/resources/lang/fi/admin/components/general.php b/resources/lang/fi-FI/admin/components/general.php similarity index 100% rename from resources/lang/fi/admin/components/general.php rename to resources/lang/fi-FI/admin/components/general.php diff --git a/resources/lang/fi/admin/components/message.php b/resources/lang/fi-FI/admin/components/message.php similarity index 100% rename from resources/lang/fi/admin/components/message.php rename to resources/lang/fi-FI/admin/components/message.php diff --git a/resources/lang/fi/admin/components/table.php b/resources/lang/fi-FI/admin/components/table.php similarity index 100% rename from resources/lang/fi/admin/components/table.php rename to resources/lang/fi-FI/admin/components/table.php diff --git a/resources/lang/fi/admin/consumables/general.php b/resources/lang/fi-FI/admin/consumables/general.php similarity index 100% rename from resources/lang/fi/admin/consumables/general.php rename to resources/lang/fi-FI/admin/consumables/general.php diff --git a/resources/lang/fi/admin/consumables/message.php b/resources/lang/fi-FI/admin/consumables/message.php similarity index 100% rename from resources/lang/fi/admin/consumables/message.php rename to resources/lang/fi-FI/admin/consumables/message.php diff --git a/resources/lang/fi/admin/consumables/table.php b/resources/lang/fi-FI/admin/consumables/table.php similarity index 100% rename from resources/lang/fi/admin/consumables/table.php rename to resources/lang/fi-FI/admin/consumables/table.php diff --git a/resources/lang/fi/admin/custom_fields/general.php b/resources/lang/fi-FI/admin/custom_fields/general.php similarity index 96% rename from resources/lang/fi/admin/custom_fields/general.php rename to resources/lang/fi-FI/admin/custom_fields/general.php index 6f23e8ebaa..dbf81dca46 100644 --- a/resources/lang/fi/admin/custom_fields/general.php +++ b/resources/lang/fi-FI/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Uusi mukautettu kenttä', 'create_field_title' => 'Luo uusi mukautettu kenttä', 'value_encrypted' => 'Kentän arvo salataan tietokannassa. Vain järjestelmänvalvojat voivat tarkastella purettua arvoa', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Käytetäänkö kentän arvoa käyttäjälle lähetettävissä luovutus-sähköposteissa? Salattuja kenttiä ei voi lisätä sähköposteihin', 'show_in_email_short' => 'Include in emails.', 'help_text' => 'Aputeksti', 'help_text_description' => 'Tämä on valinnainen teksti joka ilmestyy lomakekentän alapuolelle laitetta muokatessa tarjotakseen kontekstia kentälle.', diff --git a/resources/lang/fi/admin/custom_fields/message.php b/resources/lang/fi-FI/admin/custom_fields/message.php similarity index 100% rename from resources/lang/fi/admin/custom_fields/message.php rename to resources/lang/fi-FI/admin/custom_fields/message.php diff --git a/resources/lang/fi/admin/departments/message.php b/resources/lang/fi-FI/admin/departments/message.php similarity index 100% rename from resources/lang/fi/admin/departments/message.php rename to resources/lang/fi-FI/admin/departments/message.php diff --git a/resources/lang/fi/admin/departments/table.php b/resources/lang/fi-FI/admin/departments/table.php similarity index 100% rename from resources/lang/fi/admin/departments/table.php rename to resources/lang/fi-FI/admin/departments/table.php diff --git a/resources/lang/fi/admin/depreciations/general.php b/resources/lang/fi-FI/admin/depreciations/general.php similarity index 100% rename from resources/lang/fi/admin/depreciations/general.php rename to resources/lang/fi-FI/admin/depreciations/general.php diff --git a/resources/lang/fi/admin/depreciations/message.php b/resources/lang/fi-FI/admin/depreciations/message.php similarity index 100% rename from resources/lang/fi/admin/depreciations/message.php rename to resources/lang/fi-FI/admin/depreciations/message.php diff --git a/resources/lang/fi/admin/depreciations/table.php b/resources/lang/fi-FI/admin/depreciations/table.php similarity index 100% rename from resources/lang/fi/admin/depreciations/table.php rename to resources/lang/fi-FI/admin/depreciations/table.php diff --git a/resources/lang/fi/admin/groups/message.php b/resources/lang/fi-FI/admin/groups/message.php similarity index 100% rename from resources/lang/fi/admin/groups/message.php rename to resources/lang/fi-FI/admin/groups/message.php diff --git a/resources/lang/fi/admin/groups/table.php b/resources/lang/fi-FI/admin/groups/table.php similarity index 100% rename from resources/lang/fi/admin/groups/table.php rename to resources/lang/fi-FI/admin/groups/table.php diff --git a/resources/lang/fi/admin/groups/titles.php b/resources/lang/fi-FI/admin/groups/titles.php similarity index 100% rename from resources/lang/fi/admin/groups/titles.php rename to resources/lang/fi-FI/admin/groups/titles.php diff --git a/resources/lang/fi/admin/hardware/form.php b/resources/lang/fi-FI/admin/hardware/form.php similarity index 100% rename from resources/lang/fi/admin/hardware/form.php rename to resources/lang/fi-FI/admin/hardware/form.php diff --git a/resources/lang/fi/admin/hardware/general.php b/resources/lang/fi-FI/admin/hardware/general.php similarity index 100% rename from resources/lang/fi/admin/hardware/general.php rename to resources/lang/fi-FI/admin/hardware/general.php diff --git a/resources/lang/fi/admin/hardware/message.php b/resources/lang/fi-FI/admin/hardware/message.php similarity index 100% rename from resources/lang/fi/admin/hardware/message.php rename to resources/lang/fi-FI/admin/hardware/message.php diff --git a/resources/lang/fi/admin/hardware/table.php b/resources/lang/fi-FI/admin/hardware/table.php similarity index 100% rename from resources/lang/fi/admin/hardware/table.php rename to resources/lang/fi-FI/admin/hardware/table.php diff --git a/resources/lang/fi/admin/kits/general.php b/resources/lang/fi-FI/admin/kits/general.php similarity index 100% rename from resources/lang/fi/admin/kits/general.php rename to resources/lang/fi-FI/admin/kits/general.php diff --git a/resources/lang/fi/admin/labels/message.php b/resources/lang/fi-FI/admin/labels/message.php similarity index 100% rename from resources/lang/fi/admin/labels/message.php rename to resources/lang/fi-FI/admin/labels/message.php diff --git a/resources/lang/fi-FI/admin/labels/table.php b/resources/lang/fi-FI/admin/labels/table.php new file mode 100644 index 0000000000..1cc5abb853 --- /dev/null +++ b/resources/lang/fi-FI/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Kentät', + 'support_asset_tag' => 'Tunniste', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logo', + 'support_title' => 'Otsikko', + +]; \ No newline at end of file diff --git a/resources/lang/fi/admin/licenses/form.php b/resources/lang/fi-FI/admin/licenses/form.php similarity index 100% rename from resources/lang/fi/admin/licenses/form.php rename to resources/lang/fi-FI/admin/licenses/form.php diff --git a/resources/lang/fi/admin/licenses/general.php b/resources/lang/fi-FI/admin/licenses/general.php similarity index 100% rename from resources/lang/fi/admin/licenses/general.php rename to resources/lang/fi-FI/admin/licenses/general.php diff --git a/resources/lang/fi/admin/licenses/message.php b/resources/lang/fi-FI/admin/licenses/message.php similarity index 100% rename from resources/lang/fi/admin/licenses/message.php rename to resources/lang/fi-FI/admin/licenses/message.php diff --git a/resources/lang/fi/admin/licenses/table.php b/resources/lang/fi-FI/admin/licenses/table.php similarity index 100% rename from resources/lang/fi/admin/licenses/table.php rename to resources/lang/fi-FI/admin/licenses/table.php diff --git a/resources/lang/fi/admin/locations/message.php b/resources/lang/fi-FI/admin/locations/message.php similarity index 100% rename from resources/lang/fi/admin/locations/message.php rename to resources/lang/fi-FI/admin/locations/message.php diff --git a/resources/lang/fi/admin/locations/table.php b/resources/lang/fi-FI/admin/locations/table.php similarity index 97% rename from resources/lang/fi/admin/locations/table.php rename to resources/lang/fi-FI/admin/locations/table.php index e87ea3c39e..78b561ca92 100644 --- a/resources/lang/fi/admin/locations/table.php +++ b/resources/lang/fi-FI/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Tulosta kaikki luovutetut', 'name' => 'Sijainnin nimi', 'address' => 'Osoite', - 'address2' => 'Address Line 2', + 'address2' => 'Osoiterivi 2', 'zip' => 'Postinumero', 'locations' => 'Sijainnit', 'parent' => 'Ylempi', diff --git a/resources/lang/fi/admin/manufacturers/message.php b/resources/lang/fi-FI/admin/manufacturers/message.php similarity index 100% rename from resources/lang/fi/admin/manufacturers/message.php rename to resources/lang/fi-FI/admin/manufacturers/message.php diff --git a/resources/lang/fi/admin/manufacturers/table.php b/resources/lang/fi-FI/admin/manufacturers/table.php similarity index 100% rename from resources/lang/fi/admin/manufacturers/table.php rename to resources/lang/fi-FI/admin/manufacturers/table.php diff --git a/resources/lang/fi/admin/models/general.php b/resources/lang/fi-FI/admin/models/general.php similarity index 100% rename from resources/lang/fi/admin/models/general.php rename to resources/lang/fi-FI/admin/models/general.php diff --git a/resources/lang/fi/admin/models/message.php b/resources/lang/fi-FI/admin/models/message.php similarity index 100% rename from resources/lang/fi/admin/models/message.php rename to resources/lang/fi-FI/admin/models/message.php diff --git a/resources/lang/fi/admin/models/table.php b/resources/lang/fi-FI/admin/models/table.php similarity index 100% rename from resources/lang/fi/admin/models/table.php rename to resources/lang/fi-FI/admin/models/table.php diff --git a/resources/lang/fi/admin/reports/general.php b/resources/lang/fi-FI/admin/reports/general.php similarity index 100% rename from resources/lang/fi/admin/reports/general.php rename to resources/lang/fi-FI/admin/reports/general.php diff --git a/resources/lang/fi/admin/reports/message.php b/resources/lang/fi-FI/admin/reports/message.php similarity index 100% rename from resources/lang/fi/admin/reports/message.php rename to resources/lang/fi-FI/admin/reports/message.php diff --git a/resources/lang/fi/admin/settings/general.php b/resources/lang/fi-FI/admin/settings/general.php similarity index 98% rename from resources/lang/fi/admin/settings/general.php rename to resources/lang/fi-FI/admin/settings/general.php index 651a6abd9b..b87e5daecf 100644 --- a/resources/lang/fi/admin/settings/general.php +++ b/resources/lang/fi-FI/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Käyttäjätunnusta ei tarvitse kirjoittaa muodossa "käyttätunnus@domain.local", pelkkä "käyttäjätunnus" riittää.', 'admin_cc_email' => 'Kopio sähköpostiosoite', 'admin_cc_email_help' => 'Mikäli haluat lähettää erilliseen sähköpostiosoitteeseen kopion käyttäjälle lähetettävästä sähköposti-ilmoituksesta palautuksiin/luovutuksiin liittyen, syötä se tähän. Muussa tapauksessa jätä kenttä tyhjäksi.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Käytössä on Active Directory -palvelin', 'alerts' => 'Hälytykset', 'alert_title' => 'Päivitä ilmoitusasetukset', @@ -125,7 +126,7 @@ return [ 'login' => 'Login Attempts', 'login_attempt' => 'Login Attempt', 'login_ip' => 'IP Address', - 'login_success' => 'Success?', + 'login_success' => 'Onnistui?', 'login_user_agent' => 'User Agent', 'login_help' => 'List of attempted logins', 'login_note' => 'Kirjautumisviesti', @@ -181,7 +182,7 @@ return [ 'saml_idp_metadata_help' => 'Voit määritellä IdP metadatan käyttämällä URLia tai XML-tiedostoa.', 'saml_attr_mapping_username' => 'Attribuuttien kohdennus - Käyttäjänimi', 'saml_attr_mapping_username_help' => 'NameID:tä käytetään, jos attribuuttia on määrittelemätön tai virheellinen.', - 'saml_forcelogin_label' => 'SAML Force Login', + 'saml_forcelogin_label' => 'Pakoita SAML kirjautuminen', 'saml_forcelogin' => 'Tee SAML:sta ensisijainen kirjautumistapa', 'saml_forcelogin_help' => 'Voit käyttää osoitteessa \'/login?nosaml\' päästäksesi tavalliselle kirjautumissivulle.', 'saml_slo_label' => 'SAML kertauloskirjautuminen', @@ -316,32 +317,32 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Puhdista poistetut tietueet', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Työntekijän Numero', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', 'setup_migrations' => 'Database Migrations ::', 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', + 'setup_successful_migrations' => 'Tietokantataulusi on luotu', + 'setup_migration_output' => 'Siirron tuloste:', + 'setup_migration_create_user' => 'Seuraavaksi: Luo Käyttäjä', 'ldap_settings_link' => 'LDAP Settings Page', 'slack_test' => 'Test Integration', 'label2_enable' => 'New Label Engine', 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Otsikko', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D viivakoodityyppi', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/fi/admin/settings/message.php b/resources/lang/fi-FI/admin/settings/message.php similarity index 100% rename from resources/lang/fi/admin/settings/message.php rename to resources/lang/fi-FI/admin/settings/message.php diff --git a/resources/lang/fi-FI/admin/settings/table.php b/resources/lang/fi-FI/admin/settings/table.php new file mode 100644 index 0000000000..8c4ade00d7 --- /dev/null +++ b/resources/lang/fi-FI/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Luontiaika', + 'size' => 'Size', +); diff --git a/resources/lang/fi/admin/statuslabels/message.php b/resources/lang/fi-FI/admin/statuslabels/message.php similarity index 97% rename from resources/lang/fi/admin/statuslabels/message.php rename to resources/lang/fi-FI/admin/statuslabels/message.php index 5ce093a0ed..9efba0151b 100644 --- a/resources/lang/fi/admin/statuslabels/message.php +++ b/resources/lang/fi-FI/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Tilamerkintää ei löydy.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Tilamerkintä on määritetty käyttöön yhdelle tai useammalle laitteelle joten sitä ei voida poistaa. Poista tilamerkintä käytöstä kaikilta laitteilta ja yritä uudelleen. ', 'create' => [ diff --git a/resources/lang/fi/admin/statuslabels/table.php b/resources/lang/fi-FI/admin/statuslabels/table.php similarity index 100% rename from resources/lang/fi/admin/statuslabels/table.php rename to resources/lang/fi-FI/admin/statuslabels/table.php diff --git a/resources/lang/fi/admin/suppliers/message.php b/resources/lang/fi-FI/admin/suppliers/message.php similarity index 100% rename from resources/lang/fi/admin/suppliers/message.php rename to resources/lang/fi-FI/admin/suppliers/message.php diff --git a/resources/lang/fi/admin/suppliers/table.php b/resources/lang/fi-FI/admin/suppliers/table.php similarity index 100% rename from resources/lang/fi/admin/suppliers/table.php rename to resources/lang/fi-FI/admin/suppliers/table.php diff --git a/resources/lang/fi/admin/users/general.php b/resources/lang/fi-FI/admin/users/general.php similarity index 97% rename from resources/lang/fi/admin/users/general.php rename to resources/lang/fi-FI/admin/users/general.php index 7d0d2709d3..04d1dbed74 100644 --- a/resources/lang/fi/admin/users/general.php +++ b/resources/lang/fi-FI/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Näytä käyttäjä :name', 'usercsv' => 'CSV-tiedosto', 'two_factor_admin_optin_help' => 'Nykyiset järjestelmänvalvojan asetukset mahdollistavat kaksivaiheisen tunnistautumisen käyttöönoton valituille käyttäjille. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'MFA-laite ilmoittautunut mukaan ', + 'two_factor_active' => 'MFA aktiivinen', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/fi/admin/users/message.php b/resources/lang/fi-FI/admin/users/message.php similarity index 98% rename from resources/lang/fi/admin/users/message.php rename to resources/lang/fi-FI/admin/users/message.php index e6720dea21..c2a16e2df9 100644 --- a/resources/lang/fi/admin/users/message.php +++ b/resources/lang/fi-FI/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Olet onnistuneesti hylännyt tämän laitteen.', 'bulk_manager_warn' => 'Käyttäjät on onnistuneesti päivitetty, mutta esimies-merkintää ei tallennettu, koska valitsemasi esimies oli mukana käyttäjäluettelossa, eikä käyttäjä voi olla itsensä esimies. Valitse käyttäjät uudelleen, poislukien esimies.', 'user_exists' => 'Käyttäjä on jo luotu!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Käyttäjää ei löydy.', 'user_login_required' => 'Käyttäjätunnus vaaditaan', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Salasana vaaditaan.', diff --git a/resources/lang/fi/admin/users/table.php b/resources/lang/fi-FI/admin/users/table.php similarity index 95% rename from resources/lang/fi/admin/users/table.php rename to resources/lang/fi-FI/admin/users/table.php index 5533661459..d22c0ecd43 100644 --- a/resources/lang/fi/admin/users/table.php +++ b/resources/lang/fi-FI/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Esimies', 'managed_locations' => 'Esimiehenä sijainneissa', 'name' => 'Nimi', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Muistiinpanot', 'password_confirm' => 'Vahvista salasana', 'password' => 'Salasana', diff --git a/resources/lang/fi/auth.php b/resources/lang/fi-FI/auth.php similarity index 100% rename from resources/lang/fi/auth.php rename to resources/lang/fi-FI/auth.php diff --git a/resources/lang/fi/auth/general.php b/resources/lang/fi-FI/auth/general.php similarity index 100% rename from resources/lang/fi/auth/general.php rename to resources/lang/fi-FI/auth/general.php diff --git a/resources/lang/fi/auth/message.php b/resources/lang/fi-FI/auth/message.php similarity index 100% rename from resources/lang/fi/auth/message.php rename to resources/lang/fi-FI/auth/message.php diff --git a/resources/lang/fi/button.php b/resources/lang/fi-FI/button.php similarity index 90% rename from resources/lang/fi/button.php rename to resources/lang/fi-FI/button.php index f96ca412b7..e118dbe1ee 100644 --- a/resources/lang/fi/button.php +++ b/resources/lang/fi-FI/button.php @@ -17,8 +17,8 @@ return [ 'generate_labels' => '{1} Luo tunniste |[2, *] Luo tunnisteet', 'send_password_link' => 'Lähetä salasanan palautuslinkki', 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', + 'bulk_actions' => 'Massatoimintoja', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Uusi', ]; diff --git a/resources/lang/fi/general.php b/resources/lang/fi-FI/general.php similarity index 97% rename from resources/lang/fi/general.php rename to resources/lang/fi-FI/general.php index 0ad39bd50d..62b61b61c1 100644 --- a/resources/lang/fi/general.php +++ b/resources/lang/fi-FI/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Hyväksytyt tiedostotyyppejä ovat jpg, png, gif ja svg. Suurin sallittu lähetyskoko on :size.', 'unaccepted_image_type' => 'Kuvatiedostoa ei voitu lukea. Hyväksytyt tiedostotyypit ovat jpg, webp, png, gif ja svg. Tämän tiedoston mimetype on: :mimetype.', 'import' => 'Tuo tiedot', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Tuonti', 'importing_help' => 'Voit tuoda laitteita, oheistarvikkeita, lisenssejä, komponentteja, kulutustarvikkeita ja käyttäjiä CSV-tiedoston avulla.

CSV tulisi olla pilkulla rajattu ja sisältää otsikot, jotka vastaavat CSV-otsikoita dokumentaatiossa.', 'import-history' => 'Tuo historia', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Toimittaja', 'suppliers' => 'Toimittajat', 'sure_to_delete' => 'Haluatko varmasti poistaa', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Oletko varma että haluat poistaa :item?', 'delete_what' => 'Delete :item', 'submit' => 'Lähetä', 'target' => 'Kohde', @@ -371,12 +372,12 @@ return [ 'consumables_count' => 'Kulutustarvikkeen Määrä', 'components_count' => 'Komponenttien määrä', 'licenses_count' => 'Lisenssien määrä', - 'notification_error' => 'Error', + 'notification_error' => 'Virhe', 'notification_error_hint' => 'Tarkista alla oleva lomake virheiden varalta', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => 'Onnistui', + 'notification_warning' => 'Varoitus', + 'notification_info' => 'Tiedot', 'asset_information' => 'Laitetiedot', 'model_name' => 'Mallin nimi', 'asset_name' => 'Laitteen nimi', @@ -486,10 +487,17 @@ return [ 'address2' => 'Osoiterivi 2', 'import_note' => 'Tuotu käyttämällä CSV-tuontia', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% valmis', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'muokkaa', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/fi/help.php b/resources/lang/fi-FI/help.php similarity index 100% rename from resources/lang/fi/help.php rename to resources/lang/fi-FI/help.php diff --git a/resources/lang/fi/localizations.php b/resources/lang/fi-FI/localizations.php similarity index 99% rename from resources/lang/fi/localizations.php rename to resources/lang/fi-FI/localizations.php index fdb4603db8..42027a5299 100644 --- a/resources/lang/fi/localizations.php +++ b/resources/lang/fi-FI/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Iiri', 'it'=> 'Italia', 'ja'=> 'Japani', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korea', 'lv'=>'Latvia', 'lt'=> 'Liettua', diff --git a/resources/lang/fi/mail.php b/resources/lang/fi-FI/mail.php similarity index 100% rename from resources/lang/fi/mail.php rename to resources/lang/fi-FI/mail.php diff --git a/resources/lang/fi/pagination.php b/resources/lang/fi-FI/pagination.php similarity index 100% rename from resources/lang/fi/pagination.php rename to resources/lang/fi-FI/pagination.php diff --git a/resources/lang/fi/passwords.php b/resources/lang/fi-FI/passwords.php similarity index 100% rename from resources/lang/fi/passwords.php rename to resources/lang/fi-FI/passwords.php diff --git a/resources/lang/fi/reminders.php b/resources/lang/fi-FI/reminders.php similarity index 100% rename from resources/lang/fi/reminders.php rename to resources/lang/fi-FI/reminders.php diff --git a/resources/lang/fi/table.php b/resources/lang/fi-FI/table.php similarity index 100% rename from resources/lang/fi/table.php rename to resources/lang/fi-FI/table.php diff --git a/resources/lang/fi/validation.php b/resources/lang/fi-FI/validation.php similarity index 99% rename from resources/lang/fi/validation.php rename to resources/lang/fi-FI/validation.php index d3ae178284..fdc1ed1267 100644 --- a/resources/lang/fi/validation.php +++ b/resources/lang/fi-FI/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute on oltava ainutlaatuinen.', 'non_circular' => ':attribute ei saa luoda kehäviittausta.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/fi/admin/labels/table.php b/resources/lang/fi/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/fi/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/et/account/general.php b/resources/lang/fil-PH/account/general.php similarity index 100% rename from resources/lang/et/account/general.php rename to resources/lang/fil-PH/account/general.php diff --git a/resources/lang/fil/admin/accessories/general.php b/resources/lang/fil-PH/admin/accessories/general.php similarity index 100% rename from resources/lang/fil/admin/accessories/general.php rename to resources/lang/fil-PH/admin/accessories/general.php diff --git a/resources/lang/fil/admin/accessories/message.php b/resources/lang/fil-PH/admin/accessories/message.php similarity index 100% rename from resources/lang/fil/admin/accessories/message.php rename to resources/lang/fil-PH/admin/accessories/message.php diff --git a/resources/lang/fil/admin/accessories/table.php b/resources/lang/fil-PH/admin/accessories/table.php similarity index 100% rename from resources/lang/fil/admin/accessories/table.php rename to resources/lang/fil-PH/admin/accessories/table.php diff --git a/resources/lang/fil/admin/asset_maintenances/form.php b/resources/lang/fil-PH/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/fil/admin/asset_maintenances/form.php rename to resources/lang/fil-PH/admin/asset_maintenances/form.php diff --git a/resources/lang/fil/admin/asset_maintenances/general.php b/resources/lang/fil-PH/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/fil/admin/asset_maintenances/general.php rename to resources/lang/fil-PH/admin/asset_maintenances/general.php diff --git a/resources/lang/fil/admin/asset_maintenances/message.php b/resources/lang/fil-PH/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/fil/admin/asset_maintenances/message.php rename to resources/lang/fil-PH/admin/asset_maintenances/message.php diff --git a/resources/lang/fil/admin/asset_maintenances/table.php b/resources/lang/fil-PH/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/fil/admin/asset_maintenances/table.php rename to resources/lang/fil-PH/admin/asset_maintenances/table.php diff --git a/resources/lang/fil/admin/categories/general.php b/resources/lang/fil-PH/admin/categories/general.php similarity index 100% rename from resources/lang/fil/admin/categories/general.php rename to resources/lang/fil-PH/admin/categories/general.php diff --git a/resources/lang/fil/admin/categories/message.php b/resources/lang/fil-PH/admin/categories/message.php similarity index 100% rename from resources/lang/fil/admin/categories/message.php rename to resources/lang/fil-PH/admin/categories/message.php diff --git a/resources/lang/fil/admin/categories/table.php b/resources/lang/fil-PH/admin/categories/table.php similarity index 100% rename from resources/lang/fil/admin/categories/table.php rename to resources/lang/fil-PH/admin/categories/table.php diff --git a/resources/lang/fil/admin/companies/general.php b/resources/lang/fil-PH/admin/companies/general.php similarity index 85% rename from resources/lang/fil/admin/companies/general.php rename to resources/lang/fil-PH/admin/companies/general.php index 9207728d2e..a34886a98d 100644 --- a/resources/lang/fil/admin/companies/general.php +++ b/resources/lang/fil-PH/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Pumili ng Kumpanya', - 'about_companies' => 'About Companies', + 'about_companies' => 'Ang Tungkol sa mga Kumpanya', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/fil/admin/companies/message.php b/resources/lang/fil-PH/admin/companies/message.php similarity index 100% rename from resources/lang/fil/admin/companies/message.php rename to resources/lang/fil-PH/admin/companies/message.php diff --git a/resources/lang/fil/admin/companies/table.php b/resources/lang/fil-PH/admin/companies/table.php similarity index 100% rename from resources/lang/fil/admin/companies/table.php rename to resources/lang/fil-PH/admin/companies/table.php diff --git a/resources/lang/fil/admin/components/general.php b/resources/lang/fil-PH/admin/components/general.php similarity index 100% rename from resources/lang/fil/admin/components/general.php rename to resources/lang/fil-PH/admin/components/general.php diff --git a/resources/lang/fil/admin/components/message.php b/resources/lang/fil-PH/admin/components/message.php similarity index 100% rename from resources/lang/fil/admin/components/message.php rename to resources/lang/fil-PH/admin/components/message.php diff --git a/resources/lang/fil/admin/components/table.php b/resources/lang/fil-PH/admin/components/table.php similarity index 100% rename from resources/lang/fil/admin/components/table.php rename to resources/lang/fil-PH/admin/components/table.php diff --git a/resources/lang/fil/admin/consumables/general.php b/resources/lang/fil-PH/admin/consumables/general.php similarity index 100% rename from resources/lang/fil/admin/consumables/general.php rename to resources/lang/fil-PH/admin/consumables/general.php diff --git a/resources/lang/fil/admin/consumables/message.php b/resources/lang/fil-PH/admin/consumables/message.php similarity index 100% rename from resources/lang/fil/admin/consumables/message.php rename to resources/lang/fil-PH/admin/consumables/message.php diff --git a/resources/lang/fil/admin/consumables/table.php b/resources/lang/fil-PH/admin/consumables/table.php similarity index 100% rename from resources/lang/fil/admin/consumables/table.php rename to resources/lang/fil-PH/admin/consumables/table.php diff --git a/resources/lang/fil/admin/custom_fields/general.php b/resources/lang/fil-PH/admin/custom_fields/general.php similarity index 100% rename from resources/lang/fil/admin/custom_fields/general.php rename to resources/lang/fil-PH/admin/custom_fields/general.php diff --git a/resources/lang/fil/admin/custom_fields/message.php b/resources/lang/fil-PH/admin/custom_fields/message.php similarity index 100% rename from resources/lang/fil/admin/custom_fields/message.php rename to resources/lang/fil-PH/admin/custom_fields/message.php diff --git a/resources/lang/fil/admin/departments/message.php b/resources/lang/fil-PH/admin/departments/message.php similarity index 100% rename from resources/lang/fil/admin/departments/message.php rename to resources/lang/fil-PH/admin/departments/message.php diff --git a/resources/lang/fil/admin/departments/table.php b/resources/lang/fil-PH/admin/departments/table.php similarity index 100% rename from resources/lang/fil/admin/departments/table.php rename to resources/lang/fil-PH/admin/departments/table.php diff --git a/resources/lang/fil/admin/depreciations/general.php b/resources/lang/fil-PH/admin/depreciations/general.php similarity index 100% rename from resources/lang/fil/admin/depreciations/general.php rename to resources/lang/fil-PH/admin/depreciations/general.php diff --git a/resources/lang/fil/admin/depreciations/message.php b/resources/lang/fil-PH/admin/depreciations/message.php similarity index 100% rename from resources/lang/fil/admin/depreciations/message.php rename to resources/lang/fil-PH/admin/depreciations/message.php diff --git a/resources/lang/fil/admin/depreciations/table.php b/resources/lang/fil-PH/admin/depreciations/table.php similarity index 100% rename from resources/lang/fil/admin/depreciations/table.php rename to resources/lang/fil-PH/admin/depreciations/table.php diff --git a/resources/lang/fil/admin/groups/message.php b/resources/lang/fil-PH/admin/groups/message.php similarity index 100% rename from resources/lang/fil/admin/groups/message.php rename to resources/lang/fil-PH/admin/groups/message.php diff --git a/resources/lang/fil/admin/groups/table.php b/resources/lang/fil-PH/admin/groups/table.php similarity index 100% rename from resources/lang/fil/admin/groups/table.php rename to resources/lang/fil-PH/admin/groups/table.php diff --git a/resources/lang/fil/admin/groups/titles.php b/resources/lang/fil-PH/admin/groups/titles.php similarity index 100% rename from resources/lang/fil/admin/groups/titles.php rename to resources/lang/fil-PH/admin/groups/titles.php diff --git a/resources/lang/fil/admin/hardware/form.php b/resources/lang/fil-PH/admin/hardware/form.php similarity index 100% rename from resources/lang/fil/admin/hardware/form.php rename to resources/lang/fil-PH/admin/hardware/form.php diff --git a/resources/lang/fil/admin/hardware/general.php b/resources/lang/fil-PH/admin/hardware/general.php similarity index 100% rename from resources/lang/fil/admin/hardware/general.php rename to resources/lang/fil-PH/admin/hardware/general.php diff --git a/resources/lang/fil/admin/hardware/message.php b/resources/lang/fil-PH/admin/hardware/message.php similarity index 98% rename from resources/lang/fil/admin/hardware/message.php rename to resources/lang/fil-PH/admin/hardware/message.php index 9f88cae747..1597ca0564 100644 --- a/resources/lang/fil/admin/hardware/message.php +++ b/resources/lang/fil-PH/admin/hardware/message.php @@ -24,7 +24,7 @@ return [ 'restore' => [ 'error' => 'Ang asset ay hindi naibalik sa dati, mangyaring subukang muli', 'success' => 'Ang asset ay matagumpay nang naibalik sa dati.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Ang asset ay matagumpay nang naibalik sa dati.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/fil/admin/hardware/table.php b/resources/lang/fil-PH/admin/hardware/table.php similarity index 96% rename from resources/lang/fil/admin/hardware/table.php rename to resources/lang/fil-PH/admin/hardware/table.php index 58f5260e62..d48180f34c 100644 --- a/resources/lang/fil/admin/hardware/table.php +++ b/resources/lang/fil-PH/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Ang Imahe ng Device', 'days_without_acceptance' => 'Ang mga Araw na Walang Pagtanggap', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Nakatalaga Sa', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/fil-PH/admin/kits/general.php b/resources/lang/fil-PH/admin/kits/general.php new file mode 100644 index 0000000000..e86cd965d0 --- /dev/null +++ b/resources/lang/fil-PH/admin/kits/general.php @@ -0,0 +1,50 @@ + 'About Predefined Kits', + 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', + 'checkout' => 'Checkout Kit ', + 'create_success' => 'Kit was successfully created.', + 'create' => 'Create Predefined Kit', + 'update' => 'Update Predefined Kit', + 'delete_success' => 'Kit was successfully deleted.', + 'update_success' => 'Kit was successfully updated.', + 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', + 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', + 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', + 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'License already attached to kit', + 'license_added_success' => 'License added successfully', + 'license_updated' => 'License was successfully updated', + 'license_none' => 'Ang lisensya ay hindi umiiral', + 'license_detached' => 'License was successfully detached', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Delete was successful', + 'consumable_none' => 'Ang consumable ay hindi umiiral', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Accessory added successfully', + 'accessory_updated' => 'Accessory was successfully updated', + 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_error' => 'Accessory already attached to kit', + 'accessory_deleted' => 'Delete was successful', + 'accessory_none' => 'Accessory does not exist', + 'checkout_success' => 'Checkout was successful', + 'checkout_error' => 'Checkout error', + 'kit_none' => 'Kit does not exist', + 'kit_created' => 'Kit was successfully created', + 'kit_updated' => 'Kit was successfully updated', + 'kit_not_found' => 'Kit not found', + 'kit_deleted' => 'Kit was successfully deleted', + 'kit_model_updated' => 'Model was successfully updated', + 'kit_model_detached' => 'Model was successfully detached', +]; diff --git a/resources/lang/fil/admin/labels/message.php b/resources/lang/fil-PH/admin/labels/message.php similarity index 100% rename from resources/lang/fil/admin/labels/message.php rename to resources/lang/fil-PH/admin/labels/message.php diff --git a/resources/lang/fil-PH/admin/labels/table.php b/resources/lang/fil-PH/admin/labels/table.php new file mode 100644 index 0000000000..fd0cc0294e --- /dev/null +++ b/resources/lang/fil-PH/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Ang Tag', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Ang Logo', + 'support_title' => 'Ang Pamagat', + +]; \ No newline at end of file diff --git a/resources/lang/fil/admin/licenses/form.php b/resources/lang/fil-PH/admin/licenses/form.php similarity index 100% rename from resources/lang/fil/admin/licenses/form.php rename to resources/lang/fil-PH/admin/licenses/form.php diff --git a/resources/lang/fil/admin/licenses/general.php b/resources/lang/fil-PH/admin/licenses/general.php similarity index 100% rename from resources/lang/fil/admin/licenses/general.php rename to resources/lang/fil-PH/admin/licenses/general.php diff --git a/resources/lang/fil/admin/licenses/message.php b/resources/lang/fil-PH/admin/licenses/message.php similarity index 100% rename from resources/lang/fil/admin/licenses/message.php rename to resources/lang/fil-PH/admin/licenses/message.php diff --git a/resources/lang/fil/admin/licenses/table.php b/resources/lang/fil-PH/admin/licenses/table.php similarity index 100% rename from resources/lang/fil/admin/licenses/table.php rename to resources/lang/fil-PH/admin/licenses/table.php diff --git a/resources/lang/fil/admin/locations/message.php b/resources/lang/fil-PH/admin/locations/message.php similarity index 100% rename from resources/lang/fil/admin/locations/message.php rename to resources/lang/fil-PH/admin/locations/message.php diff --git a/resources/lang/fil/admin/locations/table.php b/resources/lang/fil-PH/admin/locations/table.php similarity index 74% rename from resources/lang/fil/admin/locations/table.php rename to resources/lang/fil-PH/admin/locations/table.php index afe091883f..603f265503 100644 --- a/resources/lang/fil/admin/locations/table.php +++ b/resources/lang/fil-PH/admin/locations/table.php @@ -12,7 +12,7 @@ return [ 'create' => 'Magsagawa ng Lokasyon', 'update' => 'I-update ang Lokasyon', 'print_assigned' => 'Print Assigned', - 'print_all_assigned' => 'Print All Assigned', + 'print_all_assigned' => 'I-print ang Lahat ng Nakatalaga', 'name' => 'Ang Pangalan ng Lokasyon', 'address' => 'Ang Address', 'address2' => 'Address Line 2', @@ -22,18 +22,18 @@ return [ 'currency' => 'Ang Salapi ng Lugar', 'ldap_ou' => 'Ang LDAP Search OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Ang Departmento', + 'location' => 'Ang Lokasyon', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_name' => 'Pangalan', + 'asset_category' => 'Ang kategorya', + 'asset_manufacturer' => 'Ang Tagapagsagawa', + 'asset_model' => 'Ang Modelo', + 'asset_serial' => 'Ang Seryal', + 'asset_location' => 'Ang Lokasyon', + 'asset_checked_out' => 'Nai-check Out', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Ang Petsa:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/fil/admin/manufacturers/message.php b/resources/lang/fil-PH/admin/manufacturers/message.php similarity index 100% rename from resources/lang/fil/admin/manufacturers/message.php rename to resources/lang/fil-PH/admin/manufacturers/message.php diff --git a/resources/lang/fil/admin/manufacturers/table.php b/resources/lang/fil-PH/admin/manufacturers/table.php similarity index 100% rename from resources/lang/fil/admin/manufacturers/table.php rename to resources/lang/fil-PH/admin/manufacturers/table.php diff --git a/resources/lang/fil/admin/models/general.php b/resources/lang/fil-PH/admin/models/general.php similarity index 100% rename from resources/lang/fil/admin/models/general.php rename to resources/lang/fil-PH/admin/models/general.php diff --git a/resources/lang/fil/admin/models/message.php b/resources/lang/fil-PH/admin/models/message.php similarity index 100% rename from resources/lang/fil/admin/models/message.php rename to resources/lang/fil-PH/admin/models/message.php diff --git a/resources/lang/fil/admin/models/table.php b/resources/lang/fil-PH/admin/models/table.php similarity index 100% rename from resources/lang/fil/admin/models/table.php rename to resources/lang/fil-PH/admin/models/table.php diff --git a/resources/lang/fil/admin/reports/general.php b/resources/lang/fil-PH/admin/reports/general.php similarity index 100% rename from resources/lang/fil/admin/reports/general.php rename to resources/lang/fil-PH/admin/reports/general.php diff --git a/resources/lang/fil/admin/reports/message.php b/resources/lang/fil-PH/admin/reports/message.php similarity index 100% rename from resources/lang/fil/admin/reports/message.php rename to resources/lang/fil-PH/admin/reports/message.php diff --git a/resources/lang/fil/admin/settings/general.php b/resources/lang/fil-PH/admin/settings/general.php similarity index 99% rename from resources/lang/fil/admin/settings/general.php rename to resources/lang/fil-PH/admin/settings/general.php index 2336e57054..a28e95c29f 100644 --- a/resources/lang/fil/admin/settings/general.php +++ b/resources/lang/fil-PH/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Ito ay isang server ng Aktibong Direktorya', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Ang minimum na mga karakter ng password', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Ang minimum na pinahihintulutang balyu ay 8', 'pwd_secure_uncommon' => 'Iwasan ang karaniwang mga password', 'pwd_secure_uncommon_help' => 'Ito ay hindi magpayag sa mga user sa paggamit ng mga karaniwang password na nagmula sa top 10,000 na mga password na nai-report sa mga paglabag.', 'qr_help' => 'Paganahin muna ang mga Codes ng QR sa pagtakda nito', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Ang mga Rekords na Nai-delete sa Pag-purge', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Ang Pamagat', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Ang Uri ng 2D Barcode', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/fil/admin/settings/message.php b/resources/lang/fil-PH/admin/settings/message.php similarity index 100% rename from resources/lang/fil/admin/settings/message.php rename to resources/lang/fil-PH/admin/settings/message.php diff --git a/resources/lang/fil-PH/admin/settings/table.php b/resources/lang/fil-PH/admin/settings/table.php new file mode 100644 index 0000000000..2ddbd25c44 --- /dev/null +++ b/resources/lang/fil-PH/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Naisagawa', + 'size' => 'Size', +); diff --git a/resources/lang/fil/admin/statuslabels/message.php b/resources/lang/fil-PH/admin/statuslabels/message.php similarity index 86% rename from resources/lang/fil/admin/statuslabels/message.php rename to resources/lang/fil-PH/admin/statuslabels/message.php index 3db1b57b31..705e8666d9 100644 --- a/resources/lang/fil/admin/statuslabels/message.php +++ b/resources/lang/fil-PH/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Ang Status Label ay hindi umiiral.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Ang Status Label na ito ay kasalukuyang nai-ugnay sa hindi bumaba sa isang Asset at hindi maaaring mai-delete. Mangyaring i-update ang iyong mga asset upang hindi na magreperens sa katayuan at paki-subok muli. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Ang mga asset na ito ay hindi maaaring maitalaga sa sinuman.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Ang asset na ito ay pwedeng mai-check out. Kapag naitalaga na sila, sila ay pwede magpalagay ng meta status ng Nai-deploy.', 'archived' => 'Ang mga asset na ito ay hindi maaaring mai-check out, at maipakita lamang sa Archived view. Ito ay kapakipakinabang sa pagpapanatili ng impormasyon tungkol sa mga asset para sa budgeting/historic na layunin ngunit ang pagpapanatili nito mula sa pang-araw-araw na listahan ng asset.', 'pending' => 'Ang mga asset na ito ay hindi maaaring ma-italaga sa sinuman, kadalasang ginagamit para sa mga aytem naipalabas para sa pagkumpuni, ngunit inaasahang magbalik sa sirkulasyon.', ], diff --git a/resources/lang/fil/admin/statuslabels/table.php b/resources/lang/fil-PH/admin/statuslabels/table.php similarity index 100% rename from resources/lang/fil/admin/statuslabels/table.php rename to resources/lang/fil-PH/admin/statuslabels/table.php diff --git a/resources/lang/fil/admin/suppliers/message.php b/resources/lang/fil-PH/admin/suppliers/message.php similarity index 100% rename from resources/lang/fil/admin/suppliers/message.php rename to resources/lang/fil-PH/admin/suppliers/message.php diff --git a/resources/lang/fil/admin/suppliers/table.php b/resources/lang/fil-PH/admin/suppliers/table.php similarity index 100% rename from resources/lang/fil/admin/suppliers/table.php rename to resources/lang/fil-PH/admin/suppliers/table.php diff --git a/resources/lang/fil/admin/users/general.php b/resources/lang/fil-PH/admin/users/general.php similarity index 97% rename from resources/lang/fil/admin/users/general.php rename to resources/lang/fil-PH/admin/users/general.php index 916c934f87..434a510eee 100644 --- a/resources/lang/fil/admin/users/general.php +++ b/resources/lang/fil-PH/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Tingnan ang User :name', 'usercsv' => 'Ang CSV file', 'two_factor_admin_optin_help' => 'Ang iyong kasalukuyang mga admin settings ay napapahintulot ng selektibong pagpapatupad ng two-factor authentication. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Ang Na-enroll na 2FA Device ', + 'two_factor_active' => 'Ang 2FA Active ', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/fil/admin/users/message.php b/resources/lang/fil-PH/admin/users/message.php similarity index 98% rename from resources/lang/fil/admin/users/message.php rename to resources/lang/fil-PH/admin/users/message.php index 5d46eaa1d9..3f64b36c30 100644 --- a/resources/lang/fil/admin/users/message.php +++ b/resources/lang/fil-PH/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Matagumpay mong hindi tinaggap ang asset na ito.', 'bulk_manager_warn' => 'Ang iyong mga user ay matagumpay nang nai-update, subalit ang iyong manager entry ay hindi nai-save dahil ang manager na iyong pinili ay kabilang sa listahan ng user na kailangang i-edit, at ang mga user ay maaaring wala sa sarili nilang pamamahala. Mangyaring pumiling muli ng iyong user, hindi kasama ang manager.', 'user_exists' => 'Ang user ay umiiral na!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Ang gumagamit ay hindi umiiral.', 'user_login_required' => 'Ang field ng login ay kinakailangan', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Ang password ay kinakailangan.', diff --git a/resources/lang/fil/admin/users/table.php b/resources/lang/fil-PH/admin/users/table.php similarity index 95% rename from resources/lang/fil/admin/users/table.php rename to resources/lang/fil-PH/admin/users/table.php index 56d4d0d97e..4081930da1 100644 --- a/resources/lang/fil/admin/users/table.php +++ b/resources/lang/fil-PH/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Namamahala', 'managed_locations' => 'Ang Pinamahalaang mga Lokasyon', 'name' => 'Pangalan', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Ang mga Paalala', 'password_confirm' => 'I-komperma ang Password', 'password' => 'Ang Password', diff --git a/resources/lang/fil/auth.php b/resources/lang/fil-PH/auth.php similarity index 100% rename from resources/lang/fil/auth.php rename to resources/lang/fil-PH/auth.php diff --git a/resources/lang/fil/auth/general.php b/resources/lang/fil-PH/auth/general.php similarity index 100% rename from resources/lang/fil/auth/general.php rename to resources/lang/fil-PH/auth/general.php diff --git a/resources/lang/fil/auth/message.php b/resources/lang/fil-PH/auth/message.php similarity index 96% rename from resources/lang/fil/auth/message.php rename to resources/lang/fil-PH/auth/message.php index 778b1f83b2..f498bd0ce6 100644 --- a/resources/lang/fil/auth/message.php +++ b/resources/lang/fil-PH/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Ikaw ay matagumay na naka-log in.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/fil/button.php b/resources/lang/fil-PH/button.php similarity index 87% rename from resources/lang/fil/button.php rename to resources/lang/fil-PH/button.php index cee813dec1..645261a740 100644 --- a/resources/lang/fil/button.php +++ b/resources/lang/fil-PH/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Pumili ng File...', 'select_files' => 'Select Files...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'I-send ang Link para sa Pag-reset ng Password', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Bago', ]; diff --git a/resources/lang/fil/general.php b/resources/lang/fil-PH/general.php similarity index 96% rename from resources/lang/fil/general.php rename to resources/lang/fil-PH/general.php index 100a41da0d..199b0c3c3f 100644 --- a/resources/lang/fil/general.php +++ b/resources/lang/fil-PH/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'I-import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'I-import ang Kasaysayan', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Handa nang I-deploy', 'recent_activity' => 'Ang Kasalukuyang Aktibidad', - 'remaining' => 'Remaining', + 'remaining' => 'Ang natitira', 'remove_company' => 'Tanggalin ang Assosasyon ng Kompanya', 'reports' => 'Mga Ulat', 'restored' => 'ibinalik sa dati', - 'restore' => 'Restore', + 'restore' => 'Ibalik sa dati', 'requestable_models' => 'Requestable Models', 'requested' => 'Ang Nirekwest', 'requested_date' => 'Requested Date', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Hindi pwedeng i-depoy', 'unknown_admin' => 'Hindi matukoy na Admin', 'username_format' => 'Ang Pormat sa Pangalan ng Gumagamit', - 'username' => 'Username', + 'username' => 'Ang pangalan ng gumagamit', 'update' => 'I-update', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Nai-upload', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'Ang Email', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Nai-check Out', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Babala', + 'notification_info' => 'Impormasyon', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Ang Pangalan ng Asset', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Ang Pangalan ng Consumable:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Ang Pangalan ng Aksesorya:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% nakompleto na', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'i-edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/fil-PH/help.php b/resources/lang/fil-PH/help.php new file mode 100644 index 0000000000..e3d1279fc8 --- /dev/null +++ b/resources/lang/fil-PH/help.php @@ -0,0 +1,35 @@ + 'Karagdagang Impormasyon', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Ang mga asset ay mga aytem na sinubaybayan ng serial number o tag ng asset. May mga posiilidad na ito ay mataas na balyu ng mga aytem kung saan tinitingna ang partikular na mga aytem.', + + 'categories' => 'Ang mga kategorya ay tumutulong sa iyo i-organisa ang iyong nga aytem. Maaaring ang iilang halimbawa ng mga kategorya ay ang "Mga Desktop", "Mga Laptop", "Mga Mobile Phones", "Mga Tablet", at iba pa, ngunit pwede kang gumamit ng mga kategorya na para sa iyo ay may kabuluhan.', + + 'accessories' => 'Ang mga aksesorya ay tumutukoy sa anumang bagay na iyong inisyusa mga gumagamit ngunit wala itong serial number (o wala kang pakialam sa paghahanap basi sa kaibahan nito). Halimbawa, ang mga mouse ng kompyuter o mga keyboards.', + + 'companies' => 'Ang mga kumpanya ay maaaring magamit bilang isang simpleng field ng pag-identify, o ito rin ay maaring magamit para i-limita ang bisibiliti ng mga asset, mga gumagamit, atbp kung pinagana ang buong suporta ng kumpanya sa iyong mga setting ng Admin.', + + 'components' => 'Ang mga komponent ay mga aytem na bahagi ng isang asset, halimbawa HDD, RAM, atbp.', + + 'consumables' => 'Ang mga Consumable ay tumutukoy sa anumang binili na pwedeng maubos sa paglipas ng panahon. Halimbawa nito ay, printer ink or papel ng copier.', + + 'depreciations' => 'Pwede kang mag-set up ng depresasyon para mai-depreciate ang mga asset basi sa straight-line depreciation.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/fil-PH/localizations.php b/resources/lang/fil-PH/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/fil-PH/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/fil/mail.php b/resources/lang/fil-PH/mail.php similarity index 97% rename from resources/lang/fil/mail.php rename to resources/lang/fil-PH/mail.php index 288d3f61eb..5c52a10279 100644 --- a/resources/lang/fil/mail.php +++ b/resources/lang/fil-PH/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Ang Asset:', 'asset_name' => 'Ang Pangalan ng Asset:', 'asset_requested' => 'Ang nirekwest na asset', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Ang Tag ng Asset', 'assigned_to' => 'Nakatalaga Sa', 'best_regards' => 'Lubos na bumabati,', 'canceled' => 'Nakansela:', @@ -55,7 +55,7 @@ return [ 'requested' => 'Mga Nai-rekwest:', 'reset_link' => 'Ang Link para sa Pag-reset ng Password', 'reset_password' => 'I-klik ito para ma-reset ang iyong password:', - 'serial' => 'Serial', + 'serial' => 'Ang Seryal', 'supplier' => 'Ang Tagapagsuplay', 'tag' => 'Ang Tag', 'test_email' => 'I-test ang Email mula sa Snipe-IT', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'Para mai-reset ang iyong :web password, kumpletuhin ang form na ito:', 'type' => 'Klase', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'Ang gumagamit', + 'username' => 'Ang pangalan ng gumagamit', 'welcome' => 'Maligayang pagdating :ang pangalan', 'welcome_to' => 'Maligayang pagdating sa: web!', 'your_credentials' => 'Ang iyong mga Kredensyal sa Snipe-IT', diff --git a/resources/lang/fil/pagination.php b/resources/lang/fil-PH/pagination.php similarity index 100% rename from resources/lang/fil/pagination.php rename to resources/lang/fil-PH/pagination.php diff --git a/resources/lang/fil/passwords.php b/resources/lang/fil-PH/passwords.php similarity index 100% rename from resources/lang/fil/passwords.php rename to resources/lang/fil-PH/passwords.php diff --git a/resources/lang/fil/reminders.php b/resources/lang/fil-PH/reminders.php similarity index 100% rename from resources/lang/fil/reminders.php rename to resources/lang/fil-PH/reminders.php diff --git a/resources/lang/fil/table.php b/resources/lang/fil-PH/table.php similarity index 100% rename from resources/lang/fil/table.php rename to resources/lang/fil-PH/table.php diff --git a/resources/lang/fil/validation.php b/resources/lang/fil-PH/validation.php similarity index 99% rename from resources/lang/fil/validation.php rename to resources/lang/fil-PH/validation.php index 8496d1736e..8d881841af 100644 --- a/resources/lang/fil/validation.php +++ b/resources/lang/fil-PH/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'Ang :katangian ay dapat na natatangi.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/fil/admin/labels/table.php b/resources/lang/fil/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/fil/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/fil/help.php b/resources/lang/fil/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/fil/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/fil/localizations.php b/resources/lang/fil/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/fil/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/fr/account/general.php b/resources/lang/fr-FR/account/general.php similarity index 100% rename from resources/lang/fr/account/general.php rename to resources/lang/fr-FR/account/general.php diff --git a/resources/lang/fr/admin/accessories/general.php b/resources/lang/fr-FR/admin/accessories/general.php similarity index 100% rename from resources/lang/fr/admin/accessories/general.php rename to resources/lang/fr-FR/admin/accessories/general.php diff --git a/resources/lang/fr/admin/accessories/message.php b/resources/lang/fr-FR/admin/accessories/message.php similarity index 100% rename from resources/lang/fr/admin/accessories/message.php rename to resources/lang/fr-FR/admin/accessories/message.php diff --git a/resources/lang/fr/admin/accessories/table.php b/resources/lang/fr-FR/admin/accessories/table.php similarity index 100% rename from resources/lang/fr/admin/accessories/table.php rename to resources/lang/fr-FR/admin/accessories/table.php diff --git a/resources/lang/fr/admin/asset_maintenances/form.php b/resources/lang/fr-FR/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/fr/admin/asset_maintenances/form.php rename to resources/lang/fr-FR/admin/asset_maintenances/form.php diff --git a/resources/lang/fr/admin/asset_maintenances/general.php b/resources/lang/fr-FR/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/fr/admin/asset_maintenances/general.php rename to resources/lang/fr-FR/admin/asset_maintenances/general.php diff --git a/resources/lang/fr/admin/asset_maintenances/message.php b/resources/lang/fr-FR/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/fr/admin/asset_maintenances/message.php rename to resources/lang/fr-FR/admin/asset_maintenances/message.php diff --git a/resources/lang/fr/admin/asset_maintenances/table.php b/resources/lang/fr-FR/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/fr/admin/asset_maintenances/table.php rename to resources/lang/fr-FR/admin/asset_maintenances/table.php diff --git a/resources/lang/fr/admin/categories/general.php b/resources/lang/fr-FR/admin/categories/general.php similarity index 100% rename from resources/lang/fr/admin/categories/general.php rename to resources/lang/fr-FR/admin/categories/general.php diff --git a/resources/lang/fr/admin/categories/message.php b/resources/lang/fr-FR/admin/categories/message.php similarity index 100% rename from resources/lang/fr/admin/categories/message.php rename to resources/lang/fr-FR/admin/categories/message.php diff --git a/resources/lang/fr/admin/categories/table.php b/resources/lang/fr-FR/admin/categories/table.php similarity index 100% rename from resources/lang/fr/admin/categories/table.php rename to resources/lang/fr-FR/admin/categories/table.php diff --git a/resources/lang/fr/admin/companies/general.php b/resources/lang/fr-FR/admin/companies/general.php similarity index 100% rename from resources/lang/fr/admin/companies/general.php rename to resources/lang/fr-FR/admin/companies/general.php diff --git a/resources/lang/fr/admin/companies/message.php b/resources/lang/fr-FR/admin/companies/message.php similarity index 100% rename from resources/lang/fr/admin/companies/message.php rename to resources/lang/fr-FR/admin/companies/message.php diff --git a/resources/lang/fr/admin/companies/table.php b/resources/lang/fr-FR/admin/companies/table.php similarity index 100% rename from resources/lang/fr/admin/companies/table.php rename to resources/lang/fr-FR/admin/companies/table.php diff --git a/resources/lang/fr/admin/components/general.php b/resources/lang/fr-FR/admin/components/general.php similarity index 100% rename from resources/lang/fr/admin/components/general.php rename to resources/lang/fr-FR/admin/components/general.php diff --git a/resources/lang/fr/admin/components/message.php b/resources/lang/fr-FR/admin/components/message.php similarity index 100% rename from resources/lang/fr/admin/components/message.php rename to resources/lang/fr-FR/admin/components/message.php diff --git a/resources/lang/fr/admin/components/table.php b/resources/lang/fr-FR/admin/components/table.php similarity index 100% rename from resources/lang/fr/admin/components/table.php rename to resources/lang/fr-FR/admin/components/table.php diff --git a/resources/lang/fr/admin/consumables/general.php b/resources/lang/fr-FR/admin/consumables/general.php similarity index 100% rename from resources/lang/fr/admin/consumables/general.php rename to resources/lang/fr-FR/admin/consumables/general.php diff --git a/resources/lang/fr/admin/consumables/message.php b/resources/lang/fr-FR/admin/consumables/message.php similarity index 100% rename from resources/lang/fr/admin/consumables/message.php rename to resources/lang/fr-FR/admin/consumables/message.php diff --git a/resources/lang/fr/admin/consumables/table.php b/resources/lang/fr-FR/admin/consumables/table.php similarity index 100% rename from resources/lang/fr/admin/consumables/table.php rename to resources/lang/fr-FR/admin/consumables/table.php diff --git a/resources/lang/fr/admin/custom_fields/general.php b/resources/lang/fr-FR/admin/custom_fields/general.php similarity index 100% rename from resources/lang/fr/admin/custom_fields/general.php rename to resources/lang/fr-FR/admin/custom_fields/general.php diff --git a/resources/lang/fr/admin/custom_fields/message.php b/resources/lang/fr-FR/admin/custom_fields/message.php similarity index 100% rename from resources/lang/fr/admin/custom_fields/message.php rename to resources/lang/fr-FR/admin/custom_fields/message.php diff --git a/resources/lang/fr/admin/departments/message.php b/resources/lang/fr-FR/admin/departments/message.php similarity index 100% rename from resources/lang/fr/admin/departments/message.php rename to resources/lang/fr-FR/admin/departments/message.php diff --git a/resources/lang/fr/admin/departments/table.php b/resources/lang/fr-FR/admin/departments/table.php similarity index 100% rename from resources/lang/fr/admin/departments/table.php rename to resources/lang/fr-FR/admin/departments/table.php diff --git a/resources/lang/fr/admin/depreciations/general.php b/resources/lang/fr-FR/admin/depreciations/general.php similarity index 100% rename from resources/lang/fr/admin/depreciations/general.php rename to resources/lang/fr-FR/admin/depreciations/general.php diff --git a/resources/lang/fr/admin/depreciations/message.php b/resources/lang/fr-FR/admin/depreciations/message.php similarity index 100% rename from resources/lang/fr/admin/depreciations/message.php rename to resources/lang/fr-FR/admin/depreciations/message.php diff --git a/resources/lang/fr/admin/depreciations/table.php b/resources/lang/fr-FR/admin/depreciations/table.php similarity index 100% rename from resources/lang/fr/admin/depreciations/table.php rename to resources/lang/fr-FR/admin/depreciations/table.php diff --git a/resources/lang/fr/admin/groups/message.php b/resources/lang/fr-FR/admin/groups/message.php similarity index 100% rename from resources/lang/fr/admin/groups/message.php rename to resources/lang/fr-FR/admin/groups/message.php diff --git a/resources/lang/fr/admin/groups/table.php b/resources/lang/fr-FR/admin/groups/table.php similarity index 100% rename from resources/lang/fr/admin/groups/table.php rename to resources/lang/fr-FR/admin/groups/table.php diff --git a/resources/lang/fr/admin/groups/titles.php b/resources/lang/fr-FR/admin/groups/titles.php similarity index 100% rename from resources/lang/fr/admin/groups/titles.php rename to resources/lang/fr-FR/admin/groups/titles.php diff --git a/resources/lang/fr/admin/hardware/form.php b/resources/lang/fr-FR/admin/hardware/form.php similarity index 100% rename from resources/lang/fr/admin/hardware/form.php rename to resources/lang/fr-FR/admin/hardware/form.php diff --git a/resources/lang/fr/admin/hardware/general.php b/resources/lang/fr-FR/admin/hardware/general.php similarity index 100% rename from resources/lang/fr/admin/hardware/general.php rename to resources/lang/fr-FR/admin/hardware/general.php diff --git a/resources/lang/fr/admin/hardware/message.php b/resources/lang/fr-FR/admin/hardware/message.php similarity index 100% rename from resources/lang/fr/admin/hardware/message.php rename to resources/lang/fr-FR/admin/hardware/message.php diff --git a/resources/lang/fr/admin/hardware/table.php b/resources/lang/fr-FR/admin/hardware/table.php similarity index 100% rename from resources/lang/fr/admin/hardware/table.php rename to resources/lang/fr-FR/admin/hardware/table.php diff --git a/resources/lang/fr/admin/kits/general.php b/resources/lang/fr-FR/admin/kits/general.php similarity index 100% rename from resources/lang/fr/admin/kits/general.php rename to resources/lang/fr-FR/admin/kits/general.php diff --git a/resources/lang/fr/admin/labels/message.php b/resources/lang/fr-FR/admin/labels/message.php similarity index 100% rename from resources/lang/fr/admin/labels/message.php rename to resources/lang/fr-FR/admin/labels/message.php diff --git a/resources/lang/fr/admin/labels/table.php b/resources/lang/fr-FR/admin/labels/table.php similarity index 100% rename from resources/lang/fr/admin/labels/table.php rename to resources/lang/fr-FR/admin/labels/table.php diff --git a/resources/lang/fr/admin/licenses/form.php b/resources/lang/fr-FR/admin/licenses/form.php similarity index 100% rename from resources/lang/fr/admin/licenses/form.php rename to resources/lang/fr-FR/admin/licenses/form.php diff --git a/resources/lang/fr/admin/licenses/general.php b/resources/lang/fr-FR/admin/licenses/general.php similarity index 100% rename from resources/lang/fr/admin/licenses/general.php rename to resources/lang/fr-FR/admin/licenses/general.php diff --git a/resources/lang/fr/admin/licenses/message.php b/resources/lang/fr-FR/admin/licenses/message.php similarity index 100% rename from resources/lang/fr/admin/licenses/message.php rename to resources/lang/fr-FR/admin/licenses/message.php diff --git a/resources/lang/fr/admin/licenses/table.php b/resources/lang/fr-FR/admin/licenses/table.php similarity index 100% rename from resources/lang/fr/admin/licenses/table.php rename to resources/lang/fr-FR/admin/licenses/table.php diff --git a/resources/lang/fr/admin/locations/message.php b/resources/lang/fr-FR/admin/locations/message.php similarity index 100% rename from resources/lang/fr/admin/locations/message.php rename to resources/lang/fr-FR/admin/locations/message.php diff --git a/resources/lang/fr/admin/locations/table.php b/resources/lang/fr-FR/admin/locations/table.php similarity index 97% rename from resources/lang/fr/admin/locations/table.php rename to resources/lang/fr-FR/admin/locations/table.php index 1ed1a4b30c..c6e487c177 100644 --- a/resources/lang/fr/admin/locations/table.php +++ b/resources/lang/fr-FR/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Imprimer tous les actifs attribués', 'name' => 'Nom du lieu', 'address' => 'Adresse', - 'address2' => 'Address Line 2', + 'address2' => 'Adresse Ligne 2', 'zip' => 'Code postal', 'locations' => 'Lieux', 'parent' => 'Parent', diff --git a/resources/lang/fr/admin/manufacturers/message.php b/resources/lang/fr-FR/admin/manufacturers/message.php similarity index 100% rename from resources/lang/fr/admin/manufacturers/message.php rename to resources/lang/fr-FR/admin/manufacturers/message.php diff --git a/resources/lang/fr/admin/manufacturers/table.php b/resources/lang/fr-FR/admin/manufacturers/table.php similarity index 100% rename from resources/lang/fr/admin/manufacturers/table.php rename to resources/lang/fr-FR/admin/manufacturers/table.php diff --git a/resources/lang/fr/admin/models/general.php b/resources/lang/fr-FR/admin/models/general.php similarity index 100% rename from resources/lang/fr/admin/models/general.php rename to resources/lang/fr-FR/admin/models/general.php diff --git a/resources/lang/fr/admin/models/message.php b/resources/lang/fr-FR/admin/models/message.php similarity index 100% rename from resources/lang/fr/admin/models/message.php rename to resources/lang/fr-FR/admin/models/message.php diff --git a/resources/lang/fr/admin/models/table.php b/resources/lang/fr-FR/admin/models/table.php similarity index 100% rename from resources/lang/fr/admin/models/table.php rename to resources/lang/fr-FR/admin/models/table.php diff --git a/resources/lang/fr/admin/reports/general.php b/resources/lang/fr-FR/admin/reports/general.php similarity index 100% rename from resources/lang/fr/admin/reports/general.php rename to resources/lang/fr-FR/admin/reports/general.php diff --git a/resources/lang/fr/admin/reports/message.php b/resources/lang/fr-FR/admin/reports/message.php similarity index 100% rename from resources/lang/fr/admin/reports/message.php rename to resources/lang/fr-FR/admin/reports/message.php diff --git a/resources/lang/fr/admin/settings/general.php b/resources/lang/fr-FR/admin/settings/general.php similarity index 99% rename from resources/lang/fr/admin/settings/general.php rename to resources/lang/fr-FR/admin/settings/general.php index 363199009f..7196968d48 100644 --- a/resources/lang/fr/admin/settings/general.php +++ b/resources/lang/fr-FR/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'L\'utilisateur n\'est pas obligé d\'écrire "username@domain.local", il peut juste taper "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'Si vous souhaitez envoyer une copie des courriels d\'association/dissociation qui sont envoyés aux utilisateurs à un compte de messagerie supplémentaire, entrez-le ici. Sinon, laissez ce champ vide.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'C\'est un serveur Active Directory', 'alerts' => 'Alertes', 'alert_title' => 'Mettre à jour les paramètres de notification', diff --git a/resources/lang/fr/admin/settings/message.php b/resources/lang/fr-FR/admin/settings/message.php similarity index 100% rename from resources/lang/fr/admin/settings/message.php rename to resources/lang/fr-FR/admin/settings/message.php diff --git a/resources/lang/fr/admin/settings/table.php b/resources/lang/fr-FR/admin/settings/table.php similarity index 100% rename from resources/lang/fr/admin/settings/table.php rename to resources/lang/fr-FR/admin/settings/table.php diff --git a/resources/lang/fr/admin/statuslabels/message.php b/resources/lang/fr-FR/admin/statuslabels/message.php similarity index 97% rename from resources/lang/fr/admin/statuslabels/message.php rename to resources/lang/fr-FR/admin/statuslabels/message.php index f4a15f02e4..d302775a90 100644 --- a/resources/lang/fr/admin/statuslabels/message.php +++ b/resources/lang/fr-FR/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'L\'étiquette de statut n\'existe pas.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Cette étiquette de statut est actuellement associée avec au moins un bien et ne peut être supprimée. Merci de mettre à jour vos biens pour ne plus référencer ce statut et essayez à nouveau. ', 'create' => [ diff --git a/resources/lang/fr/admin/statuslabels/table.php b/resources/lang/fr-FR/admin/statuslabels/table.php similarity index 100% rename from resources/lang/fr/admin/statuslabels/table.php rename to resources/lang/fr-FR/admin/statuslabels/table.php diff --git a/resources/lang/fr/admin/suppliers/message.php b/resources/lang/fr-FR/admin/suppliers/message.php similarity index 100% rename from resources/lang/fr/admin/suppliers/message.php rename to resources/lang/fr-FR/admin/suppliers/message.php diff --git a/resources/lang/fr/admin/suppliers/table.php b/resources/lang/fr-FR/admin/suppliers/table.php similarity index 100% rename from resources/lang/fr/admin/suppliers/table.php rename to resources/lang/fr-FR/admin/suppliers/table.php diff --git a/resources/lang/fr/admin/users/general.php b/resources/lang/fr-FR/admin/users/general.php similarity index 100% rename from resources/lang/fr/admin/users/general.php rename to resources/lang/fr-FR/admin/users/general.php diff --git a/resources/lang/fr/admin/users/message.php b/resources/lang/fr-FR/admin/users/message.php similarity index 100% rename from resources/lang/fr/admin/users/message.php rename to resources/lang/fr-FR/admin/users/message.php diff --git a/resources/lang/fr/admin/users/table.php b/resources/lang/fr-FR/admin/users/table.php similarity index 95% rename from resources/lang/fr/admin/users/table.php rename to resources/lang/fr-FR/admin/users/table.php index dffabd7126..55228ad006 100644 --- a/resources/lang/fr/admin/users/table.php +++ b/resources/lang/fr-FR/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Responsable', 'managed_locations' => 'Emplacements gérés', 'name' => 'Nom', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirmer le mot de passe', 'password' => 'Mot de passe', diff --git a/resources/lang/fr/auth.php b/resources/lang/fr-FR/auth.php similarity index 100% rename from resources/lang/fr/auth.php rename to resources/lang/fr-FR/auth.php diff --git a/resources/lang/fr/auth/general.php b/resources/lang/fr-FR/auth/general.php similarity index 100% rename from resources/lang/fr/auth/general.php rename to resources/lang/fr-FR/auth/general.php diff --git a/resources/lang/fr/auth/message.php b/resources/lang/fr-FR/auth/message.php similarity index 100% rename from resources/lang/fr/auth/message.php rename to resources/lang/fr-FR/auth/message.php diff --git a/resources/lang/fr/button.php b/resources/lang/fr-FR/button.php similarity index 100% rename from resources/lang/fr/button.php rename to resources/lang/fr-FR/button.php diff --git a/resources/lang/fr/general.php b/resources/lang/fr-FR/general.php similarity index 97% rename from resources/lang/fr/general.php rename to resources/lang/fr-FR/general.php index 5a3379d783..cc805344b0 100644 --- a/resources/lang/fr/general.php +++ b/resources/lang/fr-FR/general.php @@ -72,7 +72,7 @@ return [ 'consumable' => 'Consommable', 'consumables' => 'Consommables', 'country' => 'Pays', - 'could_not_restore' => 'Error restoring :item_type: :error', + 'could_not_restore' => 'Erreur lors de la restauration de :item_type: :error', 'not_deleted' => 'The :item_type is not deleted so it cannot be restored', 'create' => 'Créer', 'created' => 'Élément créé', @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Les types de fichiers acceptés sont jpg, webp, png, gif et svg. Taille maximale est de:size.', 'unaccepted_image_type' => 'Ce fichier image n\'est pas lisible. Les types de fichiers acceptés sont jpg, webp, png, gif et svg. Le type mimetype de ce fichier est : :mimetype.', 'import' => 'Importer', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importation en cours', 'importing_help' => 'Vous pouvez importer des matériels, accessoires, licences, composants, consommables et utilisateurs via un fichier CSV.

Le CSV doit être délimité par des virgules et formaté avec des en-têtes qui correspondent à ceux des exemples de CSV présents dans la documentation.', 'import-history' => 'Importer l\'historique', @@ -488,8 +489,15 @@ return [ ], 'percent_complete' => '% terminé', 'uploading' => 'Téléversement... ', - 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', + 'upload_error' => 'Erreur lors du téléversement du fichier. Veuillez vérifier qu\'il n\'y a pas de lignes vides et qu\'aucun nom de colonne n\'est dupliqué.', 'copy_to_clipboard' => 'Copier dans le presse-papier', 'copied' => 'Copié !', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'éditer', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/fr/help.php b/resources/lang/fr-FR/help.php similarity index 100% rename from resources/lang/fr/help.php rename to resources/lang/fr-FR/help.php diff --git a/resources/lang/fr/localizations.php b/resources/lang/fr-FR/localizations.php similarity index 99% rename from resources/lang/fr/localizations.php rename to resources/lang/fr-FR/localizations.php index fcc31efcdb..8253812040 100644 --- a/resources/lang/fr/localizations.php +++ b/resources/lang/fr-FR/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irlandais', 'it'=> 'Italien', 'ja'=> 'Japonais', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Coréen', 'lv'=>'Letton', 'lt'=> 'Lituanien', diff --git a/resources/lang/fr/mail.php b/resources/lang/fr-FR/mail.php similarity index 100% rename from resources/lang/fr/mail.php rename to resources/lang/fr-FR/mail.php diff --git a/resources/lang/fr/pagination.php b/resources/lang/fr-FR/pagination.php similarity index 100% rename from resources/lang/fr/pagination.php rename to resources/lang/fr-FR/pagination.php diff --git a/resources/lang/fr/passwords.php b/resources/lang/fr-FR/passwords.php similarity index 100% rename from resources/lang/fr/passwords.php rename to resources/lang/fr-FR/passwords.php diff --git a/resources/lang/fr/reminders.php b/resources/lang/fr-FR/reminders.php similarity index 100% rename from resources/lang/fr/reminders.php rename to resources/lang/fr-FR/reminders.php diff --git a/resources/lang/fr/table.php b/resources/lang/fr-FR/table.php similarity index 100% rename from resources/lang/fr/table.php rename to resources/lang/fr-FR/table.php diff --git a/resources/lang/fr/validation.php b/resources/lang/fr-FR/validation.php similarity index 99% rename from resources/lang/fr/validation.php rename to resources/lang/fr-FR/validation.php index f9e204dde0..211501917b 100644 --- a/resources/lang/fr/validation.php +++ b/resources/lang/fr-FR/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute doit être unique.', 'non_circular' => 'Le champ :attribute ne doit pas créer de référence circulaire.', 'not_array' => 'Le champ :attribute ne peut pas être un tableau.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Le mot de passe ne peut être le nom d\'utilisateur.', 'letters' => 'Le mot de passe doit contenir au moins une lettre.', 'numbers' => 'Le mot de passe doit contenir au moins un chiffre.', diff --git a/resources/lang/ga-IE/admin/companies/general.php b/resources/lang/ga-IE/admin/companies/general.php index 25481faab3..89c14750af 100644 --- a/resources/lang/ga-IE/admin/companies/general.php +++ b/resources/lang/ga-IE/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Roghnaigh Cuideachta', - 'about_companies' => 'About Companies', + 'about_companies' => 'Maidir le Cuideachtaí', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/ga-IE/admin/hardware/message.php b/resources/lang/ga-IE/admin/hardware/message.php index 9b94b21ec9..bbf31db3d8 100644 --- a/resources/lang/ga-IE/admin/hardware/message.php +++ b/resources/lang/ga-IE/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Níor cuireadh an tsócmhainn ar ais, déan iarracht arís', 'success' => 'Aisghabháil sócmhainne go rathúil.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Aisghabháil sócmhainne go rathúil.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/ga-IE/admin/hardware/table.php b/resources/lang/ga-IE/admin/hardware/table.php index 994a601182..df02ab5422 100644 --- a/resources/lang/ga-IE/admin/hardware/table.php +++ b/resources/lang/ga-IE/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Íomhá Gléas', 'days_without_acceptance' => 'Laethanta Gan Glactha', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Sannadh Chun', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/ga-IE/admin/kits/general.php b/resources/lang/ga-IE/admin/kits/general.php index f724ecbf07..e8471e6412 100644 --- a/resources/lang/ga-IE/admin/kits/general.php +++ b/resources/lang/ga-IE/admin/kits/general.php @@ -24,13 +24,13 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Níl an ceadúnas ann', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Níl inbhuanaithe ann', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', diff --git a/resources/lang/ga-IE/admin/labels/table.php b/resources/lang/ga-IE/admin/labels/table.php index 87dee4bad0..237c56642d 100644 --- a/resources/lang/ga-IE/admin/labels/table.php +++ b/resources/lang/ga-IE/admin/labels/table.php @@ -4,10 +4,10 @@ return [ 'labels_per_page' => 'Labels', 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', + 'support_asset_tag' => 'Clib', 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Teideal', ]; \ No newline at end of file diff --git a/resources/lang/ga-IE/admin/locations/table.php b/resources/lang/ga-IE/admin/locations/table.php index 9a28d6dc3d..4fdca377bd 100644 --- a/resources/lang/ga-IE/admin/locations/table.php +++ b/resources/lang/ga-IE/admin/locations/table.php @@ -22,18 +22,18 @@ return [ 'currency' => 'Airgeadra Suímh', 'ldap_ou' => 'OL Cuardaigh LDAP', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Roinn', + 'location' => 'Suíomh', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_name' => 'Ainm', + 'asset_category' => 'Catagóir', + 'asset_manufacturer' => 'Déantóir', + 'asset_model' => 'Mionsamhail', + 'asset_serial' => 'Sraithuimhir', + 'asset_location' => 'Suíomh', + 'asset_checked_out' => 'Seiceáil Amach', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Dáta:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/ga-IE/admin/settings/general.php b/resources/lang/ga-IE/admin/settings/general.php index 61f7da61a4..00909909df 100644 --- a/resources/lang/ga-IE/admin/settings/general.php +++ b/resources/lang/ga-IE/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Is freastalaí Gníomhach Eolaire é seo', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Carachtair íosta Pasfhocal', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Is é an luach íosta ceadaithe 8', 'pwd_secure_uncommon' => 'Coinnigh pasfhocail coitianta', 'pwd_secure_uncommon_help' => 'Ní dhéanfaidh sé seo úsáideoirí a dhíspreagadh ó úsáid focal coitianta ó na 10,000 focal faire is mó a thuairiscítear i sáruithe.', 'qr_help' => 'Cumasaigh Cóid QR den chéad uair chun seo a leagan síos', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Taifid Scriosta Purge', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Teideal', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Cineál Barcode 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/ga-IE/admin/settings/table.php b/resources/lang/ga-IE/admin/settings/table.php index 22db5c84ed..2c6f611eff 100644 --- a/resources/lang/ga-IE/admin/settings/table.php +++ b/resources/lang/ga-IE/admin/settings/table.php @@ -1,6 +1,6 @@ 'Created', + 'created' => 'Cruthaithe', 'size' => 'Size', ); diff --git a/resources/lang/ga-IE/admin/statuslabels/message.php b/resources/lang/ga-IE/admin/statuslabels/message.php index 342dac7eb7..ed86d2de2c 100644 --- a/resources/lang/ga-IE/admin/statuslabels/message.php +++ b/resources/lang/ga-IE/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Níl Lipéad Stádas ann.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Tá an Lipéad Stádas seo bainteach le Sócmhainn amháin ar a laghad agus ní féidir é a scriosadh. Déan do sócmhainní a thabhairt cothrom le dáta gan tagairt a dhéanamh don stádas seo agus déan iarracht arís.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Ní féidir na sócmhainní sin a shannadh do dhuine ar bith.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Is féidir na sócmhainní sin a sheiceáil amach. Nuair a bheidh siad sannta, glacfaidh siad meitreo stádas de Deployed.', 'archived' => 'Ní féidir na sócmhainní sin a sheiceáil amach, agus ní thaispeánfar iad ach san amharc Cartlann. Tá sé seo úsáideach le faisnéis a choinneáil faoi shócmhainní le haghaidh buiséid / cuspóirí stairiúla ach iad a choinneáil amach as an liosta sócmhainne ó lá go lá.', 'pending' => 'Ní féidir na sócmhainní sin a shannadh go fóill d\'aon duine, a úsáidtear go minic le haghaidh míreanna atá le deisiú, ach táthar ag súil go dtiocfaidh siad ar ais chuig an gcúrsaíocht.', ], diff --git a/resources/lang/ga-IE/admin/users/general.php b/resources/lang/ga-IE/admin/users/general.php index f566e2405b..a3ef262e62 100644 --- a/resources/lang/ga-IE/admin/users/general.php +++ b/resources/lang/ga-IE/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Féach Úsáideoir: ainm', 'usercsv' => 'Comhad CSV', 'two_factor_admin_optin_help' => 'Ceadaíonn do shuímh riaracháin reatha forfheidhmiú roghnach fíordheimhnithe dhá fhachtóir.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Gléas 2FA Cláraithe', + 'two_factor_active' => '2FA Gníomhach', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/ga-IE/admin/users/message.php b/resources/lang/ga-IE/admin/users/message.php index aa577ed800..d8f94b0694 100644 --- a/resources/lang/ga-IE/admin/users/message.php +++ b/resources/lang/ga-IE/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Dhiúltaigh tú an tsócmhainn seo go rathúil.', 'bulk_manager_warn' => 'Rinneadh do chuid úsáideoirí a nuashonrú go rathúil, áfach, níor shábháil do iontráil bainisteora toisc go raibh an bainisteoir a roghnaigh tú chomh maith sa liosta úsáideora le bheith in eagar, agus b\'fhéidir nach mbainfeadh úsáideoirí a mbainisteoir féin. Roghnaigh d\'úsáideoirí arís, gan an bainisteoir a áireamh.', 'user_exists' => 'Úsáideoir ann cheana!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Níl an t-úsáideoir ann.', 'user_login_required' => 'Is gá an réimse logála isteach', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Tá an focal faire ag teastáil.', diff --git a/resources/lang/ga-IE/admin/users/table.php b/resources/lang/ga-IE/admin/users/table.php index 2866d3e87d..194c27bcf8 100644 --- a/resources/lang/ga-IE/admin/users/table.php +++ b/resources/lang/ga-IE/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Bainisteoir', 'managed_locations' => 'Láithreáin bhainistithe', 'name' => 'Ainm', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Nótaí', 'password_confirm' => 'Deimhnigh Pasfhocal', 'password' => 'Pasfhocal', diff --git a/resources/lang/ga-IE/auth/message.php b/resources/lang/ga-IE/auth/message.php index eb65acf4cd..4c46eb295a 100644 --- a/resources/lang/ga-IE/auth/message.php +++ b/resources/lang/ga-IE/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Rinne tú logáil isteach go rathúil.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/ga-IE/button.php b/resources/lang/ga-IE/button.php index 564552ab44..aff88fbae8 100644 --- a/resources/lang/ga-IE/button.php +++ b/resources/lang/ga-IE/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Roghnaigh Comhad ...', 'select_files' => 'Select Files...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Seol Nasc Athshocraigh Pasfhocal', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Nua', ]; diff --git a/resources/lang/ga-IE/general.php b/resources/lang/ga-IE/general.php index 48e840012c..8585b047c6 100644 --- a/resources/lang/ga-IE/general.php +++ b/resources/lang/ga-IE/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Iompórtáil', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Stair Iompórtála', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Réidh le Imscaradh', 'recent_activity' => 'Gníomhaíocht le déanaí', - 'remaining' => 'Remaining', + 'remaining' => 'Ag fágáil', 'remove_company' => 'Bain Cuideachta Chomhlachais', 'reports' => 'Tuarascálacha', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'Athchóirigh', 'requestable_models' => 'Requestable Models', 'requested' => 'Iarrtar', 'requested_date' => 'Requested Date', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Neamh-imscartha', 'unknown_admin' => 'Riarachán Anaithnid', 'username_format' => 'Ainm Úsáideora Formáid', - 'username' => 'Username', + 'username' => 'Ainm Úsáideora', 'update' => 'Nuashonrú', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Uasluchtaithe', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'Ríomhphost', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Seiceáil Amach', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Rabhadh', + 'notification_info' => 'Eolas', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Ainm Sócmhainne', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Ainm Inchaite:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Ainm Cúlpháirtí:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% comhlánaigh', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'athraigh', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ga-IE/help.php b/resources/lang/ga-IE/help.php index a59e0056be..e9aaf62587 100644 --- a/resources/lang/ga-IE/help.php +++ b/resources/lang/ga-IE/help.php @@ -13,23 +13,23 @@ return [ | */ - 'more_info_title' => 'More Info', + 'more_info_title' => 'Tuilleadh eolais', 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', + 'assets' => 'Déantar míreanna a rianú trí shraithuimhir nó ar chlib sócmhainne. Is iondúil go n-éireoidh siad le hítimí ar luach níos airde a bhaineann le hábhair shonracha a aithint.', - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', + 'categories' => 'Cuidíonn catagóirí leat do chuid míreanna a eagrú. D\'fhéadfadh roinnt catagóirí samplaí a bheith "Desktops", "Laptops", "Mócaí Póca", "Tablets", agus mar sin de, ach is féidir leat catagóirí a úsáid ar bhealach ar bith a dhéanann ciall duit.', - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', + 'accessories' => 'Is éard atá i gceist le hábhair a eiseoidh tú d\'úsáideoirí ach nach bhfuil sraithuimhir acu (nó nach bhfuil cúram ort faoi iad a rianú uathúil). Mar shampla, lucha ríomhaire nó méarchláir.', - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', + 'companies' => 'Is féidir cuideachtaí a úsáid mar réimse simplí aitheantóra, nó is féidir iad a úsáid chun infheictheacht na sócmhainní, na n-úsáideoirí, srl a theorannú má tá tacaíocht iomlán na cuideachta cumasaithe i do shocruithe Riaracháin.', - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', + 'components' => 'Is iad na comhpháirteanna míreanna atá mar chuid de shócmhainn, mar shampla HDD, RAM, etc.', - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', + 'consumables' => 'Déantar aon ní a cheannach a úsáidfear le himeacht ama. Mar shampla, dúch printéir nó páipéar cóipeála.', - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', + 'depreciations' => 'Is féidir leat dímheasanna sócmhainní a bhunú chun sócmhainní a dhímheas bunaithe ar dhímheas díreach líne.', 'empty_file' => 'The importer detects that this file is empty.' ]; diff --git a/resources/lang/ga-IE/localizations.php b/resources/lang/ga-IE/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/ga-IE/localizations.php +++ b/resources/lang/ga-IE/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/ga-IE/mail.php b/resources/lang/ga-IE/mail.php index d8721864a8..75af8f3a47 100644 --- a/resources/lang/ga-IE/mail.php +++ b/resources/lang/ga-IE/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Sócmhainn:', 'asset_name' => 'Ainm Sócmhainne:', 'asset_requested' => 'Iarrtar sócmhainn', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Clib Sócmhainní', 'assigned_to' => 'Sannadh Chun', 'best_regards' => 'Dea-mhéin,', 'canceled' => 'Ar ceal:', @@ -55,7 +55,7 @@ return [ 'requested' => 'Iarrtar:', 'reset_link' => 'Do Nasc Athshocraigh Pasfhocal', 'reset_password' => 'Cliceáil anseo chun do phasfhocal a athshocrú:', - 'serial' => 'Serial', + 'serial' => 'Sraithuimhir', 'supplier' => 'Soláthraí', 'tag' => 'Clib', 'test_email' => 'Tástáil Ríomhphost ó Snipe-IT', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'Chun do phasfhocal gréasáin a athshocrú, comhlánaigh an fhoirm seo:', 'type' => 'Cineál', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'Úsáideoir', + 'username' => 'Ainm Úsáideora', 'welcome' => 'Fáilte: ainm', 'welcome_to' => 'Fáilte go dtí: gréasáin!', 'your_credentials' => 'Do dhintiúir Snipe-IT', diff --git a/resources/lang/ga-IE/validation.php b/resources/lang/ga-IE/validation.php index c3ef90d0bc..bc27c42fbb 100644 --- a/resources/lang/ga-IE/validation.php +++ b/resources/lang/ga-IE/validation.php @@ -94,10 +94,9 @@ return [ 'unique' => 'An: tá tréith déanta cheana féin.', 'uploaded' => 'The: theip ar an tréith a uaslódáil.', 'url' => 'Tá an fhormáid tréithbhail neamhbhailí.', - 'unique_undeleted' => 'The :attribute must be unique.', + 'unique_undeleted' => 'An: Ní mór tréith a bheith uathúil.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/he/account/general.php b/resources/lang/he-IL/account/general.php similarity index 100% rename from resources/lang/he/account/general.php rename to resources/lang/he-IL/account/general.php diff --git a/resources/lang/he/admin/accessories/general.php b/resources/lang/he-IL/admin/accessories/general.php similarity index 100% rename from resources/lang/he/admin/accessories/general.php rename to resources/lang/he-IL/admin/accessories/general.php diff --git a/resources/lang/he/admin/accessories/message.php b/resources/lang/he-IL/admin/accessories/message.php similarity index 100% rename from resources/lang/he/admin/accessories/message.php rename to resources/lang/he-IL/admin/accessories/message.php diff --git a/resources/lang/he/admin/accessories/table.php b/resources/lang/he-IL/admin/accessories/table.php similarity index 100% rename from resources/lang/he/admin/accessories/table.php rename to resources/lang/he-IL/admin/accessories/table.php diff --git a/resources/lang/he/admin/asset_maintenances/form.php b/resources/lang/he-IL/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/he/admin/asset_maintenances/form.php rename to resources/lang/he-IL/admin/asset_maintenances/form.php diff --git a/resources/lang/he/admin/asset_maintenances/general.php b/resources/lang/he-IL/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/he/admin/asset_maintenances/general.php rename to resources/lang/he-IL/admin/asset_maintenances/general.php diff --git a/resources/lang/he/admin/asset_maintenances/message.php b/resources/lang/he-IL/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/he/admin/asset_maintenances/message.php rename to resources/lang/he-IL/admin/asset_maintenances/message.php diff --git a/resources/lang/he/admin/asset_maintenances/table.php b/resources/lang/he-IL/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/he/admin/asset_maintenances/table.php rename to resources/lang/he-IL/admin/asset_maintenances/table.php diff --git a/resources/lang/he/admin/categories/general.php b/resources/lang/he-IL/admin/categories/general.php similarity index 100% rename from resources/lang/he/admin/categories/general.php rename to resources/lang/he-IL/admin/categories/general.php diff --git a/resources/lang/he/admin/categories/message.php b/resources/lang/he-IL/admin/categories/message.php similarity index 100% rename from resources/lang/he/admin/categories/message.php rename to resources/lang/he-IL/admin/categories/message.php diff --git a/resources/lang/he/admin/categories/table.php b/resources/lang/he-IL/admin/categories/table.php similarity index 100% rename from resources/lang/he/admin/categories/table.php rename to resources/lang/he-IL/admin/categories/table.php diff --git a/resources/lang/he/admin/companies/general.php b/resources/lang/he-IL/admin/companies/general.php similarity index 87% rename from resources/lang/he/admin/companies/general.php rename to resources/lang/he-IL/admin/companies/general.php index 991bc437f4..386d157712 100644 --- a/resources/lang/he/admin/companies/general.php +++ b/resources/lang/he-IL/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'בחר חברה', - 'about_companies' => 'About Companies', + 'about_companies' => 'על חברות', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/he/admin/companies/message.php b/resources/lang/he-IL/admin/companies/message.php similarity index 100% rename from resources/lang/he/admin/companies/message.php rename to resources/lang/he-IL/admin/companies/message.php diff --git a/resources/lang/he/admin/companies/table.php b/resources/lang/he-IL/admin/companies/table.php similarity index 100% rename from resources/lang/he/admin/companies/table.php rename to resources/lang/he-IL/admin/companies/table.php diff --git a/resources/lang/he/admin/components/general.php b/resources/lang/he-IL/admin/components/general.php similarity index 100% rename from resources/lang/he/admin/components/general.php rename to resources/lang/he-IL/admin/components/general.php diff --git a/resources/lang/he/admin/components/message.php b/resources/lang/he-IL/admin/components/message.php similarity index 100% rename from resources/lang/he/admin/components/message.php rename to resources/lang/he-IL/admin/components/message.php diff --git a/resources/lang/he/admin/components/table.php b/resources/lang/he-IL/admin/components/table.php similarity index 100% rename from resources/lang/he/admin/components/table.php rename to resources/lang/he-IL/admin/components/table.php diff --git a/resources/lang/he/admin/consumables/general.php b/resources/lang/he-IL/admin/consumables/general.php similarity index 100% rename from resources/lang/he/admin/consumables/general.php rename to resources/lang/he-IL/admin/consumables/general.php diff --git a/resources/lang/he/admin/consumables/message.php b/resources/lang/he-IL/admin/consumables/message.php similarity index 100% rename from resources/lang/he/admin/consumables/message.php rename to resources/lang/he-IL/admin/consumables/message.php diff --git a/resources/lang/he/admin/consumables/table.php b/resources/lang/he-IL/admin/consumables/table.php similarity index 100% rename from resources/lang/he/admin/consumables/table.php rename to resources/lang/he-IL/admin/consumables/table.php diff --git a/resources/lang/he/admin/custom_fields/general.php b/resources/lang/he-IL/admin/custom_fields/general.php similarity index 95% rename from resources/lang/he/admin/custom_fields/general.php rename to resources/lang/he-IL/admin/custom_fields/general.php index 8a9556122f..3694f9a1d1 100644 --- a/resources/lang/he/admin/custom_fields/general.php +++ b/resources/lang/he-IL/admin/custom_fields/general.php @@ -52,7 +52,7 @@ return [ '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' => 'הצגה בתצוגות רשימה כברירת מחדל. משתמשים מורשים עדיין יוכלו להציג/להסתיר את בורר העמודות', 'show_in_listview_short' => 'הצגה ברשימות', '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', diff --git a/resources/lang/he/admin/custom_fields/message.php b/resources/lang/he-IL/admin/custom_fields/message.php similarity index 100% rename from resources/lang/he/admin/custom_fields/message.php rename to resources/lang/he-IL/admin/custom_fields/message.php diff --git a/resources/lang/he/admin/departments/message.php b/resources/lang/he-IL/admin/departments/message.php similarity index 100% rename from resources/lang/he/admin/departments/message.php rename to resources/lang/he-IL/admin/departments/message.php diff --git a/resources/lang/he/admin/departments/table.php b/resources/lang/he-IL/admin/departments/table.php similarity index 100% rename from resources/lang/he/admin/departments/table.php rename to resources/lang/he-IL/admin/departments/table.php diff --git a/resources/lang/he/admin/depreciations/general.php b/resources/lang/he-IL/admin/depreciations/general.php similarity index 100% rename from resources/lang/he/admin/depreciations/general.php rename to resources/lang/he-IL/admin/depreciations/general.php diff --git a/resources/lang/he/admin/depreciations/message.php b/resources/lang/he-IL/admin/depreciations/message.php similarity index 100% rename from resources/lang/he/admin/depreciations/message.php rename to resources/lang/he-IL/admin/depreciations/message.php diff --git a/resources/lang/he/admin/depreciations/table.php b/resources/lang/he-IL/admin/depreciations/table.php similarity index 100% rename from resources/lang/he/admin/depreciations/table.php rename to resources/lang/he-IL/admin/depreciations/table.php diff --git a/resources/lang/he/admin/groups/message.php b/resources/lang/he-IL/admin/groups/message.php similarity index 100% rename from resources/lang/he/admin/groups/message.php rename to resources/lang/he-IL/admin/groups/message.php diff --git a/resources/lang/he/admin/groups/table.php b/resources/lang/he-IL/admin/groups/table.php similarity index 100% rename from resources/lang/he/admin/groups/table.php rename to resources/lang/he-IL/admin/groups/table.php diff --git a/resources/lang/he/admin/groups/titles.php b/resources/lang/he-IL/admin/groups/titles.php similarity index 100% rename from resources/lang/he/admin/groups/titles.php rename to resources/lang/he-IL/admin/groups/titles.php diff --git a/resources/lang/he/admin/hardware/form.php b/resources/lang/he-IL/admin/hardware/form.php similarity index 100% rename from resources/lang/he/admin/hardware/form.php rename to resources/lang/he-IL/admin/hardware/form.php diff --git a/resources/lang/he/admin/hardware/general.php b/resources/lang/he-IL/admin/hardware/general.php similarity index 100% rename from resources/lang/he/admin/hardware/general.php rename to resources/lang/he-IL/admin/hardware/general.php diff --git a/resources/lang/he/admin/hardware/message.php b/resources/lang/he-IL/admin/hardware/message.php similarity index 98% rename from resources/lang/he/admin/hardware/message.php rename to resources/lang/he-IL/admin/hardware/message.php index a187762d23..774f129cc6 100644 --- a/resources/lang/he/admin/hardware/message.php +++ b/resources/lang/he-IL/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'הנכס לא שוחזר, נסה שוב', 'success' => 'הנכס שוחזר בהצלחה.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'הנכס שוחזר בהצלחה.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/he/admin/hardware/table.php b/resources/lang/he-IL/admin/hardware/table.php similarity index 100% rename from resources/lang/he/admin/hardware/table.php rename to resources/lang/he-IL/admin/hardware/table.php diff --git a/resources/lang/he/admin/kits/general.php b/resources/lang/he-IL/admin/kits/general.php similarity index 93% rename from resources/lang/he/admin/kits/general.php rename to resources/lang/he-IL/admin/kits/general.php index f763544bb7..354bb2360a 100644 --- a/resources/lang/he/admin/kits/general.php +++ b/resources/lang/he-IL/admin/kits/general.php @@ -24,20 +24,20 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'הרישיון אינו קיים', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'הצריכה אינה קיימת', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', 'accessory_detached' => 'Accessory was successfully detached', 'accessory_error' => 'Accessory already attached to kit', 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', + 'accessory_none' => 'אביזר אינו קיים', 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', diff --git a/resources/lang/he/admin/labels/message.php b/resources/lang/he-IL/admin/labels/message.php similarity index 100% rename from resources/lang/he/admin/labels/message.php rename to resources/lang/he-IL/admin/labels/message.php diff --git a/resources/lang/he-IL/admin/labels/table.php b/resources/lang/he-IL/admin/labels/table.php new file mode 100644 index 0000000000..0d5a13549d --- /dev/null +++ b/resources/lang/he-IL/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'שדות', + 'support_asset_tag' => 'תָג', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'סֵמֶל', + 'support_title' => 'כותרת', + +]; \ No newline at end of file diff --git a/resources/lang/he/admin/licenses/form.php b/resources/lang/he-IL/admin/licenses/form.php similarity index 100% rename from resources/lang/he/admin/licenses/form.php rename to resources/lang/he-IL/admin/licenses/form.php diff --git a/resources/lang/he/admin/licenses/general.php b/resources/lang/he-IL/admin/licenses/general.php similarity index 100% rename from resources/lang/he/admin/licenses/general.php rename to resources/lang/he-IL/admin/licenses/general.php diff --git a/resources/lang/he/admin/licenses/message.php b/resources/lang/he-IL/admin/licenses/message.php similarity index 100% rename from resources/lang/he/admin/licenses/message.php rename to resources/lang/he-IL/admin/licenses/message.php diff --git a/resources/lang/he/admin/licenses/table.php b/resources/lang/he-IL/admin/licenses/table.php similarity index 100% rename from resources/lang/he/admin/licenses/table.php rename to resources/lang/he-IL/admin/licenses/table.php diff --git a/resources/lang/he/admin/locations/message.php b/resources/lang/he-IL/admin/locations/message.php similarity index 100% rename from resources/lang/he/admin/locations/message.php rename to resources/lang/he-IL/admin/locations/message.php diff --git a/resources/lang/he/admin/locations/table.php b/resources/lang/he-IL/admin/locations/table.php similarity index 100% rename from resources/lang/he/admin/locations/table.php rename to resources/lang/he-IL/admin/locations/table.php diff --git a/resources/lang/he/admin/manufacturers/message.php b/resources/lang/he-IL/admin/manufacturers/message.php similarity index 100% rename from resources/lang/he/admin/manufacturers/message.php rename to resources/lang/he-IL/admin/manufacturers/message.php diff --git a/resources/lang/he/admin/manufacturers/table.php b/resources/lang/he-IL/admin/manufacturers/table.php similarity index 100% rename from resources/lang/he/admin/manufacturers/table.php rename to resources/lang/he-IL/admin/manufacturers/table.php diff --git a/resources/lang/he/admin/models/general.php b/resources/lang/he-IL/admin/models/general.php similarity index 100% rename from resources/lang/he/admin/models/general.php rename to resources/lang/he-IL/admin/models/general.php diff --git a/resources/lang/he/admin/models/message.php b/resources/lang/he-IL/admin/models/message.php similarity index 100% rename from resources/lang/he/admin/models/message.php rename to resources/lang/he-IL/admin/models/message.php diff --git a/resources/lang/he/admin/models/table.php b/resources/lang/he-IL/admin/models/table.php similarity index 100% rename from resources/lang/he/admin/models/table.php rename to resources/lang/he-IL/admin/models/table.php diff --git a/resources/lang/he/admin/reports/general.php b/resources/lang/he-IL/admin/reports/general.php similarity index 100% rename from resources/lang/he/admin/reports/general.php rename to resources/lang/he-IL/admin/reports/general.php diff --git a/resources/lang/he/admin/reports/message.php b/resources/lang/he-IL/admin/reports/message.php similarity index 100% rename from resources/lang/he/admin/reports/message.php rename to resources/lang/he-IL/admin/reports/message.php diff --git a/resources/lang/he/admin/settings/general.php b/resources/lang/he-IL/admin/settings/general.php similarity index 98% rename from resources/lang/he/admin/settings/general.php rename to resources/lang/he-IL/admin/settings/general.php index dd0ea942a1..9d987d807e 100644 --- a/resources/lang/he/admin/settings/general.php +++ b/resources/lang/he-IL/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'המשתמש לא מחוייב לרשום כתובת דוא"ל מלאה, מספיק רק שם משתמש.', 'admin_cc_email' => 'שלח עותק ל', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'זהו שרת Active Directory', 'alerts' => 'התראות', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'תווים מינימליים לסיסמה', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'הערך המינימלי המותר הוא 8', 'pwd_secure_uncommon' => 'מנע סיסמאות נפוצות', 'pwd_secure_uncommon_help' => 'פעולה זו לא תאפשר למשתמשים להשתמש בסיסמאות נפוצות מתוך 10,000 הסיסמאות המובילות שדווחו על הפרות.', 'qr_help' => 'הפעל תחילה קודי QR כדי להגדיר זאת', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'טיהור רשומות שנמחקו', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'מספר עובד', @@ -325,23 +326,23 @@ return [ 'create_admin_redirect' => 'Click here to go to your app login!', 'setup_migrations' => 'Database Migrations ::', 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', + 'setup_successful_migrations' => 'טבלאות מסד הנתונים שלך נוצרו', + 'setup_migration_output' => 'פלט ההגירה:', + 'setup_migration_create_user' => 'הבא: יצירת משתמש', 'ldap_settings_link' => 'LDAP Settings Page', 'slack_test' => 'Test Integration', 'label2_enable' => 'New Label Engine', 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'כותרת', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'סוג ברקוד דו-ממדי', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/he/admin/settings/message.php b/resources/lang/he-IL/admin/settings/message.php similarity index 93% rename from resources/lang/he/admin/settings/message.php rename to resources/lang/he-IL/admin/settings/message.php index 86c00a40f4..acc67164ac 100644 --- a/resources/lang/he/admin/settings/message.php +++ b/resources/lang/he-IL/admin/settings/message.php @@ -36,11 +36,11 @@ return [ 'webhook' => [ 'sending' => 'Sending :app test message...', 'success' => 'Your :webhook_name Integration works!', - 'success_pt1' => 'Success! Check the ', + 'success_pt1' => 'הבדיקה עברה בהצלחה! בדוק את ', 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', - '500' => '500 Server Error.', + '500' => '500 שגיאת שרת.', 'error' => 'Something went wrong. :app responded with: :error_message', 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', - 'error_misc' => 'Something went wrong. :( ', + 'error_misc' => 'משהו השתבש אופסי פופסי. :( ', ] ]; diff --git a/resources/lang/he-IL/admin/settings/table.php b/resources/lang/he-IL/admin/settings/table.php new file mode 100644 index 0000000000..64e94f8d30 --- /dev/null +++ b/resources/lang/he-IL/admin/settings/table.php @@ -0,0 +1,6 @@ + 'נוצר', + 'size' => 'Size', +); diff --git a/resources/lang/he/admin/statuslabels/message.php b/resources/lang/he-IL/admin/statuslabels/message.php similarity index 97% rename from resources/lang/he/admin/statuslabels/message.php rename to resources/lang/he-IL/admin/statuslabels/message.php index 055d27afc6..1e27cb502e 100644 --- a/resources/lang/he/admin/statuslabels/message.php +++ b/resources/lang/he-IL/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'תווית הסטטוס אינה קיימת.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'תווית סטטוס זו משויכת כעת לנכס אחד לפחות ולא ניתן למחוק אותה. עדכן את הנכסים שלך כדי לא להתייחס עוד לסטטוס זה ונסה שוב.', 'create' => [ diff --git a/resources/lang/he/admin/statuslabels/table.php b/resources/lang/he-IL/admin/statuslabels/table.php similarity index 100% rename from resources/lang/he/admin/statuslabels/table.php rename to resources/lang/he-IL/admin/statuslabels/table.php diff --git a/resources/lang/he/admin/suppliers/message.php b/resources/lang/he-IL/admin/suppliers/message.php similarity index 100% rename from resources/lang/he/admin/suppliers/message.php rename to resources/lang/he-IL/admin/suppliers/message.php diff --git a/resources/lang/he/admin/suppliers/table.php b/resources/lang/he-IL/admin/suppliers/table.php similarity index 100% rename from resources/lang/he/admin/suppliers/table.php rename to resources/lang/he-IL/admin/suppliers/table.php diff --git a/resources/lang/he/admin/users/general.php b/resources/lang/he-IL/admin/users/general.php similarity index 96% rename from resources/lang/he/admin/users/general.php rename to resources/lang/he-IL/admin/users/general.php index 59633cc37a..cc49449414 100644 --- a/resources/lang/he/admin/users/general.php +++ b/resources/lang/he-IL/admin/users/general.php @@ -16,7 +16,7 @@ return [ 'restore_user' => 'לחץ כאן כדי לשחזר אותם.', 'last_login' => 'כניסה אחרונה', 'ldap_config_text' => 'הגדרות תצורה של LDAP נמצאות \'מנהל\'> \'הגדרות\'. המיקום הנבחר (אופציונלי) ייקבע עבור כל המשתמשים המיובאים.', - 'print_assigned' => 'Print All Assigned', + 'print_assigned' => 'להדפיס את כל ההקצאות', 'email_assigned' => 'Email List of All Assigned', 'user_notified' => 'User has been emailed a list of their currently assigned items.', 'auto_assign_label' => 'Include this user when auto-assigning eligible licenses', @@ -26,8 +26,8 @@ return [ 'view_user' => 'הצג משתמש: שם', 'usercsv' => 'קובץ CSV', 'two_factor_admin_optin_help' => 'הגדרות מנהל המערכת הנוכחיות מאפשרות אכיפה סלקטיבית של אימות דו-גורמי.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'רשם מכשיר 2FA', + 'two_factor_active' => '2FA פעיל', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/he/admin/users/message.php b/resources/lang/he-IL/admin/users/message.php similarity index 98% rename from resources/lang/he/admin/users/message.php rename to resources/lang/he-IL/admin/users/message.php index 65f01f839c..60b38f3ffb 100644 --- a/resources/lang/he/admin/users/message.php +++ b/resources/lang/he-IL/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'דחיית את הנכס הזה בהצלחה.', 'bulk_manager_warn' => 'המשתמשים שלך עודכנו בהצלחה, אך רשומת המנהל שלך לא נשמרה מפני שהמנהל שבחרת נבחר גם ברשימת המשתמשים כדי לערוך, והמשתמשים לא יכולים להיות המנהל שלהם. בחר שוב את המשתמשים שלך, למעט המנהל.', 'user_exists' => 'משתמש כבר קיים!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'משתמש לא קיים.', 'user_login_required' => 'יש להזין את שדה הכניסה', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'נדרשת הסיסמה.', diff --git a/resources/lang/he/admin/users/table.php b/resources/lang/he-IL/admin/users/table.php similarity index 95% rename from resources/lang/he/admin/users/table.php rename to resources/lang/he-IL/admin/users/table.php index f66cc6afe1..ab98b2e4c2 100644 --- a/resources/lang/he/admin/users/table.php +++ b/resources/lang/he-IL/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'מנהל', 'managed_locations' => 'מיקומים מנוהלים', 'name' => 'שֵׁם', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'הערות', 'password_confirm' => 'אשר סיסמה', 'password' => 'סיסמה', diff --git a/resources/lang/he/auth.php b/resources/lang/he-IL/auth.php similarity index 100% rename from resources/lang/he/auth.php rename to resources/lang/he-IL/auth.php diff --git a/resources/lang/he/auth/general.php b/resources/lang/he-IL/auth/general.php similarity index 100% rename from resources/lang/he/auth/general.php rename to resources/lang/he-IL/auth/general.php diff --git a/resources/lang/he/auth/message.php b/resources/lang/he-IL/auth/message.php similarity index 96% rename from resources/lang/he/auth/message.php rename to resources/lang/he-IL/auth/message.php index e2052809c4..318d48d3bc 100644 --- a/resources/lang/he/auth/message.php +++ b/resources/lang/he-IL/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'התחברת בהצלחה.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/he/button.php b/resources/lang/he-IL/button.php similarity index 100% rename from resources/lang/he/button.php rename to resources/lang/he-IL/button.php diff --git a/resources/lang/he/general.php b/resources/lang/he-IL/general.php similarity index 95% rename from resources/lang/he/general.php rename to resources/lang/he-IL/general.php index 0e5b8d1166..e8793e762f 100644 --- a/resources/lang/he/general.php +++ b/resources/lang/he-IL/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'סוגי הקבצים המותרים הם jpg,‏ webp,‏ png,‏ gif ו־svg. גודל ההעלאה המרבי המותר הוא :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'יְבוּא', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'מייבא', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'היסטוריית הייבוא', @@ -232,7 +233,7 @@ return [ 'requestable_models' => 'מודלים שנדרשו', 'requested' => 'מבוקש', 'requested_date' => 'התאריך המבוקש', - 'requested_assets' => 'Requested Assets', + 'requested_assets' => 'נכסים שנדרשו', 'requested_assets_menu' => 'נכסים שנדרשו', 'request_canceled' => 'הבקשה בוטלה', 'save' => 'להציל', @@ -270,7 +271,7 @@ return [ 'supplier' => 'ספק', 'suppliers' => 'ספקים', 'sure_to_delete' => 'האם אתה בטוח שברצונך למחוק', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'האם אתה בטוח שברצונך למחוק?', 'delete_what' => 'Delete :item', 'submit' => 'שלח', 'target' => 'יַעַד', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'לא ניתן לפריסה', 'unknown_admin' => 'מנהל לא ידוע', 'username_format' => 'פורמט שם משתמש', - 'username' => 'Username', + 'username' => 'שם משתמש', 'update' => 'עדכון', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'הועלה', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'הסתיים!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'הנכס שוייך', 'checked_out_to' => 'Checked out to', 'fields' => 'שדות', 'last_checkout' => 'Last Checkout', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'ספירת מתכלים', 'components_count' => 'ספירת רכיבים', 'licenses_count' => 'ספירת רשיונות', - 'notification_error' => 'Error', + 'notification_error' => 'שגיאה', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => 'הצליח', + 'notification_warning' => 'אַזהָרָה', + 'notification_info' => 'מידע', 'asset_information' => 'מידע על נכסים', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'שם הנכס', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'שם מתכלה:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'שם אביזר:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'העבר פריט זה', @@ -416,7 +417,7 @@ return [ 'pre_flight' => 'Pre-Flight', 'skip_to_main_content' => 'Skip to main content', 'toggle_navigation' => 'Toggle navigation', - 'alerts' => 'Alerts', + 'alerts' => 'התראות', 'tasks_view_all' => 'View all tasks', 'true' => 'True', 'false' => 'False', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':שם פריט', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% לְהַשְׁלִים', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'לַעֲרוֹך', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/he-IL/help.php b/resources/lang/he-IL/help.php new file mode 100644 index 0000000000..167f90430a --- /dev/null +++ b/resources/lang/he-IL/help.php @@ -0,0 +1,35 @@ + 'מידע נוסף', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'נכסים הם פריטים במעקב לפי מספר סידורי או תג נכס. הם נוטים להיות פריטים בעלי ערך גבוה יותר במקרים בהם זיהוי של פריט מסוים חשוב.', + + 'categories' => 'קטגוריות מסייעות לך לארגן את הפריטים שלך. כמה קטגוריות לדוגמה עשויות להיות "Desktops", "Laptops", " טלפונים ניידים ", " טבלטים ", וכן הלאה, אך תוכל להשתמש בקטגוריות בכל דרך שמתאימה לך.', + + 'accessories' => 'עזרים הם כל דבר שאתה מנפיק למשתמשים אבל אין להם מק"ט (או שאינך מעוניין לעקוב אחריהם לפי יחידה). לדוגמא, מקלדות ועכברים.', + + 'companies' => 'חברות יכולות לשמש כשדה מזהה פשוט, או שניתן להשתמש בהן להגבלת החשיפה של נכסים, משתמשים וכו \', אם תמיכה מלאה בחברה מופעלת בהגדרות מנהל המערכת.', + + 'components' => 'רכיבים הם פריטים שהם חלק מנכס, לדוגמה HDD, RAM וכדומה.', + + 'consumables' => 'מתכלים הם כל דבר שנרכש כי ישמשו לאורך זמן. לדוגמה, דיו למדפסת או נייר צילום.', + + 'depreciations' => 'ניתן להגדיר פחתונות נכסים כדי לפחת נכסים על בסיס פחת קו ישר.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/he-IL/localizations.php b/resources/lang/he-IL/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/he-IL/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/he/mail.php b/resources/lang/he-IL/mail.php similarity index 99% rename from resources/lang/he/mail.php rename to resources/lang/he-IL/mail.php index 850e1016c3..393a4c5895 100644 --- a/resources/lang/he/mail.php +++ b/resources/lang/he-IL/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'נכס:', 'asset_name' => 'שם הנכס:', 'asset_requested' => 'הנכס המבוקש', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'תג נכס', 'assigned_to' => 'שהוקצה ל', 'best_regards' => 'כל טוב,', 'canceled' => 'בּוּטלָה:', diff --git a/resources/lang/he/pagination.php b/resources/lang/he-IL/pagination.php similarity index 100% rename from resources/lang/he/pagination.php rename to resources/lang/he-IL/pagination.php diff --git a/resources/lang/he/passwords.php b/resources/lang/he-IL/passwords.php similarity index 100% rename from resources/lang/he/passwords.php rename to resources/lang/he-IL/passwords.php diff --git a/resources/lang/he/reminders.php b/resources/lang/he-IL/reminders.php similarity index 100% rename from resources/lang/he/reminders.php rename to resources/lang/he-IL/reminders.php diff --git a/resources/lang/he/table.php b/resources/lang/he-IL/table.php similarity index 100% rename from resources/lang/he/table.php rename to resources/lang/he-IL/table.php diff --git a/resources/lang/he/validation.php b/resources/lang/he-IL/validation.php similarity index 99% rename from resources/lang/he/validation.php rename to resources/lang/he-IL/validation.php index 891b015417..968cb7c9da 100644 --- a/resources/lang/he/validation.php +++ b/resources/lang/he-IL/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'השדה חייב מזהה יחודי.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/he/admin/labels/table.php b/resources/lang/he/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/he/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/he/admin/settings/table.php b/resources/lang/he/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/he/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/he/help.php b/resources/lang/he/help.php deleted file mode 100644 index b12463ebda..0000000000 --- a/resources/lang/he/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'מידע נוסף', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'נכסים הם פריטים במעקב לפי מספר סידורי או תג נכס. הם נוטים להיות פריטים בעלי ערך גבוה יותר במקרים בהם זיהוי של פריט מסוים חשוב.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/he/localizations.php b/resources/lang/he/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/he/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/fil/account/general.php b/resources/lang/hr-HR/account/general.php similarity index 100% rename from resources/lang/fil/account/general.php rename to resources/lang/hr-HR/account/general.php diff --git a/resources/lang/hr/admin/accessories/general.php b/resources/lang/hr-HR/admin/accessories/general.php similarity index 100% rename from resources/lang/hr/admin/accessories/general.php rename to resources/lang/hr-HR/admin/accessories/general.php diff --git a/resources/lang/hr/admin/accessories/message.php b/resources/lang/hr-HR/admin/accessories/message.php similarity index 100% rename from resources/lang/hr/admin/accessories/message.php rename to resources/lang/hr-HR/admin/accessories/message.php diff --git a/resources/lang/hr/admin/accessories/table.php b/resources/lang/hr-HR/admin/accessories/table.php similarity index 100% rename from resources/lang/hr/admin/accessories/table.php rename to resources/lang/hr-HR/admin/accessories/table.php diff --git a/resources/lang/hr/admin/asset_maintenances/form.php b/resources/lang/hr-HR/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/hr/admin/asset_maintenances/form.php rename to resources/lang/hr-HR/admin/asset_maintenances/form.php diff --git a/resources/lang/hr/admin/asset_maintenances/general.php b/resources/lang/hr-HR/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/hr/admin/asset_maintenances/general.php rename to resources/lang/hr-HR/admin/asset_maintenances/general.php diff --git a/resources/lang/hr/admin/asset_maintenances/message.php b/resources/lang/hr-HR/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/hr/admin/asset_maintenances/message.php rename to resources/lang/hr-HR/admin/asset_maintenances/message.php diff --git a/resources/lang/hr/admin/asset_maintenances/table.php b/resources/lang/hr-HR/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/hr/admin/asset_maintenances/table.php rename to resources/lang/hr-HR/admin/asset_maintenances/table.php diff --git a/resources/lang/hr/admin/categories/general.php b/resources/lang/hr-HR/admin/categories/general.php similarity index 100% rename from resources/lang/hr/admin/categories/general.php rename to resources/lang/hr-HR/admin/categories/general.php diff --git a/resources/lang/hr/admin/categories/message.php b/resources/lang/hr-HR/admin/categories/message.php similarity index 100% rename from resources/lang/hr/admin/categories/message.php rename to resources/lang/hr-HR/admin/categories/message.php diff --git a/resources/lang/hr/admin/categories/table.php b/resources/lang/hr-HR/admin/categories/table.php similarity index 100% rename from resources/lang/hr/admin/categories/table.php rename to resources/lang/hr-HR/admin/categories/table.php diff --git a/resources/lang/hr/admin/companies/general.php b/resources/lang/hr-HR/admin/companies/general.php similarity index 87% rename from resources/lang/hr/admin/companies/general.php rename to resources/lang/hr-HR/admin/companies/general.php index d45dca6b08..8a0e19718a 100644 --- a/resources/lang/hr/admin/companies/general.php +++ b/resources/lang/hr-HR/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Odaberite tvrtku', - 'about_companies' => 'About Companies', + 'about_companies' => 'O tvrtkama', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/hr/admin/companies/message.php b/resources/lang/hr-HR/admin/companies/message.php similarity index 100% rename from resources/lang/hr/admin/companies/message.php rename to resources/lang/hr-HR/admin/companies/message.php diff --git a/resources/lang/hr/admin/companies/table.php b/resources/lang/hr-HR/admin/companies/table.php similarity index 100% rename from resources/lang/hr/admin/companies/table.php rename to resources/lang/hr-HR/admin/companies/table.php diff --git a/resources/lang/hr/admin/components/general.php b/resources/lang/hr-HR/admin/components/general.php similarity index 100% rename from resources/lang/hr/admin/components/general.php rename to resources/lang/hr-HR/admin/components/general.php diff --git a/resources/lang/hr/admin/components/message.php b/resources/lang/hr-HR/admin/components/message.php similarity index 100% rename from resources/lang/hr/admin/components/message.php rename to resources/lang/hr-HR/admin/components/message.php diff --git a/resources/lang/hr/admin/components/table.php b/resources/lang/hr-HR/admin/components/table.php similarity index 100% rename from resources/lang/hr/admin/components/table.php rename to resources/lang/hr-HR/admin/components/table.php diff --git a/resources/lang/hr/admin/consumables/general.php b/resources/lang/hr-HR/admin/consumables/general.php similarity index 100% rename from resources/lang/hr/admin/consumables/general.php rename to resources/lang/hr-HR/admin/consumables/general.php diff --git a/resources/lang/hr/admin/consumables/message.php b/resources/lang/hr-HR/admin/consumables/message.php similarity index 100% rename from resources/lang/hr/admin/consumables/message.php rename to resources/lang/hr-HR/admin/consumables/message.php diff --git a/resources/lang/hr/admin/consumables/table.php b/resources/lang/hr-HR/admin/consumables/table.php similarity index 100% rename from resources/lang/hr/admin/consumables/table.php rename to resources/lang/hr-HR/admin/consumables/table.php diff --git a/resources/lang/hr/admin/custom_fields/general.php b/resources/lang/hr-HR/admin/custom_fields/general.php similarity index 95% rename from resources/lang/hr/admin/custom_fields/general.php rename to resources/lang/hr-HR/admin/custom_fields/general.php index 47a34e656d..4aa6ff97ce 100644 --- a/resources/lang/hr/admin/custom_fields/general.php +++ b/resources/lang/hr-HR/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Novi prilagođeni polje', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Vrijednost ovog polja je šifrirana u bazi podataka. Samo administratori administratora moći će vidjeti dešifriranu vrijednost', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Prikazati vrijednost ovog polja u checkout e-mailovima koji se šalju korisnicima? Enkriptirana polja se ne mogu prikazati u e-mailovima', '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.', diff --git a/resources/lang/hr/admin/custom_fields/message.php b/resources/lang/hr-HR/admin/custom_fields/message.php similarity index 100% rename from resources/lang/hr/admin/custom_fields/message.php rename to resources/lang/hr-HR/admin/custom_fields/message.php diff --git a/resources/lang/hr/admin/departments/message.php b/resources/lang/hr-HR/admin/departments/message.php similarity index 100% rename from resources/lang/hr/admin/departments/message.php rename to resources/lang/hr-HR/admin/departments/message.php diff --git a/resources/lang/hr/admin/departments/table.php b/resources/lang/hr-HR/admin/departments/table.php similarity index 100% rename from resources/lang/hr/admin/departments/table.php rename to resources/lang/hr-HR/admin/departments/table.php diff --git a/resources/lang/hr/admin/depreciations/general.php b/resources/lang/hr-HR/admin/depreciations/general.php similarity index 100% rename from resources/lang/hr/admin/depreciations/general.php rename to resources/lang/hr-HR/admin/depreciations/general.php diff --git a/resources/lang/hr/admin/depreciations/message.php b/resources/lang/hr-HR/admin/depreciations/message.php similarity index 100% rename from resources/lang/hr/admin/depreciations/message.php rename to resources/lang/hr-HR/admin/depreciations/message.php diff --git a/resources/lang/hr/admin/depreciations/table.php b/resources/lang/hr-HR/admin/depreciations/table.php similarity index 100% rename from resources/lang/hr/admin/depreciations/table.php rename to resources/lang/hr-HR/admin/depreciations/table.php diff --git a/resources/lang/hr/admin/groups/message.php b/resources/lang/hr-HR/admin/groups/message.php similarity index 100% rename from resources/lang/hr/admin/groups/message.php rename to resources/lang/hr-HR/admin/groups/message.php diff --git a/resources/lang/hr/admin/groups/table.php b/resources/lang/hr-HR/admin/groups/table.php similarity index 100% rename from resources/lang/hr/admin/groups/table.php rename to resources/lang/hr-HR/admin/groups/table.php diff --git a/resources/lang/hr/admin/groups/titles.php b/resources/lang/hr-HR/admin/groups/titles.php similarity index 100% rename from resources/lang/hr/admin/groups/titles.php rename to resources/lang/hr-HR/admin/groups/titles.php diff --git a/resources/lang/hr/admin/hardware/form.php b/resources/lang/hr-HR/admin/hardware/form.php similarity index 100% rename from resources/lang/hr/admin/hardware/form.php rename to resources/lang/hr-HR/admin/hardware/form.php diff --git a/resources/lang/hr/admin/hardware/general.php b/resources/lang/hr-HR/admin/hardware/general.php similarity index 100% rename from resources/lang/hr/admin/hardware/general.php rename to resources/lang/hr-HR/admin/hardware/general.php diff --git a/resources/lang/hr/admin/hardware/message.php b/resources/lang/hr-HR/admin/hardware/message.php similarity index 98% rename from resources/lang/hr/admin/hardware/message.php rename to resources/lang/hr-HR/admin/hardware/message.php index a8450c92a0..a62e117423 100644 --- a/resources/lang/hr/admin/hardware/message.php +++ b/resources/lang/hr-HR/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Imovina nije obnovljena, pokušajte ponovo', 'success' => 'Imovina je uspješno obnovljena.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Imovina je uspješno obnovljena.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/hr/admin/hardware/table.php b/resources/lang/hr-HR/admin/hardware/table.php similarity index 96% rename from resources/lang/hr/admin/hardware/table.php rename to resources/lang/hr-HR/admin/hardware/table.php index 2982af4c5c..4026e9725f 100644 --- a/resources/lang/hr/admin/hardware/table.php +++ b/resources/lang/hr-HR/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Slika uređaja', 'days_without_acceptance' => 'Dani bez prihvaćanja', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Dodijeljena', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/mi/admin/kits/general.php b/resources/lang/hr-HR/admin/kits/general.php similarity index 96% rename from resources/lang/mi/admin/kits/general.php rename to resources/lang/hr-HR/admin/kits/general.php index f724ecbf07..822149a15a 100644 --- a/resources/lang/mi/admin/kits/general.php +++ b/resources/lang/hr-HR/admin/kits/general.php @@ -24,13 +24,13 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Licenca ne postoji', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Potrošnja ne postoji', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', diff --git a/resources/lang/hr/admin/labels/message.php b/resources/lang/hr-HR/admin/labels/message.php similarity index 100% rename from resources/lang/hr/admin/labels/message.php rename to resources/lang/hr-HR/admin/labels/message.php diff --git a/resources/lang/hr-HR/admin/labels/table.php b/resources/lang/hr-HR/admin/labels/table.php new file mode 100644 index 0000000000..f86d9bb17b --- /dev/null +++ b/resources/lang/hr-HR/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Označiti', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logo', + 'support_title' => 'Titula', + +]; \ No newline at end of file diff --git a/resources/lang/hr/admin/licenses/form.php b/resources/lang/hr-HR/admin/licenses/form.php similarity index 100% rename from resources/lang/hr/admin/licenses/form.php rename to resources/lang/hr-HR/admin/licenses/form.php diff --git a/resources/lang/hr/admin/licenses/general.php b/resources/lang/hr-HR/admin/licenses/general.php similarity index 100% rename from resources/lang/hr/admin/licenses/general.php rename to resources/lang/hr-HR/admin/licenses/general.php diff --git a/resources/lang/hr/admin/licenses/message.php b/resources/lang/hr-HR/admin/licenses/message.php similarity index 100% rename from resources/lang/hr/admin/licenses/message.php rename to resources/lang/hr-HR/admin/licenses/message.php diff --git a/resources/lang/hr/admin/licenses/table.php b/resources/lang/hr-HR/admin/licenses/table.php similarity index 100% rename from resources/lang/hr/admin/licenses/table.php rename to resources/lang/hr-HR/admin/licenses/table.php diff --git a/resources/lang/hr/admin/locations/message.php b/resources/lang/hr-HR/admin/locations/message.php similarity index 100% rename from resources/lang/hr/admin/locations/message.php rename to resources/lang/hr-HR/admin/locations/message.php diff --git a/resources/lang/hr/admin/locations/table.php b/resources/lang/hr-HR/admin/locations/table.php similarity index 76% rename from resources/lang/hr/admin/locations/table.php rename to resources/lang/hr-HR/admin/locations/table.php index bf248ebf65..596eb710da 100644 --- a/resources/lang/hr/admin/locations/table.php +++ b/resources/lang/hr-HR/admin/locations/table.php @@ -12,7 +12,7 @@ return [ 'create' => 'Izradi lokaciju', 'update' => 'Ažuriraj lokaciju', 'print_assigned' => 'Print Assigned', - 'print_all_assigned' => 'Print All Assigned', + 'print_all_assigned' => 'Ispiši sve dodijeljeno', 'name' => 'Naziv lokacije', 'address' => 'Adresa', 'address2' => 'Address Line 2', @@ -22,18 +22,18 @@ return [ 'currency' => 'Valuta lokacije', 'ldap_ou' => 'LDAP pretraživanje OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'odjel', + 'location' => 'Mjesto', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', + 'asset_name' => 'Ime', + 'asset_category' => 'Kategorija', + 'asset_manufacturer' => 'Proizvođač', 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_serial' => 'Serijski', + 'asset_location' => 'Mjesto', + 'asset_checked_out' => 'Odjavio', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Datum:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/hr/admin/manufacturers/message.php b/resources/lang/hr-HR/admin/manufacturers/message.php similarity index 100% rename from resources/lang/hr/admin/manufacturers/message.php rename to resources/lang/hr-HR/admin/manufacturers/message.php diff --git a/resources/lang/hr/admin/manufacturers/table.php b/resources/lang/hr-HR/admin/manufacturers/table.php similarity index 100% rename from resources/lang/hr/admin/manufacturers/table.php rename to resources/lang/hr-HR/admin/manufacturers/table.php diff --git a/resources/lang/hr/admin/models/general.php b/resources/lang/hr-HR/admin/models/general.php similarity index 100% rename from resources/lang/hr/admin/models/general.php rename to resources/lang/hr-HR/admin/models/general.php diff --git a/resources/lang/hr/admin/models/message.php b/resources/lang/hr-HR/admin/models/message.php similarity index 100% rename from resources/lang/hr/admin/models/message.php rename to resources/lang/hr-HR/admin/models/message.php diff --git a/resources/lang/hr/admin/models/table.php b/resources/lang/hr-HR/admin/models/table.php similarity index 100% rename from resources/lang/hr/admin/models/table.php rename to resources/lang/hr-HR/admin/models/table.php diff --git a/resources/lang/hr/admin/reports/general.php b/resources/lang/hr-HR/admin/reports/general.php similarity index 100% rename from resources/lang/hr/admin/reports/general.php rename to resources/lang/hr-HR/admin/reports/general.php diff --git a/resources/lang/hr/admin/reports/message.php b/resources/lang/hr-HR/admin/reports/message.php similarity index 100% rename from resources/lang/hr/admin/reports/message.php rename to resources/lang/hr-HR/admin/reports/message.php diff --git a/resources/lang/hr/admin/settings/general.php b/resources/lang/hr-HR/admin/settings/general.php similarity index 99% rename from resources/lang/hr/admin/settings/general.php rename to resources/lang/hr-HR/admin/settings/general.php index 8f1c084d57..e5e05fef30 100644 --- a/resources/lang/hr/admin/settings/general.php +++ b/resources/lang/hr-HR/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'Kopija e-pošte (CC)', 'admin_cc_email_help' => 'Ako želite poslati kopiju checkin/checkout poruka e-pošte koje se šalju korisnicima na dodatni račun e-pošte, unesite ga ovdje. U suprotnom ostavite ovo polje prazno.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Ovo je poslužitelj Active Directory', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Najmanji broj znakova', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Minimalna dopuštena vrijednost je 8', 'pwd_secure_uncommon' => 'Spriječite uobičajene zaporke', 'pwd_secure_uncommon_help' => 'To će onemogućiti korisnicima upotrebu uobičajenih zaporki s najviše 10.000 zaporki prijavljenih u kršenju.', 'qr_help' => 'Najprije omogućite QR kodove za postavljanje', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Obrišite izbrisane zapise', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Titula', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Vrsta 2D barkod', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/hr/admin/settings/message.php b/resources/lang/hr-HR/admin/settings/message.php similarity index 100% rename from resources/lang/hr/admin/settings/message.php rename to resources/lang/hr-HR/admin/settings/message.php diff --git a/resources/lang/fil/admin/settings/table.php b/resources/lang/hr-HR/admin/settings/table.php similarity index 60% rename from resources/lang/fil/admin/settings/table.php rename to resources/lang/hr-HR/admin/settings/table.php index 22db5c84ed..7b6e8614b0 100644 --- a/resources/lang/fil/admin/settings/table.php +++ b/resources/lang/hr-HR/admin/settings/table.php @@ -1,6 +1,6 @@ 'Created', + 'created' => 'stvoren', 'size' => 'Size', ); diff --git a/resources/lang/hr/admin/statuslabels/message.php b/resources/lang/hr-HR/admin/statuslabels/message.php similarity index 86% rename from resources/lang/hr/admin/statuslabels/message.php rename to resources/lang/hr-HR/admin/statuslabels/message.php index 57b5a83255..52a1466355 100644 --- a/resources/lang/hr/admin/statuslabels/message.php +++ b/resources/lang/hr-HR/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Oznaka statusa ne postoji.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Ova Statusna oznaka trenutačno je povezana s barem jednom Assetom i ne može se izbrisati. Ažurirajte svoju aktivu da više ne referira na taj status i pokušajte ponovo.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Ova se imovina ne može dodijeliti nikome.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Ova se imovina može provjeriti. Nakon dodjeljivanja, oni će preuzeti meta status Deployed.', 'archived' => 'Ove se imovine ne može izbrisati, a prikazat će se samo u arhiviranom vlasničkom pregledu. To je korisno za zadržavanje informacija o imovini za proračunsko / povijesne svrhe, ali ih ne bi smjelo ostati iz dnevnog popisa imovine.', 'pending' => 'Ovu imovinu još se ne može dodijeliti nikome, često se koristi za predmete koji se vraćaju na popravak, ali se očekuje povratak u promet.', ], diff --git a/resources/lang/hr/admin/statuslabels/table.php b/resources/lang/hr-HR/admin/statuslabels/table.php similarity index 100% rename from resources/lang/hr/admin/statuslabels/table.php rename to resources/lang/hr-HR/admin/statuslabels/table.php diff --git a/resources/lang/hr/admin/suppliers/message.php b/resources/lang/hr-HR/admin/suppliers/message.php similarity index 100% rename from resources/lang/hr/admin/suppliers/message.php rename to resources/lang/hr-HR/admin/suppliers/message.php diff --git a/resources/lang/hr/admin/suppliers/table.php b/resources/lang/hr-HR/admin/suppliers/table.php similarity index 100% rename from resources/lang/hr/admin/suppliers/table.php rename to resources/lang/hr-HR/admin/suppliers/table.php diff --git a/resources/lang/hr/admin/users/general.php b/resources/lang/hr-HR/admin/users/general.php similarity index 97% rename from resources/lang/hr/admin/users/general.php rename to resources/lang/hr-HR/admin/users/general.php index 0a08f92a49..768af7ea09 100644 --- a/resources/lang/hr/admin/users/general.php +++ b/resources/lang/hr-HR/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Prikaži korisnika: ime', 'usercsv' => 'CSV datoteku', 'two_factor_admin_optin_help' => 'Vaše trenutačne postavke administracije omogućuju selektivnu provedbu autentikacije dvogritera.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA uređaj upisan', + 'two_factor_active' => '2FA aktivno', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/hr/admin/users/message.php b/resources/lang/hr-HR/admin/users/message.php similarity index 98% rename from resources/lang/hr/admin/users/message.php rename to resources/lang/hr-HR/admin/users/message.php index 082015de09..7eb685847d 100644 --- a/resources/lang/hr/admin/users/message.php +++ b/resources/lang/hr-HR/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Uspješno ste odbili ovaj materijal.', 'bulk_manager_warn' => 'Vaši su korisnici uspješno ažurirani, ali vaš unos upravitelja nije spremljen jer je upravitelj koji ste odabrali također bio na popisu korisnika koji se uređuje, a korisnici možda nisu vlastiti upravitelj. Ponovno odaberite svoje korisnike, isključujući upravitelja.', 'user_exists' => 'Korisnik već postoji!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Korisnik ne postoji.', 'user_login_required' => 'Potrebno je polje za prijavu', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Zaporka je potrebna.', diff --git a/resources/lang/hr/admin/users/table.php b/resources/lang/hr-HR/admin/users/table.php similarity index 95% rename from resources/lang/hr/admin/users/table.php rename to resources/lang/hr-HR/admin/users/table.php index 5860770a4d..774bd4a2d6 100644 --- a/resources/lang/hr/admin/users/table.php +++ b/resources/lang/hr-HR/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Menadžer', 'managed_locations' => 'Upravljane lokacije', 'name' => 'Ime', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Bilješke', 'password_confirm' => 'Potvrdi lozinku', 'password' => 'Lozinka', diff --git a/resources/lang/hr/auth.php b/resources/lang/hr-HR/auth.php similarity index 100% rename from resources/lang/hr/auth.php rename to resources/lang/hr-HR/auth.php diff --git a/resources/lang/hr/auth/general.php b/resources/lang/hr-HR/auth/general.php similarity index 100% rename from resources/lang/hr/auth/general.php rename to resources/lang/hr-HR/auth/general.php diff --git a/resources/lang/hr/auth/message.php b/resources/lang/hr-HR/auth/message.php similarity index 96% rename from resources/lang/hr/auth/message.php rename to resources/lang/hr-HR/auth/message.php index 6380626ac2..30371610ff 100644 --- a/resources/lang/hr/auth/message.php +++ b/resources/lang/hr-HR/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Uspješno ste se prijavili.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/hr/button.php b/resources/lang/hr-HR/button.php similarity index 100% rename from resources/lang/hr/button.php rename to resources/lang/hr-HR/button.php diff --git a/resources/lang/hr/general.php b/resources/lang/hr-HR/general.php similarity index 95% rename from resources/lang/hr/general.php rename to resources/lang/hr-HR/general.php index 035bbac5b8..09785bb6d0 100644 --- a/resources/lang/hr/general.php +++ b/resources/lang/hr-HR/general.php @@ -44,7 +44,7 @@ return [ 'bulk_checkout' => 'Bulk Checkout', 'bulk_edit' => 'Bulk Edit', 'bulk_delete' => 'Bulk Delete', - 'bulk_actions' => 'Bulk Actions', + 'bulk_actions' => 'Masovne radnje', 'bulk_checkin_delete' => 'Bulk Checkin / Delete Users', 'byod' => 'BYOD', 'byod_help' => 'This device is owned by the user', @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Uvoz', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Povijest uvoza', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Spremni za implementaciju', 'recent_activity' => 'Nedavna aktivnost', - 'remaining' => 'Remaining', + 'remaining' => 'ostali', 'remove_company' => 'Ukloni Udruženje tvrtki', 'reports' => 'Izvještaji', 'restored' => 'obnovljeno', - 'restore' => 'Restore', + 'restore' => 'Vratiti', 'requestable_models' => 'Requestable Models', 'requested' => 'Traženi', 'requested_date' => 'Requested Date', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Dobavljač', 'suppliers' => 'Dobavljači', 'sure_to_delete' => 'Jeste li sigurni da želite izbrisati', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Jeste li sigurni da želite izbrisati :item?', 'delete_what' => 'Delete :item', 'submit' => 'podnijeti', 'target' => 'Cilj', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Un-razmjestiti', 'unknown_admin' => 'Nepoznati administrator', 'username_format' => 'Format korisničkog imena', - 'username' => 'Username', + 'username' => 'Korisničko ime', 'update' => 'Ažuriraj', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Uploaded', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'E-mail', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Odjavio', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Upozorenje', + 'notification_info' => 'Informacije', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Naziv imovine', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Potrošni naziv:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Naziv dodatne opreme:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% potpun', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'uredi', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/hr-HR/help.php b/resources/lang/hr-HR/help.php new file mode 100644 index 0000000000..39a93be291 --- /dev/null +++ b/resources/lang/hr-HR/help.php @@ -0,0 +1,35 @@ + 'Više informacija', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Imovina je stavka koja se prati serijskim brojem ili oznakom imovine. Oni imaju tendenciju da se stavke više vrijednosti gdje je identificiranje određenog predmeta pitanjima.', + + 'categories' => 'Kategorije vam pomažu organizirati stavke. Neke kategorije primjera mogu biti "Desktops", "Laptops", "Mobile Phones", "Tablets" i tako dalje, ali kategorije možete koristiti na bilo koji način koji ima smisla za vas.', + + 'accessories' => 'Pribor je sve što izdajete korisnicima, ali nemaju serijski broj (ili vas ne zanima njihovo jedinstveno praćenje). Na primjer, računalni miševi ili tipkovnice.', + + 'companies' => 'Tvrtke se mogu upotrebljavati kao polje jednostavnog identifikatora ili se mogu koristiti za ograničavanje vidljivosti imovine, korisnika itd., Ako je omogućena potpuna podrška tvrtke u administratorskim postavkama.', + + 'components' => 'Komponente su stavke koje su dio imovine, na primjer HDD, RAM itd.', + + 'consumables' => 'Potrošni materijali su sve što se kupuje, a to će biti iskorišteno tijekom vremena. Na primjer, pisač tinte ili fotokopirni papir.', + + 'depreciations' => 'Možete postaviti amortizaciju imovine za amortizaciju imovine na temelju linearne amortizacije.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/hr-HR/localizations.php b/resources/lang/hr-HR/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/hr-HR/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/hr/mail.php b/resources/lang/hr-HR/mail.php similarity index 99% rename from resources/lang/hr/mail.php rename to resources/lang/hr-HR/mail.php index aa54e50cf3..072e8b6863 100644 --- a/resources/lang/hr/mail.php +++ b/resources/lang/hr-HR/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Imovina:', 'asset_name' => 'Naziv imovine:', 'asset_requested' => 'Traženo sredstvo', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Oznaka imovine', 'assigned_to' => 'Dodijeljena', 'best_regards' => 'Lijepi Pozdrav,', 'canceled' => 'otkazano:', diff --git a/resources/lang/hr/pagination.php b/resources/lang/hr-HR/pagination.php similarity index 100% rename from resources/lang/hr/pagination.php rename to resources/lang/hr-HR/pagination.php diff --git a/resources/lang/hr/passwords.php b/resources/lang/hr-HR/passwords.php similarity index 100% rename from resources/lang/hr/passwords.php rename to resources/lang/hr-HR/passwords.php diff --git a/resources/lang/hr/reminders.php b/resources/lang/hr-HR/reminders.php similarity index 70% rename from resources/lang/hr/reminders.php rename to resources/lang/hr-HR/reminders.php index 4f9118ce2f..f239cb7e5e 100644 --- a/resources/lang/hr/reminders.php +++ b/resources/lang/hr-HR/reminders.php @@ -15,7 +15,7 @@ return array( "password" => "Zaporke moraju imati šest znakova i odgovarati potvrdi.", "user" => "Korisničko ime ili e-adresa nisu točni", - "token" => 'This password reset token is invalid or expired, or does not match the username provided.', - 'sent' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.', + "token" => 'Token za poništavanje zaporke nije valjan, istekao je ili ne odgovara navedenom korisničkom računu.', + 'sent' => 'Ako odgovarajući korisnik s valjanom adresom e-pošte postoji u sustavu, poslan je email za oporavak lozinke.', ); diff --git a/resources/lang/hr/table.php b/resources/lang/hr-HR/table.php similarity index 100% rename from resources/lang/hr/table.php rename to resources/lang/hr-HR/table.php diff --git a/resources/lang/hr/validation.php b/resources/lang/hr-HR/validation.php similarity index 99% rename from resources/lang/hr/validation.php rename to resources/lang/hr-HR/validation.php index ad623ec280..755e904f33 100644 --- a/resources/lang/hr/validation.php +++ b/resources/lang/hr-HR/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute mora biti jedinstven.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/hr/admin/labels/table.php b/resources/lang/hr/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/hr/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/hr/admin/settings/table.php b/resources/lang/hr/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/hr/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/hr/help.php b/resources/lang/hr/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/hr/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/hr/localizations.php b/resources/lang/hr/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/hr/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/hu/account/general.php b/resources/lang/hu-HU/account/general.php similarity index 100% rename from resources/lang/hu/account/general.php rename to resources/lang/hu-HU/account/general.php diff --git a/resources/lang/hu/admin/accessories/general.php b/resources/lang/hu-HU/admin/accessories/general.php similarity index 100% rename from resources/lang/hu/admin/accessories/general.php rename to resources/lang/hu-HU/admin/accessories/general.php diff --git a/resources/lang/hu/admin/accessories/message.php b/resources/lang/hu-HU/admin/accessories/message.php similarity index 100% rename from resources/lang/hu/admin/accessories/message.php rename to resources/lang/hu-HU/admin/accessories/message.php diff --git a/resources/lang/hu/admin/accessories/table.php b/resources/lang/hu-HU/admin/accessories/table.php similarity index 100% rename from resources/lang/hu/admin/accessories/table.php rename to resources/lang/hu-HU/admin/accessories/table.php diff --git a/resources/lang/hu/admin/asset_maintenances/form.php b/resources/lang/hu-HU/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/hu/admin/asset_maintenances/form.php rename to resources/lang/hu-HU/admin/asset_maintenances/form.php diff --git a/resources/lang/hu/admin/asset_maintenances/general.php b/resources/lang/hu-HU/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/hu/admin/asset_maintenances/general.php rename to resources/lang/hu-HU/admin/asset_maintenances/general.php diff --git a/resources/lang/hu/admin/asset_maintenances/message.php b/resources/lang/hu-HU/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/hu/admin/asset_maintenances/message.php rename to resources/lang/hu-HU/admin/asset_maintenances/message.php diff --git a/resources/lang/hu/admin/asset_maintenances/table.php b/resources/lang/hu-HU/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/hu/admin/asset_maintenances/table.php rename to resources/lang/hu-HU/admin/asset_maintenances/table.php diff --git a/resources/lang/hu/admin/categories/general.php b/resources/lang/hu-HU/admin/categories/general.php similarity index 100% rename from resources/lang/hu/admin/categories/general.php rename to resources/lang/hu-HU/admin/categories/general.php diff --git a/resources/lang/hu/admin/categories/message.php b/resources/lang/hu-HU/admin/categories/message.php similarity index 100% rename from resources/lang/hu/admin/categories/message.php rename to resources/lang/hu-HU/admin/categories/message.php diff --git a/resources/lang/hu/admin/categories/table.php b/resources/lang/hu-HU/admin/categories/table.php similarity index 100% rename from resources/lang/hu/admin/categories/table.php rename to resources/lang/hu-HU/admin/categories/table.php diff --git a/resources/lang/hu/admin/companies/general.php b/resources/lang/hu-HU/admin/companies/general.php similarity index 100% rename from resources/lang/hu/admin/companies/general.php rename to resources/lang/hu-HU/admin/companies/general.php diff --git a/resources/lang/hu/admin/companies/message.php b/resources/lang/hu-HU/admin/companies/message.php similarity index 100% rename from resources/lang/hu/admin/companies/message.php rename to resources/lang/hu-HU/admin/companies/message.php diff --git a/resources/lang/hu/admin/companies/table.php b/resources/lang/hu-HU/admin/companies/table.php similarity index 100% rename from resources/lang/hu/admin/companies/table.php rename to resources/lang/hu-HU/admin/companies/table.php diff --git a/resources/lang/hu/admin/components/general.php b/resources/lang/hu-HU/admin/components/general.php similarity index 100% rename from resources/lang/hu/admin/components/general.php rename to resources/lang/hu-HU/admin/components/general.php diff --git a/resources/lang/hu/admin/components/message.php b/resources/lang/hu-HU/admin/components/message.php similarity index 100% rename from resources/lang/hu/admin/components/message.php rename to resources/lang/hu-HU/admin/components/message.php diff --git a/resources/lang/hu/admin/components/table.php b/resources/lang/hu-HU/admin/components/table.php similarity index 100% rename from resources/lang/hu/admin/components/table.php rename to resources/lang/hu-HU/admin/components/table.php diff --git a/resources/lang/hu/admin/consumables/general.php b/resources/lang/hu-HU/admin/consumables/general.php similarity index 100% rename from resources/lang/hu/admin/consumables/general.php rename to resources/lang/hu-HU/admin/consumables/general.php diff --git a/resources/lang/hu/admin/consumables/message.php b/resources/lang/hu-HU/admin/consumables/message.php similarity index 100% rename from resources/lang/hu/admin/consumables/message.php rename to resources/lang/hu-HU/admin/consumables/message.php diff --git a/resources/lang/hu/admin/consumables/table.php b/resources/lang/hu-HU/admin/consumables/table.php similarity index 100% rename from resources/lang/hu/admin/consumables/table.php rename to resources/lang/hu-HU/admin/consumables/table.php diff --git a/resources/lang/hu/admin/custom_fields/general.php b/resources/lang/hu-HU/admin/custom_fields/general.php similarity index 96% rename from resources/lang/hu/admin/custom_fields/general.php rename to resources/lang/hu-HU/admin/custom_fields/general.php index e484da14b4..0a36a767d7 100644 --- a/resources/lang/hu/admin/custom_fields/general.php +++ b/resources/lang/hu-HU/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Új egyéni mező', 'create_field_title' => 'Új egyéni mező létrehozása', 'value_encrypted' => 'A mező értéke titkosítva van az adatbázisban. Csak az adminisztrátor felhasználók láthatják a dekódolt értéket', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Szerepeljen ez a mező az eszköz kiadásakor a felhasználónak küldött emailben? A titkosított mezők nem szerepelhetnek az emailekben', 'show_in_email_short' => 'Szerepeljen az emailekben.', 'help_text' => 'Súgó szöveg', 'help_text_description' => 'Ez egy opcionális szöveg, amely az űrlapelemek alatt jelenik meg az eszköz szerkesztése közben, hogy kontextust adjon a mezőhöz.', diff --git a/resources/lang/hu/admin/custom_fields/message.php b/resources/lang/hu-HU/admin/custom_fields/message.php similarity index 100% rename from resources/lang/hu/admin/custom_fields/message.php rename to resources/lang/hu-HU/admin/custom_fields/message.php diff --git a/resources/lang/hu/admin/departments/message.php b/resources/lang/hu-HU/admin/departments/message.php similarity index 100% rename from resources/lang/hu/admin/departments/message.php rename to resources/lang/hu-HU/admin/departments/message.php diff --git a/resources/lang/hu/admin/departments/table.php b/resources/lang/hu-HU/admin/departments/table.php similarity index 100% rename from resources/lang/hu/admin/departments/table.php rename to resources/lang/hu-HU/admin/departments/table.php diff --git a/resources/lang/hu/admin/depreciations/general.php b/resources/lang/hu-HU/admin/depreciations/general.php similarity index 100% rename from resources/lang/hu/admin/depreciations/general.php rename to resources/lang/hu-HU/admin/depreciations/general.php diff --git a/resources/lang/hu/admin/depreciations/message.php b/resources/lang/hu-HU/admin/depreciations/message.php similarity index 100% rename from resources/lang/hu/admin/depreciations/message.php rename to resources/lang/hu-HU/admin/depreciations/message.php diff --git a/resources/lang/hu/admin/depreciations/table.php b/resources/lang/hu-HU/admin/depreciations/table.php similarity index 100% rename from resources/lang/hu/admin/depreciations/table.php rename to resources/lang/hu-HU/admin/depreciations/table.php diff --git a/resources/lang/hu/admin/groups/message.php b/resources/lang/hu-HU/admin/groups/message.php similarity index 100% rename from resources/lang/hu/admin/groups/message.php rename to resources/lang/hu-HU/admin/groups/message.php diff --git a/resources/lang/hu/admin/groups/table.php b/resources/lang/hu-HU/admin/groups/table.php similarity index 100% rename from resources/lang/hu/admin/groups/table.php rename to resources/lang/hu-HU/admin/groups/table.php diff --git a/resources/lang/hu/admin/groups/titles.php b/resources/lang/hu-HU/admin/groups/titles.php similarity index 100% rename from resources/lang/hu/admin/groups/titles.php rename to resources/lang/hu-HU/admin/groups/titles.php diff --git a/resources/lang/hu/admin/hardware/form.php b/resources/lang/hu-HU/admin/hardware/form.php similarity index 100% rename from resources/lang/hu/admin/hardware/form.php rename to resources/lang/hu-HU/admin/hardware/form.php diff --git a/resources/lang/hu/admin/hardware/general.php b/resources/lang/hu-HU/admin/hardware/general.php similarity index 100% rename from resources/lang/hu/admin/hardware/general.php rename to resources/lang/hu-HU/admin/hardware/general.php diff --git a/resources/lang/hu/admin/hardware/message.php b/resources/lang/hu-HU/admin/hardware/message.php similarity index 100% rename from resources/lang/hu/admin/hardware/message.php rename to resources/lang/hu-HU/admin/hardware/message.php diff --git a/resources/lang/hu/admin/hardware/table.php b/resources/lang/hu-HU/admin/hardware/table.php similarity index 100% rename from resources/lang/hu/admin/hardware/table.php rename to resources/lang/hu-HU/admin/hardware/table.php diff --git a/resources/lang/hu/admin/kits/general.php b/resources/lang/hu-HU/admin/kits/general.php similarity index 100% rename from resources/lang/hu/admin/kits/general.php rename to resources/lang/hu-HU/admin/kits/general.php diff --git a/resources/lang/vi/admin/labels/message.php b/resources/lang/hu-HU/admin/labels/message.php similarity index 87% rename from resources/lang/vi/admin/labels/message.php rename to resources/lang/hu-HU/admin/labels/message.php index 96785f0754..e799324f75 100644 --- a/resources/lang/vi/admin/labels/message.php +++ b/resources/lang/hu-HU/admin/labels/message.php @@ -6,6 +6,6 @@ return [ 'invalid_return_type' => 'Invalid type returned from :name. Expected :expected, got :actual.', 'invalid_return_value' => 'Invalid value returned from :name. Expected :expected, got :actual.', - 'does_not_exist' => 'Label does not exist', + 'does_not_exist' => 'A címke nem létezik', ]; diff --git a/resources/lang/hu/admin/labels/table.php b/resources/lang/hu-HU/admin/labels/table.php similarity index 100% rename from resources/lang/hu/admin/labels/table.php rename to resources/lang/hu-HU/admin/labels/table.php diff --git a/resources/lang/hu/admin/licenses/form.php b/resources/lang/hu-HU/admin/licenses/form.php similarity index 100% rename from resources/lang/hu/admin/licenses/form.php rename to resources/lang/hu-HU/admin/licenses/form.php diff --git a/resources/lang/hu/admin/licenses/general.php b/resources/lang/hu-HU/admin/licenses/general.php similarity index 92% rename from resources/lang/hu/admin/licenses/general.php rename to resources/lang/hu-HU/admin/licenses/general.php index 0242acb844..14e67066fa 100644 --- a/resources/lang/hu/admin/licenses/general.php +++ b/resources/lang/hu-HU/admin/licenses/general.php @@ -27,7 +27,7 @@ return array( 'enabled_tooltip' => 'Checkin ALL seats for this license from both users and assets', 'disabled_tooltip' => 'This is disabled because there are no seats currently checked out', 'disabled_tooltip_reassignable' => 'This is disabled because the License is not reassignable', - 'success' => 'License successfully checked in! | All licenses were successfully checked in!', + 'success' => 'Licenc visszavétel sikeres! | Minden licenc sikeresen visszavéve!', 'log_msg' => 'Checked in via bulk license checkout in license GUI', ], @@ -36,7 +36,7 @@ return array( 'modal' => 'This action will checkout one seat to the first available user. | This action will checkout all :available_seats_count seats to the first available users. A user is considered available for this seat if they do not already have this license checked out to them, and the Auto-Assign License property is enabled on their user account.', 'enabled_tooltip' => 'Checkout ALL seats (or as many as are available) to ALL users', 'disabled_tooltip' => 'This is disabled because there are no seats currently available', - 'success' => 'License successfully checked out! | :count licenses were successfully checked out!', + 'success' => 'Licenc sikeresen kiadva! | :count db. licenc sikeresen kiadva !', 'error_no_seats' => 'There are no remaining seats left for this license.', 'warn_not_enough_seats' => ':count users were assigned this license, but we ran out of available license seats.', 'warn_no_avail_users' => 'Nothing to do. There are no users who do not already have this license assigned to them.', diff --git a/resources/lang/hu/admin/licenses/message.php b/resources/lang/hu-HU/admin/licenses/message.php similarity index 100% rename from resources/lang/hu/admin/licenses/message.php rename to resources/lang/hu-HU/admin/licenses/message.php diff --git a/resources/lang/hu/admin/licenses/table.php b/resources/lang/hu-HU/admin/licenses/table.php similarity index 100% rename from resources/lang/hu/admin/licenses/table.php rename to resources/lang/hu-HU/admin/licenses/table.php diff --git a/resources/lang/hu/admin/locations/message.php b/resources/lang/hu-HU/admin/locations/message.php similarity index 100% rename from resources/lang/hu/admin/locations/message.php rename to resources/lang/hu-HU/admin/locations/message.php diff --git a/resources/lang/hu/admin/locations/table.php b/resources/lang/hu-HU/admin/locations/table.php similarity index 100% rename from resources/lang/hu/admin/locations/table.php rename to resources/lang/hu-HU/admin/locations/table.php diff --git a/resources/lang/hu/admin/manufacturers/message.php b/resources/lang/hu-HU/admin/manufacturers/message.php similarity index 100% rename from resources/lang/hu/admin/manufacturers/message.php rename to resources/lang/hu-HU/admin/manufacturers/message.php diff --git a/resources/lang/hu/admin/manufacturers/table.php b/resources/lang/hu-HU/admin/manufacturers/table.php similarity index 100% rename from resources/lang/hu/admin/manufacturers/table.php rename to resources/lang/hu-HU/admin/manufacturers/table.php diff --git a/resources/lang/hu/admin/models/general.php b/resources/lang/hu-HU/admin/models/general.php similarity index 100% rename from resources/lang/hu/admin/models/general.php rename to resources/lang/hu-HU/admin/models/general.php diff --git a/resources/lang/hu/admin/models/message.php b/resources/lang/hu-HU/admin/models/message.php similarity index 100% rename from resources/lang/hu/admin/models/message.php rename to resources/lang/hu-HU/admin/models/message.php diff --git a/resources/lang/hu/admin/models/table.php b/resources/lang/hu-HU/admin/models/table.php similarity index 100% rename from resources/lang/hu/admin/models/table.php rename to resources/lang/hu-HU/admin/models/table.php diff --git a/resources/lang/hu/admin/reports/general.php b/resources/lang/hu-HU/admin/reports/general.php similarity index 100% rename from resources/lang/hu/admin/reports/general.php rename to resources/lang/hu-HU/admin/reports/general.php diff --git a/resources/lang/hu/admin/reports/message.php b/resources/lang/hu-HU/admin/reports/message.php similarity index 100% rename from resources/lang/hu/admin/reports/message.php rename to resources/lang/hu-HU/admin/reports/message.php diff --git a/resources/lang/hu/admin/settings/general.php b/resources/lang/hu-HU/admin/settings/general.php similarity index 99% rename from resources/lang/hu/admin/settings/general.php rename to resources/lang/hu-HU/admin/settings/general.php index 4c16eadb93..1d09750ea3 100644 --- a/resources/lang/hu/admin/settings/general.php +++ b/resources/lang/hu-HU/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'A felhasználóknak nem szükséges beírni az egész címet "username@domain.local", elég csak a felhasználónevüket "username".', 'admin_cc_email' => 'Email másolat', 'admin_cc_email_help' => 'Ha azt szeretné, hogy a kiadáskor/visszavételkor a felhasználóknak küldött levél másolata egy másik címre is elmenjen, akkor írja be a címet ide. Ellenkező esetben hagyja szabadon a mezőt.', + 'admin_settings' => 'Rendszergazdai Beállítások', 'is_ad' => 'Ez egy Active Directory szerver', 'alerts' => 'Riasztások', 'alert_title' => 'Értesítési beállítások módosítása', @@ -211,7 +212,7 @@ return [ 'webhook_channel' => ':app Channel', 'webhook_endpoint' => ':app Végpont', 'webhook_integration' => ':app Beállítások', - 'webhook_test' =>'Test :app integration', + 'webhook_test' =>':app integráció tesztelése', 'webhook_integration_help' => ':app integration is optional, however the endpoint and channel are required if you wish to use it. To configure :app integration, you must first create an incoming webhook on your :app account. Click on the Test :app Integration button to confirm your settings are correct before saving. ', 'webhook_integration_help_button' => 'Once you have saved your :app information, a test button will appear.', 'webhook_test_help' => 'Test whether your :app integration is configured correctly. YOU MUST SAVE YOUR UPDATED :app SETTINGS FIRST.', diff --git a/resources/lang/hu/admin/settings/message.php b/resources/lang/hu-HU/admin/settings/message.php similarity index 100% rename from resources/lang/hu/admin/settings/message.php rename to resources/lang/hu-HU/admin/settings/message.php diff --git a/resources/lang/hu/admin/settings/table.php b/resources/lang/hu-HU/admin/settings/table.php similarity index 100% rename from resources/lang/hu/admin/settings/table.php rename to resources/lang/hu-HU/admin/settings/table.php diff --git a/resources/lang/hu/admin/statuslabels/message.php b/resources/lang/hu-HU/admin/statuslabels/message.php similarity index 97% rename from resources/lang/hu/admin/statuslabels/message.php rename to resources/lang/hu-HU/admin/statuslabels/message.php index 1f82ccb0d4..ad9304b46d 100644 --- a/resources/lang/hu/admin/statuslabels/message.php +++ b/resources/lang/hu-HU/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'A státusz-címke nem létezik.', + 'deleted_label' => 'Törölt státusz-címke', 'assoc_assets' => 'Ez az Állapotjelző jelenleg legalább egy Assethez társítva, és nem törölhető. Kérjük, frissítse eszközeit, hogy ne hivatkozzon erre az állapotra, és próbálja újra.', 'create' => [ diff --git a/resources/lang/hu/admin/statuslabels/table.php b/resources/lang/hu-HU/admin/statuslabels/table.php similarity index 100% rename from resources/lang/hu/admin/statuslabels/table.php rename to resources/lang/hu-HU/admin/statuslabels/table.php diff --git a/resources/lang/hu/admin/suppliers/message.php b/resources/lang/hu-HU/admin/suppliers/message.php similarity index 100% rename from resources/lang/hu/admin/suppliers/message.php rename to resources/lang/hu-HU/admin/suppliers/message.php diff --git a/resources/lang/hu/admin/suppliers/table.php b/resources/lang/hu-HU/admin/suppliers/table.php similarity index 100% rename from resources/lang/hu/admin/suppliers/table.php rename to resources/lang/hu-HU/admin/suppliers/table.php diff --git a/resources/lang/hu/admin/users/general.php b/resources/lang/hu-HU/admin/users/general.php similarity index 100% rename from resources/lang/hu/admin/users/general.php rename to resources/lang/hu-HU/admin/users/general.php diff --git a/resources/lang/hu/admin/users/message.php b/resources/lang/hu-HU/admin/users/message.php similarity index 100% rename from resources/lang/hu/admin/users/message.php rename to resources/lang/hu-HU/admin/users/message.php diff --git a/resources/lang/hu/admin/users/table.php b/resources/lang/hu-HU/admin/users/table.php similarity index 95% rename from resources/lang/hu/admin/users/table.php rename to resources/lang/hu-HU/admin/users/table.php index 4c45a94424..e589cccda2 100644 --- a/resources/lang/hu/admin/users/table.php +++ b/resources/lang/hu-HU/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Felettes', 'managed_locations' => 'Kezelt helyek', 'name' => 'Név', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Megjegyzések', 'password_confirm' => 'Jelszó megerősítése', 'password' => 'Jelszó', diff --git a/resources/lang/hu/auth.php b/resources/lang/hu-HU/auth.php similarity index 100% rename from resources/lang/hu/auth.php rename to resources/lang/hu-HU/auth.php diff --git a/resources/lang/hu/auth/general.php b/resources/lang/hu-HU/auth/general.php similarity index 100% rename from resources/lang/hu/auth/general.php rename to resources/lang/hu-HU/auth/general.php diff --git a/resources/lang/hu/auth/message.php b/resources/lang/hu-HU/auth/message.php similarity index 100% rename from resources/lang/hu/auth/message.php rename to resources/lang/hu-HU/auth/message.php diff --git a/resources/lang/hu/button.php b/resources/lang/hu-HU/button.php similarity index 100% rename from resources/lang/hu/button.php rename to resources/lang/hu-HU/button.php diff --git a/resources/lang/hu/general.php b/resources/lang/hu-HU/general.php similarity index 97% rename from resources/lang/hu/general.php rename to resources/lang/hu-HU/general.php index bce8864894..4b6b49bf04 100644 --- a/resources/lang/hu/general.php +++ b/resources/lang/hu-HU/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Az elfogadott fájltípusok jpg, webp, png, gif és svg. A maximális feltöltési méret a következő: size.', 'unaccepted_image_type' => 'Ez a képfájl nem beolvasható. Az elfogadott fájltípusok: jpg, webp, png, gif és svg. A fájl kódolása: :mimetype.', 'import' => 'Importálás', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importálás', 'importing_help' => 'Eszközöket, tartozékokat, szoftverlicenceket, alkatrészeket, fogyóeszközöket és felhasználókat importálhat CSV fájl segítségével.

A CSV-ben az értékeket kettőspontal kell elválasztani és minden fejlécnévnek meg kell egyeznie az alap CSV dokumentációban szereplőkkel..', 'import-history' => 'Import történet', @@ -355,7 +356,7 @@ return [ 'synchronize' => 'Szinkronizálás', 'sync_results' => 'Szinkronizálás eredményei', 'license_serial' => 'Sorozat/termékkulcs', - 'invalid_category' => 'Invalid or missing category', + 'invalid_category' => 'Érvénytelen vagy hiányzó kategória', 'invalid_item_category_single' => 'Invalid or missing :type category. Please update the category of this :type to include a valid category before checking out.', 'dashboard_info' => 'Ez az Ön műszerfala. Sok ilyen van, de ez a tiéd.', '60_percent_warning' => '60% kész (figyelmeztetés)', @@ -448,7 +449,7 @@ return [ 'success_redirecting' => 'Sikeres... Átirányítás.', 'cancel_request' => 'Eszközigénylés visszavonása', 'setup_successful_migrations' => 'Az adatbázis táblái létrehozásra kerültek', - 'setup_migration_output' => 'Migration output:', + 'setup_migration_output' => 'Migrációs kimenetek:', 'setup_migration_create_user' => 'Következő: Felhasználó mentése', 'importer_generic_error' => 'Your file import is complete, but we did receive an error. This is usually caused by third-party API throttling from a notification webhook (such as Slack) and would not have interfered with the import itself, but you should confirm this.', 'confirm' => 'Megerősítés', @@ -477,13 +478,13 @@ return [ 'manager_username' => 'Manager Felhasználónév', 'checkout_type' => 'Kiadás Típusa', 'checkout_location' => 'Checkout to Location', - 'image_filename' => 'Image Filename', + 'image_filename' => 'kép fájlnév', 'do_not_import' => 'Ne importáld', 'vip' => 'VIP', 'avatar' => 'Profilkép', 'gravatar' => 'Gravatar Email', 'currency' => 'Pénznem', - 'address2' => 'Address Line 2', + 'address2' => 'Cím sor 2', 'import_note' => 'A CSV importálóval betöltve', ], 'percent_complete' => '% elkészült', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Hiba a fájl feltöltése során. Kérem, ellenőrizze, hogy nincsenek üres sorok és nincsenek oszlop fejléc nevek duplikálva.', 'copy_to_clipboard' => 'Másolás a vágólapra', 'copied' => 'Másolva!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id nem létezik, vagy törölve lett', + 'action_permission_denied' => 'Nincs jogosultsága a következőhöz: :action :item_type ID :id', + 'action_permission_generic' => 'Nincs jogosultsága a következő művelethez: :action a következőn: :item_type', + 'edit' => 'szerkesztés', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/hu/help.php b/resources/lang/hu-HU/help.php similarity index 100% rename from resources/lang/hu/help.php rename to resources/lang/hu-HU/help.php diff --git a/resources/lang/hu/localizations.php b/resources/lang/hu-HU/localizations.php similarity index 99% rename from resources/lang/hu/localizations.php rename to resources/lang/hu-HU/localizations.php index b2f6bdaf4f..6355845781 100644 --- a/resources/lang/hu/localizations.php +++ b/resources/lang/hu-HU/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Ír', 'it'=> 'Olasz', 'ja'=> 'Japán', - 'km' => 'khmer', + 'km-KH'=>'khmer', 'ko'=> 'Kóreai', 'lv'=>'Lett', 'lt'=> 'Litván', diff --git a/resources/lang/hu/mail.php b/resources/lang/hu-HU/mail.php similarity index 100% rename from resources/lang/hu/mail.php rename to resources/lang/hu-HU/mail.php diff --git a/resources/lang/hu/pagination.php b/resources/lang/hu-HU/pagination.php similarity index 100% rename from resources/lang/hu/pagination.php rename to resources/lang/hu-HU/pagination.php diff --git a/resources/lang/hu/passwords.php b/resources/lang/hu-HU/passwords.php similarity index 90% rename from resources/lang/hu/passwords.php rename to resources/lang/hu-HU/passwords.php index 9fcab2c7e5..4788e969dd 100644 --- a/resources/lang/hu/passwords.php +++ b/resources/lang/hu-HU/passwords.php @@ -5,5 +5,5 @@ return [ 'user' => 'Ha a rendszerünkben létezik egy megfelelő felhasználó ezzel az érvényes e-mail címmel, akkor egy jelszó-visszaállítási e-mailt küldtünk.', 'token' => 'Ez a jelszó-visszaállítási token érvénytelen vagy lejárt, vagy nem felel meg a megadott felhasználónévnek.', 'reset' => 'A jelszavadat visszaállítottuk!', - 'password_change' => 'Your password has been updated!', + 'password_change' => 'A jelszót frissítettük!', ]; diff --git a/resources/lang/hu/reminders.php b/resources/lang/hu-HU/reminders.php similarity index 100% rename from resources/lang/hu/reminders.php rename to resources/lang/hu-HU/reminders.php diff --git a/resources/lang/hu/table.php b/resources/lang/hu-HU/table.php similarity index 100% rename from resources/lang/hu/table.php rename to resources/lang/hu-HU/table.php diff --git a/resources/lang/hu/validation.php b/resources/lang/hu-HU/validation.php similarity index 99% rename from resources/lang/hu/validation.php rename to resources/lang/hu-HU/validation.php index ac70ee85a9..131262b0e2 100644 --- a/resources/lang/hu/validation.php +++ b/resources/lang/hu-HU/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'A(z) :attribute egyedinek kell lennie.', 'non_circular' => 'A(z) :attribute nem hozhat létre körkörös hivatkozást.', 'not_array' => 'A(z) :attribute mező nem lehet tömb.', - 'unique_serial' => 'A következő attribútumnak egyedinek kell lennie: :attribute.', 'disallow_same_pwd_as_user_fields' => 'A jelszó nem lehet azonos a felhasználónévvel.', 'letters' => 'A jelszónak tartalmaznia kell legalább egy betűt.', 'numbers' => 'A jelszónak tartalmaznia kell legalább egy számot.', diff --git a/resources/lang/id/account/general.php b/resources/lang/id-ID/account/general.php similarity index 100% rename from resources/lang/id/account/general.php rename to resources/lang/id-ID/account/general.php diff --git a/resources/lang/id/admin/accessories/general.php b/resources/lang/id-ID/admin/accessories/general.php similarity index 100% rename from resources/lang/id/admin/accessories/general.php rename to resources/lang/id-ID/admin/accessories/general.php diff --git a/resources/lang/id/admin/accessories/message.php b/resources/lang/id-ID/admin/accessories/message.php similarity index 100% rename from resources/lang/id/admin/accessories/message.php rename to resources/lang/id-ID/admin/accessories/message.php diff --git a/resources/lang/id/admin/accessories/table.php b/resources/lang/id-ID/admin/accessories/table.php similarity index 100% rename from resources/lang/id/admin/accessories/table.php rename to resources/lang/id-ID/admin/accessories/table.php diff --git a/resources/lang/id-ID/admin/asset_maintenances/form.php b/resources/lang/id-ID/admin/asset_maintenances/form.php new file mode 100644 index 0000000000..3f02d3db06 --- /dev/null +++ b/resources/lang/id-ID/admin/asset_maintenances/form.php @@ -0,0 +1,14 @@ + 'Pemeliharan Jenis Aset', + 'title' => 'Judul', + 'start_date' => 'Tanggal Mulai', + 'completion_date' => 'Tanggal Penyelesaian', + 'cost' => 'Biaya', + 'is_warranty' => 'Pengembangan Garansi', + 'asset_maintenance_time' => 'Waktu Pemeliharaan Aset (dalam hari)', + 'notes' => 'Catatan', + 'update' => 'Pembaharuan Pemeliharan Aset', + 'create' => 'Membuat Pemeliharan Aset' + ]; diff --git a/resources/lang/id/admin/asset_maintenances/general.php b/resources/lang/id-ID/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/id/admin/asset_maintenances/general.php rename to resources/lang/id-ID/admin/asset_maintenances/general.php diff --git a/resources/lang/id/admin/asset_maintenances/message.php b/resources/lang/id-ID/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/id/admin/asset_maintenances/message.php rename to resources/lang/id-ID/admin/asset_maintenances/message.php diff --git a/resources/lang/id/admin/asset_maintenances/table.php b/resources/lang/id-ID/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/id/admin/asset_maintenances/table.php rename to resources/lang/id-ID/admin/asset_maintenances/table.php diff --git a/resources/lang/id/admin/categories/general.php b/resources/lang/id-ID/admin/categories/general.php similarity index 100% rename from resources/lang/id/admin/categories/general.php rename to resources/lang/id-ID/admin/categories/general.php diff --git a/resources/lang/id/admin/categories/message.php b/resources/lang/id-ID/admin/categories/message.php similarity index 100% rename from resources/lang/id/admin/categories/message.php rename to resources/lang/id-ID/admin/categories/message.php diff --git a/resources/lang/id/admin/categories/table.php b/resources/lang/id-ID/admin/categories/table.php similarity index 100% rename from resources/lang/id/admin/categories/table.php rename to resources/lang/id-ID/admin/categories/table.php diff --git a/resources/lang/id/admin/companies/general.php b/resources/lang/id-ID/admin/companies/general.php similarity index 100% rename from resources/lang/id/admin/companies/general.php rename to resources/lang/id-ID/admin/companies/general.php diff --git a/resources/lang/id/admin/companies/message.php b/resources/lang/id-ID/admin/companies/message.php similarity index 100% rename from resources/lang/id/admin/companies/message.php rename to resources/lang/id-ID/admin/companies/message.php diff --git a/resources/lang/id/admin/companies/table.php b/resources/lang/id-ID/admin/companies/table.php similarity index 100% rename from resources/lang/id/admin/companies/table.php rename to resources/lang/id-ID/admin/companies/table.php diff --git a/resources/lang/id/admin/components/general.php b/resources/lang/id-ID/admin/components/general.php similarity index 100% rename from resources/lang/id/admin/components/general.php rename to resources/lang/id-ID/admin/components/general.php diff --git a/resources/lang/id/admin/components/message.php b/resources/lang/id-ID/admin/components/message.php similarity index 100% rename from resources/lang/id/admin/components/message.php rename to resources/lang/id-ID/admin/components/message.php diff --git a/resources/lang/id/admin/components/table.php b/resources/lang/id-ID/admin/components/table.php similarity index 100% rename from resources/lang/id/admin/components/table.php rename to resources/lang/id-ID/admin/components/table.php diff --git a/resources/lang/id/admin/consumables/general.php b/resources/lang/id-ID/admin/consumables/general.php similarity index 100% rename from resources/lang/id/admin/consumables/general.php rename to resources/lang/id-ID/admin/consumables/general.php diff --git a/resources/lang/id/admin/consumables/message.php b/resources/lang/id-ID/admin/consumables/message.php similarity index 100% rename from resources/lang/id/admin/consumables/message.php rename to resources/lang/id-ID/admin/consumables/message.php diff --git a/resources/lang/id/admin/consumables/table.php b/resources/lang/id-ID/admin/consumables/table.php similarity index 100% rename from resources/lang/id/admin/consumables/table.php rename to resources/lang/id-ID/admin/consumables/table.php diff --git a/resources/lang/id/admin/custom_fields/general.php b/resources/lang/id-ID/admin/custom_fields/general.php similarity index 96% rename from resources/lang/id/admin/custom_fields/general.php rename to resources/lang/id-ID/admin/custom_fields/general.php index 277142b13f..ec825db306 100644 --- a/resources/lang/id/admin/custom_fields/general.php +++ b/resources/lang/id-ID/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Tambah Kolom Ubahan', 'create_field_title' => 'Buat field kustom', 'value_encrypted' => 'Nilai dari kolom ini di database dienkripsi. hanya pengguna admin yang bisa melihat nilai deskripsinya', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Sertakan nilai bidang ini dalam email checkout yang dikirim kepada pengguna? Bidang terenkripsi tidak dapat dimasukkan dalam email', 'show_in_email_short' => 'Include in emails.', 'help_text' => 'Teks bantuan', 'help_text_description' => 'Ini adalah teks opsional yang akan muncul di bawah elemen formulir saat mengedit aset untuk memberikan konteks pada field.', diff --git a/resources/lang/id/admin/custom_fields/message.php b/resources/lang/id-ID/admin/custom_fields/message.php similarity index 100% rename from resources/lang/id/admin/custom_fields/message.php rename to resources/lang/id-ID/admin/custom_fields/message.php diff --git a/resources/lang/id/admin/departments/message.php b/resources/lang/id-ID/admin/departments/message.php similarity index 100% rename from resources/lang/id/admin/departments/message.php rename to resources/lang/id-ID/admin/departments/message.php diff --git a/resources/lang/id/admin/departments/table.php b/resources/lang/id-ID/admin/departments/table.php similarity index 100% rename from resources/lang/id/admin/departments/table.php rename to resources/lang/id-ID/admin/departments/table.php diff --git a/resources/lang/id/admin/depreciations/general.php b/resources/lang/id-ID/admin/depreciations/general.php similarity index 100% rename from resources/lang/id/admin/depreciations/general.php rename to resources/lang/id-ID/admin/depreciations/general.php diff --git a/resources/lang/id/admin/depreciations/message.php b/resources/lang/id-ID/admin/depreciations/message.php similarity index 100% rename from resources/lang/id/admin/depreciations/message.php rename to resources/lang/id-ID/admin/depreciations/message.php diff --git a/resources/lang/id/admin/depreciations/table.php b/resources/lang/id-ID/admin/depreciations/table.php similarity index 100% rename from resources/lang/id/admin/depreciations/table.php rename to resources/lang/id-ID/admin/depreciations/table.php diff --git a/resources/lang/id/admin/groups/message.php b/resources/lang/id-ID/admin/groups/message.php similarity index 100% rename from resources/lang/id/admin/groups/message.php rename to resources/lang/id-ID/admin/groups/message.php diff --git a/resources/lang/id/admin/groups/table.php b/resources/lang/id-ID/admin/groups/table.php similarity index 100% rename from resources/lang/id/admin/groups/table.php rename to resources/lang/id-ID/admin/groups/table.php diff --git a/resources/lang/id/admin/groups/titles.php b/resources/lang/id-ID/admin/groups/titles.php similarity index 100% rename from resources/lang/id/admin/groups/titles.php rename to resources/lang/id-ID/admin/groups/titles.php diff --git a/resources/lang/id/admin/hardware/form.php b/resources/lang/id-ID/admin/hardware/form.php similarity index 100% rename from resources/lang/id/admin/hardware/form.php rename to resources/lang/id-ID/admin/hardware/form.php diff --git a/resources/lang/id/admin/hardware/general.php b/resources/lang/id-ID/admin/hardware/general.php similarity index 100% rename from resources/lang/id/admin/hardware/general.php rename to resources/lang/id-ID/admin/hardware/general.php diff --git a/resources/lang/id/admin/hardware/message.php b/resources/lang/id-ID/admin/hardware/message.php similarity index 100% rename from resources/lang/id/admin/hardware/message.php rename to resources/lang/id-ID/admin/hardware/message.php diff --git a/resources/lang/id/admin/hardware/table.php b/resources/lang/id-ID/admin/hardware/table.php similarity index 100% rename from resources/lang/id/admin/hardware/table.php rename to resources/lang/id-ID/admin/hardware/table.php diff --git a/resources/lang/id/admin/kits/general.php b/resources/lang/id-ID/admin/kits/general.php similarity index 90% rename from resources/lang/id/admin/kits/general.php rename to resources/lang/id-ID/admin/kits/general.php index 7065439ab8..afe024302a 100644 --- a/resources/lang/id/admin/kits/general.php +++ b/resources/lang/id-ID/admin/kits/general.php @@ -24,13 +24,13 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Lisensi tidak ada', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Barang Habis Pakai tidak terdaftar', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', @@ -41,10 +41,10 @@ return [ 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', + 'kit_created' => 'Kit berhasil dibuat', + 'kit_updated' => 'Kit berhasil dihapus', 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', + 'kit_deleted' => 'Kit berhasil dihapus', 'kit_model_updated' => 'Model was successfully updated', 'kit_model_detached' => 'Model was successfully detached', ]; diff --git a/resources/lang/hu/admin/labels/message.php b/resources/lang/id-ID/admin/labels/message.php similarity index 100% rename from resources/lang/hu/admin/labels/message.php rename to resources/lang/id-ID/admin/labels/message.php diff --git a/resources/lang/id-ID/admin/labels/table.php b/resources/lang/id-ID/admin/labels/table.php new file mode 100644 index 0000000000..bda4b51dad --- /dev/null +++ b/resources/lang/id-ID/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Kolom', + 'support_asset_tag' => 'Menandai', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logo', + 'support_title' => 'Judul', + +]; \ No newline at end of file diff --git a/resources/lang/id/admin/licenses/form.php b/resources/lang/id-ID/admin/licenses/form.php similarity index 100% rename from resources/lang/id/admin/licenses/form.php rename to resources/lang/id-ID/admin/licenses/form.php diff --git a/resources/lang/id/admin/licenses/general.php b/resources/lang/id-ID/admin/licenses/general.php similarity index 100% rename from resources/lang/id/admin/licenses/general.php rename to resources/lang/id-ID/admin/licenses/general.php diff --git a/resources/lang/id/admin/licenses/message.php b/resources/lang/id-ID/admin/licenses/message.php similarity index 100% rename from resources/lang/id/admin/licenses/message.php rename to resources/lang/id-ID/admin/licenses/message.php diff --git a/resources/lang/id/admin/licenses/table.php b/resources/lang/id-ID/admin/licenses/table.php similarity index 100% rename from resources/lang/id/admin/licenses/table.php rename to resources/lang/id-ID/admin/licenses/table.php diff --git a/resources/lang/id/admin/locations/message.php b/resources/lang/id-ID/admin/locations/message.php similarity index 100% rename from resources/lang/id/admin/locations/message.php rename to resources/lang/id-ID/admin/locations/message.php diff --git a/resources/lang/id/admin/locations/table.php b/resources/lang/id-ID/admin/locations/table.php similarity index 97% rename from resources/lang/id/admin/locations/table.php rename to resources/lang/id-ID/admin/locations/table.php index 327a5866b0..d32daa94d1 100644 --- a/resources/lang/id/admin/locations/table.php +++ b/resources/lang/id-ID/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Cetak Semua Ditugaskan', 'name' => 'Nama lokasi', 'address' => 'Alamat', - 'address2' => 'Address Line 2', + 'address2' => 'Baris Alamat 2', 'zip' => 'Kode Pos', 'locations' => 'Lokasi', 'parent' => 'Induk', diff --git a/resources/lang/id/admin/manufacturers/message.php b/resources/lang/id-ID/admin/manufacturers/message.php similarity index 100% rename from resources/lang/id/admin/manufacturers/message.php rename to resources/lang/id-ID/admin/manufacturers/message.php diff --git a/resources/lang/id/admin/manufacturers/table.php b/resources/lang/id-ID/admin/manufacturers/table.php similarity index 100% rename from resources/lang/id/admin/manufacturers/table.php rename to resources/lang/id-ID/admin/manufacturers/table.php diff --git a/resources/lang/id/admin/models/general.php b/resources/lang/id-ID/admin/models/general.php similarity index 100% rename from resources/lang/id/admin/models/general.php rename to resources/lang/id-ID/admin/models/general.php diff --git a/resources/lang/id/admin/models/message.php b/resources/lang/id-ID/admin/models/message.php similarity index 100% rename from resources/lang/id/admin/models/message.php rename to resources/lang/id-ID/admin/models/message.php diff --git a/resources/lang/id/admin/models/table.php b/resources/lang/id-ID/admin/models/table.php similarity index 100% rename from resources/lang/id/admin/models/table.php rename to resources/lang/id-ID/admin/models/table.php diff --git a/resources/lang/id/admin/reports/general.php b/resources/lang/id-ID/admin/reports/general.php similarity index 100% rename from resources/lang/id/admin/reports/general.php rename to resources/lang/id-ID/admin/reports/general.php diff --git a/resources/lang/id/admin/reports/message.php b/resources/lang/id-ID/admin/reports/message.php similarity index 100% rename from resources/lang/id/admin/reports/message.php rename to resources/lang/id-ID/admin/reports/message.php diff --git a/resources/lang/id/admin/settings/general.php b/resources/lang/id-ID/admin/settings/general.php similarity index 98% rename from resources/lang/id/admin/settings/general.php rename to resources/lang/id-ID/admin/settings/general.php index 2965abdec8..59b8eb8cd5 100644 --- a/resources/lang/id/admin/settings/general.php +++ b/resources/lang/id-ID/admin/settings/general.php @@ -9,8 +9,9 @@ return [ 'ad_append_domain_help' => 'Pengguna tidak diharuskan untuk menulis "nama_pengguna@domain.local", mereka cukup mengetikkan "nama_pengguna".', 'admin_cc_email' => 'Tembusan Email', 'admin_cc_email_help' => 'Jika Anda ingin mengirim salinan email checkin / checkout yang dikirimkan ke pengguna akun email tambahan, masukkan di sini. Jika tidak, biarkan bidang ini kosong.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Ini adalah server Active Directory', - 'alerts' => 'Alerts', + 'alerts' => 'Pemberitahuan', 'alert_title' => 'Update Notification Settings', 'alert_email' => 'Kirim pemberitahuan kepada', 'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated', @@ -85,7 +86,7 @@ return [ 'ldap_integration' => 'Integrasi LDAP', 'ldap_settings' => 'Konfigurasi LDAP', 'ldap_client_tls_cert_help' => 'Sertifikat Client-Side TLS dan Kunci untuk koneksi LDAP biasanya hanya berguna di konfigurasi Google Workspace dengan "Secure LDAP". Keduanya diperlukan.', - 'ldap_client_tls_key' => 'LDAP Client-Side TLS key', + 'ldap_client_tls_key' => 'Kunci TLS Client-Side LDAP', 'ldap_location' => 'LDAP Location', 'ldap_location_help' => 'The Ldap Location field should be used if an OU is not being used in the Base Bind DN. Leave this blank if an OU search is being used.', 'ldap_login_test_help' => 'Masukkan nama pengguna dan kata sandi LDAP yang valid dari DN dasar yang Anda tentukan di atas untuk menguji apakah pengaturan login LDAP Anda telah dikonfigurasi dengan benar. PERTAMA-TAMA ANDA HARUS MENYIMPAN PENGATURAN LDAP ANDA.', @@ -125,7 +126,7 @@ return [ 'login' => 'Login Attempts', 'login_attempt' => 'Login Attempt', 'login_ip' => 'IP Address', - 'login_success' => 'Success?', + 'login_success' => 'Sukses?', 'login_user_agent' => 'User Agent', 'login_help' => 'List of attempted logins', 'login_note' => 'Login Catatan', @@ -316,32 +317,32 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Pembersihan catatan yang telah terhapus', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Nomor Karyawan', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', 'setup_migrations' => 'Database Migrations ::', 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', + 'setup_successful_migrations' => 'Tabel database Anda telah dibuat', + 'setup_migration_output' => 'Keluaran migrasi:', + 'setup_migration_create_user' => 'Selanjutnya: Buat Pengguna', 'ldap_settings_link' => 'LDAP Settings Page', 'slack_test' => 'Test Integration', 'label2_enable' => 'New Label Engine', 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Judul', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Tipe Barcode 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/id/admin/settings/message.php b/resources/lang/id-ID/admin/settings/message.php similarity index 100% rename from resources/lang/id/admin/settings/message.php rename to resources/lang/id-ID/admin/settings/message.php diff --git a/resources/lang/id-ID/admin/settings/table.php b/resources/lang/id-ID/admin/settings/table.php new file mode 100644 index 0000000000..2ff8f0a6da --- /dev/null +++ b/resources/lang/id-ID/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Dibuat', + 'size' => 'Size', +); diff --git a/resources/lang/id/admin/statuslabels/message.php b/resources/lang/id-ID/admin/statuslabels/message.php similarity index 96% rename from resources/lang/id/admin/statuslabels/message.php rename to resources/lang/id-ID/admin/statuslabels/message.php index 72facaeb85..54c0612907 100644 --- a/resources/lang/id/admin/statuslabels/message.php +++ b/resources/lang/id-ID/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Label status tidak ada.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Saat ini label status tersebut terhubung dengan 1 aset dan tidak dapat di hapus. Silahkan perbarui aset anda sehingga tidak terhubung dan kemudian coba kembali. ', 'create' => [ diff --git a/resources/lang/id/admin/statuslabels/table.php b/resources/lang/id-ID/admin/statuslabels/table.php similarity index 100% rename from resources/lang/id/admin/statuslabels/table.php rename to resources/lang/id-ID/admin/statuslabels/table.php diff --git a/resources/lang/id/admin/suppliers/message.php b/resources/lang/id-ID/admin/suppliers/message.php similarity index 100% rename from resources/lang/id/admin/suppliers/message.php rename to resources/lang/id-ID/admin/suppliers/message.php diff --git a/resources/lang/id/admin/suppliers/table.php b/resources/lang/id-ID/admin/suppliers/table.php similarity index 100% rename from resources/lang/id/admin/suppliers/table.php rename to resources/lang/id-ID/admin/suppliers/table.php diff --git a/resources/lang/id/admin/users/general.php b/resources/lang/id-ID/admin/users/general.php similarity index 97% rename from resources/lang/id/admin/users/general.php rename to resources/lang/id-ID/admin/users/general.php index 9ffbe16c6f..c2eaa92944 100644 --- a/resources/lang/id/admin/users/general.php +++ b/resources/lang/id-ID/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Lihat pengguna: name', 'usercsv' => 'Berkas CSV', 'two_factor_admin_optin_help' => 'Pengaturan admin Anda saat ini memungkinkan penegakan dua faktor otentikasi selektif.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Perangkat 2FA Terdaftar', + 'two_factor_active' => '2FA Aktif', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/id/admin/users/message.php b/resources/lang/id-ID/admin/users/message.php similarity index 98% rename from resources/lang/id/admin/users/message.php rename to resources/lang/id-ID/admin/users/message.php index 7253c84fa1..deea2651a1 100644 --- a/resources/lang/id/admin/users/message.php +++ b/resources/lang/id-ID/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Anda sukses menolak aset ini.', 'bulk_manager_warn' => 'Pengguna Anda telah berhasil diperbarui, namun entri pengelola Anda tidak disimpan karena manajer yang Anda pilih juga ada dalam daftar pengguna untuk diedit, dan pengguna mungkin bukan manajer mereka sendiri. Silakan pilih pengguna Anda lagi, tidak termasuk manajernya.', 'user_exists' => 'Pengguna sudah ada!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Pengguna tidak ada.', 'user_login_required' => 'Kolom login wajib di-isi', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Kata sandi wajib di-isi.', diff --git a/resources/lang/id/admin/users/table.php b/resources/lang/id-ID/admin/users/table.php similarity index 95% rename from resources/lang/id/admin/users/table.php rename to resources/lang/id-ID/admin/users/table.php index bdd7817710..799093f9a2 100644 --- a/resources/lang/id/admin/users/table.php +++ b/resources/lang/id-ID/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manajer', 'managed_locations' => 'Lokasi yang Dikelola', 'name' => 'Nama', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Catatan', 'password_confirm' => 'Konfirmasikan Kata Sandi', 'password' => 'Kata sandi', diff --git a/resources/lang/id/auth.php b/resources/lang/id-ID/auth.php similarity index 100% rename from resources/lang/id/auth.php rename to resources/lang/id-ID/auth.php diff --git a/resources/lang/id/auth/general.php b/resources/lang/id-ID/auth/general.php similarity index 100% rename from resources/lang/id/auth/general.php rename to resources/lang/id-ID/auth/general.php diff --git a/resources/lang/id/auth/message.php b/resources/lang/id-ID/auth/message.php similarity index 100% rename from resources/lang/id/auth/message.php rename to resources/lang/id-ID/auth/message.php diff --git a/resources/lang/id/button.php b/resources/lang/id-ID/button.php similarity index 90% rename from resources/lang/id/button.php rename to resources/lang/id-ID/button.php index 7a70263cb7..d9850e41a2 100644 --- a/resources/lang/id/button.php +++ b/resources/lang/id-ID/button.php @@ -17,8 +17,8 @@ return [ 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', 'send_password_link' => 'Kirim Tautan Atur Ulang Kata Sandi', 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', + 'bulk_actions' => 'Aksi Massal', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Baru', ]; diff --git a/resources/lang/id/general.php b/resources/lang/id-ID/general.php similarity index 97% rename from resources/lang/id/general.php rename to resources/lang/id-ID/general.php index f1d90289af..e0016e7e01 100644 --- a/resources/lang/id/general.php +++ b/resources/lang/id-ID/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Jenis file yang diterima adalah jpg, webp, png, gif, dan svg. Ukuran unggahan maksimum yang diizinkan adalah :size.', 'unaccepted_image_type' => 'Pilihan file gambar ini tidak dapat dibaca. Jenis file yang diterima adalah jpg, webp, png, gif, dan svg. Tipe file ini adalah :mimetype.', 'import' => 'Impor', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Pengimporan', 'importing_help' => 'Anda dapat mengimpor aset, aksesori, lisensi, komponen, bahan habis pakai, dan pengguna melalui file CSV.

CSV harus dibatasi koma dan diformat dengan header yang cocok dengan header di contoh CSV dalam dokumentasi.', 'import-history' => 'Sejarah Impor', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Pemasok', 'suppliers' => 'Pemasok', 'sure_to_delete' => 'Yakin ingin menghapusnya', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Apakah Anda yakin untuk menghapus kategori ini?', 'delete_what' => 'Delete :item', 'submit' => 'Menyerahkan', 'target' => 'Target', @@ -371,11 +372,11 @@ return [ 'consumables_count' => 'Hitung Barang Habis Pakai', 'components_count' => 'Hitung Komponen', 'licenses_count' => 'Hitung Lisensi', - 'notification_error' => 'Error', + 'notification_error' => 'Kesalahan', 'notification_error_hint' => 'Mohon periksa formulir untuk mengetahui kesalahan', 'notification_bulk_error_hint' => 'Kolom berikut ini mendeteksi kesalahan dan tidak dapat di edit:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_success' => 'Sukses', + 'notification_warning' => 'Peringatan', 'notification_info' => 'Info', 'asset_information' => 'Informasi Aset', 'model_name' => 'Nama Model', @@ -486,10 +487,17 @@ return [ 'address2' => 'Baris Alamat 2', 'import_note' => 'Telah di impor menggunakan csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% lengkap', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'ubah', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/id/help.php b/resources/lang/id-ID/help.php similarity index 100% rename from resources/lang/id/help.php rename to resources/lang/id-ID/help.php diff --git a/resources/lang/id-ID/localizations.php b/resources/lang/id-ID/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/id-ID/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/id/mail.php b/resources/lang/id-ID/mail.php similarity index 100% rename from resources/lang/id/mail.php rename to resources/lang/id-ID/mail.php diff --git a/resources/lang/id/pagination.php b/resources/lang/id-ID/pagination.php similarity index 100% rename from resources/lang/id/pagination.php rename to resources/lang/id-ID/pagination.php diff --git a/resources/lang/id-ID/passwords.php b/resources/lang/id-ID/passwords.php new file mode 100644 index 0000000000..d4b215efe9 --- /dev/null +++ b/resources/lang/id-ID/passwords.php @@ -0,0 +1,9 @@ + 'Jika alamat email anda ada di sistem kami, email pemulihan kata sandi telah dikirim.', + 'user' => 'Jika alamat email anda ada di sistem kami, email pemulihan kata sandi telah dikirim.', + 'token' => 'This password reset token is invalid or expired, or does not match the username provided.', + 'reset' => 'Your password has been reset!', + 'password_change' => 'Your password has been updated!', +]; diff --git a/resources/lang/id/reminders.php b/resources/lang/id-ID/reminders.php similarity index 100% rename from resources/lang/id/reminders.php rename to resources/lang/id-ID/reminders.php diff --git a/resources/lang/id/table.php b/resources/lang/id-ID/table.php similarity index 100% rename from resources/lang/id/table.php rename to resources/lang/id-ID/table.php diff --git a/resources/lang/id/validation.php b/resources/lang/id-ID/validation.php similarity index 99% rename from resources/lang/id/validation.php rename to resources/lang/id-ID/validation.php index a8b4308e5d..4b20e79ee2 100644 --- a/resources/lang/id/validation.php +++ b/resources/lang/id-ID/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute harus unik.', 'non_circular' => ':attribute tidak boleh membuat referensi melingkar.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/id/admin/asset_maintenances/form.php b/resources/lang/id/admin/asset_maintenances/form.php deleted file mode 100644 index d6074dd9fd..0000000000 --- a/resources/lang/id/admin/asset_maintenances/form.php +++ /dev/null @@ -1,14 +0,0 @@ - 'Asset Maintenance Type', - 'title' => 'Judul', - 'start_date' => 'Start Date', - 'completion_date' => 'Completion Date', - 'cost' => 'Biaya', - 'is_warranty' => 'Pengembangan Garansi', - 'asset_maintenance_time' => 'Asset Maintenance Time (in days)', - 'notes' => 'Catatan', - 'update' => 'Update Asset Maintenance', - 'create' => 'Create Asset Maintenance' - ]; diff --git a/resources/lang/id/admin/labels/table.php b/resources/lang/id/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/id/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/id/admin/settings/table.php b/resources/lang/id/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/id/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/id/localizations.php b/resources/lang/id/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/id/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/hr/account/general.php b/resources/lang/is-IS/account/general.php similarity index 100% rename from resources/lang/hr/account/general.php rename to resources/lang/is-IS/account/general.php diff --git a/resources/lang/is/admin/accessories/general.php b/resources/lang/is-IS/admin/accessories/general.php similarity index 100% rename from resources/lang/is/admin/accessories/general.php rename to resources/lang/is-IS/admin/accessories/general.php diff --git a/resources/lang/is/admin/accessories/message.php b/resources/lang/is-IS/admin/accessories/message.php similarity index 100% rename from resources/lang/is/admin/accessories/message.php rename to resources/lang/is-IS/admin/accessories/message.php diff --git a/resources/lang/is/admin/accessories/table.php b/resources/lang/is-IS/admin/accessories/table.php similarity index 100% rename from resources/lang/is/admin/accessories/table.php rename to resources/lang/is-IS/admin/accessories/table.php diff --git a/resources/lang/is/admin/asset_maintenances/form.php b/resources/lang/is-IS/admin/asset_maintenances/form.php similarity index 90% rename from resources/lang/is/admin/asset_maintenances/form.php rename to resources/lang/is-IS/admin/asset_maintenances/form.php index b8d7dd7117..7f2ce90521 100644 --- a/resources/lang/is/admin/asset_maintenances/form.php +++ b/resources/lang/is-IS/admin/asset_maintenances/form.php @@ -3,7 +3,7 @@ return [ 'asset_maintenance_type' => 'Asset Maintenance Type', 'title' => 'Titill', - 'start_date' => 'Start Date', + 'start_date' => 'Upphafsdagsetning', 'completion_date' => 'Completion Date', 'cost' => 'Kostnaður', 'is_warranty' => 'Warranty Improvement', diff --git a/resources/lang/is/admin/asset_maintenances/general.php b/resources/lang/is-IS/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/is/admin/asset_maintenances/general.php rename to resources/lang/is-IS/admin/asset_maintenances/general.php diff --git a/resources/lang/is/admin/asset_maintenances/message.php b/resources/lang/is-IS/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/is/admin/asset_maintenances/message.php rename to resources/lang/is-IS/admin/asset_maintenances/message.php diff --git a/resources/lang/is/admin/asset_maintenances/table.php b/resources/lang/is-IS/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/is/admin/asset_maintenances/table.php rename to resources/lang/is-IS/admin/asset_maintenances/table.php diff --git a/resources/lang/is/admin/categories/general.php b/resources/lang/is-IS/admin/categories/general.php similarity index 100% rename from resources/lang/is/admin/categories/general.php rename to resources/lang/is-IS/admin/categories/general.php diff --git a/resources/lang/is/admin/categories/message.php b/resources/lang/is-IS/admin/categories/message.php similarity index 100% rename from resources/lang/is/admin/categories/message.php rename to resources/lang/is-IS/admin/categories/message.php diff --git a/resources/lang/is/admin/categories/table.php b/resources/lang/is-IS/admin/categories/table.php similarity index 100% rename from resources/lang/is/admin/categories/table.php rename to resources/lang/is-IS/admin/categories/table.php diff --git a/resources/lang/is/admin/companies/general.php b/resources/lang/is-IS/admin/companies/general.php similarity index 87% rename from resources/lang/is/admin/companies/general.php rename to resources/lang/is-IS/admin/companies/general.php index 109272db6c..14251dcc32 100644 --- a/resources/lang/is/admin/companies/general.php +++ b/resources/lang/is-IS/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Veldu fyrirtæki', - 'about_companies' => 'About Companies', + 'about_companies' => 'Um fyrirtæki', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/is/admin/companies/message.php b/resources/lang/is-IS/admin/companies/message.php similarity index 100% rename from resources/lang/is/admin/companies/message.php rename to resources/lang/is-IS/admin/companies/message.php diff --git a/resources/lang/is/admin/companies/table.php b/resources/lang/is-IS/admin/companies/table.php similarity index 100% rename from resources/lang/is/admin/companies/table.php rename to resources/lang/is-IS/admin/companies/table.php diff --git a/resources/lang/is/admin/components/general.php b/resources/lang/is-IS/admin/components/general.php similarity index 86% rename from resources/lang/is/admin/components/general.php rename to resources/lang/is-IS/admin/components/general.php index 6c31e3177c..c6c35281da 100644 --- a/resources/lang/is/admin/components/general.php +++ b/resources/lang/is-IS/admin/components/general.php @@ -9,8 +9,8 @@ return array( 'edit' => 'Breyta íhluti', 'date' => 'Innkaups dagsetning', 'order' => 'Pöntunarnúmer', - 'remaining' => 'Remaining', - 'total' => 'Total', + 'remaining' => 'Eftir', + 'total' => 'Samtals', 'update' => 'Uppfæra íhlut', 'checkin_limit' => 'Amount checked in must be equal to or less than :assigned_qty' ); diff --git a/resources/lang/so/admin/components/message.php b/resources/lang/is-IS/admin/components/message.php similarity index 85% rename from resources/lang/so/admin/components/message.php rename to resources/lang/is-IS/admin/components/message.php index 0a7dd8d954..5048622b70 100644 --- a/resources/lang/so/admin/components/message.php +++ b/resources/lang/is-IS/admin/components/message.php @@ -23,14 +23,14 @@ return array( 'checkout' => array( 'error' => 'Component was not checked out, please try again', 'success' => 'Component checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Notandinn er ónothæfur. Vinsamlegast reyndu aftur.', 'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ', ), 'checkin' => array( 'error' => 'Component was not checked in, please try again', 'success' => 'Component checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'Þessi notandi er ónothæfur, vinsamlegast reyndu aftur.' ) diff --git a/resources/lang/is/admin/components/table.php b/resources/lang/is-IS/admin/components/table.php similarity index 100% rename from resources/lang/is/admin/components/table.php rename to resources/lang/is-IS/admin/components/table.php diff --git a/resources/lang/is/admin/consumables/general.php b/resources/lang/is-IS/admin/consumables/general.php similarity index 79% rename from resources/lang/is/admin/consumables/general.php rename to resources/lang/is-IS/admin/consumables/general.php index 2ead15a0a5..c9544dd8dd 100644 --- a/resources/lang/is/admin/consumables/general.php +++ b/resources/lang/is-IS/admin/consumables/general.php @@ -5,7 +5,7 @@ return array( 'consumable_name' => 'Heiti rekstrarvöru', 'create' => 'Create Consumable', 'item_no' => 'Item No.', - 'remaining' => 'Remaining', - 'total' => 'Total', + 'remaining' => 'Eftir', + 'total' => 'Samtals', 'update' => 'Update Consumable', ); diff --git a/resources/lang/so/admin/consumables/message.php b/resources/lang/is-IS/admin/consumables/message.php similarity index 85% rename from resources/lang/so/admin/consumables/message.php rename to resources/lang/is-IS/admin/consumables/message.php index c0d0aa7f68..ada4f4b348 100644 --- a/resources/lang/so/admin/consumables/message.php +++ b/resources/lang/is-IS/admin/consumables/message.php @@ -23,14 +23,14 @@ return array( 'checkout' => array( 'error' => 'Consumable was not checked out, please try again', 'success' => 'Consumable checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Notandinn er ónothæfur. Vinsamlegast reyndu aftur.', 'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ', ), 'checkin' => array( 'error' => 'Consumable was not checked in, please try again', 'success' => 'Consumable checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'Þessi notandi er ónothæfur, vinsamlegast reyndu aftur.' ) diff --git a/resources/lang/is/admin/consumables/table.php b/resources/lang/is-IS/admin/consumables/table.php similarity index 100% rename from resources/lang/is/admin/consumables/table.php rename to resources/lang/is-IS/admin/consumables/table.php diff --git a/resources/lang/is/admin/custom_fields/general.php b/resources/lang/is-IS/admin/custom_fields/general.php similarity index 100% rename from resources/lang/is/admin/custom_fields/general.php rename to resources/lang/is-IS/admin/custom_fields/general.php diff --git a/resources/lang/is/admin/custom_fields/message.php b/resources/lang/is-IS/admin/custom_fields/message.php similarity index 100% rename from resources/lang/is/admin/custom_fields/message.php rename to resources/lang/is-IS/admin/custom_fields/message.php diff --git a/resources/lang/is/admin/departments/message.php b/resources/lang/is-IS/admin/departments/message.php similarity index 100% rename from resources/lang/is/admin/departments/message.php rename to resources/lang/is-IS/admin/departments/message.php diff --git a/resources/lang/is/admin/departments/table.php b/resources/lang/is-IS/admin/departments/table.php similarity index 85% rename from resources/lang/is/admin/departments/table.php rename to resources/lang/is-IS/admin/departments/table.php index 25e70c7eb6..65e1ab1244 100644 --- a/resources/lang/is/admin/departments/table.php +++ b/resources/lang/is-IS/admin/departments/table.php @@ -4,7 +4,7 @@ return array( 'id' => 'ID', 'name' => 'Department Name', - 'manager' => 'Manager', + 'manager' => 'Yfirmaður', 'location' => 'Staðsetning', 'create' => 'Create Department', 'update' => 'Update Department', diff --git a/resources/lang/is/admin/depreciations/general.php b/resources/lang/is-IS/admin/depreciations/general.php similarity index 100% rename from resources/lang/is/admin/depreciations/general.php rename to resources/lang/is-IS/admin/depreciations/general.php diff --git a/resources/lang/is/admin/depreciations/message.php b/resources/lang/is-IS/admin/depreciations/message.php similarity index 100% rename from resources/lang/is/admin/depreciations/message.php rename to resources/lang/is-IS/admin/depreciations/message.php diff --git a/resources/lang/is/admin/depreciations/table.php b/resources/lang/is-IS/admin/depreciations/table.php similarity index 100% rename from resources/lang/is/admin/depreciations/table.php rename to resources/lang/is-IS/admin/depreciations/table.php diff --git a/resources/lang/is/admin/groups/message.php b/resources/lang/is-IS/admin/groups/message.php similarity index 100% rename from resources/lang/is/admin/groups/message.php rename to resources/lang/is-IS/admin/groups/message.php diff --git a/resources/lang/so/admin/groups/table.php b/resources/lang/is-IS/admin/groups/table.php similarity index 75% rename from resources/lang/so/admin/groups/table.php rename to resources/lang/is-IS/admin/groups/table.php index 61f060a116..36400b75ed 100644 --- a/resources/lang/so/admin/groups/table.php +++ b/resources/lang/is-IS/admin/groups/table.php @@ -3,7 +3,7 @@ return array( 'id' => 'Id', - 'name' => 'Name', + 'name' => 'Nafn', 'users' => '# of Users', ); diff --git a/resources/lang/is/admin/groups/titles.php b/resources/lang/is-IS/admin/groups/titles.php similarity index 100% rename from resources/lang/is/admin/groups/titles.php rename to resources/lang/is-IS/admin/groups/titles.php diff --git a/resources/lang/is/admin/hardware/form.php b/resources/lang/is-IS/admin/hardware/form.php similarity index 100% rename from resources/lang/is/admin/hardware/form.php rename to resources/lang/is-IS/admin/hardware/form.php diff --git a/resources/lang/is/admin/hardware/general.php b/resources/lang/is-IS/admin/hardware/general.php similarity index 100% rename from resources/lang/is/admin/hardware/general.php rename to resources/lang/is-IS/admin/hardware/general.php diff --git a/resources/lang/is/admin/hardware/message.php b/resources/lang/is-IS/admin/hardware/message.php similarity index 95% rename from resources/lang/is/admin/hardware/message.php rename to resources/lang/is-IS/admin/hardware/message.php index c78df68773..923b64b88a 100644 --- a/resources/lang/is/admin/hardware/message.php +++ b/resources/lang/is-IS/admin/hardware/message.php @@ -68,7 +68,7 @@ return [ 'checkout' => [ 'error' => 'Eigninni var ekki ráðstafað, vinsamlegast reyndu aftur', 'success' => 'Eigninni var ráðstafað.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Notandinn er ónothæfur. Vinsamlegast reyndu aftur.', 'not_available' => 'Þessi eign er ekki laus til ráðstöfunar!', 'no_assets_selected' => 'Þú verður að velja að lágmarki eina eign úr listanum', ], @@ -76,7 +76,7 @@ return [ 'checkin' => [ 'error' => 'Eigninni var ekki skilað, vinsamlegast reyndu aftur', 'success' => 'Eigninni var skilað.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Þessi notandi er ónothæfur, vinsamlegast reyndu aftur.', 'already_checked_in' => 'Þessari eign hefur þegar verið skilað.', ], diff --git a/resources/lang/is/admin/hardware/table.php b/resources/lang/is-IS/admin/hardware/table.php similarity index 97% rename from resources/lang/is/admin/hardware/table.php rename to resources/lang/is-IS/admin/hardware/table.php index 2f0205e891..9d34f96625 100644 --- a/resources/lang/is/admin/hardware/table.php +++ b/resources/lang/is-IS/admin/hardware/table.php @@ -12,7 +12,7 @@ return [ 'current_value' => 'Núvirði', 'diff' => 'Mismunur', 'dl_csv' => 'Hlaða niður CSV', - 'eol' => 'EOL', + 'eol' => 'Lok línu', 'id' => 'ID', 'last_checkin_date' => 'Last Checkin Date', 'location' => 'Staðsetning', diff --git a/resources/lang/is/admin/kits/general.php b/resources/lang/is-IS/admin/kits/general.php similarity index 93% rename from resources/lang/is/admin/kits/general.php rename to resources/lang/is-IS/admin/kits/general.php index 5a91756bfb..4d36462c5e 100644 --- a/resources/lang/is/admin/kits/general.php +++ b/resources/lang/is-IS/admin/kits/general.php @@ -41,10 +41,10 @@ return [ 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', + 'kit_created' => 'Útbúnaðarlistinn var búinn til', + 'kit_updated' => 'Útbúnaðarlistanum var breytt', 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', + 'kit_deleted' => 'Útbúnaðarlistanum var eytt', 'kit_model_updated' => 'Model was successfully updated', 'kit_model_detached' => 'Model was successfully detached', ]; diff --git a/resources/lang/id/admin/labels/message.php b/resources/lang/is-IS/admin/labels/message.php similarity index 100% rename from resources/lang/id/admin/labels/message.php rename to resources/lang/is-IS/admin/labels/message.php diff --git a/resources/lang/cy/admin/labels/table.php b/resources/lang/is-IS/admin/labels/table.php similarity index 71% rename from resources/lang/cy/admin/labels/table.php rename to resources/lang/is-IS/admin/labels/table.php index 87dee4bad0..f8f9d78c1b 100644 --- a/resources/lang/cy/admin/labels/table.php +++ b/resources/lang/is-IS/admin/labels/table.php @@ -3,11 +3,11 @@ return [ 'labels_per_page' => 'Labels', - 'support_fields' => 'Fields', + 'support_fields' => 'Svæði', 'support_asset_tag' => 'Tag', 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Titill', ]; \ No newline at end of file diff --git a/resources/lang/is/admin/licenses/form.php b/resources/lang/is-IS/admin/licenses/form.php similarity index 100% rename from resources/lang/is/admin/licenses/form.php rename to resources/lang/is-IS/admin/licenses/form.php diff --git a/resources/lang/is/admin/licenses/general.php b/resources/lang/is-IS/admin/licenses/general.php similarity index 94% rename from resources/lang/is/admin/licenses/general.php rename to resources/lang/is-IS/admin/licenses/general.php index 0ed16b579b..7600dfa546 100644 --- a/resources/lang/is/admin/licenses/general.php +++ b/resources/lang/is-IS/admin/licenses/general.php @@ -7,10 +7,10 @@ return array( 'checkout_history' => 'Checkout History', 'checkout' => 'Checkout License Seat', 'edit' => 'Breyta leyfi', - 'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', + 'filetype_info' => 'Leyfðar skráar týpur eru png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', 'clone' => 'Afrita leyfi', - 'history_for' => 'History for ', - 'in_out' => 'In/Out', + 'history_for' => 'Saga fyrir ', + 'in_out' => 'Inn/Út', 'info' => 'License Info', 'license_seats' => 'License Seats', 'seat' => 'Seat', diff --git a/resources/lang/is/admin/licenses/message.php b/resources/lang/is-IS/admin/licenses/message.php similarity index 100% rename from resources/lang/is/admin/licenses/message.php rename to resources/lang/is-IS/admin/licenses/message.php diff --git a/resources/lang/is/admin/licenses/table.php b/resources/lang/is-IS/admin/licenses/table.php similarity index 92% rename from resources/lang/is/admin/licenses/table.php rename to resources/lang/is-IS/admin/licenses/table.php index 99fc32320e..3ba6cf863c 100644 --- a/resources/lang/is/admin/licenses/table.php +++ b/resources/lang/is-IS/admin/licenses/table.php @@ -3,7 +3,7 @@ return array( 'assigned_to' => 'Úthlutað til', - 'checkout' => 'In/Out', + 'checkout' => 'Inn/Út', 'id' => 'ID', 'license_email' => 'License Email', 'license_name' => 'Licensed To', diff --git a/resources/lang/is/admin/locations/message.php b/resources/lang/is-IS/admin/locations/message.php similarity index 100% rename from resources/lang/is/admin/locations/message.php rename to resources/lang/is-IS/admin/locations/message.php diff --git a/resources/lang/is/admin/locations/table.php b/resources/lang/is-IS/admin/locations/table.php similarity index 97% rename from resources/lang/is/admin/locations/table.php rename to resources/lang/is-IS/admin/locations/table.php index 63f74455ff..1303a29da1 100644 --- a/resources/lang/is/admin/locations/table.php +++ b/resources/lang/is-IS/admin/locations/table.php @@ -18,7 +18,7 @@ return [ 'address2' => 'Address Line 2', 'zip' => 'Póstnúmer', 'locations' => 'Staðsetningar', - 'parent' => 'Parent', + 'parent' => 'Yfir', 'currency' => 'Gjaldmiðill staðsetningar', 'ldap_ou' => 'LDAP Search OU', 'user_name' => 'Notandanafn', diff --git a/resources/lang/is/admin/manufacturers/message.php b/resources/lang/is-IS/admin/manufacturers/message.php similarity index 100% rename from resources/lang/is/admin/manufacturers/message.php rename to resources/lang/is-IS/admin/manufacturers/message.php diff --git a/resources/lang/is/admin/manufacturers/table.php b/resources/lang/is-IS/admin/manufacturers/table.php similarity index 100% rename from resources/lang/is/admin/manufacturers/table.php rename to resources/lang/is-IS/admin/manufacturers/table.php diff --git a/resources/lang/tl/admin/models/general.php b/resources/lang/is-IS/admin/models/general.php similarity index 95% rename from resources/lang/tl/admin/models/general.php rename to resources/lang/is-IS/admin/models/general.php index 7e4a77adbc..9775c99403 100644 --- a/resources/lang/tl/admin/models/general.php +++ b/resources/lang/is-IS/admin/models/general.php @@ -12,7 +12,7 @@ return array( 'show_mac_address' => 'Show MAC address field in assets in this model', 'view_deleted' => 'View Deleted', 'view_models' => 'View Models', - 'fieldset' => 'Fieldset', + 'fieldset' => 'Reitasett', 'no_custom_field' => 'No custom fields', 'add_default_values' => 'Add default values', ); diff --git a/resources/lang/is/admin/models/message.php b/resources/lang/is-IS/admin/models/message.php similarity index 100% rename from resources/lang/is/admin/models/message.php rename to resources/lang/is-IS/admin/models/message.php diff --git a/resources/lang/is/admin/models/table.php b/resources/lang/is-IS/admin/models/table.php similarity index 77% rename from resources/lang/is/admin/models/table.php rename to resources/lang/is-IS/admin/models/table.php index b2db9f34d3..4590eea581 100644 --- a/resources/lang/is/admin/models/table.php +++ b/resources/lang/is-IS/admin/models/table.php @@ -4,11 +4,11 @@ return array( 'create' => 'Create Asset Model', 'created_at' => 'Created at', - 'eol' => 'EOL', - 'modelnumber' => 'Model No.', + 'eol' => 'Lok línu', + 'modelnumber' => 'Tegundar Nr.', 'name' => 'Asset Model Name', 'numassets' => 'Eignir', - 'title' => 'Asset Models', + 'title' => 'Tegundir', 'update' => 'Update Asset Model', 'view' => 'View Asset Model', 'update' => 'Update Asset Model', diff --git a/resources/lang/is/admin/reports/general.php b/resources/lang/is-IS/admin/reports/general.php similarity index 100% rename from resources/lang/is/admin/reports/general.php rename to resources/lang/is-IS/admin/reports/general.php diff --git a/resources/lang/is/admin/reports/message.php b/resources/lang/is-IS/admin/reports/message.php similarity index 100% rename from resources/lang/is/admin/reports/message.php rename to resources/lang/is-IS/admin/reports/message.php diff --git a/resources/lang/is/admin/settings/general.php b/resources/lang/is-IS/admin/settings/general.php similarity index 99% rename from resources/lang/is/admin/settings/general.php rename to resources/lang/is-IS/admin/settings/general.php index e1d080b740..5c3c9b84f6 100644 --- a/resources/lang/is/admin/settings/general.php +++ b/resources/lang/is-IS/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'Senda afrit á', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Þetta er Active Directory þjónn', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -109,7 +110,7 @@ return [ 'ldap_pw_sync' => 'LDAP Password Sync', 'ldap_pw_sync_help' => 'Uncheck this box if you do not wish to keep LDAP passwords synced with local passwords. Disabling this means that your users may not be able to login if your LDAP server is unreachable for some reason.', 'ldap_username_field' => 'Username Field', - 'ldap_lname_field' => 'Last Name', + 'ldap_lname_field' => 'Eftirnafn', 'ldap_fname_field' => 'LDAP First Name', 'ldap_auth_filter_query' => 'LDAP Authentication query', 'ldap_version' => 'LDAP Version', @@ -199,7 +200,7 @@ return [ 'show_assigned_assets_help' => 'Display assets which were assigned to the other assets in View User -> Assets, View User -> Info -> Print All Assigned and in Account -> View Assigned Assets.', 'show_images_in_email' => 'Show images in emails', 'show_images_in_email_help' => 'Uncheck this box if your Snipe-IT installation is behind a VPN or closed network and users outside the network will not be able to load images served from this installation in their emails.', - 'site_name' => 'Site Name', + 'site_name' => 'Nafn vefsins', 'integrations' => 'Integrations', 'slack' => 'Slack', 'general_webhook' => 'General Webhook', @@ -222,7 +223,7 @@ return [ 'version_footer_help' => 'Specify who sees the Snipe-IT version and build number.', 'system' => 'System Information', 'update' => 'Update Settings', - 'value' => 'Value', + 'value' => 'Núvirði', 'brand' => 'Branding', 'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css', 'brand_help' => 'Logo, Site Name', @@ -319,7 +320,7 @@ return [ 'purge_help' => 'Purge Deleted Records', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Starfsmanna númer', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,7 +335,7 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Titill', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', diff --git a/resources/lang/is/admin/settings/message.php b/resources/lang/is-IS/admin/settings/message.php similarity index 97% rename from resources/lang/is/admin/settings/message.php rename to resources/lang/is-IS/admin/settings/message.php index dbdbac31d7..931b343710 100644 --- a/resources/lang/is/admin/settings/message.php +++ b/resources/lang/is-IS/admin/settings/message.php @@ -41,6 +41,6 @@ return [ '500' => '500 Server Error.', 'error' => 'Something went wrong. :app responded with: :error_message', 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', - 'error_misc' => 'Something went wrong. :( ', + 'error_misc' => 'Eitthvað fór úrskeiðis. :( ', ] ]; diff --git a/resources/lang/is-IS/admin/settings/table.php b/resources/lang/is-IS/admin/settings/table.php new file mode 100644 index 0000000000..082b2f6c7b --- /dev/null +++ b/resources/lang/is-IS/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Stofnað', + 'size' => 'Size', +); diff --git a/resources/lang/is/admin/statuslabels/message.php b/resources/lang/is-IS/admin/statuslabels/message.php similarity index 85% rename from resources/lang/is/admin/statuslabels/message.php rename to resources/lang/is-IS/admin/statuslabels/message.php index 58079972fd..ca61d73a13 100644 --- a/resources/lang/is/admin/statuslabels/message.php +++ b/resources/lang/is-IS/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Þessum eignum er ekki hægt að úthluta til notenda.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Þessum eignum er hægt að ráðstafa. Þegar þeim er ráðstafað fá þær almenna stöðugildið Í notkun.', 'archived' => 'Þessum eignum er ekki hægt að ráðstafa og þær sjást eingöngu í þar til gerðum lista. Þetta er gagnlegt til að varðveita upplýsingar um eignir sem nýta má við gerð fjárhagsáætlana eða til að halda utan um sögu eigna á sama tíma og þeim er haldið utan við þann eignalista sem unnið er með daglega.', 'pending' => 'Þessum eignum er ekki hægt að úthluta til notenda að svo stöddu. Oft notað fyrir hluti sem eru í viðgerð en er viðbúið að verði teknir aftur í notkun.', ], diff --git a/resources/lang/is/admin/statuslabels/table.php b/resources/lang/is-IS/admin/statuslabels/table.php similarity index 95% rename from resources/lang/is/admin/statuslabels/table.php rename to resources/lang/is-IS/admin/statuslabels/table.php index 1741295201..44d2a5b365 100644 --- a/resources/lang/is/admin/statuslabels/table.php +++ b/resources/lang/is-IS/admin/statuslabels/table.php @@ -13,7 +13,7 @@ return array( 'pending' => 'Á bið', 'status_type' => 'Tegund stöðu', 'show_in_nav' => 'Sýna í hliðarvalmynd', - 'title' => 'Status Labels', + 'title' => 'Stöðu merkingar', 'undeployable' => 'Ónothæfar', 'update' => 'Update Status Label', ); diff --git a/resources/lang/is/admin/suppliers/message.php b/resources/lang/is-IS/admin/suppliers/message.php similarity index 100% rename from resources/lang/is/admin/suppliers/message.php rename to resources/lang/is-IS/admin/suppliers/message.php diff --git a/resources/lang/is/admin/suppliers/table.php b/resources/lang/is-IS/admin/suppliers/table.php similarity index 91% rename from resources/lang/is/admin/suppliers/table.php rename to resources/lang/is-IS/admin/suppliers/table.php index 7392f997ca..4600a4909c 100644 --- a/resources/lang/is/admin/suppliers/table.php +++ b/resources/lang/is-IS/admin/suppliers/table.php @@ -14,9 +14,9 @@ return array( 'id' => 'ID', 'licenses' => 'Leyfi', 'name' => 'Heiti birgja', - 'notes' => 'Notes', + 'notes' => 'Athugasemdir', 'phone' => 'Sími', - 'state' => 'State', + 'state' => 'Fylki', 'suppliers' => 'Birgjar', 'update' => 'Update Supplier', 'url' => 'URL', diff --git a/resources/lang/is/admin/users/general.php b/resources/lang/is-IS/admin/users/general.php similarity index 96% rename from resources/lang/is/admin/users/general.php rename to resources/lang/is-IS/admin/users/general.php index 44ecfe8f02..e699e9bf31 100644 --- a/resources/lang/is/admin/users/general.php +++ b/resources/lang/is-IS/admin/users/general.php @@ -14,7 +14,7 @@ return [ 'history_user' => 'Saga :name', 'info' => 'Upplýsingar', 'restore_user' => 'Click here to restore them.', - 'last_login' => 'Last Login', + 'last_login' => 'Siðasta innskráning', 'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.', 'print_assigned' => 'Prenta allt skráð', 'email_assigned' => 'Senda t-póst með öllum skráðum búnaði (Email List of All Assigned)', @@ -36,7 +36,7 @@ return [ 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', 'remove_group_memberships' => 'Remove Group Memberships', 'warning_deletion_information' => 'Þú ert að fara skrá ALLA hluti inn frá :count user(s) hér að neðan. Nöfn kerfisstjórar eru uppljómuð með rauðu.', - 'update_user_assets_status' => 'Update all assets for these users to this status', + 'update_user_assets_status' => 'Uppfæra allar eignir fyrir þessa notendur í þessa stöðu', 'checkin_user_properties' => 'Check in all properties associated with these users', 'remote_label' => 'This is a remote user', 'remote' => 'Remote', diff --git a/resources/lang/is/admin/users/message.php b/resources/lang/is-IS/admin/users/message.php similarity index 100% rename from resources/lang/is/admin/users/message.php rename to resources/lang/is-IS/admin/users/message.php diff --git a/resources/lang/is/admin/users/table.php b/resources/lang/is-IS/admin/users/table.php similarity index 95% rename from resources/lang/is/admin/users/table.php rename to resources/lang/is-IS/admin/users/table.php index c667d2f70a..c2d222e7df 100644 --- a/resources/lang/is/admin/users/table.php +++ b/resources/lang/is-IS/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Yfirmaður', 'managed_locations' => 'Managed Locations', 'name' => 'Nafn', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Athugasemdir', 'password_confirm' => 'Staðfesta lykilorð', 'password' => 'Lykilorð', diff --git a/resources/lang/is/auth.php b/resources/lang/is-IS/auth.php similarity index 100% rename from resources/lang/is/auth.php rename to resources/lang/is-IS/auth.php diff --git a/resources/lang/is/auth/general.php b/resources/lang/is-IS/auth/general.php similarity index 100% rename from resources/lang/is/auth/general.php rename to resources/lang/is-IS/auth/general.php diff --git a/resources/lang/is/auth/message.php b/resources/lang/is-IS/auth/message.php similarity index 100% rename from resources/lang/is/auth/message.php rename to resources/lang/is-IS/auth/message.php diff --git a/resources/lang/is/button.php b/resources/lang/is-IS/button.php similarity index 100% rename from resources/lang/is/button.php rename to resources/lang/is-IS/button.php diff --git a/resources/lang/is/general.php b/resources/lang/is-IS/general.php similarity index 96% rename from resources/lang/is/general.php rename to resources/lang/is-IS/general.php index c5dfa1ba67..352db9b8ec 100644 --- a/resources/lang/is/general.php +++ b/resources/lang/is-IS/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Flytja inn', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Saga innflutninga', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Framleiðandi', 'suppliers' => 'Framleiðendur', 'sure_to_delete' => 'Ertu viss um að þú viljir eyða', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Ertu viss um að þú viljir eyða þessum :item?', 'delete_what' => 'Delete :item', 'submit' => 'Staðfesta', 'target' => 'Merking', @@ -371,15 +372,15 @@ return [ 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error', + 'notification_error' => 'Villa', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_info' => 'Upplýsingar', 'asset_information' => 'Upplýsingar um eign', - 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'model_name' => 'Model Nafn', + 'asset_name' => 'Heiti eignar', 'consumable_information' => 'Consumable Information:', 'consumable_name' => 'Consumable Name:', 'accessory_information' => 'Accessory Information:', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':nafn hlutar', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% lokið', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'breyta', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/is/help.php b/resources/lang/is-IS/help.php similarity index 88% rename from resources/lang/is/help.php rename to resources/lang/is-IS/help.php index 47229ea667..8601d4799f 100644 --- a/resources/lang/is/help.php +++ b/resources/lang/is-IS/help.php @@ -13,7 +13,7 @@ return [ | */ - 'more_info_title' => 'More Info', + 'more_info_title' => 'Nánar', 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', @@ -21,7 +21,7 @@ return [ 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', + 'accessories' => 'Aukabúnaður er allur sá búnaður sem hefur ekki raðnúmer eða það sem þarf ekki að halda utan um. T.d. tölvumús eða lyklaborð.', 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', diff --git a/resources/lang/is/localizations.php b/resources/lang/is-IS/localizations.php similarity index 99% rename from resources/lang/is/localizations.php rename to resources/lang/is-IS/localizations.php index 4c6f76d4ff..c22074b8ea 100644 --- a/resources/lang/is/localizations.php +++ b/resources/lang/is-IS/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/is/mail.php b/resources/lang/is-IS/mail.php similarity index 100% rename from resources/lang/is/mail.php rename to resources/lang/is-IS/mail.php diff --git a/resources/lang/is/pagination.php b/resources/lang/is-IS/pagination.php similarity index 100% rename from resources/lang/is/pagination.php rename to resources/lang/is-IS/pagination.php diff --git a/resources/lang/id/passwords.php b/resources/lang/is-IS/passwords.php similarity index 100% rename from resources/lang/id/passwords.php rename to resources/lang/is-IS/passwords.php diff --git a/resources/lang/is/reminders.php b/resources/lang/is-IS/reminders.php similarity index 100% rename from resources/lang/is/reminders.php rename to resources/lang/is-IS/reminders.php diff --git a/resources/lang/is/table.php b/resources/lang/is-IS/table.php similarity index 100% rename from resources/lang/is/table.php rename to resources/lang/is-IS/table.php diff --git a/resources/lang/is/validation.php b/resources/lang/is-IS/validation.php similarity index 99% rename from resources/lang/is/validation.php rename to resources/lang/is-IS/validation.php index 38f92fe9ba..a060c615e9 100644 --- a/resources/lang/is/validation.php +++ b/resources/lang/is-IS/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/is/admin/labels/table.php b/resources/lang/is/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/is/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/is/admin/settings/table.php b/resources/lang/is/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/is/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/it/account/general.php b/resources/lang/it-IT/account/general.php similarity index 100% rename from resources/lang/it/account/general.php rename to resources/lang/it-IT/account/general.php diff --git a/resources/lang/it/admin/accessories/general.php b/resources/lang/it-IT/admin/accessories/general.php similarity index 100% rename from resources/lang/it/admin/accessories/general.php rename to resources/lang/it-IT/admin/accessories/general.php diff --git a/resources/lang/it/admin/accessories/message.php b/resources/lang/it-IT/admin/accessories/message.php similarity index 100% rename from resources/lang/it/admin/accessories/message.php rename to resources/lang/it-IT/admin/accessories/message.php diff --git a/resources/lang/it/admin/accessories/table.php b/resources/lang/it-IT/admin/accessories/table.php similarity index 100% rename from resources/lang/it/admin/accessories/table.php rename to resources/lang/it-IT/admin/accessories/table.php diff --git a/resources/lang/it/admin/asset_maintenances/form.php b/resources/lang/it-IT/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/it/admin/asset_maintenances/form.php rename to resources/lang/it-IT/admin/asset_maintenances/form.php diff --git a/resources/lang/it/admin/asset_maintenances/general.php b/resources/lang/it-IT/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/it/admin/asset_maintenances/general.php rename to resources/lang/it-IT/admin/asset_maintenances/general.php diff --git a/resources/lang/it/admin/asset_maintenances/message.php b/resources/lang/it-IT/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/it/admin/asset_maintenances/message.php rename to resources/lang/it-IT/admin/asset_maintenances/message.php diff --git a/resources/lang/it/admin/asset_maintenances/table.php b/resources/lang/it-IT/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/it/admin/asset_maintenances/table.php rename to resources/lang/it-IT/admin/asset_maintenances/table.php diff --git a/resources/lang/it/admin/categories/general.php b/resources/lang/it-IT/admin/categories/general.php similarity index 100% rename from resources/lang/it/admin/categories/general.php rename to resources/lang/it-IT/admin/categories/general.php diff --git a/resources/lang/it/admin/categories/message.php b/resources/lang/it-IT/admin/categories/message.php similarity index 100% rename from resources/lang/it/admin/categories/message.php rename to resources/lang/it-IT/admin/categories/message.php diff --git a/resources/lang/it/admin/categories/table.php b/resources/lang/it-IT/admin/categories/table.php similarity index 100% rename from resources/lang/it/admin/categories/table.php rename to resources/lang/it-IT/admin/categories/table.php diff --git a/resources/lang/it/admin/companies/general.php b/resources/lang/it-IT/admin/companies/general.php similarity index 100% rename from resources/lang/it/admin/companies/general.php rename to resources/lang/it-IT/admin/companies/general.php diff --git a/resources/lang/it/admin/companies/message.php b/resources/lang/it-IT/admin/companies/message.php similarity index 100% rename from resources/lang/it/admin/companies/message.php rename to resources/lang/it-IT/admin/companies/message.php diff --git a/resources/lang/it/admin/companies/table.php b/resources/lang/it-IT/admin/companies/table.php similarity index 100% rename from resources/lang/it/admin/companies/table.php rename to resources/lang/it-IT/admin/companies/table.php diff --git a/resources/lang/it/admin/components/general.php b/resources/lang/it-IT/admin/components/general.php similarity index 100% rename from resources/lang/it/admin/components/general.php rename to resources/lang/it-IT/admin/components/general.php diff --git a/resources/lang/it/admin/components/message.php b/resources/lang/it-IT/admin/components/message.php similarity index 100% rename from resources/lang/it/admin/components/message.php rename to resources/lang/it-IT/admin/components/message.php diff --git a/resources/lang/it/admin/components/table.php b/resources/lang/it-IT/admin/components/table.php similarity index 100% rename from resources/lang/it/admin/components/table.php rename to resources/lang/it-IT/admin/components/table.php diff --git a/resources/lang/it/admin/consumables/general.php b/resources/lang/it-IT/admin/consumables/general.php similarity index 100% rename from resources/lang/it/admin/consumables/general.php rename to resources/lang/it-IT/admin/consumables/general.php diff --git a/resources/lang/it/admin/consumables/message.php b/resources/lang/it-IT/admin/consumables/message.php similarity index 100% rename from resources/lang/it/admin/consumables/message.php rename to resources/lang/it-IT/admin/consumables/message.php diff --git a/resources/lang/it/admin/consumables/table.php b/resources/lang/it-IT/admin/consumables/table.php similarity index 100% rename from resources/lang/it/admin/consumables/table.php rename to resources/lang/it-IT/admin/consumables/table.php diff --git a/resources/lang/it/admin/custom_fields/general.php b/resources/lang/it-IT/admin/custom_fields/general.php similarity index 100% rename from resources/lang/it/admin/custom_fields/general.php rename to resources/lang/it-IT/admin/custom_fields/general.php diff --git a/resources/lang/it/admin/custom_fields/message.php b/resources/lang/it-IT/admin/custom_fields/message.php similarity index 100% rename from resources/lang/it/admin/custom_fields/message.php rename to resources/lang/it-IT/admin/custom_fields/message.php diff --git a/resources/lang/it/admin/departments/message.php b/resources/lang/it-IT/admin/departments/message.php similarity index 100% rename from resources/lang/it/admin/departments/message.php rename to resources/lang/it-IT/admin/departments/message.php diff --git a/resources/lang/it/admin/departments/table.php b/resources/lang/it-IT/admin/departments/table.php similarity index 100% rename from resources/lang/it/admin/departments/table.php rename to resources/lang/it-IT/admin/departments/table.php diff --git a/resources/lang/it/admin/depreciations/general.php b/resources/lang/it-IT/admin/depreciations/general.php similarity index 100% rename from resources/lang/it/admin/depreciations/general.php rename to resources/lang/it-IT/admin/depreciations/general.php diff --git a/resources/lang/it/admin/depreciations/message.php b/resources/lang/it-IT/admin/depreciations/message.php similarity index 100% rename from resources/lang/it/admin/depreciations/message.php rename to resources/lang/it-IT/admin/depreciations/message.php diff --git a/resources/lang/it/admin/depreciations/table.php b/resources/lang/it-IT/admin/depreciations/table.php similarity index 100% rename from resources/lang/it/admin/depreciations/table.php rename to resources/lang/it-IT/admin/depreciations/table.php diff --git a/resources/lang/it/admin/groups/message.php b/resources/lang/it-IT/admin/groups/message.php similarity index 100% rename from resources/lang/it/admin/groups/message.php rename to resources/lang/it-IT/admin/groups/message.php diff --git a/resources/lang/it/admin/groups/table.php b/resources/lang/it-IT/admin/groups/table.php similarity index 100% rename from resources/lang/it/admin/groups/table.php rename to resources/lang/it-IT/admin/groups/table.php diff --git a/resources/lang/it/admin/groups/titles.php b/resources/lang/it-IT/admin/groups/titles.php similarity index 100% rename from resources/lang/it/admin/groups/titles.php rename to resources/lang/it-IT/admin/groups/titles.php diff --git a/resources/lang/it/admin/hardware/form.php b/resources/lang/it-IT/admin/hardware/form.php similarity index 100% rename from resources/lang/it/admin/hardware/form.php rename to resources/lang/it-IT/admin/hardware/form.php diff --git a/resources/lang/it/admin/hardware/general.php b/resources/lang/it-IT/admin/hardware/general.php similarity index 100% rename from resources/lang/it/admin/hardware/general.php rename to resources/lang/it-IT/admin/hardware/general.php diff --git a/resources/lang/it/admin/hardware/message.php b/resources/lang/it-IT/admin/hardware/message.php similarity index 100% rename from resources/lang/it/admin/hardware/message.php rename to resources/lang/it-IT/admin/hardware/message.php diff --git a/resources/lang/it/admin/hardware/table.php b/resources/lang/it-IT/admin/hardware/table.php similarity index 100% rename from resources/lang/it/admin/hardware/table.php rename to resources/lang/it-IT/admin/hardware/table.php diff --git a/resources/lang/it/admin/kits/general.php b/resources/lang/it-IT/admin/kits/general.php similarity index 100% rename from resources/lang/it/admin/kits/general.php rename to resources/lang/it-IT/admin/kits/general.php diff --git a/resources/lang/it/admin/labels/message.php b/resources/lang/it-IT/admin/labels/message.php similarity index 100% rename from resources/lang/it/admin/labels/message.php rename to resources/lang/it-IT/admin/labels/message.php diff --git a/resources/lang/it/admin/labels/table.php b/resources/lang/it-IT/admin/labels/table.php similarity index 100% rename from resources/lang/it/admin/labels/table.php rename to resources/lang/it-IT/admin/labels/table.php diff --git a/resources/lang/it/admin/licenses/form.php b/resources/lang/it-IT/admin/licenses/form.php similarity index 100% rename from resources/lang/it/admin/licenses/form.php rename to resources/lang/it-IT/admin/licenses/form.php diff --git a/resources/lang/it/admin/licenses/general.php b/resources/lang/it-IT/admin/licenses/general.php similarity index 100% rename from resources/lang/it/admin/licenses/general.php rename to resources/lang/it-IT/admin/licenses/general.php diff --git a/resources/lang/it/admin/licenses/message.php b/resources/lang/it-IT/admin/licenses/message.php similarity index 100% rename from resources/lang/it/admin/licenses/message.php rename to resources/lang/it-IT/admin/licenses/message.php diff --git a/resources/lang/it/admin/licenses/table.php b/resources/lang/it-IT/admin/licenses/table.php similarity index 100% rename from resources/lang/it/admin/licenses/table.php rename to resources/lang/it-IT/admin/licenses/table.php diff --git a/resources/lang/it/admin/locations/message.php b/resources/lang/it-IT/admin/locations/message.php similarity index 100% rename from resources/lang/it/admin/locations/message.php rename to resources/lang/it-IT/admin/locations/message.php diff --git a/resources/lang/it/admin/locations/table.php b/resources/lang/it-IT/admin/locations/table.php similarity index 100% rename from resources/lang/it/admin/locations/table.php rename to resources/lang/it-IT/admin/locations/table.php diff --git a/resources/lang/it/admin/manufacturers/message.php b/resources/lang/it-IT/admin/manufacturers/message.php similarity index 100% rename from resources/lang/it/admin/manufacturers/message.php rename to resources/lang/it-IT/admin/manufacturers/message.php diff --git a/resources/lang/it/admin/manufacturers/table.php b/resources/lang/it-IT/admin/manufacturers/table.php similarity index 100% rename from resources/lang/it/admin/manufacturers/table.php rename to resources/lang/it-IT/admin/manufacturers/table.php diff --git a/resources/lang/it/admin/models/general.php b/resources/lang/it-IT/admin/models/general.php similarity index 100% rename from resources/lang/it/admin/models/general.php rename to resources/lang/it-IT/admin/models/general.php diff --git a/resources/lang/it/admin/models/message.php b/resources/lang/it-IT/admin/models/message.php similarity index 100% rename from resources/lang/it/admin/models/message.php rename to resources/lang/it-IT/admin/models/message.php diff --git a/resources/lang/it/admin/models/table.php b/resources/lang/it-IT/admin/models/table.php similarity index 100% rename from resources/lang/it/admin/models/table.php rename to resources/lang/it-IT/admin/models/table.php diff --git a/resources/lang/it/admin/reports/general.php b/resources/lang/it-IT/admin/reports/general.php similarity index 100% rename from resources/lang/it/admin/reports/general.php rename to resources/lang/it-IT/admin/reports/general.php diff --git a/resources/lang/it/admin/reports/message.php b/resources/lang/it-IT/admin/reports/message.php similarity index 100% rename from resources/lang/it/admin/reports/message.php rename to resources/lang/it-IT/admin/reports/message.php diff --git a/resources/lang/it/admin/settings/general.php b/resources/lang/it-IT/admin/settings/general.php similarity index 99% rename from resources/lang/it/admin/settings/general.php rename to resources/lang/it-IT/admin/settings/general.php index d62fee5656..a8da44d276 100644 --- a/resources/lang/it/admin/settings/general.php +++ b/resources/lang/it-IT/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'L\'utente non è tenuto a scrivere "username@domain.local", può semplicemente digitare "username".', 'admin_cc_email' => 'Email CC', 'admin_cc_email_help' => 'Se desideri inviare una copia delle e-mail di consegna / ritiro che vengono inviate agli utenti a un altro account e-mail, inseriscile qui. Altrimenti, lascia questo campo vuoto.', + 'admin_settings' => 'Impostazioni Admin', 'is_ad' => 'Si tratta di un server Active Directory', 'alerts' => 'Avvisi', 'alert_title' => 'Aggiorna impostazioni di notifica', diff --git a/resources/lang/it/admin/settings/message.php b/resources/lang/it-IT/admin/settings/message.php similarity index 100% rename from resources/lang/it/admin/settings/message.php rename to resources/lang/it-IT/admin/settings/message.php diff --git a/resources/lang/it/admin/settings/table.php b/resources/lang/it-IT/admin/settings/table.php similarity index 100% rename from resources/lang/it/admin/settings/table.php rename to resources/lang/it-IT/admin/settings/table.php diff --git a/resources/lang/it/admin/statuslabels/message.php b/resources/lang/it-IT/admin/statuslabels/message.php similarity index 96% rename from resources/lang/it/admin/statuslabels/message.php rename to resources/lang/it-IT/admin/statuslabels/message.php index b6402e53d8..2cf2ac88c1 100644 --- a/resources/lang/it/admin/statuslabels/message.php +++ b/resources/lang/it-IT/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'L\'etichetta di stato non esiste.', + 'deleted_label' => 'Etichetta di Stato "Eliminato"', 'assoc_assets' => 'Questa etichetta di stato è attualmente associata ad almeno un Asset e non può essere cancellata. Per favore aggiorna i tuoi Asset per togliere i riferimenti a questo stato e riprova. ', diff --git a/resources/lang/it/admin/statuslabels/table.php b/resources/lang/it-IT/admin/statuslabels/table.php similarity index 100% rename from resources/lang/it/admin/statuslabels/table.php rename to resources/lang/it-IT/admin/statuslabels/table.php diff --git a/resources/lang/it/admin/suppliers/message.php b/resources/lang/it-IT/admin/suppliers/message.php similarity index 100% rename from resources/lang/it/admin/suppliers/message.php rename to resources/lang/it-IT/admin/suppliers/message.php diff --git a/resources/lang/it/admin/suppliers/table.php b/resources/lang/it-IT/admin/suppliers/table.php similarity index 100% rename from resources/lang/it/admin/suppliers/table.php rename to resources/lang/it-IT/admin/suppliers/table.php diff --git a/resources/lang/it/admin/users/general.php b/resources/lang/it-IT/admin/users/general.php similarity index 100% rename from resources/lang/it/admin/users/general.php rename to resources/lang/it-IT/admin/users/general.php diff --git a/resources/lang/it/admin/users/message.php b/resources/lang/it-IT/admin/users/message.php similarity index 100% rename from resources/lang/it/admin/users/message.php rename to resources/lang/it-IT/admin/users/message.php diff --git a/resources/lang/it/admin/users/table.php b/resources/lang/it-IT/admin/users/table.php similarity index 93% rename from resources/lang/it/admin/users/table.php rename to resources/lang/it-IT/admin/users/table.php index 3bab8511e4..c3e1263344 100644 --- a/resources/lang/it/admin/users/table.php +++ b/resources/lang/it-IT/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Località gestite', 'name' => 'Nome', + 'nogroup' => 'Non è stato ancora creato nessun gruppo. Per aggiungerne uno, vai al link: ', 'notes' => 'Note', 'password_confirm' => 'Conferma password', 'password' => 'Password', diff --git a/resources/lang/it/auth.php b/resources/lang/it-IT/auth.php similarity index 100% rename from resources/lang/it/auth.php rename to resources/lang/it-IT/auth.php diff --git a/resources/lang/it/auth/general.php b/resources/lang/it-IT/auth/general.php similarity index 100% rename from resources/lang/it/auth/general.php rename to resources/lang/it-IT/auth/general.php diff --git a/resources/lang/it/auth/message.php b/resources/lang/it-IT/auth/message.php similarity index 100% rename from resources/lang/it/auth/message.php rename to resources/lang/it-IT/auth/message.php diff --git a/resources/lang/it/button.php b/resources/lang/it-IT/button.php similarity index 100% rename from resources/lang/it/button.php rename to resources/lang/it-IT/button.php diff --git a/resources/lang/it/general.php b/resources/lang/it-IT/general.php similarity index 97% rename from resources/lang/it/general.php rename to resources/lang/it-IT/general.php index 4894b5fc6e..75e855da0f 100644 --- a/resources/lang/it/general.php +++ b/resources/lang/it-IT/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'I tipi di file accettati sono jpg, webp, png, gif e svg. La dimensione massima consentita per il caricamento è :size.', 'unaccepted_image_type' => 'Questo immagine non è leggibile. I tipi di file accettati sono jpg, webp, png, gif e svg. Il tipo di questo file è :mimetype.', 'import' => 'Importa', + 'import_this_file' => 'Mappa i campi ed elabora questo file', 'importing' => 'Sto importando', 'importing_help' => 'È possibile importare risorse, accessori, licenze, componenti, materiali di consumo e utenti utilizzando file CSV.

Il CSV dovrebbe essere delimitato da virgole e formattato con intestazioni che corrispondano a quelle della seguente documentazione esempio CSV .', 'import-history' => 'Storico di Importazione', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Errore nel caricamento del file. Controlla che non ci siano righe vuote e che nessun nome di colonna sia duplicato.', 'copy_to_clipboard' => 'Copia negli Appunti', 'copied' => 'Copiato!', + 'status_compatibility' => 'Se i Beni sono già assegnati, il loro stato non può essere cambiato in "Non consegnabile" e la modifica di questo valore verrà ignorata.', + 'rtd_location_help' => 'Questo è il luogo dove si trova il Bene quando non è assegnato', + 'item_not_found' => ':item_type ID :id non esiste o è stato cancellato', + 'action_permission_denied' => 'Non hai i permessi per :action :item_type ID :id', + 'action_permission_generic' => 'Non hai i permessi per :action questo :item_type', + 'edit' => 'modifica', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/it/help.php b/resources/lang/it-IT/help.php similarity index 100% rename from resources/lang/it/help.php rename to resources/lang/it-IT/help.php diff --git a/resources/lang/it/localizations.php b/resources/lang/it-IT/localizations.php similarity index 99% rename from resources/lang/it/localizations.php rename to resources/lang/it-IT/localizations.php index f82567d7f1..ac769a8964 100644 --- a/resources/lang/it/localizations.php +++ b/resources/lang/it-IT/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irlandese', 'it'=> 'Italiano', 'ja'=> 'Giapponese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Coreano', 'lv'=>'Lettone', 'lt'=> 'Lituano', diff --git a/resources/lang/it/mail.php b/resources/lang/it-IT/mail.php similarity index 97% rename from resources/lang/it/mail.php rename to resources/lang/it-IT/mail.php index 931b255eff..1344fa7828 100644 --- a/resources/lang/it/mail.php +++ b/resources/lang/it-IT/mail.php @@ -24,7 +24,7 @@ return [ 'Confirm_Accessory_Checkin' => 'Conferma restituzione accessorio', 'Confirm_accessory_delivery' => 'Conferma consegna accessorio', 'Confirm_license_delivery' => 'Conferma assegnazione licenza', - 'Confirm_asset_delivery' => 'Conferma consegna del bene', + 'Confirm_asset_delivery' => 'Conferma consegna del Bene', 'Confirm_consumable_delivery' => 'Conferma consegna del consumabile', 'current_QTY' => 'Quantità attuale', 'Days' => 'Giorni', @@ -46,7 +46,7 @@ return [ 'inventory_report' => 'Rapporto Inventario', 'min_QTY' => 'Quantità minima', 'name' => 'Nome', - 'new_item_checked' => 'Ti è stato assegnato un nuovo bene, di seguito i dettagli.', + 'new_item_checked' => 'Ti è stato assegnato un nuovo Bene, di seguito i dettagli.', 'password' => 'Password:', 'password_reset' => 'Reimposta la password', diff --git a/resources/lang/it/pagination.php b/resources/lang/it-IT/pagination.php similarity index 100% rename from resources/lang/it/pagination.php rename to resources/lang/it-IT/pagination.php diff --git a/resources/lang/it/passwords.php b/resources/lang/it-IT/passwords.php similarity index 100% rename from resources/lang/it/passwords.php rename to resources/lang/it-IT/passwords.php diff --git a/resources/lang/it/reminders.php b/resources/lang/it-IT/reminders.php similarity index 100% rename from resources/lang/it/reminders.php rename to resources/lang/it-IT/reminders.php diff --git a/resources/lang/it/table.php b/resources/lang/it-IT/table.php similarity index 100% rename from resources/lang/it/table.php rename to resources/lang/it-IT/table.php diff --git a/resources/lang/it/validation.php b/resources/lang/it-IT/validation.php similarity index 99% rename from resources/lang/it/validation.php rename to resources/lang/it-IT/validation.php index 0ddd7d9b55..f7c5dddce1 100644 --- a/resources/lang/it/validation.php +++ b/resources/lang/it-IT/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute deve essere unico.', 'non_circular' => ':attribute non deve creare un riferimento circolare.', 'not_array' => 'Il campo :attribute non può essere un array.', - 'unique_serial' => ':attribute deve essere univoco.', 'disallow_same_pwd_as_user_fields' => 'La password non può essere uguale al nome utente.', 'letters' => 'La password deve contenere almeno una lettera.', 'numbers' => 'La password deve contenere almeno un numero.', diff --git a/resources/lang/is/account/general.php b/resources/lang/iu-NU/account/general.php similarity index 100% rename from resources/lang/is/account/general.php rename to resources/lang/iu-NU/account/general.php diff --git a/resources/lang/iu/admin/accessories/general.php b/resources/lang/iu-NU/admin/accessories/general.php similarity index 100% rename from resources/lang/iu/admin/accessories/general.php rename to resources/lang/iu-NU/admin/accessories/general.php diff --git a/resources/lang/iu/admin/accessories/message.php b/resources/lang/iu-NU/admin/accessories/message.php similarity index 100% rename from resources/lang/iu/admin/accessories/message.php rename to resources/lang/iu-NU/admin/accessories/message.php diff --git a/resources/lang/iu/admin/accessories/table.php b/resources/lang/iu-NU/admin/accessories/table.php similarity index 100% rename from resources/lang/iu/admin/accessories/table.php rename to resources/lang/iu-NU/admin/accessories/table.php diff --git a/resources/lang/iu/admin/asset_maintenances/form.php b/resources/lang/iu-NU/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/iu/admin/asset_maintenances/form.php rename to resources/lang/iu-NU/admin/asset_maintenances/form.php diff --git a/resources/lang/en/admin/asset_maintenances/general.php b/resources/lang/iu-NU/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/en/admin/asset_maintenances/general.php rename to resources/lang/iu-NU/admin/asset_maintenances/general.php diff --git a/resources/lang/iu/admin/asset_maintenances/message.php b/resources/lang/iu-NU/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/iu/admin/asset_maintenances/message.php rename to resources/lang/iu-NU/admin/asset_maintenances/message.php diff --git a/resources/lang/en/admin/asset_maintenances/table.php b/resources/lang/iu-NU/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/en/admin/asset_maintenances/table.php rename to resources/lang/iu-NU/admin/asset_maintenances/table.php diff --git a/resources/lang/iu/admin/categories/general.php b/resources/lang/iu-NU/admin/categories/general.php similarity index 100% rename from resources/lang/iu/admin/categories/general.php rename to resources/lang/iu-NU/admin/categories/general.php diff --git a/resources/lang/iu/admin/categories/message.php b/resources/lang/iu-NU/admin/categories/message.php similarity index 100% rename from resources/lang/iu/admin/categories/message.php rename to resources/lang/iu-NU/admin/categories/message.php diff --git a/resources/lang/iu/admin/categories/table.php b/resources/lang/iu-NU/admin/categories/table.php similarity index 100% rename from resources/lang/iu/admin/categories/table.php rename to resources/lang/iu-NU/admin/categories/table.php diff --git a/resources/lang/iu/admin/companies/general.php b/resources/lang/iu-NU/admin/companies/general.php similarity index 100% rename from resources/lang/iu/admin/companies/general.php rename to resources/lang/iu-NU/admin/companies/general.php diff --git a/resources/lang/iu/admin/companies/message.php b/resources/lang/iu-NU/admin/companies/message.php similarity index 100% rename from resources/lang/iu/admin/companies/message.php rename to resources/lang/iu-NU/admin/companies/message.php diff --git a/resources/lang/en/admin/companies/table.php b/resources/lang/iu-NU/admin/companies/table.php similarity index 100% rename from resources/lang/en/admin/companies/table.php rename to resources/lang/iu-NU/admin/companies/table.php diff --git a/resources/lang/iu/admin/components/general.php b/resources/lang/iu-NU/admin/components/general.php similarity index 100% rename from resources/lang/iu/admin/components/general.php rename to resources/lang/iu-NU/admin/components/general.php diff --git a/resources/lang/is/admin/components/message.php b/resources/lang/iu-NU/admin/components/message.php similarity index 100% rename from resources/lang/is/admin/components/message.php rename to resources/lang/iu-NU/admin/components/message.php diff --git a/resources/lang/iu/admin/components/table.php b/resources/lang/iu-NU/admin/components/table.php similarity index 100% rename from resources/lang/iu/admin/components/table.php rename to resources/lang/iu-NU/admin/components/table.php diff --git a/resources/lang/iu/admin/consumables/general.php b/resources/lang/iu-NU/admin/consumables/general.php similarity index 100% rename from resources/lang/iu/admin/consumables/general.php rename to resources/lang/iu-NU/admin/consumables/general.php diff --git a/resources/lang/is/admin/consumables/message.php b/resources/lang/iu-NU/admin/consumables/message.php similarity index 100% rename from resources/lang/is/admin/consumables/message.php rename to resources/lang/iu-NU/admin/consumables/message.php diff --git a/resources/lang/iu/admin/consumables/table.php b/resources/lang/iu-NU/admin/consumables/table.php similarity index 100% rename from resources/lang/iu/admin/consumables/table.php rename to resources/lang/iu-NU/admin/consumables/table.php diff --git a/resources/lang/iu/admin/custom_fields/general.php b/resources/lang/iu-NU/admin/custom_fields/general.php similarity index 100% rename from resources/lang/iu/admin/custom_fields/general.php rename to resources/lang/iu-NU/admin/custom_fields/general.php diff --git a/resources/lang/iu/admin/custom_fields/message.php b/resources/lang/iu-NU/admin/custom_fields/message.php similarity index 100% rename from resources/lang/iu/admin/custom_fields/message.php rename to resources/lang/iu-NU/admin/custom_fields/message.php diff --git a/resources/lang/iu/admin/departments/message.php b/resources/lang/iu-NU/admin/departments/message.php similarity index 100% rename from resources/lang/iu/admin/departments/message.php rename to resources/lang/iu-NU/admin/departments/message.php diff --git a/resources/lang/iu/admin/departments/table.php b/resources/lang/iu-NU/admin/departments/table.php similarity index 100% rename from resources/lang/iu/admin/departments/table.php rename to resources/lang/iu-NU/admin/departments/table.php diff --git a/resources/lang/iu/admin/depreciations/general.php b/resources/lang/iu-NU/admin/depreciations/general.php similarity index 100% rename from resources/lang/iu/admin/depreciations/general.php rename to resources/lang/iu-NU/admin/depreciations/general.php diff --git a/resources/lang/iu/admin/depreciations/message.php b/resources/lang/iu-NU/admin/depreciations/message.php similarity index 100% rename from resources/lang/iu/admin/depreciations/message.php rename to resources/lang/iu-NU/admin/depreciations/message.php diff --git a/resources/lang/iu/admin/depreciations/table.php b/resources/lang/iu-NU/admin/depreciations/table.php similarity index 100% rename from resources/lang/iu/admin/depreciations/table.php rename to resources/lang/iu-NU/admin/depreciations/table.php diff --git a/resources/lang/iu/admin/groups/message.php b/resources/lang/iu-NU/admin/groups/message.php similarity index 100% rename from resources/lang/iu/admin/groups/message.php rename to resources/lang/iu-NU/admin/groups/message.php diff --git a/resources/lang/is/admin/groups/table.php b/resources/lang/iu-NU/admin/groups/table.php similarity index 100% rename from resources/lang/is/admin/groups/table.php rename to resources/lang/iu-NU/admin/groups/table.php diff --git a/resources/lang/iu/admin/groups/titles.php b/resources/lang/iu-NU/admin/groups/titles.php similarity index 100% rename from resources/lang/iu/admin/groups/titles.php rename to resources/lang/iu-NU/admin/groups/titles.php diff --git a/resources/lang/ca/admin/hardware/form.php b/resources/lang/iu-NU/admin/hardware/form.php similarity index 100% rename from resources/lang/ca/admin/hardware/form.php rename to resources/lang/iu-NU/admin/hardware/form.php diff --git a/resources/lang/ca/admin/hardware/general.php b/resources/lang/iu-NU/admin/hardware/general.php similarity index 100% rename from resources/lang/ca/admin/hardware/general.php rename to resources/lang/iu-NU/admin/hardware/general.php diff --git a/resources/lang/iu/admin/hardware/message.php b/resources/lang/iu-NU/admin/hardware/message.php similarity index 100% rename from resources/lang/iu/admin/hardware/message.php rename to resources/lang/iu-NU/admin/hardware/message.php diff --git a/resources/lang/ca/admin/hardware/table.php b/resources/lang/iu-NU/admin/hardware/table.php similarity index 100% rename from resources/lang/ca/admin/hardware/table.php rename to resources/lang/iu-NU/admin/hardware/table.php diff --git a/resources/lang/ca/admin/kits/general.php b/resources/lang/iu-NU/admin/kits/general.php similarity index 100% rename from resources/lang/ca/admin/kits/general.php rename to resources/lang/iu-NU/admin/kits/general.php diff --git a/resources/lang/is/admin/labels/message.php b/resources/lang/iu-NU/admin/labels/message.php similarity index 100% rename from resources/lang/is/admin/labels/message.php rename to resources/lang/iu-NU/admin/labels/message.php diff --git a/resources/lang/ca/admin/labels/table.php b/resources/lang/iu-NU/admin/labels/table.php similarity index 100% rename from resources/lang/ca/admin/labels/table.php rename to resources/lang/iu-NU/admin/labels/table.php diff --git a/resources/lang/ca/admin/licenses/form.php b/resources/lang/iu-NU/admin/licenses/form.php similarity index 100% rename from resources/lang/ca/admin/licenses/form.php rename to resources/lang/iu-NU/admin/licenses/form.php diff --git a/resources/lang/iu/admin/licenses/general.php b/resources/lang/iu-NU/admin/licenses/general.php similarity index 100% rename from resources/lang/iu/admin/licenses/general.php rename to resources/lang/iu-NU/admin/licenses/general.php diff --git a/resources/lang/iu/admin/licenses/message.php b/resources/lang/iu-NU/admin/licenses/message.php similarity index 100% rename from resources/lang/iu/admin/licenses/message.php rename to resources/lang/iu-NU/admin/licenses/message.php diff --git a/resources/lang/iu/admin/licenses/table.php b/resources/lang/iu-NU/admin/licenses/table.php similarity index 100% rename from resources/lang/iu/admin/licenses/table.php rename to resources/lang/iu-NU/admin/licenses/table.php diff --git a/resources/lang/iu/admin/locations/message.php b/resources/lang/iu-NU/admin/locations/message.php similarity index 100% rename from resources/lang/iu/admin/locations/message.php rename to resources/lang/iu-NU/admin/locations/message.php diff --git a/resources/lang/ca/admin/locations/table.php b/resources/lang/iu-NU/admin/locations/table.php similarity index 100% rename from resources/lang/ca/admin/locations/table.php rename to resources/lang/iu-NU/admin/locations/table.php diff --git a/resources/lang/iu/admin/manufacturers/message.php b/resources/lang/iu-NU/admin/manufacturers/message.php similarity index 100% rename from resources/lang/iu/admin/manufacturers/message.php rename to resources/lang/iu-NU/admin/manufacturers/message.php diff --git a/resources/lang/iu/admin/manufacturers/table.php b/resources/lang/iu-NU/admin/manufacturers/table.php similarity index 100% rename from resources/lang/iu/admin/manufacturers/table.php rename to resources/lang/iu-NU/admin/manufacturers/table.php diff --git a/resources/lang/is/admin/models/general.php b/resources/lang/iu-NU/admin/models/general.php similarity index 100% rename from resources/lang/is/admin/models/general.php rename to resources/lang/iu-NU/admin/models/general.php diff --git a/resources/lang/iu/admin/models/message.php b/resources/lang/iu-NU/admin/models/message.php similarity index 100% rename from resources/lang/iu/admin/models/message.php rename to resources/lang/iu-NU/admin/models/message.php diff --git a/resources/lang/ca/admin/models/table.php b/resources/lang/iu-NU/admin/models/table.php similarity index 100% rename from resources/lang/ca/admin/models/table.php rename to resources/lang/iu-NU/admin/models/table.php diff --git a/resources/lang/iu/admin/reports/general.php b/resources/lang/iu-NU/admin/reports/general.php similarity index 100% rename from resources/lang/iu/admin/reports/general.php rename to resources/lang/iu-NU/admin/reports/general.php diff --git a/resources/lang/iu/admin/reports/message.php b/resources/lang/iu-NU/admin/reports/message.php similarity index 100% rename from resources/lang/iu/admin/reports/message.php rename to resources/lang/iu-NU/admin/reports/message.php diff --git a/resources/lang/ca/admin/settings/general.php b/resources/lang/iu-NU/admin/settings/general.php similarity index 99% rename from resources/lang/ca/admin/settings/general.php rename to resources/lang/iu-NU/admin/settings/general.php index 64d0aef53e..c8d6306036 100644 --- a/resources/lang/ca/admin/settings/general.php +++ b/resources/lang/iu-NU/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/iu/admin/settings/message.php b/resources/lang/iu-NU/admin/settings/message.php similarity index 100% rename from resources/lang/iu/admin/settings/message.php rename to resources/lang/iu-NU/admin/settings/message.php diff --git a/resources/lang/ca/admin/settings/table.php b/resources/lang/iu-NU/admin/settings/table.php similarity index 100% rename from resources/lang/ca/admin/settings/table.php rename to resources/lang/iu-NU/admin/settings/table.php diff --git a/resources/lang/ca/admin/statuslabels/message.php b/resources/lang/iu-NU/admin/statuslabels/message.php similarity index 97% rename from resources/lang/ca/admin/statuslabels/message.php rename to resources/lang/iu-NU/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/ca/admin/statuslabels/message.php +++ b/resources/lang/iu-NU/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/ca/admin/statuslabels/table.php b/resources/lang/iu-NU/admin/statuslabels/table.php similarity index 100% rename from resources/lang/ca/admin/statuslabels/table.php rename to resources/lang/iu-NU/admin/statuslabels/table.php diff --git a/resources/lang/iu/admin/suppliers/message.php b/resources/lang/iu-NU/admin/suppliers/message.php similarity index 100% rename from resources/lang/iu/admin/suppliers/message.php rename to resources/lang/iu-NU/admin/suppliers/message.php diff --git a/resources/lang/ca/admin/suppliers/table.php b/resources/lang/iu-NU/admin/suppliers/table.php similarity index 100% rename from resources/lang/ca/admin/suppliers/table.php rename to resources/lang/iu-NU/admin/suppliers/table.php diff --git a/resources/lang/iu/admin/users/general.php b/resources/lang/iu-NU/admin/users/general.php similarity index 100% rename from resources/lang/iu/admin/users/general.php rename to resources/lang/iu-NU/admin/users/general.php diff --git a/resources/lang/iu/admin/users/message.php b/resources/lang/iu-NU/admin/users/message.php similarity index 100% rename from resources/lang/iu/admin/users/message.php rename to resources/lang/iu-NU/admin/users/message.php diff --git a/resources/lang/am/admin/users/table.php b/resources/lang/iu-NU/admin/users/table.php similarity index 94% rename from resources/lang/am/admin/users/table.php rename to resources/lang/iu-NU/admin/users/table.php index 21e2154280..b8b919bf28 100644 --- a/resources/lang/am/admin/users/table.php +++ b/resources/lang/iu-NU/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirm Password', 'password' => 'Password', diff --git a/resources/lang/iu/auth.php b/resources/lang/iu-NU/auth.php similarity index 100% rename from resources/lang/iu/auth.php rename to resources/lang/iu-NU/auth.php diff --git a/resources/lang/iu/auth/general.php b/resources/lang/iu-NU/auth/general.php similarity index 100% rename from resources/lang/iu/auth/general.php rename to resources/lang/iu-NU/auth/general.php diff --git a/resources/lang/iu/auth/message.php b/resources/lang/iu-NU/auth/message.php similarity index 100% rename from resources/lang/iu/auth/message.php rename to resources/lang/iu-NU/auth/message.php diff --git a/resources/lang/ca/button.php b/resources/lang/iu-NU/button.php similarity index 100% rename from resources/lang/ca/button.php rename to resources/lang/iu-NU/button.php diff --git a/resources/lang/tl/general.php b/resources/lang/iu-NU/general.php similarity index 97% rename from resources/lang/tl/general.php rename to resources/lang/iu-NU/general.php index a568e00436..5e1ad742e3 100644 --- a/resources/lang/tl/general.php +++ b/resources/lang/iu-NU/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/el/help.php b/resources/lang/iu-NU/help.php similarity index 100% rename from resources/lang/el/help.php rename to resources/lang/iu-NU/help.php diff --git a/resources/lang/iu-NU/localizations.php b/resources/lang/iu-NU/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/iu-NU/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/ca/mail.php b/resources/lang/iu-NU/mail.php similarity index 100% rename from resources/lang/ca/mail.php rename to resources/lang/iu-NU/mail.php diff --git a/resources/lang/iu/pagination.php b/resources/lang/iu-NU/pagination.php similarity index 100% rename from resources/lang/iu/pagination.php rename to resources/lang/iu-NU/pagination.php diff --git a/resources/lang/is/passwords.php b/resources/lang/iu-NU/passwords.php similarity index 100% rename from resources/lang/is/passwords.php rename to resources/lang/iu-NU/passwords.php diff --git a/resources/lang/iu/reminders.php b/resources/lang/iu-NU/reminders.php similarity index 100% rename from resources/lang/iu/reminders.php rename to resources/lang/iu-NU/reminders.php diff --git a/resources/lang/ca/table.php b/resources/lang/iu-NU/table.php similarity index 100% rename from resources/lang/ca/table.php rename to resources/lang/iu-NU/table.php diff --git a/resources/lang/en/validation.php b/resources/lang/iu-NU/validation.php similarity index 99% rename from resources/lang/en/validation.php rename to resources/lang/iu-NU/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/iu-NU/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/iu/admin/labels/table.php b/resources/lang/iu/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/iu/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/iu/admin/settings/table.php b/resources/lang/iu/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/iu/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/iu/help.php b/resources/lang/iu/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/iu/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/iu/localizations.php b/resources/lang/iu/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/iu/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/ja/account/general.php b/resources/lang/ja-JP/account/general.php similarity index 100% rename from resources/lang/ja/account/general.php rename to resources/lang/ja-JP/account/general.php diff --git a/resources/lang/ja/admin/accessories/general.php b/resources/lang/ja-JP/admin/accessories/general.php similarity index 100% rename from resources/lang/ja/admin/accessories/general.php rename to resources/lang/ja-JP/admin/accessories/general.php diff --git a/resources/lang/ja/admin/accessories/message.php b/resources/lang/ja-JP/admin/accessories/message.php similarity index 100% rename from resources/lang/ja/admin/accessories/message.php rename to resources/lang/ja-JP/admin/accessories/message.php diff --git a/resources/lang/ja/admin/accessories/table.php b/resources/lang/ja-JP/admin/accessories/table.php similarity index 100% rename from resources/lang/ja/admin/accessories/table.php rename to resources/lang/ja-JP/admin/accessories/table.php diff --git a/resources/lang/ja/admin/asset_maintenances/form.php b/resources/lang/ja-JP/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/ja/admin/asset_maintenances/form.php rename to resources/lang/ja-JP/admin/asset_maintenances/form.php diff --git a/resources/lang/ja/admin/asset_maintenances/general.php b/resources/lang/ja-JP/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/ja/admin/asset_maintenances/general.php rename to resources/lang/ja-JP/admin/asset_maintenances/general.php diff --git a/resources/lang/ja/admin/asset_maintenances/message.php b/resources/lang/ja-JP/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/ja/admin/asset_maintenances/message.php rename to resources/lang/ja-JP/admin/asset_maintenances/message.php diff --git a/resources/lang/ja/admin/asset_maintenances/table.php b/resources/lang/ja-JP/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/ja/admin/asset_maintenances/table.php rename to resources/lang/ja-JP/admin/asset_maintenances/table.php diff --git a/resources/lang/ja/admin/categories/general.php b/resources/lang/ja-JP/admin/categories/general.php similarity index 100% rename from resources/lang/ja/admin/categories/general.php rename to resources/lang/ja-JP/admin/categories/general.php diff --git a/resources/lang/ja/admin/categories/message.php b/resources/lang/ja-JP/admin/categories/message.php similarity index 100% rename from resources/lang/ja/admin/categories/message.php rename to resources/lang/ja-JP/admin/categories/message.php diff --git a/resources/lang/ja/admin/categories/table.php b/resources/lang/ja-JP/admin/categories/table.php similarity index 100% rename from resources/lang/ja/admin/categories/table.php rename to resources/lang/ja-JP/admin/categories/table.php diff --git a/resources/lang/ja/admin/companies/general.php b/resources/lang/ja-JP/admin/companies/general.php similarity index 100% rename from resources/lang/ja/admin/companies/general.php rename to resources/lang/ja-JP/admin/companies/general.php diff --git a/resources/lang/ja/admin/companies/message.php b/resources/lang/ja-JP/admin/companies/message.php similarity index 100% rename from resources/lang/ja/admin/companies/message.php rename to resources/lang/ja-JP/admin/companies/message.php diff --git a/resources/lang/ja/admin/companies/table.php b/resources/lang/ja-JP/admin/companies/table.php similarity index 100% rename from resources/lang/ja/admin/companies/table.php rename to resources/lang/ja-JP/admin/companies/table.php diff --git a/resources/lang/ja/admin/components/general.php b/resources/lang/ja-JP/admin/components/general.php similarity index 100% rename from resources/lang/ja/admin/components/general.php rename to resources/lang/ja-JP/admin/components/general.php diff --git a/resources/lang/ja/admin/components/message.php b/resources/lang/ja-JP/admin/components/message.php similarity index 100% rename from resources/lang/ja/admin/components/message.php rename to resources/lang/ja-JP/admin/components/message.php diff --git a/resources/lang/ja/admin/components/table.php b/resources/lang/ja-JP/admin/components/table.php similarity index 100% rename from resources/lang/ja/admin/components/table.php rename to resources/lang/ja-JP/admin/components/table.php diff --git a/resources/lang/ja/admin/consumables/general.php b/resources/lang/ja-JP/admin/consumables/general.php similarity index 100% rename from resources/lang/ja/admin/consumables/general.php rename to resources/lang/ja-JP/admin/consumables/general.php diff --git a/resources/lang/ja/admin/consumables/message.php b/resources/lang/ja-JP/admin/consumables/message.php similarity index 100% rename from resources/lang/ja/admin/consumables/message.php rename to resources/lang/ja-JP/admin/consumables/message.php diff --git a/resources/lang/ja/admin/consumables/table.php b/resources/lang/ja-JP/admin/consumables/table.php similarity index 100% rename from resources/lang/ja/admin/consumables/table.php rename to resources/lang/ja-JP/admin/consumables/table.php diff --git a/resources/lang/ja/admin/custom_fields/general.php b/resources/lang/ja-JP/admin/custom_fields/general.php similarity index 100% rename from resources/lang/ja/admin/custom_fields/general.php rename to resources/lang/ja-JP/admin/custom_fields/general.php diff --git a/resources/lang/ja/admin/custom_fields/message.php b/resources/lang/ja-JP/admin/custom_fields/message.php similarity index 100% rename from resources/lang/ja/admin/custom_fields/message.php rename to resources/lang/ja-JP/admin/custom_fields/message.php diff --git a/resources/lang/ja/admin/departments/message.php b/resources/lang/ja-JP/admin/departments/message.php similarity index 100% rename from resources/lang/ja/admin/departments/message.php rename to resources/lang/ja-JP/admin/departments/message.php diff --git a/resources/lang/ja/admin/departments/table.php b/resources/lang/ja-JP/admin/departments/table.php similarity index 100% rename from resources/lang/ja/admin/departments/table.php rename to resources/lang/ja-JP/admin/departments/table.php diff --git a/resources/lang/ja/admin/depreciations/general.php b/resources/lang/ja-JP/admin/depreciations/general.php similarity index 100% rename from resources/lang/ja/admin/depreciations/general.php rename to resources/lang/ja-JP/admin/depreciations/general.php diff --git a/resources/lang/ja/admin/depreciations/message.php b/resources/lang/ja-JP/admin/depreciations/message.php similarity index 100% rename from resources/lang/ja/admin/depreciations/message.php rename to resources/lang/ja-JP/admin/depreciations/message.php diff --git a/resources/lang/ja/admin/depreciations/table.php b/resources/lang/ja-JP/admin/depreciations/table.php similarity index 100% rename from resources/lang/ja/admin/depreciations/table.php rename to resources/lang/ja-JP/admin/depreciations/table.php diff --git a/resources/lang/ja/admin/groups/message.php b/resources/lang/ja-JP/admin/groups/message.php similarity index 100% rename from resources/lang/ja/admin/groups/message.php rename to resources/lang/ja-JP/admin/groups/message.php diff --git a/resources/lang/ja/admin/groups/table.php b/resources/lang/ja-JP/admin/groups/table.php similarity index 100% rename from resources/lang/ja/admin/groups/table.php rename to resources/lang/ja-JP/admin/groups/table.php diff --git a/resources/lang/ja/admin/groups/titles.php b/resources/lang/ja-JP/admin/groups/titles.php similarity index 100% rename from resources/lang/ja/admin/groups/titles.php rename to resources/lang/ja-JP/admin/groups/titles.php diff --git a/resources/lang/ja/admin/hardware/form.php b/resources/lang/ja-JP/admin/hardware/form.php similarity index 100% rename from resources/lang/ja/admin/hardware/form.php rename to resources/lang/ja-JP/admin/hardware/form.php diff --git a/resources/lang/ja/admin/hardware/general.php b/resources/lang/ja-JP/admin/hardware/general.php similarity index 100% rename from resources/lang/ja/admin/hardware/general.php rename to resources/lang/ja-JP/admin/hardware/general.php diff --git a/resources/lang/ja/admin/hardware/message.php b/resources/lang/ja-JP/admin/hardware/message.php similarity index 100% rename from resources/lang/ja/admin/hardware/message.php rename to resources/lang/ja-JP/admin/hardware/message.php diff --git a/resources/lang/ja/admin/hardware/table.php b/resources/lang/ja-JP/admin/hardware/table.php similarity index 100% rename from resources/lang/ja/admin/hardware/table.php rename to resources/lang/ja-JP/admin/hardware/table.php diff --git a/resources/lang/ja/admin/kits/general.php b/resources/lang/ja-JP/admin/kits/general.php similarity index 100% rename from resources/lang/ja/admin/kits/general.php rename to resources/lang/ja-JP/admin/kits/general.php diff --git a/resources/lang/iu/admin/labels/message.php b/resources/lang/ja-JP/admin/labels/message.php similarity index 100% rename from resources/lang/iu/admin/labels/message.php rename to resources/lang/ja-JP/admin/labels/message.php diff --git a/resources/lang/ja-JP/admin/labels/table.php b/resources/lang/ja-JP/admin/labels/table.php new file mode 100644 index 0000000000..379e598e00 --- /dev/null +++ b/resources/lang/ja-JP/admin/labels/table.php @@ -0,0 +1,13 @@ + 'ラベル', + 'support_fields' => '項目', + 'support_asset_tag' => 'タグ', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'ロゴ', + 'support_title' => '役職', + +]; \ No newline at end of file diff --git a/resources/lang/ja/admin/licenses/form.php b/resources/lang/ja-JP/admin/licenses/form.php similarity index 100% rename from resources/lang/ja/admin/licenses/form.php rename to resources/lang/ja-JP/admin/licenses/form.php diff --git a/resources/lang/ja/admin/licenses/general.php b/resources/lang/ja-JP/admin/licenses/general.php similarity index 100% rename from resources/lang/ja/admin/licenses/general.php rename to resources/lang/ja-JP/admin/licenses/general.php diff --git a/resources/lang/ja/admin/licenses/message.php b/resources/lang/ja-JP/admin/licenses/message.php similarity index 100% rename from resources/lang/ja/admin/licenses/message.php rename to resources/lang/ja-JP/admin/licenses/message.php diff --git a/resources/lang/ja/admin/licenses/table.php b/resources/lang/ja-JP/admin/licenses/table.php similarity index 100% rename from resources/lang/ja/admin/licenses/table.php rename to resources/lang/ja-JP/admin/licenses/table.php diff --git a/resources/lang/ja/admin/locations/message.php b/resources/lang/ja-JP/admin/locations/message.php similarity index 100% rename from resources/lang/ja/admin/locations/message.php rename to resources/lang/ja-JP/admin/locations/message.php diff --git a/resources/lang/ja/admin/locations/table.php b/resources/lang/ja-JP/admin/locations/table.php similarity index 97% rename from resources/lang/ja/admin/locations/table.php rename to resources/lang/ja-JP/admin/locations/table.php index f2d605c250..786124100b 100644 --- a/resources/lang/ja/admin/locations/table.php +++ b/resources/lang/ja-JP/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => '割り当て先をすべて印刷', 'name' => 'ロケーション名', 'address' => '住所', - 'address2' => 'Address Line 2', + 'address2' => '住所2', 'zip' => '郵便番号', 'locations' => 'ロケーション', 'parent' => '上位', diff --git a/resources/lang/ja/admin/manufacturers/message.php b/resources/lang/ja-JP/admin/manufacturers/message.php similarity index 100% rename from resources/lang/ja/admin/manufacturers/message.php rename to resources/lang/ja-JP/admin/manufacturers/message.php diff --git a/resources/lang/ja/admin/manufacturers/table.php b/resources/lang/ja-JP/admin/manufacturers/table.php similarity index 100% rename from resources/lang/ja/admin/manufacturers/table.php rename to resources/lang/ja-JP/admin/manufacturers/table.php diff --git a/resources/lang/ja/admin/models/general.php b/resources/lang/ja-JP/admin/models/general.php similarity index 100% rename from resources/lang/ja/admin/models/general.php rename to resources/lang/ja-JP/admin/models/general.php diff --git a/resources/lang/ja/admin/models/message.php b/resources/lang/ja-JP/admin/models/message.php similarity index 100% rename from resources/lang/ja/admin/models/message.php rename to resources/lang/ja-JP/admin/models/message.php diff --git a/resources/lang/ja/admin/models/table.php b/resources/lang/ja-JP/admin/models/table.php similarity index 100% rename from resources/lang/ja/admin/models/table.php rename to resources/lang/ja-JP/admin/models/table.php diff --git a/resources/lang/ja/admin/reports/general.php b/resources/lang/ja-JP/admin/reports/general.php similarity index 100% rename from resources/lang/ja/admin/reports/general.php rename to resources/lang/ja-JP/admin/reports/general.php diff --git a/resources/lang/ja/admin/reports/message.php b/resources/lang/ja-JP/admin/reports/message.php similarity index 100% rename from resources/lang/ja/admin/reports/message.php rename to resources/lang/ja-JP/admin/reports/message.php diff --git a/resources/lang/ja/admin/settings/general.php b/resources/lang/ja-JP/admin/settings/general.php similarity index 99% rename from resources/lang/ja/admin/settings/general.php rename to resources/lang/ja-JP/admin/settings/general.php index 38a85592a0..01c900294c 100644 --- a/resources/lang/ja/admin/settings/general.php +++ b/resources/lang/ja-JP/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'ユーザーは "username@domain.local" を記述する必要はなく、"username" と入力するだけです。', 'admin_cc_email' => 'CC(カーボンコピー)メール 送信先', 'admin_cc_email_help' => 'ユーザーに送信されたチェックイン/チェックアウト メールのコピーを追加の電子メールアカウントに送信する場合は、ここにメールアドレスを入力します。必要が無ければ、このフィールドを空白にします', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Active Directory サーバー', 'alerts' => 'アラート', 'alert_title' => '通知設定を更新', @@ -337,14 +338,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => '役職', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2次元バーコードタイプ', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/ja/admin/settings/message.php b/resources/lang/ja-JP/admin/settings/message.php similarity index 100% rename from resources/lang/ja/admin/settings/message.php rename to resources/lang/ja-JP/admin/settings/message.php diff --git a/resources/lang/ja/admin/settings/table.php b/resources/lang/ja-JP/admin/settings/table.php similarity index 100% rename from resources/lang/ja/admin/settings/table.php rename to resources/lang/ja-JP/admin/settings/table.php diff --git a/resources/lang/ja/admin/statuslabels/message.php b/resources/lang/ja-JP/admin/statuslabels/message.php similarity index 97% rename from resources/lang/ja/admin/statuslabels/message.php rename to resources/lang/ja-JP/admin/statuslabels/message.php index 1294229f10..ee13956a38 100644 --- a/resources/lang/ja/admin/statuslabels/message.php +++ b/resources/lang/ja-JP/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'ステータス ラベルは存在しません。', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'このステータスラベルは少なくとも一つの資産に関連付けされているため、削除できません。資産の関連付けを削除し、もう一度試して下さい。 ', 'create' => [ diff --git a/resources/lang/ja/admin/statuslabels/table.php b/resources/lang/ja-JP/admin/statuslabels/table.php similarity index 100% rename from resources/lang/ja/admin/statuslabels/table.php rename to resources/lang/ja-JP/admin/statuslabels/table.php diff --git a/resources/lang/ja/admin/suppliers/message.php b/resources/lang/ja-JP/admin/suppliers/message.php similarity index 100% rename from resources/lang/ja/admin/suppliers/message.php rename to resources/lang/ja-JP/admin/suppliers/message.php diff --git a/resources/lang/ja/admin/suppliers/table.php b/resources/lang/ja-JP/admin/suppliers/table.php similarity index 100% rename from resources/lang/ja/admin/suppliers/table.php rename to resources/lang/ja-JP/admin/suppliers/table.php diff --git a/resources/lang/ja/admin/users/general.php b/resources/lang/ja-JP/admin/users/general.php similarity index 100% rename from resources/lang/ja/admin/users/general.php rename to resources/lang/ja-JP/admin/users/general.php diff --git a/resources/lang/ja/admin/users/message.php b/resources/lang/ja-JP/admin/users/message.php similarity index 100% rename from resources/lang/ja/admin/users/message.php rename to resources/lang/ja-JP/admin/users/message.php diff --git a/resources/lang/ja/admin/users/table.php b/resources/lang/ja-JP/admin/users/table.php similarity index 95% rename from resources/lang/ja/admin/users/table.php rename to resources/lang/ja-JP/admin/users/table.php index d06baeb93b..16c6026a22 100644 --- a/resources/lang/ja/admin/users/table.php +++ b/resources/lang/ja-JP/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'マネージャー', 'managed_locations' => '管理ロケーション', 'name' => '名前', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => '備考', 'password_confirm' => 'パスワードを確認', 'password' => 'パスワード', diff --git a/resources/lang/ja/auth.php b/resources/lang/ja-JP/auth.php similarity index 100% rename from resources/lang/ja/auth.php rename to resources/lang/ja-JP/auth.php diff --git a/resources/lang/ja/auth/general.php b/resources/lang/ja-JP/auth/general.php similarity index 100% rename from resources/lang/ja/auth/general.php rename to resources/lang/ja-JP/auth/general.php diff --git a/resources/lang/ja/auth/message.php b/resources/lang/ja-JP/auth/message.php similarity index 100% rename from resources/lang/ja/auth/message.php rename to resources/lang/ja-JP/auth/message.php diff --git a/resources/lang/ja/button.php b/resources/lang/ja-JP/button.php similarity index 100% rename from resources/lang/ja/button.php rename to resources/lang/ja-JP/button.php diff --git a/resources/lang/ja/general.php b/resources/lang/ja-JP/general.php similarity index 97% rename from resources/lang/ja/general.php rename to resources/lang/ja-JP/general.php index bf4127dd91..3fd6878cee 100644 --- a/resources/lang/ja/general.php +++ b/resources/lang/ja-JP/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => '使用できるファイルはjpg、png、gif、svgです。許可される最大ファイルサイズは:size です。', 'unaccepted_image_type' => 'この画像ファイルは読み取れませんでした。受け入れられるファイルタイプはjpg、webp、png、gif、svgです。このファイルのmimetypeは:mimetypeです。', 'import' => 'インポート', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'インポートしています', 'importing_help' => 'アセット、アクセサリ、ライセンス、コンポーネント、消耗品、およびユーザーをCSVファイルからインポートできます。

CSVは、ドキュメント のサンプルCSVに一致するヘッダーでカンマ区切りでフォーマットする必要があります。', 'import-history' => 'インポート履歴', @@ -270,7 +271,7 @@ return [ 'supplier' => '仕入先', 'suppliers' => '仕入先', 'sure_to_delete' => '削除してもよろしいですか?', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => ':item を削除してもよろしいですか?', 'delete_what' => 'Delete :item', 'submit' => '送信', 'target' => '対象', @@ -371,12 +372,12 @@ return [ 'consumables_count' => '消耗品数', 'components_count' => '構成部品数', 'licenses_count' => 'ライセンス数', - 'notification_error' => 'Error', + 'notification_error' => 'エラー', 'notification_error_hint' => '以下のフォームにエラーがないか確認してください', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => '成功', + 'notification_warning' => '警告', + 'notification_info' => '情報', 'asset_information' => '資産情報', 'model_name' => 'モデル名', 'asset_name' => 'アセット名', @@ -486,10 +487,17 @@ return [ 'address2' => '住所2', 'import_note' => 'csvインポートを使用してインポートしました', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% 成功', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => '編集', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ja/help.php b/resources/lang/ja-JP/help.php similarity index 100% rename from resources/lang/ja/help.php rename to resources/lang/ja-JP/help.php diff --git a/resources/lang/ja/localizations.php b/resources/lang/ja-JP/localizations.php similarity index 99% rename from resources/lang/ja/localizations.php rename to resources/lang/ja-JP/localizations.php index cab6ec068a..4f46d5ea23 100644 --- a/resources/lang/ja/localizations.php +++ b/resources/lang/ja-JP/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> '日本語', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> '韓国語', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/ja/mail.php b/resources/lang/ja-JP/mail.php similarity index 100% rename from resources/lang/ja/mail.php rename to resources/lang/ja-JP/mail.php diff --git a/resources/lang/ja/pagination.php b/resources/lang/ja-JP/pagination.php similarity index 100% rename from resources/lang/ja/pagination.php rename to resources/lang/ja-JP/pagination.php diff --git a/resources/lang/ja/passwords.php b/resources/lang/ja-JP/passwords.php similarity index 100% rename from resources/lang/ja/passwords.php rename to resources/lang/ja-JP/passwords.php diff --git a/resources/lang/ja/reminders.php b/resources/lang/ja-JP/reminders.php similarity index 100% rename from resources/lang/ja/reminders.php rename to resources/lang/ja-JP/reminders.php diff --git a/resources/lang/ja/table.php b/resources/lang/ja-JP/table.php similarity index 100% rename from resources/lang/ja/table.php rename to resources/lang/ja-JP/table.php diff --git a/resources/lang/ja/validation.php b/resources/lang/ja-JP/validation.php similarity index 99% rename from resources/lang/ja/validation.php rename to resources/lang/ja-JP/validation.php index ff3be4c40d..94b49ee4c7 100644 --- a/resources/lang/ja/validation.php +++ b/resources/lang/ja-JP/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute は 一意の値である必要があります。', 'non_circular' => ':attribute は、循環参照を作成してはいけません。', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'パスワードはユーザー名と同じにすることはできません。', 'letters' => 'パスワードには英字が1文字以上必要です。', 'numbers' => 'パスワードには数字が1つ以上必要です。', diff --git a/resources/lang/ja/admin/labels/table.php b/resources/lang/ja/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/ja/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/km-KH/admin/components/general.php b/resources/lang/km-KH/admin/components/general.php index 5b788a51ec..b15d89391f 100644 --- a/resources/lang/km-KH/admin/components/general.php +++ b/resources/lang/km-KH/admin/components/general.php @@ -1,16 +1,16 @@ 'Component Name', + 'component_name' => 'ឈ្មោះសមាសធាតុ', 'checkin' => 'Checkin Component', 'checkout' => 'Checkout Component', - 'cost' => 'Purchase Cost', + 'cost' => 'ការចំណាយលើការទិញ', 'create' => 'Create Component', 'edit' => 'Edit Component', - 'date' => 'Purchase Date', - 'order' => 'Order Number', + 'date' => 'កាលបរិច្ឆេទទិញ', + 'order' => 'លេខបញ្ជាទិញ', 'remaining' => 'Remaining', - 'total' => 'Total', + 'total' => 'សរុប', 'update' => 'Update Component', 'checkin_limit' => 'Amount checked in must be equal to or less than :assigned_qty' ); diff --git a/resources/lang/km-KH/admin/components/message.php b/resources/lang/km-KH/admin/components/message.php index 0a7dd8d954..9bc3700fae 100644 --- a/resources/lang/km-KH/admin/components/message.php +++ b/resources/lang/km-KH/admin/components/message.php @@ -23,14 +23,14 @@ return array( 'checkout' => array( 'error' => 'Component was not checked out, please try again', 'success' => 'Component checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'អ្នកប្រើប្រាស់នោះមិនត្រឹមត្រូវទេ។ សូម​ព្យាយាម​ម្តង​ទៀត។', 'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ', ), 'checkin' => array( 'error' => 'Component was not checked in, please try again', 'success' => 'Component checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'អ្នកប្រើប្រាស់នោះមិនត្រឹមត្រូវទេ។ សូម​ព្យាយាម​ម្តង​ទៀត។' ) diff --git a/resources/lang/km-KH/admin/consumables/general.php b/resources/lang/km-KH/admin/consumables/general.php index 7c6bb32968..046006b608 100644 --- a/resources/lang/km-KH/admin/consumables/general.php +++ b/resources/lang/km-KH/admin/consumables/general.php @@ -2,10 +2,10 @@ return array( 'checkout' => 'Checkout Consumable to User', - 'consumable_name' => 'Consumable Name', + 'consumable_name' => 'ឈ្មោះ Consumable', 'create' => 'Create Consumable', 'item_no' => 'Item No.', 'remaining' => 'Remaining', - 'total' => 'Total', + 'total' => 'សរុប', 'update' => 'Update Consumable', ); diff --git a/resources/lang/km-KH/admin/consumables/message.php b/resources/lang/km-KH/admin/consumables/message.php index c0d0aa7f68..59158d407f 100644 --- a/resources/lang/km-KH/admin/consumables/message.php +++ b/resources/lang/km-KH/admin/consumables/message.php @@ -23,14 +23,14 @@ return array( 'checkout' => array( 'error' => 'Consumable was not checked out, please try again', 'success' => 'Consumable checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'អ្នកប្រើប្រាស់នោះមិនត្រឹមត្រូវទេ។ សូម​ព្យាយាម​ម្តង​ទៀត។', 'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ', ), 'checkin' => array( 'error' => 'Consumable was not checked in, please try again', 'success' => 'Consumable checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'អ្នកប្រើប្រាស់នោះមិនត្រឹមត្រូវទេ។ សូម​ព្យាយាម​ម្តង​ទៀត។' ) diff --git a/resources/lang/km-KH/admin/hardware/table.php b/resources/lang/km-KH/admin/hardware/table.php index 06b60bfd83..2614a1fa4e 100644 --- a/resources/lang/km-KH/admin/hardware/table.php +++ b/resources/lang/km-KH/admin/hardware/table.php @@ -2,25 +2,25 @@ return [ - 'asset_tag' => 'Asset Tag', - 'asset_model' => 'Model', + 'asset_tag' => 'ស្លាកទ្រព្យសម្បត្តិ', + 'asset_model' => 'គំរូ', 'book_value' => 'Current Value', 'change' => 'In/Out', - 'checkout_date' => 'Checkout Date', + 'checkout_date' => 'ថ្ងៃប្រគល់អោយ', 'checkoutto' => 'Checked Out', 'components_cost' => 'Total Components Cost', 'current_value' => 'Current Value', 'diff' => 'Diff', - 'dl_csv' => 'Download CSV', + 'dl_csv' => 'ទាញយក CSV', 'eol' => 'EOL', - 'id' => 'ID', + 'id' => 'លេខសម្គាល់', 'last_checkin_date' => 'Last Checkin Date', - 'location' => 'Location', - 'purchase_cost' => 'Cost', + 'location' => 'ទីតាំង', + 'purchase_cost' => 'ការចំណាយ', 'purchase_date' => 'Purchased', 'serial' => 'Serial', - 'status' => 'Status', - 'title' => 'Asset ', + 'status' => 'ស្ថានភាព', + 'title' => 'ទ្រព្យសកម្ម ', 'image' => 'Device Image', 'days_without_acceptance' => 'Days Without Acceptance', 'monthly_depreciation' => 'Monthly Depreciation', diff --git a/resources/lang/km-KH/admin/licenses/table.php b/resources/lang/km-KH/admin/licenses/table.php index dfce4136cb..ef6b39e27f 100644 --- a/resources/lang/km-KH/admin/licenses/table.php +++ b/resources/lang/km-KH/admin/licenses/table.php @@ -4,14 +4,14 @@ return array( 'assigned_to' => 'Assigned To', 'checkout' => 'In/Out', - 'id' => 'ID', + 'id' => 'លេខសម្គាល់', 'license_email' => 'License Email', 'license_name' => 'Licensed To', - 'purchase_date' => 'Purchase Date', + 'purchase_date' => 'កាលបរិច្ឆេទទិញ', 'purchased' => 'Purchased', - 'seats' => 'Seats', + 'seats' => 'កៅអី', 'hardware' => 'Hardware', 'serial' => 'Serial', - 'title' => 'License', + 'title' => 'អាជ្ញាប័ណ្ណ', ); diff --git a/resources/lang/km-KH/admin/locations/table.php b/resources/lang/km-KH/admin/locations/table.php index 9e53b80ed2..29f74fb1a2 100644 --- a/resources/lang/km-KH/admin/locations/table.php +++ b/resources/lang/km-KH/admin/locations/table.php @@ -3,18 +3,18 @@ return [ 'about_locations_title' => 'ទីតាំងត្រូវបានលុបដោយជោគជ័យ។', 'about_locations' => 'ទីតាំងត្រូវបានលុបដោយជោគជ័យ។', - 'assets_rtd' => 'Assets', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. + 'assets_rtd' => 'ទ្រព្យសកម្ម', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. 'assets_checkedout' => 'Assets Assigned', - 'id' => 'ID', - 'city' => 'City', - 'state' => 'State', - 'country' => 'Country', + 'id' => 'លេខសម្គាល់', + 'city' => 'ទីក្រុង', + 'state' => 'រដ្ឋ', + 'country' => 'ប្រទេស', 'create' => 'Create Location', 'update' => 'Update Location', 'print_assigned' => 'Print Assigned', 'print_all_assigned' => 'Print All Assigned', 'name' => 'Location Name', - 'address' => 'Address', + 'address' => 'អាស័យដ្ឋាន', 'address2' => 'Address Line 2', 'zip' => 'Postal Code', 'locations' => 'Locations', @@ -22,18 +22,18 @@ return [ 'currency' => 'Location Currency', 'ldap_ou' => 'LDAP Search OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'នាយកដ្ឋាន', + 'location' => 'ទីតាំង', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', + 'asset_name' => 'ឈ្មោះ', + 'asset_category' => 'ប្រភេទ', + 'asset_manufacturer' => 'ក្រុមហ៊ុនផលិត', + 'asset_model' => 'គំរូ', 'asset_serial' => 'Serial', - 'asset_location' => 'Location', + 'asset_location' => 'ទីតាំង', 'asset_checked_out' => 'Checked Out', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'កាលបរិច្ឆេទ:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/km-KH/admin/settings/general.php b/resources/lang/km-KH/admin/settings/general.php index 2f388b9000..92a5531eac 100644 --- a/resources/lang/km-KH/admin/settings/general.php +++ b/resources/lang/km-KH/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'អ្នក​ប្រើ​មិន​ត្រូវ​បាន​តម្រូវ​ឱ្យ​សរសេរ "username@domain.local" ទេ ពួកគេ​គ្រាន់តែ​វាយ​ពាក្យ "username"។', 'admin_cc_email' => 'CC អ៊ីមែល', 'admin_cc_email_help' => 'ប្រសិនបើ​អ្នក​ចង់​ផ្ញើ​ច្បាប់​ចម្លង​នៃ​អ៊ីមែល checkin​/​checkout ​ដែល​ត្រូវ​បាន​ផ្ញើ​ទៅ​អ្នក​ប្រើ​ទៅកាន់​គណនី​អ៊ីមែល​បន្ថែម សូម​បញ្ចូល​វា​នៅទីនេះ។ បើមិនដូច្នោះទេទុក field នេះឱ្យនៅទទេ។', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'ការជូនដំណឹង', 'alert_title' => 'ធ្វើបច្ចុប្បន្នភាពការកំណត់ការជូនដំណឹង', @@ -199,7 +200,7 @@ return [ 'show_assigned_assets_help' => 'Display assets which were assigned to the other assets in View User -> Assets, View User -> Info -> Print All Assigned and in Account -> View Assigned Assets.', 'show_images_in_email' => 'Show images in emails', 'show_images_in_email_help' => 'Uncheck this box if your Snipe-IT installation is behind a VPN or closed network and users outside the network will not be able to load images served from this installation in their emails.', - 'site_name' => 'Site Name', + 'site_name' => 'ឈ្មោះ​វេ​ប​សាយ', 'integrations' => 'Integrations', 'slack' => 'Slack', 'general_webhook' => 'General Webhook', @@ -311,7 +312,7 @@ return [ 'notifications' => 'Notifications', 'notifications_help' => 'Email Alerts & Audit Settings', 'asset_tags_help' => 'Incrementing and prefixes', - 'labels' => 'Labels', + 'labels' => 'ស្លាក', 'labels_title' => 'Update Label Settings', 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', @@ -319,7 +320,7 @@ return [ 'purge_help' => 'Purge Deleted Records', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'លេខបុគ្គលិក', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,7 +335,7 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'ចំណងជើង', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', diff --git a/resources/lang/km-KH/admin/statuslabels/message.php b/resources/lang/km-KH/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/km-KH/admin/statuslabels/message.php +++ b/resources/lang/km-KH/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/km-KH/admin/statuslabels/table.php b/resources/lang/km-KH/admin/statuslabels/table.php index 27befb5ef7..3451f3e4a6 100644 --- a/resources/lang/km-KH/admin/statuslabels/table.php +++ b/resources/lang/km-KH/admin/statuslabels/table.php @@ -2,18 +2,18 @@ return array( 'about' => 'About Status Labels', - 'archived' => 'Archived', + 'archived' => 'ទុកក្នុងប័ណ្ណសារ', 'create' => 'Create Status Label', 'color' => 'Chart Color', 'default_label' => 'Default Label', 'default_label_help' => 'This is used to ensure your most commonly used status labels appear at the top of the select box when creating/editing assets.', - 'deployable' => 'Deployable', + 'deployable' => 'អាចប្រើបាន', 'info' => 'Status labels are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for deployable, pending and archived assets.', 'name' => 'Status Name', - 'pending' => 'Pending', + 'pending' => 'កំពុងរង់ចាំ', 'status_type' => 'Status Type', 'show_in_nav' => 'Show in side nav', 'title' => 'Status Labels', - 'undeployable' => 'Undeployable', + 'undeployable' => 'មិន​អាច​ប្រើ​បាន', 'update' => 'Update Status Label', ); diff --git a/resources/lang/km-KH/admin/suppliers/table.php b/resources/lang/km-KH/admin/suppliers/table.php index 2a7b07ca93..7a58cef888 100644 --- a/resources/lang/km-KH/admin/suppliers/table.php +++ b/resources/lang/km-KH/admin/suppliers/table.php @@ -4,19 +4,19 @@ return array( 'about_suppliers_title' => 'About Suppliers', 'about_suppliers_text' => 'Suppliers are used to track the source of items', 'address' => 'Supplier Address', - 'assets' => 'Assets', - 'city' => 'City', + 'assets' => 'ទ្រព្យសកម្ម', + 'city' => 'ទីក្រុង', 'contact' => 'Contact Name', - 'country' => 'Country', + 'country' => 'ប្រទេស', 'create' => 'Create Supplier', 'email' => 'Email', 'fax' => 'Fax', - 'id' => 'ID', - 'licenses' => 'Licenses', + 'id' => 'លេខសម្គាល់', + 'licenses' => 'អាជ្ញាប័ណ្ណ', 'name' => 'Supplier Name', - 'notes' => 'Notes', + 'notes' => 'កំណត់ចំណាំ', 'phone' => 'Phone', - 'state' => 'State', + 'state' => 'រដ្ឋ', 'suppliers' => 'Suppliers', 'update' => 'Update Supplier', 'url' => 'URL', diff --git a/resources/lang/km-KH/admin/users/general.php b/resources/lang/km-KH/admin/users/general.php index b097ccec69..a4191edc4d 100644 --- a/resources/lang/km-KH/admin/users/general.php +++ b/resources/lang/km-KH/admin/users/general.php @@ -10,11 +10,11 @@ return [ 'clone' => 'Clone User', 'contact_user' => 'Contact :name', 'edit' => 'Edit User', - 'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', + 'filetype_info' => 'ប្រភេទឯកសារដែលបានអនុញ្ញាតគឺ png, gif, jpg, jpeg, doc, docx, pdf, txt, zip និង rar ។', 'history_user' => 'History for :name', 'info' => 'Info', 'restore_user' => 'Click here to restore them.', - 'last_login' => 'Last Login', + 'last_login' => 'ការចូលចុងក្រោយ', 'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.', 'print_assigned' => 'Print All Assigned', 'email_assigned' => 'Email List of All Assigned', diff --git a/resources/lang/km-KH/admin/users/message.php b/resources/lang/km-KH/admin/users/message.php index b7c0a29f14..43206b0ce9 100644 --- a/resources/lang/km-KH/admin/users/message.php +++ b/resources/lang/km-KH/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'You have successfully declined this asset.', 'bulk_manager_warn' => 'Your users have been successfully updated, however your manager entry was not saved because the manager you selected was also in the user list to be edited, and users may not be their own manager. Please select your users again, excluding the manager.', 'user_exists' => 'User already exists!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'អ្នកប្រើប្រាស់មិនមានទេ។', 'user_login_required' => 'The login field is required', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'The password is required.', @@ -50,15 +50,15 @@ return array( ), 'deletefile' => array( - 'error' => 'File not deleted. Please try again.', - 'success' => 'File successfully deleted.', + 'error' => 'ឯកសារមិនត្រូវបានលុបទេ។ សូម​ព្យាយាម​ម្តង​ទៀត។', + 'success' => 'ឯកសារត្រូវបានលុបដោយជោគជ័យ។', ), 'upload' => array( - 'error' => 'File(s) not uploaded. Please try again.', - 'success' => 'File(s) successfully uploaded.', + 'error' => 'ឯកសារ (ច្រើន) មិនត្រូវបានផ្ទុកឡើងទេ។ សូម​ព្យាយាម​ម្តង​ទៀត។', + 'success' => 'ឯកសារ (ច្រើន) ដែលបានបង្ហោះដោយជោគជ័យ។', 'nofiles' => 'You did not select any files for upload', - 'invalidfiles' => 'One or more of your files is too large or is a filetype that is not allowed. Allowed filetypes are png, gif, jpg, doc, docx, pdf, and txt.', + 'invalidfiles' => 'ឯកសារមួយ ឬច្រើនរបស់អ្នកមានទំហំធំពេក ឬជាប្រភេទឯកសារដែលមិនត្រូវបានអនុញ្ញាត។ ប្រភេទឯកសារដែលបានអនុញ្ញាតគឺ png, gif, jpg, doc, docx, pdf, និង txt ។', ), 'inventorynotification' => array( diff --git a/resources/lang/km-KH/admin/users/table.php b/resources/lang/km-KH/admin/users/table.php index 21e2154280..28ecc873a2 100644 --- a/resources/lang/km-KH/admin/users/table.php +++ b/resources/lang/km-KH/admin/users/table.php @@ -2,11 +2,11 @@ return array( 'activated' => 'Active', - 'allow' => 'Allow', - 'checkedout' => 'Assets', + 'allow' => 'អនុញ្ញាត', + 'checkedout' => 'ទ្រព្យសកម្ម', 'created_at' => 'Created', 'createuser' => 'Create User', - 'deny' => 'Deny', + 'deny' => 'បដិសេធ', 'email' => 'Email', 'employee_num' => 'Employee No.', 'first_name' => 'First Name', @@ -14,20 +14,21 @@ return array( 'id' => 'Id', 'inherit' => 'Inherit', 'job' => 'Job Title', - 'last_login' => 'Last Login', - 'last_name' => 'Last Name', - 'location' => 'Location', + 'last_login' => 'ការចូលចុងក្រោយ', + 'last_name' => 'នាមត្រកូល', + 'location' => 'ទីតាំង', 'lock_passwords' => 'Login details cannot be changed on this installation.', - 'manager' => 'Manager', + 'manager' => 'អ្នកគ្រប់គ្រង', 'managed_locations' => 'Managed Locations', - 'name' => 'Name', - 'notes' => 'Notes', + 'name' => 'ឈ្មោះ', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', + 'notes' => 'កំណត់ចំណាំ', 'password_confirm' => 'Confirm Password', 'password' => 'Password', 'phone' => 'Phone', 'show_current' => 'Show Current Users', 'show_deleted' => 'Show Deleted Users', - 'title' => 'Title', + 'title' => 'ចំណងជើង', 'to_restore_them' => 'to restore them.', 'total_assets_cost' => "Total Assets Cost", 'updateuser' => 'Update User', diff --git a/resources/lang/km-KH/button.php b/resources/lang/km-KH/button.php index 22821b8157..ebe17ac4c7 100644 --- a/resources/lang/km-KH/button.php +++ b/resources/lang/km-KH/button.php @@ -3,21 +3,21 @@ return [ 'actions' => 'Actions', 'add' => 'Add New', - 'cancel' => 'Cancel', + 'cancel' => 'បោះបង់', 'checkin_and_delete' => 'Checkin All / Delete User', - 'delete' => 'Delete', + 'delete' => 'លុប', 'edit' => 'Edit', 'restore' => 'Restore', 'remove' => 'Remove', 'request' => 'Request', - 'submit' => 'Submit', + 'submit' => 'ដាក់ស្នើ', 'upload' => 'Upload', 'select_file' => 'Select File...', 'select_files' => 'Select Files...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', 'send_password_link' => 'Send Password Reset Link', 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', + 'bulk_actions' => 'សកម្មភាពច្រើន', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', 'new' => 'New', diff --git a/resources/lang/km-KH/general.php b/resources/lang/km-KH/general.php index 562b99163b..ebf79c3199 100644 --- a/resources/lang/km-KH/general.php +++ b/resources/lang/km-KH/general.php @@ -27,7 +27,7 @@ return [ 'accept_assets_menu' => 'ទទួលយកទ្រព្យសកម្ម', 'audit' => 'សវនកម្ម', 'audit_report' => 'កំណត់ហេតុសវនកម្ម', - 'assets' => 'Assets', + 'assets' => 'ទ្រព្យសកម្ម', 'assets_audited' => 'ទ្រព្យសកម្មត្រូវបានសវនកម្ម', 'assets_checked_in_count' => 'assets checked in', 'assets_checked_out_count' => 'assets checked out', @@ -64,7 +64,7 @@ return [ 'city' => 'ទីក្រុង', 'click_here' => 'ចុច​ទីនេះ', 'clear_selection' => 'ជម្រះការជ្រើសរើស', - 'companies' => 'Companies', + 'companies' => 'ក្រុមហ៊ុន', 'company' => 'ក្រុមហ៊ុន', 'component' => 'Component', 'components' => 'Components', @@ -128,7 +128,7 @@ return [ 'first' => 'First', 'firstnamelastname' => 'First Name Last Name (janesmith@example.com)', 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', - 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', + 'firstinitial.lastname' => 'នាមត្រកូលដំបូង (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', 'first_name' => 'First Name', 'first_name_format' => 'First Name (jane@example.com)', @@ -146,7 +146,7 @@ return [ 'gravatar_url' => 'Change your avatar at Gravatar.com.', 'history' => 'History', 'history_for' => 'History for', - 'id' => 'ID', + 'id' => 'លេខសម្គាល់', 'image' => 'Image', 'image_delete' => 'Delete Image', 'include_deleted' => 'Include Deleted Assets', @@ -156,10 +156,11 @@ return [ 'image_filetypes_help' => 'ប្រភេទឯកសារដែលទទួលយកគឺ jpg, webp, png, gif និង svg ។ ទំហំផ្ទុកឡើងអតិបរមាដែលអនុញ្ញាតគឺ៖ ទំហំ.', 'unaccepted_image_type' => 'ឯកសាររូបភាពនេះមិនអាចអានបានទេ។ ប្រភេទឯកសារដែលទទួលយកគឺ jpg, webp, png, gif និង svg ។ ប្រភេទ mime នៃឯកសារនេះគឺ៖ :mimetype.', 'import' => 'នាំចូល', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'ការនាំចូល', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'ប្រវត្តិនាំចូល', - 'asset_maintenance' => 'Asset Maintenance', + 'asset_maintenance' => 'ការថែរក្សាទ្រព្យសម្បត្តិ', 'asset_maintenance_report' => 'របាយការណ៍​ថែទាំ​ទ្រព្យ​សកម្', 'asset_maintenances' => 'ការថែទាំទ្រព្យសកម្ម', 'item' => 'Item', @@ -204,19 +205,19 @@ return [ 'no_depreciation' => 'No Depreciation', 'no_results' => 'No Results.', 'no' => 'No', - 'notes' => 'Notes', - 'order_number' => 'Order Number', + 'notes' => 'កំណត់ចំណាំ', + 'order_number' => 'លេខបញ្ជាទិញ', 'only_deleted' => 'Only Deleted Assets', 'page_menu' => 'Showing _MENU_ items', 'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items', - 'pending' => 'Pending', + 'pending' => 'កំពុងរង់ចាំ', 'people' => 'People', - 'per_page' => 'Results Per Page', + 'per_page' => 'លទ្ធផលក្នុងមួយទំព័រ', 'previous' => 'Previous', 'processing' => 'Processing', 'profile' => 'Your profile', - 'purchase_cost' => 'Purchase Cost', - 'purchase_date' => 'Purchase Date', + 'purchase_cost' => 'ការចំណាយលើការទិញ', + 'purchase_date' => 'កាលបរិច្ឆេទទិញ', 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', @@ -230,7 +231,7 @@ return [ 'restored' => 'restored', 'restore' => 'Restore', 'requestable_models' => 'Requestable Models', - 'requested' => 'Requested', + 'requested' => 'បានស្នើសុំ', 'requested_date' => 'Requested Date', 'requested_assets' => 'Requested Assets', 'requested_assets_menu' => 'Requested Assets', @@ -287,7 +288,7 @@ return [ 'update' => 'Update', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Uploaded', - 'user' => 'User', + 'user' => 'អ្នក​ប្រើ', 'accepted' => 'accepted', 'declined' => 'declined', 'unassigned' => 'Unassigned', @@ -298,7 +299,7 @@ return [ 'viewassetsfor' => 'View Assets for :name', 'website' => 'Website', 'welcome' => 'Welcome, :name', - 'years' => 'years', + 'years' => 'ឆ្នាំ', 'yes' => 'Yes', 'zip' => 'Zip', 'noimage' => 'No image uploaded or image not found.', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error', + 'notification_error' => 'កំហុស', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_success' => 'ជោគជ័យ', + 'notification_warning' => 'ព្រមាន', 'notification_info' => 'Info', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'ឈ្មោះទ្រព្យសម្បត្តិ', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'ឈ្មោះ Consumable:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'ឈ្មោះគ្រឿងបន្លាស់៖', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -406,7 +407,7 @@ return [ 'pie_chart_type' => 'Dashboard Pie Chart Type', 'hello_name' => 'Hello, :name!', 'unaccepted_profile_warning' => 'You have :count items requiring acceptance. Click here to accept or decline them', - 'start_date' => 'Start Date', + 'start_date' => 'ថ្ងៃ​ចាប់ផ្តើម', 'end_date' => 'End Date', 'alt_uploaded_image_thumbnail' => 'Uploaded thumbnail', 'placeholder_kit' => 'Select a kit', @@ -416,7 +417,7 @@ return [ 'pre_flight' => 'Pre-Flight', 'skip_to_main_content' => 'Skip to main content', 'toggle_navigation' => 'Toggle navigation', - 'alerts' => 'Alerts', + 'alerts' => 'ការជូនដំណឹង', 'tasks_view_all' => 'View all tasks', 'true' => 'True', 'false' => 'False', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/km-KH/localizations.php b/resources/lang/km-KH/localizations.php index 26e0130930..f0f346ee63 100644 --- a/resources/lang/km-KH/localizations.php +++ b/resources/lang/km-KH/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'អៀរឡង់', 'it'=> 'អ៊ីតាលី', 'ja'=> 'ជប៉ុន', - 'km' => 'ខ្មែរ', + 'km-KH'=>'ខ្មែរ', 'ko'=> 'កូរ៉េ', 'lv'=>'ឡាតវី', 'lt'=> 'លីទុយអានី', diff --git a/resources/lang/km-KH/mail.php b/resources/lang/km-KH/mail.php index 0ce726e04a..d12c5e30c2 100644 --- a/resources/lang/km-KH/mail.php +++ b/resources/lang/km-KH/mail.php @@ -11,12 +11,12 @@ return [ 'asset' => 'ទ្រព្យសកម្ម៖', 'asset_name' => 'Asset Name:', 'asset_requested' => 'Asset requested', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'ស្លាកទ្រព្យសម្បត្តិ', 'assigned_to' => 'Assigned To', 'best_regards' => 'Best regards,', 'canceled' => 'Canceled:', - 'checkin_date' => 'Checkin Date:', - 'checkout_date' => 'Checkout Date:', + 'checkin_date' => 'កាលបរិច្ឆេទត្រឡប់មកវិញ:', + 'checkout_date' => 'ថ្ងៃប្រគល់អោយ:', 'click_to_confirm' => 'Please click on the following link to confirm your :web account:', 'click_on_the_link_accessory' => 'Please click on the link at the bottom to confirm that you have received the accessory.', 'click_on_the_link_asset' => 'Please click on the link at the bottom to confirm that you have received the asset.', @@ -29,8 +29,8 @@ return [ 'current_QTY' => 'Current QTY', 'Days' => 'Days', 'days' => 'Days', - 'expecting_checkin_date' => 'Expected Checkin Date:', - 'expires' => 'Expires', + 'expecting_checkin_date' => 'កាលបរិច្ឆេទដែលរំពឹងទុកនឹង Checkin:', + 'expires' => 'ផុតកំណត់', 'Expiring_Assets_Report' => 'Expiring Assets Report.', 'Expiring_Licenses_Report' => 'Expiring Licenses Report.', 'hello' => 'Hello', @@ -45,7 +45,7 @@ return [ 'Low_Inventory_Report' => 'Low Inventory Report', 'inventory_report' => 'Inventory Report', 'min_QTY' => 'Min QTY', - 'name' => 'Name', + 'name' => 'ឈ្មោះ', 'new_item_checked' => 'A new item has been checked out under your name, details are below.', 'password' => 'Password:', 'password_reset' => 'Password Reset', @@ -57,7 +57,7 @@ return [ 'reset_link' => 'Your Password Reset Link', 'reset_password' => 'Click here to reset your password:', 'serial' => 'Serial', - 'supplier' => 'Supplier', + 'supplier' => 'អ្នកផ្គត់ផ្គង់', 'tag' => 'Tag', 'test_email' => 'Test Email from Snipe-IT', 'test_mail_text' => 'This is a test from the Snipe-IT Asset Management System. If you got this, mail is working :)', @@ -66,9 +66,9 @@ return [ 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.', 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.', 'to_reset' => 'To reset your :web password, complete this form:', - 'type' => 'Type', + 'type' => 'ប្រភេទ', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', + 'user' => 'អ្នក​ប្រើ', 'username' => 'Username', 'welcome' => 'Welcome :name', 'welcome_to' => 'Welcome to :web!', diff --git a/resources/lang/km-KH/table.php b/resources/lang/km-KH/table.php index f7a49d86c1..12fe2c131d 100644 --- a/resources/lang/km-KH/table.php +++ b/resources/lang/km-KH/table.php @@ -3,7 +3,7 @@ return array( 'actions' => 'Actions', - 'action' => 'Action', + 'action' => 'សកម្មភាព', 'by' => 'By', 'item' => 'Item', diff --git a/resources/lang/km-KH/validation.php b/resources/lang/km-KH/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/km-KH/validation.php +++ b/resources/lang/km-KH/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/iu/account/general.php b/resources/lang/ko-KR/account/general.php similarity index 100% rename from resources/lang/iu/account/general.php rename to resources/lang/ko-KR/account/general.php diff --git a/resources/lang/ko/admin/accessories/general.php b/resources/lang/ko-KR/admin/accessories/general.php similarity index 100% rename from resources/lang/ko/admin/accessories/general.php rename to resources/lang/ko-KR/admin/accessories/general.php diff --git a/resources/lang/ko/admin/accessories/message.php b/resources/lang/ko-KR/admin/accessories/message.php similarity index 100% rename from resources/lang/ko/admin/accessories/message.php rename to resources/lang/ko-KR/admin/accessories/message.php diff --git a/resources/lang/ko/admin/accessories/table.php b/resources/lang/ko-KR/admin/accessories/table.php similarity index 100% rename from resources/lang/ko/admin/accessories/table.php rename to resources/lang/ko-KR/admin/accessories/table.php diff --git a/resources/lang/ko-KR/admin/asset_maintenances/form.php b/resources/lang/ko-KR/admin/asset_maintenances/form.php new file mode 100644 index 0000000000..1125bdb66c --- /dev/null +++ b/resources/lang/ko-KR/admin/asset_maintenances/form.php @@ -0,0 +1,14 @@ + '자산 관리 유형', + 'title' => '제목', + 'start_date' => '시작일', + 'completion_date' => '완료일', + 'cost' => '비용', + 'is_warranty' => '보증 개선', + 'asset_maintenance_time' => '자산 관리 기간(일 단위)', + 'notes' => '주석', + 'update' => '자산 관리 갱신', + 'create' => '자산 관리 생성' + ]; diff --git a/resources/lang/ko/admin/asset_maintenances/general.php b/resources/lang/ko-KR/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/ko/admin/asset_maintenances/general.php rename to resources/lang/ko-KR/admin/asset_maintenances/general.php diff --git a/resources/lang/ko/admin/asset_maintenances/message.php b/resources/lang/ko-KR/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/ko/admin/asset_maintenances/message.php rename to resources/lang/ko-KR/admin/asset_maintenances/message.php diff --git a/resources/lang/ko/admin/asset_maintenances/table.php b/resources/lang/ko-KR/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/ko/admin/asset_maintenances/table.php rename to resources/lang/ko-KR/admin/asset_maintenances/table.php diff --git a/resources/lang/ko/admin/categories/general.php b/resources/lang/ko-KR/admin/categories/general.php similarity index 100% rename from resources/lang/ko/admin/categories/general.php rename to resources/lang/ko-KR/admin/categories/general.php diff --git a/resources/lang/ko/admin/categories/message.php b/resources/lang/ko-KR/admin/categories/message.php similarity index 100% rename from resources/lang/ko/admin/categories/message.php rename to resources/lang/ko-KR/admin/categories/message.php diff --git a/resources/lang/ko/admin/categories/table.php b/resources/lang/ko-KR/admin/categories/table.php similarity index 100% rename from resources/lang/ko/admin/categories/table.php rename to resources/lang/ko-KR/admin/categories/table.php diff --git a/resources/lang/ko/admin/companies/general.php b/resources/lang/ko-KR/admin/companies/general.php similarity index 87% rename from resources/lang/ko/admin/companies/general.php rename to resources/lang/ko-KR/admin/companies/general.php index 76d1c391a4..fd4f2cc1ef 100644 --- a/resources/lang/ko/admin/companies/general.php +++ b/resources/lang/ko-KR/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => '회사 선택', - 'about_companies' => 'About Companies', + 'about_companies' => '회사 란', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/ko/admin/companies/message.php b/resources/lang/ko-KR/admin/companies/message.php similarity index 100% rename from resources/lang/ko/admin/companies/message.php rename to resources/lang/ko-KR/admin/companies/message.php diff --git a/resources/lang/ko/admin/companies/table.php b/resources/lang/ko-KR/admin/companies/table.php similarity index 100% rename from resources/lang/ko/admin/companies/table.php rename to resources/lang/ko-KR/admin/companies/table.php diff --git a/resources/lang/ko/admin/components/general.php b/resources/lang/ko-KR/admin/components/general.php similarity index 100% rename from resources/lang/ko/admin/components/general.php rename to resources/lang/ko-KR/admin/components/general.php diff --git a/resources/lang/ko/admin/components/message.php b/resources/lang/ko-KR/admin/components/message.php similarity index 100% rename from resources/lang/ko/admin/components/message.php rename to resources/lang/ko-KR/admin/components/message.php diff --git a/resources/lang/ko/admin/components/table.php b/resources/lang/ko-KR/admin/components/table.php similarity index 100% rename from resources/lang/ko/admin/components/table.php rename to resources/lang/ko-KR/admin/components/table.php diff --git a/resources/lang/ko/admin/consumables/general.php b/resources/lang/ko-KR/admin/consumables/general.php similarity index 100% rename from resources/lang/ko/admin/consumables/general.php rename to resources/lang/ko-KR/admin/consumables/general.php diff --git a/resources/lang/ko/admin/consumables/message.php b/resources/lang/ko-KR/admin/consumables/message.php similarity index 100% rename from resources/lang/ko/admin/consumables/message.php rename to resources/lang/ko-KR/admin/consumables/message.php diff --git a/resources/lang/ko/admin/consumables/table.php b/resources/lang/ko-KR/admin/consumables/table.php similarity index 100% rename from resources/lang/ko/admin/consumables/table.php rename to resources/lang/ko-KR/admin/consumables/table.php diff --git a/resources/lang/ko/admin/custom_fields/general.php b/resources/lang/ko-KR/admin/custom_fields/general.php similarity index 95% rename from resources/lang/ko/admin/custom_fields/general.php rename to resources/lang/ko-KR/admin/custom_fields/general.php index 1293beb086..4dccb8d205 100644 --- a/resources/lang/ko/admin/custom_fields/general.php +++ b/resources/lang/ko-KR/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => '신규 사용자 항목', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => '이 항목의 값은 데이터베이스 내에서 암호화 되었습니다. 관리자만이 해독된 값을 확인 할 수 있습니다.', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => '사용자에게 전송된 반출 이메일에 이 항목의 값을 포함 시키시겠습니까? 암호화 된 항목들은 이메일에 포함될 수 없습니다', '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.', diff --git a/resources/lang/ko/admin/custom_fields/message.php b/resources/lang/ko-KR/admin/custom_fields/message.php similarity index 100% rename from resources/lang/ko/admin/custom_fields/message.php rename to resources/lang/ko-KR/admin/custom_fields/message.php diff --git a/resources/lang/ko/admin/departments/message.php b/resources/lang/ko-KR/admin/departments/message.php similarity index 100% rename from resources/lang/ko/admin/departments/message.php rename to resources/lang/ko-KR/admin/departments/message.php diff --git a/resources/lang/ko/admin/departments/table.php b/resources/lang/ko-KR/admin/departments/table.php similarity index 100% rename from resources/lang/ko/admin/departments/table.php rename to resources/lang/ko-KR/admin/departments/table.php diff --git a/resources/lang/ko/admin/depreciations/general.php b/resources/lang/ko-KR/admin/depreciations/general.php similarity index 100% rename from resources/lang/ko/admin/depreciations/general.php rename to resources/lang/ko-KR/admin/depreciations/general.php diff --git a/resources/lang/ko/admin/depreciations/message.php b/resources/lang/ko-KR/admin/depreciations/message.php similarity index 100% rename from resources/lang/ko/admin/depreciations/message.php rename to resources/lang/ko-KR/admin/depreciations/message.php diff --git a/resources/lang/ko/admin/depreciations/table.php b/resources/lang/ko-KR/admin/depreciations/table.php similarity index 100% rename from resources/lang/ko/admin/depreciations/table.php rename to resources/lang/ko-KR/admin/depreciations/table.php diff --git a/resources/lang/ko/admin/groups/message.php b/resources/lang/ko-KR/admin/groups/message.php similarity index 100% rename from resources/lang/ko/admin/groups/message.php rename to resources/lang/ko-KR/admin/groups/message.php diff --git a/resources/lang/ko/admin/groups/table.php b/resources/lang/ko-KR/admin/groups/table.php similarity index 100% rename from resources/lang/ko/admin/groups/table.php rename to resources/lang/ko-KR/admin/groups/table.php diff --git a/resources/lang/ko/admin/groups/titles.php b/resources/lang/ko-KR/admin/groups/titles.php similarity index 100% rename from resources/lang/ko/admin/groups/titles.php rename to resources/lang/ko-KR/admin/groups/titles.php diff --git a/resources/lang/ko/admin/hardware/form.php b/resources/lang/ko-KR/admin/hardware/form.php similarity index 100% rename from resources/lang/ko/admin/hardware/form.php rename to resources/lang/ko-KR/admin/hardware/form.php diff --git a/resources/lang/ko/admin/hardware/general.php b/resources/lang/ko-KR/admin/hardware/general.php similarity index 100% rename from resources/lang/ko/admin/hardware/general.php rename to resources/lang/ko-KR/admin/hardware/general.php diff --git a/resources/lang/ko/admin/hardware/message.php b/resources/lang/ko-KR/admin/hardware/message.php similarity index 98% rename from resources/lang/ko/admin/hardware/message.php rename to resources/lang/ko-KR/admin/hardware/message.php index 50dbe98343..2fa56ebd83 100644 --- a/resources/lang/ko/admin/hardware/message.php +++ b/resources/lang/ko-KR/admin/hardware/message.php @@ -24,7 +24,7 @@ return [ 'restore' => [ 'error' => '자산이 복원되지 않았습니다. 다시 시도해 주세요.', 'success' => '자산이 복원되었습니다.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => '자산이 복원되었습니다.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/ko/admin/hardware/table.php b/resources/lang/ko-KR/admin/hardware/table.php similarity index 92% rename from resources/lang/ko/admin/hardware/table.php rename to resources/lang/ko-KR/admin/hardware/table.php index b0c1fd1fcc..f9aa67bb78 100644 --- a/resources/lang/ko/admin/hardware/table.php +++ b/resources/lang/ko-KR/admin/hardware/table.php @@ -24,9 +24,9 @@ return [ 'image' => '장비 사진', 'days_without_acceptance' => '미 승인 기간', 'monthly_depreciation' => '월간 감가상각', - 'assigned_to' => 'Assigned To', + 'assigned_to' => '할당', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', - 'changed' => 'Changed', + 'changed' => '변경됨', 'icon' => 'Icon', ]; diff --git a/resources/lang/ko/admin/kits/general.php b/resources/lang/ko-KR/admin/kits/general.php similarity index 87% rename from resources/lang/ko/admin/kits/general.php rename to resources/lang/ko-KR/admin/kits/general.php index 04574c776b..a7efd3d1da 100644 --- a/resources/lang/ko/admin/kits/general.php +++ b/resources/lang/ko-KR/admin/kits/general.php @@ -24,27 +24,27 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => '라이선스가 존재하지 않습니다', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => '소모품이 존재하지 않습니다', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', 'accessory_detached' => 'Accessory was successfully detached', 'accessory_error' => 'Accessory already attached to kit', 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', + 'accessory_none' => '부속품이 존재하지 않습니다', 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', + 'kit_created' => '키트가 생성되었습니다', + 'kit_updated' => '키트가 생성되었습니다', 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', + 'kit_deleted' => '키트가 삭제되었습니다', 'kit_model_updated' => 'Model was successfully updated', 'kit_model_detached' => 'Model was successfully detached', ]; diff --git a/resources/lang/ja/admin/labels/message.php b/resources/lang/ko-KR/admin/labels/message.php similarity index 100% rename from resources/lang/ja/admin/labels/message.php rename to resources/lang/ko-KR/admin/labels/message.php diff --git a/resources/lang/ko-KR/admin/labels/table.php b/resources/lang/ko-KR/admin/labels/table.php new file mode 100644 index 0000000000..d98e5fad9b --- /dev/null +++ b/resources/lang/ko-KR/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => '태그', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => '로고', + 'support_title' => '제목', + +]; \ No newline at end of file diff --git a/resources/lang/ko/admin/licenses/form.php b/resources/lang/ko-KR/admin/licenses/form.php similarity index 100% rename from resources/lang/ko/admin/licenses/form.php rename to resources/lang/ko-KR/admin/licenses/form.php diff --git a/resources/lang/ko/admin/licenses/general.php b/resources/lang/ko-KR/admin/licenses/general.php similarity index 100% rename from resources/lang/ko/admin/licenses/general.php rename to resources/lang/ko-KR/admin/licenses/general.php diff --git a/resources/lang/ko/admin/licenses/message.php b/resources/lang/ko-KR/admin/licenses/message.php similarity index 100% rename from resources/lang/ko/admin/licenses/message.php rename to resources/lang/ko-KR/admin/licenses/message.php diff --git a/resources/lang/ko/admin/licenses/table.php b/resources/lang/ko-KR/admin/licenses/table.php similarity index 100% rename from resources/lang/ko/admin/licenses/table.php rename to resources/lang/ko-KR/admin/licenses/table.php diff --git a/resources/lang/ko/admin/locations/message.php b/resources/lang/ko-KR/admin/locations/message.php similarity index 100% rename from resources/lang/ko/admin/locations/message.php rename to resources/lang/ko-KR/admin/locations/message.php diff --git a/resources/lang/ko/admin/locations/table.php b/resources/lang/ko-KR/admin/locations/table.php similarity index 97% rename from resources/lang/ko/admin/locations/table.php rename to resources/lang/ko-KR/admin/locations/table.php index 6fdab2a1ca..ee5e5044d6 100644 --- a/resources/lang/ko/admin/locations/table.php +++ b/resources/lang/ko-KR/admin/locations/table.php @@ -31,7 +31,7 @@ return [ 'asset_model' => '모델명', 'asset_serial' => '일련번호', 'asset_location' => '위치', - 'asset_checked_out' => 'Checked Out', + 'asset_checked_out' => '반출 확인', 'asset_expected_checkin' => 'Expected Checkin', 'date' => '날짜:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', diff --git a/resources/lang/ko/admin/manufacturers/message.php b/resources/lang/ko-KR/admin/manufacturers/message.php similarity index 100% rename from resources/lang/ko/admin/manufacturers/message.php rename to resources/lang/ko-KR/admin/manufacturers/message.php diff --git a/resources/lang/ko/admin/manufacturers/table.php b/resources/lang/ko-KR/admin/manufacturers/table.php similarity index 100% rename from resources/lang/ko/admin/manufacturers/table.php rename to resources/lang/ko-KR/admin/manufacturers/table.php diff --git a/resources/lang/ko/admin/models/general.php b/resources/lang/ko-KR/admin/models/general.php similarity index 100% rename from resources/lang/ko/admin/models/general.php rename to resources/lang/ko-KR/admin/models/general.php diff --git a/resources/lang/ko/admin/models/message.php b/resources/lang/ko-KR/admin/models/message.php similarity index 100% rename from resources/lang/ko/admin/models/message.php rename to resources/lang/ko-KR/admin/models/message.php diff --git a/resources/lang/ko/admin/models/table.php b/resources/lang/ko-KR/admin/models/table.php similarity index 100% rename from resources/lang/ko/admin/models/table.php rename to resources/lang/ko-KR/admin/models/table.php diff --git a/resources/lang/ko/admin/reports/general.php b/resources/lang/ko-KR/admin/reports/general.php similarity index 100% rename from resources/lang/ko/admin/reports/general.php rename to resources/lang/ko-KR/admin/reports/general.php diff --git a/resources/lang/ko/admin/reports/message.php b/resources/lang/ko-KR/admin/reports/message.php similarity index 100% rename from resources/lang/ko/admin/reports/message.php rename to resources/lang/ko-KR/admin/reports/message.php diff --git a/resources/lang/ko/admin/settings/general.php b/resources/lang/ko-KR/admin/settings/general.php similarity index 98% rename from resources/lang/ko/admin/settings/general.php rename to resources/lang/ko-KR/admin/settings/general.php index 2bf8bc8691..c2a72da653 100644 --- a/resources/lang/ko/admin/settings/general.php +++ b/resources/lang/ko-KR/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => '사용자는 "username@domain.local" 꼴로 입력할 필요가 없으며 "username"만 입력하면 됩니다.', 'admin_cc_email' => '참조 이메일', 'admin_cc_email_help' => '사용자에게 보낸 반입/반출 이메일 사본을 추가 이메일 계정으로 보내려면, 여기에 입력하세요. 그렇지 않으면 이 필드를 비워 두세요.', + 'admin_settings' => 'Admin Settings', 'is_ad' => '이것은 액티브 디렉토리 서버입니다.', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -85,7 +86,7 @@ return [ 'ldap_integration' => 'LDAP 연동', 'ldap_settings' => 'LDAP 설정', 'ldap_client_tls_cert_help' => '클라이언트 측 TLS 인증서 및 LDAP 연결용 키는 일반적으로 \'보안 LDAP\'가 포함된 Google Workspace 구성에서만 유용합니다.', - 'ldap_client_tls_key' => 'LDAP Client-Side TLS key', + 'ldap_client_tls_key' => 'LDAP 사용자 키', 'ldap_location' => 'LDAP Location', 'ldap_location_help' => 'The Ldap Location field should be used if an OU is not being used in the Base Bind DN. Leave this blank if an OU search is being used.', 'ldap_login_test_help' => '위에서 지정한 기본 DN의 유효한 LDAP 사용자 이름 및 비밀번호를 입력하여 LDAP 로그인이 올바르게 구성되었는지 테스트하십시오. 반드시 업데이트 된 LDAP 설정을 먼저 저장해야합니다.', @@ -125,7 +126,7 @@ return [ 'login' => 'Login Attempts', 'login_attempt' => 'Login Attempt', 'login_ip' => 'IP Address', - 'login_success' => 'Success?', + 'login_success' => '성공?', 'login_user_agent' => 'User Agent', 'login_help' => 'List of attempted logins', 'login_note' => '로그인 참고', @@ -316,10 +317,10 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => '삭제된 기록들 지우기', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => '사원번호', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => '제목', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D 바코드 형식', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/ko/admin/settings/message.php b/resources/lang/ko-KR/admin/settings/message.php similarity index 100% rename from resources/lang/ko/admin/settings/message.php rename to resources/lang/ko-KR/admin/settings/message.php diff --git a/resources/lang/ko-KR/admin/settings/table.php b/resources/lang/ko-KR/admin/settings/table.php new file mode 100644 index 0000000000..8680708b18 --- /dev/null +++ b/resources/lang/ko-KR/admin/settings/table.php @@ -0,0 +1,6 @@ + '생성일', + 'size' => 'Size', +); diff --git a/resources/lang/ko/admin/statuslabels/message.php b/resources/lang/ko-KR/admin/statuslabels/message.php similarity index 86% rename from resources/lang/ko/admin/statuslabels/message.php rename to resources/lang/ko-KR/admin/statuslabels/message.php index 341fc70724..fa9725ea04 100644 --- a/resources/lang/ko/admin/statuslabels/message.php +++ b/resources/lang/ko-KR/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => '상태 꼬리표가 존재하지 않습니다.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => '이 상태 꼬리표는 하나 이상의 자산과 연결되어 있어서 삭제할 수 없습니다. 이 상태를 참조하지 않게 자산을 수정하고 다시 시도해 주세요. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => '이러한 자산은 누구에게도 할당 할 수 없습니다.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => '이러한 자산은 체크 아웃 할 수 있습니다. 할당되면 Deployed의 메타 상태로 가정합니다.', 'archived' => '이러한 애셋은 체크 아웃 할 수 없으며 보관 된보기에만 표시됩니다. 이는 예산 / 역사적 목적을 위해 자산에 대한 정보를 보유하지만 일상적인 자산 목록에서 유지하는 데 유용합니다.', 'pending' => '이러한 자산은 아직 수리를 위해 나가는 품목에 자주 사용되지만 누구에게나 할당 될 수는 없지만 유통에 회부 될 것으로 예상됩니다.', ], diff --git a/resources/lang/ko/admin/statuslabels/table.php b/resources/lang/ko-KR/admin/statuslabels/table.php similarity index 100% rename from resources/lang/ko/admin/statuslabels/table.php rename to resources/lang/ko-KR/admin/statuslabels/table.php diff --git a/resources/lang/ko/admin/suppliers/message.php b/resources/lang/ko-KR/admin/suppliers/message.php similarity index 100% rename from resources/lang/ko/admin/suppliers/message.php rename to resources/lang/ko-KR/admin/suppliers/message.php diff --git a/resources/lang/ko/admin/suppliers/table.php b/resources/lang/ko-KR/admin/suppliers/table.php similarity index 100% rename from resources/lang/ko/admin/suppliers/table.php rename to resources/lang/ko-KR/admin/suppliers/table.php diff --git a/resources/lang/ko/admin/users/general.php b/resources/lang/ko-KR/admin/users/general.php similarity index 97% rename from resources/lang/ko/admin/users/general.php rename to resources/lang/ko-KR/admin/users/general.php index df681ceab4..052b56d6f3 100644 --- a/resources/lang/ko/admin/users/general.php +++ b/resources/lang/ko-KR/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => '사용자 보기 :name', 'usercsv' => 'CSV 파일', 'two_factor_admin_optin_help' => '현재 관리 설정이 두가지 인증방법을 선택적으로 실행하게 되어 있습니다. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA 장치 등록 ', + 'two_factor_active' => '2FA 활성화 ', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/ko/admin/users/message.php b/resources/lang/ko-KR/admin/users/message.php similarity index 98% rename from resources/lang/ko/admin/users/message.php rename to resources/lang/ko-KR/admin/users/message.php index 9e97d659d3..8ea68db410 100644 --- a/resources/lang/ko/admin/users/message.php +++ b/resources/lang/ko-KR/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => '이 자산이 거부되었습니다.', 'bulk_manager_warn' => '사용자가 성공적으로 갱신되었지만, 선택한 관리자가 편집할 사용자 목록에도 있었고, 사용자가 자신의 관리자가 아니 어서 관리자 항목이 저장되지 않았습니다. 관리자를 제외한 사용자를 다시 선택하십시오.', 'user_exists' => '사용자가 이미 존재합니다!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => '사용자가 존재하지 않습니다.', 'user_login_required' => '로그인 항목을 입력해 주세요.', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => '비밀번호를 입력해 주세요.', diff --git a/resources/lang/ko/admin/users/table.php b/resources/lang/ko-KR/admin/users/table.php similarity index 95% rename from resources/lang/ko/admin/users/table.php rename to resources/lang/ko-KR/admin/users/table.php index 39c724abc2..25090f5d51 100644 --- a/resources/lang/ko/admin/users/table.php +++ b/resources/lang/ko-KR/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => '상사', 'managed_locations' => '관리되는 위치', 'name' => '이름', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => '비고', 'password_confirm' => '비밀번호 확인', 'password' => '비밀번호', diff --git a/resources/lang/ko/auth.php b/resources/lang/ko-KR/auth.php similarity index 100% rename from resources/lang/ko/auth.php rename to resources/lang/ko-KR/auth.php diff --git a/resources/lang/ko/auth/general.php b/resources/lang/ko-KR/auth/general.php similarity index 100% rename from resources/lang/ko/auth/general.php rename to resources/lang/ko-KR/auth/general.php diff --git a/resources/lang/ko/auth/message.php b/resources/lang/ko-KR/auth/message.php similarity index 100% rename from resources/lang/ko/auth/message.php rename to resources/lang/ko-KR/auth/message.php diff --git a/resources/lang/ko/button.php b/resources/lang/ko-KR/button.php similarity index 100% rename from resources/lang/ko/button.php rename to resources/lang/ko-KR/button.php diff --git a/resources/lang/ko/general.php b/resources/lang/ko-KR/general.php similarity index 95% rename from resources/lang/ko/general.php rename to resources/lang/ko-KR/general.php index 77f4956e3e..93bed97b82 100644 --- a/resources/lang/ko/general.php +++ b/resources/lang/ko-KR/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => '불러오기', + 'import_this_file' => 'Map fields and process this file', 'importing' => '가져오는 중', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => '가져오기 이력', @@ -224,7 +225,7 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => '사용 준비', 'recent_activity' => '최근 활동', - 'remaining' => 'Remaining', + 'remaining' => '잔여수량', 'remove_company' => '공급자 연결 제거', 'reports' => '보고서', 'restored' => '복원됨', @@ -270,7 +271,7 @@ return [ 'supplier' => '공급자', 'suppliers' => '공급자', 'sure_to_delete' => '정말로 삭제 하시겠습니까', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => ':item 을 삭제 하시겠습니까?', 'delete_what' => 'Delete :item', 'submit' => '제출', 'target' => '대상', @@ -283,7 +284,7 @@ return [ 'undeployable' => '사용불가', 'unknown_admin' => '알수없는 관리자', 'username_format' => '사용자명 형식', - 'username' => 'Username', + 'username' => '사용자명', 'update' => '갱신', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => '업로드됨', @@ -325,14 +326,14 @@ return [ 'user_manual' => '사용자 설명서', 'setup_step_1' => '1 단계', 'setup_step_2' => '2 단계', - 'setup_step_3' => 'Step 3', - 'setup_step_4' => 'Step 4', + 'setup_step_3' => '3 단계', + 'setup_step_4' => '4 단계', 'setup_config_check' => 'Configuration Check', 'setup_create_database' => 'Create Database Tables', 'setup_create_admin' => '관리자 유저 생성', 'setup_done' => '완료됨', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => '반출 확인', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error', + 'notification_error' => '오류', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => '성공', + 'notification_warning' => '경고', + 'notification_info' => '정보', 'asset_information' => '자산 정보', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => '자산명', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => '소모품 명:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => '액세서리 이름', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -406,7 +407,7 @@ return [ 'pie_chart_type' => 'Dashboard Pie Chart Type', 'hello_name' => 'Hello, :name!', 'unaccepted_profile_warning' => 'You have :count items requiring acceptance. Click here to accept or decline them', - 'start_date' => 'Start Date', + 'start_date' => '시작일', 'end_date' => 'End Date', 'alt_uploaded_image_thumbnail' => 'Uploaded thumbnail', 'placeholder_kit' => 'Select a kit', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':항목 이름', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% 완료', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => '편집', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ko-KR/help.php b/resources/lang/ko-KR/help.php new file mode 100644 index 0000000000..b418098912 --- /dev/null +++ b/resources/lang/ko-KR/help.php @@ -0,0 +1,35 @@ + '자세한 정보', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => '자산은 일련 번호나 자산 꼬리표로 추적되는 품목들입니다. 특정 품목의 상황을 파악하는 것이 더 높은 가치를 갖는 추세입니다.', + + 'categories' => '분류는 품목들을 구성할 떄 유용합니다. 몇가지 예시 분류들로는 "데스크탑","랩탑","휴대폰","타블렛" 등이 있지만, 당신이 원하는 대로 분류들을 사용 할 수 있습니다.', + + 'accessories' => '부속품들이란 사용자들에게 지급은 하지만 일련 번호가 없는(또는 특별히 추적할 필요가 없는) 것을 뜻합니다. 예를 들면, 컴퓨터의 마우스나 키보드들입니다.', + + 'companies' => '회사들은 단순한 식별 항목으로 사용될 수 있고, 전사 지원이 관리 설정에서 활성화 된다면 자산, 사용자, 기타 등의 표시 제한에 사용 될 수 있습니다.', + + 'components' => '부품들은 HDD, RAM 같은, 한개의 자산의 일부분입니다.', + + 'consumables' => '소모품은 시간이 지남에 따라 소진되어 구매해야 하는 것들 입니다. 예로, 프린터 잉크나 복사 용지가 있습니다.', + + 'depreciations' => '가치가 하락하는 자산들을 직선법에 의한 감가상각 설정을 할 수 있습니다.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/ko/localizations.php b/resources/lang/ko-KR/localizations.php similarity index 99% rename from resources/lang/ko/localizations.php rename to resources/lang/ko-KR/localizations.php index 95b54a6fe1..942b653597 100644 --- a/resources/lang/ko/localizations.php +++ b/resources/lang/ko-KR/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/ko/mail.php b/resources/lang/ko-KR/mail.php similarity index 100% rename from resources/lang/ko/mail.php rename to resources/lang/ko-KR/mail.php diff --git a/resources/lang/ko/pagination.php b/resources/lang/ko-KR/pagination.php similarity index 100% rename from resources/lang/ko/pagination.php rename to resources/lang/ko-KR/pagination.php diff --git a/resources/lang/iu/passwords.php b/resources/lang/ko-KR/passwords.php similarity index 100% rename from resources/lang/iu/passwords.php rename to resources/lang/ko-KR/passwords.php diff --git a/resources/lang/ko/reminders.php b/resources/lang/ko-KR/reminders.php similarity index 100% rename from resources/lang/ko/reminders.php rename to resources/lang/ko-KR/reminders.php diff --git a/resources/lang/ko/table.php b/resources/lang/ko-KR/table.php similarity index 100% rename from resources/lang/ko/table.php rename to resources/lang/ko-KR/table.php diff --git a/resources/lang/ko/validation.php b/resources/lang/ko-KR/validation.php similarity index 99% rename from resources/lang/ko/validation.php rename to resources/lang/ko-KR/validation.php index 9e05e2a457..d0dd3097f5 100644 --- a/resources/lang/ko/validation.php +++ b/resources/lang/ko-KR/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute 는 고유의 값만 가져야 합니다.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/ko/admin/asset_maintenances/form.php b/resources/lang/ko/admin/asset_maintenances/form.php deleted file mode 100644 index 530694df5b..0000000000 --- a/resources/lang/ko/admin/asset_maintenances/form.php +++ /dev/null @@ -1,14 +0,0 @@ - 'Asset Maintenance Type', - 'title' => '제목', - 'start_date' => 'Start Date', - 'completion_date' => 'Completion Date', - 'cost' => '비용', - 'is_warranty' => '보증 개선', - 'asset_maintenance_time' => 'Asset Maintenance Time (in days)', - 'notes' => '주석', - 'update' => 'Update Asset Maintenance', - 'create' => 'Create Asset Maintenance' - ]; diff --git a/resources/lang/ko/admin/labels/table.php b/resources/lang/ko/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/ko/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/ko/admin/settings/table.php b/resources/lang/ko/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/ko/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/ko/help.php b/resources/lang/ko/help.php deleted file mode 100644 index 5076c3a3f7..0000000000 --- a/resources/lang/ko/help.php +++ /dev/null @@ -1,35 +0,0 @@ - '자세한 정보', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/lt/account/general.php b/resources/lang/lt-LT/account/general.php similarity index 65% rename from resources/lang/lt/account/general.php rename to resources/lang/lt-LT/account/general.php index d1d7aee3fe..1c6995ca10 100644 --- a/resources/lang/lt/account/general.php +++ b/resources/lang/lt-LT/account/general.php @@ -7,6 +7,6 @@ return array( 'api_base_url' => 'Jūsų API nuoroda yra:', 'api_base_url_endpoint' => '/<endpoint>', 'api_token_expiration_time' => 'API tokenai nustos galioti:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', + 'api_reference' => 'Prašau patikrinti API nuorodą, kad + rasti API galinius taškus ir papildomą API dokumentaciją.', ); diff --git a/resources/lang/lt/admin/accessories/general.php b/resources/lang/lt-LT/admin/accessories/general.php similarity index 100% rename from resources/lang/lt/admin/accessories/general.php rename to resources/lang/lt-LT/admin/accessories/general.php diff --git a/resources/lang/lt/admin/accessories/message.php b/resources/lang/lt-LT/admin/accessories/message.php similarity index 93% rename from resources/lang/lt/admin/accessories/message.php rename to resources/lang/lt-LT/admin/accessories/message.php index bc9c008212..3032da8ec0 100644 --- a/resources/lang/lt/admin/accessories/message.php +++ b/resources/lang/lt-LT/admin/accessories/message.php @@ -25,7 +25,7 @@ return array( 'checkout' => array( 'error' => 'Priedo nepavyko išduoti, pabandykite dar kartą', 'success' => 'Įranga sėkmingai išimta.', - 'unavailable' => 'Accessory is not available for checkout. Check quantity available', + 'unavailable' => 'Priedo išimti negalima. Pasitikrinkite likutį', 'user_does_not_exist' => 'Šis vartotojas neteisingas. Prašome bandykite dar kartą.' ), diff --git a/resources/lang/lt/admin/accessories/table.php b/resources/lang/lt-LT/admin/accessories/table.php similarity index 100% rename from resources/lang/lt/admin/accessories/table.php rename to resources/lang/lt-LT/admin/accessories/table.php diff --git a/resources/lang/lt/admin/asset_maintenances/form.php b/resources/lang/lt-LT/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/lt/admin/asset_maintenances/form.php rename to resources/lang/lt-LT/admin/asset_maintenances/form.php diff --git a/resources/lang/lt/admin/asset_maintenances/general.php b/resources/lang/lt-LT/admin/asset_maintenances/general.php similarity index 60% rename from resources/lang/lt/admin/asset_maintenances/general.php rename to resources/lang/lt-LT/admin/asset_maintenances/general.php index 207f46100d..e3739627a2 100644 --- a/resources/lang/lt/admin/asset_maintenances/general.php +++ b/resources/lang/lt-LT/admin/asset_maintenances/general.php @@ -8,9 +8,9 @@ 'repair' => 'Remontas', 'maintenance' => 'Priežiūra', 'upgrade' => 'Atnaujinti', - 'calibration' => 'Calibration', - 'software_support' => 'Software Support', - 'hardware_support' => 'Hardware Support', - 'configuration_change' => 'Configuration Change', - 'pat_test' => 'PAT Test', + 'calibration' => 'Derinimas', + 'software_support' => 'Programinės įrangos palaikymas', + 'hardware_support' => 'Techninės įrangos palaikymas', + 'configuration_change' => 'Konfigūracijos pokytis', + 'pat_test' => 'PAT testas', ]; diff --git a/resources/lang/lt/admin/asset_maintenances/message.php b/resources/lang/lt-LT/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/lt/admin/asset_maintenances/message.php rename to resources/lang/lt-LT/admin/asset_maintenances/message.php diff --git a/resources/lang/lt/admin/asset_maintenances/table.php b/resources/lang/lt-LT/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/lt/admin/asset_maintenances/table.php rename to resources/lang/lt-LT/admin/asset_maintenances/table.php diff --git a/resources/lang/lt/admin/categories/general.php b/resources/lang/lt-LT/admin/categories/general.php similarity index 100% rename from resources/lang/lt/admin/categories/general.php rename to resources/lang/lt-LT/admin/categories/general.php diff --git a/resources/lang/lt/admin/categories/message.php b/resources/lang/lt-LT/admin/categories/message.php similarity index 100% rename from resources/lang/lt/admin/categories/message.php rename to resources/lang/lt-LT/admin/categories/message.php diff --git a/resources/lang/lt/admin/categories/table.php b/resources/lang/lt-LT/admin/categories/table.php similarity index 100% rename from resources/lang/lt/admin/categories/table.php rename to resources/lang/lt-LT/admin/categories/table.php diff --git a/resources/lang/lt/admin/companies/general.php b/resources/lang/lt-LT/admin/companies/general.php similarity index 100% rename from resources/lang/lt/admin/companies/general.php rename to resources/lang/lt-LT/admin/companies/general.php diff --git a/resources/lang/lt/admin/companies/message.php b/resources/lang/lt-LT/admin/companies/message.php similarity index 100% rename from resources/lang/lt/admin/companies/message.php rename to resources/lang/lt-LT/admin/companies/message.php diff --git a/resources/lang/lt/admin/companies/table.php b/resources/lang/lt-LT/admin/companies/table.php similarity index 100% rename from resources/lang/lt/admin/companies/table.php rename to resources/lang/lt-LT/admin/companies/table.php diff --git a/resources/lang/lt/admin/components/general.php b/resources/lang/lt-LT/admin/components/general.php similarity index 100% rename from resources/lang/lt/admin/components/general.php rename to resources/lang/lt-LT/admin/components/general.php diff --git a/resources/lang/lt/admin/components/message.php b/resources/lang/lt-LT/admin/components/message.php similarity index 100% rename from resources/lang/lt/admin/components/message.php rename to resources/lang/lt-LT/admin/components/message.php diff --git a/resources/lang/lt/admin/components/table.php b/resources/lang/lt-LT/admin/components/table.php similarity index 100% rename from resources/lang/lt/admin/components/table.php rename to resources/lang/lt-LT/admin/components/table.php diff --git a/resources/lang/lt/admin/consumables/general.php b/resources/lang/lt-LT/admin/consumables/general.php similarity index 100% rename from resources/lang/lt/admin/consumables/general.php rename to resources/lang/lt-LT/admin/consumables/general.php diff --git a/resources/lang/lt/admin/consumables/message.php b/resources/lang/lt-LT/admin/consumables/message.php similarity index 100% rename from resources/lang/lt/admin/consumables/message.php rename to resources/lang/lt-LT/admin/consumables/message.php diff --git a/resources/lang/lt/admin/consumables/table.php b/resources/lang/lt-LT/admin/consumables/table.php similarity index 100% rename from resources/lang/lt/admin/consumables/table.php rename to resources/lang/lt-LT/admin/consumables/table.php diff --git a/resources/lang/lt/admin/custom_fields/general.php b/resources/lang/lt-LT/admin/custom_fields/general.php similarity index 96% rename from resources/lang/lt/admin/custom_fields/general.php rename to resources/lang/lt-LT/admin/custom_fields/general.php index f3be81e06a..adcf304277 100644 --- a/resources/lang/lt/admin/custom_fields/general.php +++ b/resources/lang/lt-LT/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Naujas pritaikomas laukelis', 'create_field_title' => 'Sukurti naują nestandartinį laukelį', 'value_encrypted' => 'Šio lauko vertė yra užkoduota duomenų bazėje. Tik admin vartotojai galės peržiūrėti iššifruotą vertę', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Įterptos šio laukelio išdavimo reikšmės bus siunčiamos vartotojams? Užšifruoti laukai negali būti įterpti į el. laišką', '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.', diff --git a/resources/lang/lt/admin/custom_fields/message.php b/resources/lang/lt-LT/admin/custom_fields/message.php similarity index 96% rename from resources/lang/lt/admin/custom_fields/message.php rename to resources/lang/lt-LT/admin/custom_fields/message.php index c572cb051d..c7808c5922 100644 --- a/resources/lang/lt/admin/custom_fields/message.php +++ b/resources/lang/lt-LT/admin/custom_fields/message.php @@ -51,7 +51,7 @@ return array( 'fieldset_default_value' => array( - 'error' => 'Error validating default fieldset values.', + 'error' => 'Klaida validuojant standartines laukų reikšmes.', ), diff --git a/resources/lang/lt/admin/departments/message.php b/resources/lang/lt-LT/admin/departments/message.php similarity index 84% rename from resources/lang/lt/admin/departments/message.php rename to resources/lang/lt-LT/admin/departments/message.php index 28eed831b6..b943b8d719 100644 --- a/resources/lang/lt/admin/departments/message.php +++ b/resources/lang/lt-LT/admin/departments/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Departamentas neegzistuoja.', - 'department_already_exists' => 'A department already exists with that name at this company location. Or choose a more specific name for this department. ', + 'department_already_exists' => 'Toks departamento pavadinimas šioje įmonėje jau egzistuoja. Pasirinkite tikslesnį pavadinimą. ', 'assoc_users' => 'Šis skyrius šiuo metu yra susijęs su bent vienu naudotoju ir jo negalima ištrinti. Prašome atnaujinti savo naudotojus, kad jie daugiau nebenumatytų šio skyriaus ir bandytų dar kartą.', 'create' => array( 'error' => 'Departamentas nebuvo sukurtas, prašome pabandyti dar kartą.', diff --git a/resources/lang/lt/admin/departments/table.php b/resources/lang/lt-LT/admin/departments/table.php similarity index 100% rename from resources/lang/lt/admin/departments/table.php rename to resources/lang/lt-LT/admin/departments/table.php diff --git a/resources/lang/lt/admin/depreciations/general.php b/resources/lang/lt-LT/admin/depreciations/general.php similarity index 55% rename from resources/lang/lt/admin/depreciations/general.php rename to resources/lang/lt-LT/admin/depreciations/general.php index 5db79cc407..a1ddf7a4ea 100644 --- a/resources/lang/lt/admin/depreciations/general.php +++ b/resources/lang/lt-LT/admin/depreciations/general.php @@ -6,11 +6,11 @@ return [ 'asset_depreciations' => 'Irangos nusidėvėjimas', 'create' => 'Sukurkite nusidėvėjimą', 'depreciation_name' => 'Nusidėvėjimo pavadinimas', - 'depreciation_min' => 'Floor Value of Depreciation', + 'depreciation_min' => 'Minimali nusidėvėjimo reikšmė', 'number_of_months' => 'Mėnesių skaičius', 'update' => 'Atnaujinti nusidėvėjimą', - 'depreciation_min' => 'Minimum Value after Depreciation', - 'no_depreciations_warning' => 'Warning: - You do not currently have any depreciations set up. - Please set up at least one depreciation to view the depreciation report.', + 'depreciation_min' => 'Minimali nusidėvėjimo reikšmė', + 'no_depreciations_warning' => 'Įspėjimas: + Neturite nustatyto nusidėvėjimo. + Norėdami pamatyti nusidėvėjimo ataskaitą, nustatykite bent vieną nusidėvėjimą.', ]; diff --git a/resources/lang/lt/admin/depreciations/message.php b/resources/lang/lt-LT/admin/depreciations/message.php similarity index 100% rename from resources/lang/lt/admin/depreciations/message.php rename to resources/lang/lt-LT/admin/depreciations/message.php diff --git a/resources/lang/lt/admin/depreciations/table.php b/resources/lang/lt-LT/admin/depreciations/table.php similarity index 100% rename from resources/lang/lt/admin/depreciations/table.php rename to resources/lang/lt-LT/admin/depreciations/table.php diff --git a/resources/lang/lt/admin/groups/message.php b/resources/lang/lt-LT/admin/groups/message.php similarity index 91% rename from resources/lang/lt/admin/groups/message.php rename to resources/lang/lt-LT/admin/groups/message.php index 8d0220b6d0..0655ca13da 100644 --- a/resources/lang/lt/admin/groups/message.php +++ b/resources/lang/lt-LT/admin/groups/message.php @@ -3,7 +3,7 @@ return array( 'group_exists' => 'Gruoė jau sukurta!', - 'group_not_found' => 'Group ID :id does not exist.', + 'group_not_found' => 'Tokios [:id] grupės nėra.', 'group_name_required' => 'Laukelio pavadinimas privalomas', 'success' => array( diff --git a/resources/lang/lt/admin/groups/table.php b/resources/lang/lt-LT/admin/groups/table.php similarity index 100% rename from resources/lang/lt/admin/groups/table.php rename to resources/lang/lt-LT/admin/groups/table.php diff --git a/resources/lang/lt/admin/groups/titles.php b/resources/lang/lt-LT/admin/groups/titles.php similarity index 100% rename from resources/lang/lt/admin/groups/titles.php rename to resources/lang/lt-LT/admin/groups/titles.php diff --git a/resources/lang/lt/admin/hardware/form.php b/resources/lang/lt-LT/admin/hardware/form.php similarity index 96% rename from resources/lang/lt/admin/hardware/form.php rename to resources/lang/lt-LT/admin/hardware/form.php index 50f61d5cbf..7c25237d82 100644 --- a/resources/lang/lt/admin/hardware/form.php +++ b/resources/lang/lt-LT/admin/hardware/form.php @@ -2,7 +2,7 @@ return [ 'bulk_delete' => 'Patvirtinkite masinio ištrynimo turinį', - 'bulk_restore' => 'Confirm Bulk Restore Assets', + 'bulk_restore' => 'Patvirtinti masinį įrangos atstatymą', 'bulk_delete_help' => 'Peržiūrėkite įrangos ištrinimą žemiau. Ištrinus, įranga galima atstatyti, tačiau daugiau nebus priskirta jokiam vartotojam.', 'bulk_restore_help' => 'Review the assets for bulk restoration below. Once restored, these assets will not be associated with any users they were previously assigned to.', 'bulk_delete_warn' => 'Jūs norite ištrinti :asset_count įranga.', @@ -46,7 +46,7 @@ return [ 'warranty' => 'Garantija', 'warranty_expires' => 'Garantija baigiasi', 'years' => 'metai', - 'asset_location' => 'Update Asset Location', + 'asset_location' => 'Atnaujinti įrangos vietą', 'asset_location_update_default_current' => 'Update default location AND actual location', 'asset_location_update_default' => 'Atnaujinti tik standartinę lokaciją', 'asset_location_update_actual' => 'Atnaujinti tik aktualią lokaciją', diff --git a/resources/lang/lt/admin/hardware/general.php b/resources/lang/lt-LT/admin/hardware/general.php similarity index 67% rename from resources/lang/lt/admin/hardware/general.php rename to resources/lang/lt-LT/admin/hardware/general.php index 2786be3bf1..18b650e8ef 100644 --- a/resources/lang/lt/admin/hardware/general.php +++ b/resources/lang/lt-LT/admin/hardware/general.php @@ -12,19 +12,19 @@ return [ 'clone' => 'Kopijuoti įrangą', 'deployable' => 'Naudojamas', 'deleted' => 'Ši įranga buvo ištrinta.', - 'delete_confirm' => 'Are you sure you want to delete this asset?', + 'delete_confirm' => 'Ar jūs tikrai norite ištrinti šią įrangą?', 'edit' => 'Keisti įrangą', - 'model_deleted' => 'This Assets model has been deleted. You must restore the model before you can restore the Asset.', + 'model_deleted' => 'Šios įrangos modelis yra ištrintas. Pirma turite atstattyti modelį, tada galėsite atstatyti įrangą.', 'model_invalid' => 'Neteisingas įrangos modelis.', - 'model_invalid_fix' => 'The Asset should be edited to correct this before attempting to check it in or out.', + 'model_invalid_fix' => 'Įranga turi būti pataisyta prieš ją įregistruojant ar išregistruojant.', 'requestable' => 'Reiklaujamas', 'requested' => 'Užklausta', 'not_requestable' => 'Nereikalaujamas', - 'requestable_status_warning' => 'Do not change requestable status', + 'requestable_status_warning' => 'Nekeiskite prašomos įrangos statuso', 'restore' => 'Atkurti įrangą', 'pending' => 'Vykdoma', 'undeployable' => 'Negalimas naudoti', - 'undeployable_tooltip' => 'This asset has a status label that is undeployable and cannot be checked out at this time.', + 'undeployable_tooltip' => 'Šios įrangos statusas yra "nediegtinas", todėl jos negalima išduoti.', 'view' => 'Peržiūrėti įrangą', 'csv_error' => 'Jūsų CSV faile yra klaida:', 'import_text' => ' @@ -36,15 +36,15 @@ return [

Checkin Date: blank or future checkin dates will checkout items to associated user. Excluding the Checkin Date column will create a checkin date with todays date.

', - 'csv_import_match_f-l' => 'Try to match users by firstname.lastname (jane.smith) format', - 'csv_import_match_initial_last' => 'Try to match users by first initial last name (jsmith) format', - 'csv_import_match_first' => 'Try to match users by first name (jane) format', - 'csv_import_match_email' => 'Try to match users by email as username', + 'csv_import_match_f-l' => 'Pabandykite sulyginti naudotojus pagal vardą raidę ir pavardę (vardenis.pavardenis)', + 'csv_import_match_initial_last' => 'Pabandykite sulyginti naudotojus pagal pirmą vardo raidę ir pavardę (vpavardenis)', + 'csv_import_match_first' => 'Pabandykite sulyginti naudotojus pagal pavardę (pavardenis)', + 'csv_import_match_email' => 'Pabandykite sulyginti naudotojus pagal el. paštą kaip naudotojo vardą', 'csv_import_match_username' => 'Pabandykite sulyginti naudotojus pagal naudotojo vardą', 'error_messages' => 'Klaidos pranešimai:', 'success_messages' => 'Sėkmės pranešimai:', 'alert_details' => 'Žemiau pateikta detalesnė informacija.', - 'custom_export' => 'Custom Export', - 'mfg_warranty_lookup' => ':manufacturer Warranty Status Lookup', + 'custom_export' => 'Nestandartinis eksportas', + 'mfg_warranty_lookup' => ':manufacturer garantinio remonto statuso peržiūra', 'user_department' => 'Naudotojo departamentas', ]; diff --git a/resources/lang/lt/admin/hardware/message.php b/resources/lang/lt-LT/admin/hardware/message.php similarity index 85% rename from resources/lang/lt/admin/hardware/message.php rename to resources/lang/lt-LT/admin/hardware/message.php index 2618dedba0..394a8fa6c9 100644 --- a/resources/lang/lt/admin/hardware/message.php +++ b/resources/lang/lt-LT/admin/hardware/message.php @@ -4,27 +4,27 @@ return [ 'undeployable' => 'Dėmesio: Ši įranga pažymėta kaip negalima naudoti. Jei būklė pasikeitė, prašome atnaujinti įrangos būklę.', 'does_not_exist' => 'Tokios įrangos nėra.', - 'does_not_exist_or_not_requestable' => 'That asset does not exist or is not requestable.', + 'does_not_exist_or_not_requestable' => 'Tokios įrangos nėra arba jos negalima užklausti.', 'assoc_users' => 'Ši įranga šiuo metu yra išduota naudotojui ir negali būti ištrinta. Prašome pirmiausia patikrinkite įrangą, tuomet bandykite ištrinti vėl. ', 'create' => [ 'error' => 'Įrangos sukurti nepavyko, prašome bandykite dar kartą. :(', 'success' => 'Įranga sėkminga sukurta. :)', - 'success_linked' => 'Asset with tag :tag was created successfully. Click here to view.', + 'success_linked' => 'Įranga su etikete :tag sukurta sėkmingai. Paspausti peržiūrai.', ], 'update' => [ 'error' => 'Įrangos atnaujinti nepavyko, prašome bandykite dar kartą', 'success' => 'Įranga sėkmingai atnaujinta.', 'nothing_updated' => 'Nei vienas laukelis nepasirinktas, tad niekas nebuvo atnaujinta.', - 'no_assets_selected' => 'No assets were selected, so nothing was updated.', + 'no_assets_selected' => 'Nebuvo pasirinkta jokio turto, taigi niekas nebuvo pakeistas.', ], 'restore' => [ 'error' => 'Įranga nebuvo atkurta, prašome bandykite dar kartą', 'success' => 'Įranga atkurta sėkmingai.', - 'bulk_success' => 'Asset restored successfully.', - 'nothing_updated' => 'No assets were selected, so nothing was restored.', + 'bulk_success' => 'Įranga atkurta sėkmingai.', + 'nothing_updated' => 'Nebuvo pasirinkta jokio turto, taigi niekas nebuvo atstatytas.', ], 'audit' => [ @@ -53,7 +53,7 @@ return [ 'file_delete_error' => 'Nepavyko ištrinti failo', 'file_missing' => 'Pažymėtas failas nerastas', 'header_row_has_malformed_characters' => 'Vienas ar daugiau atributų antraštės eilutėje turi netinkąmą UTF-8 simbolį', - 'content_row_has_malformed_characters' => 'One or more attributes in the first row of content contain malformed UTF-8 characters', + 'content_row_has_malformed_characters' => 'Vienas ar daugiau atributų pirmoje eilutėje turi netinkamą UTF-8 simbolį', ], diff --git a/resources/lang/lt/admin/hardware/table.php b/resources/lang/lt-LT/admin/hardware/table.php similarity index 100% rename from resources/lang/lt/admin/hardware/table.php rename to resources/lang/lt-LT/admin/hardware/table.php diff --git a/resources/lang/lt-LT/admin/kits/general.php b/resources/lang/lt-LT/admin/kits/general.php new file mode 100644 index 0000000000..7880673c17 --- /dev/null +++ b/resources/lang/lt-LT/admin/kits/general.php @@ -0,0 +1,50 @@ + 'Apie iš anksto nustatytus rinkinius', + 'about_kits_text' => 'Iš anksto nustatyti rinkiniai leidžia greitai registruoti daiktų rinkinius (įrangą, licencijas, kt.) vartotojui. Tai patogu, kai įrangos priskyrimo procesas yra vieningas ir naudotojai gauna analogiškos įrangos komplektus.', + 'checkout' => 'Išduoti rinkinį ', + 'create_success' => 'Rinkinys buvo sėkmingai sukurtas.', + 'create' => 'Sukurti iš anksto nustatytą rinkinį', + 'update' => 'Atnaujinti iš anksto nustatytą rinkinį', + 'delete_success' => 'Rinkinys buvo sėkmingai ištrintas.', + 'update_success' => 'Rinkinys buvo sėkmingai atnaujintas.', + 'none_models' => 'Nepakanka laisvos įrangos :model išdavimui. Reikalingas likutis :qty . ', + 'none_licenses' => 'Nepakanka laisvų licencijų :license išdavimui. Reikalingas likutis :qty . ', + 'none_consumables' => 'Nepakanka laisvos įrangos :consumable išdavimui. Reikalingas likutis :qty . ', + 'none_accessory' => 'Nepakanka laisvų priedų :accessory išdavimui. Reikalingas likutis :qty . ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'Licencija jau pridėta į rinkinį', + 'license_added_success' => 'Licencija pridėta', + 'license_updated' => 'Licencija atnaujinta sėkmingai', + 'license_none' => 'Licencija neegzistuoja', + 'license_detached' => 'Licencija atskirta sėkmingai', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Sėkmingai ištrinta', + 'consumable_none' => 'Tokios suvartojamos įrangos nėra', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Priedas pridėtas sėkmingai', + 'accessory_updated' => 'Priedas atnaujintas sėkmingai', + 'accessory_detached' => 'Priedas atskirtas sėkmingai', + 'accessory_error' => 'Priedas jau pridėtas į rinkinį', + 'accessory_deleted' => 'Sėkmingai ištrinta', + 'accessory_none' => 'Priedas neegzistuoja', + 'checkout_success' => 'Išdavimas sėkmingas', + 'checkout_error' => 'Išdavimo klaida', + 'kit_none' => 'Rinkinys neegzistuoja', + 'kit_created' => 'Rinkinys buvo sėkmingai sukurtas', + 'kit_updated' => 'Rinkinys buvo sėkmingai atnaujintas', + 'kit_not_found' => 'Rinkinys nerastas', + 'kit_deleted' => 'Rinkinys buvo sėkmingai ištrintas', + 'kit_model_updated' => 'Modelis sėkmingai atnaujintas', + 'kit_model_detached' => 'Modelis sėkmingai atskirtas', +]; diff --git a/resources/lang/lt-LT/admin/labels/message.php b/resources/lang/lt-LT/admin/labels/message.php new file mode 100644 index 0000000000..7268f257f6 --- /dev/null +++ b/resources/lang/lt-LT/admin/labels/message.php @@ -0,0 +1,11 @@ + 'Gautas neteisingas kiekis :name. Tikėtasi :expected, gauta :actual.', + 'invalid_return_type' => 'Gautas neteisingas tipas :name. Tikėtasi :expected, gauta :actual.', + 'invalid_return_value' => 'Gauta neteisinga reikšmė :name. Tikėtasi :expected, gauta :actual.', + + 'does_not_exist' => 'Tokia žymė neegzistuoja', + +]; diff --git a/resources/lang/lt-LT/admin/labels/table.php b/resources/lang/lt-LT/admin/labels/table.php new file mode 100644 index 0000000000..47c8f8ff30 --- /dev/null +++ b/resources/lang/lt-LT/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Laukai', + 'support_asset_tag' => 'Žymė', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logotipas', + 'support_title' => 'Antraštė', + +]; \ No newline at end of file diff --git a/resources/lang/lt/admin/licenses/form.php b/resources/lang/lt-LT/admin/licenses/form.php similarity index 79% rename from resources/lang/lt/admin/licenses/form.php rename to resources/lang/lt-LT/admin/licenses/form.php index a48bc4c451..b7c759639f 100644 --- a/resources/lang/lt/admin/licenses/form.php +++ b/resources/lang/lt-LT/admin/licenses/form.php @@ -18,5 +18,5 @@ return array( 'to_email' => 'Gauta licenzija el. paštu', 'to_name' => 'Licenzija išduota šiuo vardu', 'update' => 'Atnaujinta licenzija', - 'checkout_help' => 'Jūs turite išduoti licenziją įrangai arba asmeniui. Jūs galite pasirinkti abu, bet savininkas naudojantis įrangą turi sutapti su asmeniu, kuriam ši įranga perduodama.' + 'checkout_help' => 'Licenciją galima priskirti įrangai arba asmeniui. Galima pasirinkti ir abu, tačiau turto ir licencijos naudotojas privalės būti tas pats asmuo.' ); diff --git a/resources/lang/lt/admin/licenses/general.php b/resources/lang/lt-LT/admin/licenses/general.php similarity index 90% rename from resources/lang/lt/admin/licenses/general.php rename to resources/lang/lt-LT/admin/licenses/general.php index a1776e270e..582f005f03 100644 --- a/resources/lang/lt/admin/licenses/general.php +++ b/resources/lang/lt-LT/admin/licenses/general.php @@ -6,7 +6,7 @@ return array( 'checkin' => 'Išduoti licenzijos prieigą', 'checkout_history' => 'Išdavimo istorija', 'checkout' => 'Išduotas licenzijų kiekis', - 'edit' => 'Keisti licenziją', + 'edit' => 'Keisti licenciją', 'filetype_info' => 'Leidžiami dokumentų formatai png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, rar.', 'clone' => 'Kopijuoti licenziją', 'history_for' => 'Istorija ', @@ -17,7 +17,7 @@ return array( 'seats' => 'Prieigos', 'software_licenses' => 'Programinės įrangos licenzijos', 'user' => 'Naudotojas', - 'view' => 'Peržiūrėti licenziją', + 'view' => 'Peržiūrėti licenciją', 'delete_disabled' => 'This license cannot be deleted yet because some seats are still checked out.', 'bulk' => [ @@ -37,9 +37,9 @@ return array( 'enabled_tooltip' => 'Checkout ALL seats (or as many as are available) to ALL users', 'disabled_tooltip' => 'This is disabled because there are no seats currently available', 'success' => 'License successfully checked out! | :count licenses were successfully checked out!', - 'error_no_seats' => 'There are no remaining seats left for this license.', + 'error_no_seats' => 'Nėra laisvų licencijų.', 'warn_not_enough_seats' => ':count users were assigned this license, but we ran out of available license seats.', - 'warn_no_avail_users' => 'Nothing to do. There are no users who do not already have this license assigned to them.', + 'warn_no_avail_users' => 'Nieko daryti nereikia. Nėra naudotojų, kuriems nebūtų priskirta ši licencija.', 'log_msg' => 'Checked out via bulk license checkout in license GUI', diff --git a/resources/lang/lt/admin/licenses/message.php b/resources/lang/lt-LT/admin/licenses/message.php similarity index 100% rename from resources/lang/lt/admin/licenses/message.php rename to resources/lang/lt-LT/admin/licenses/message.php diff --git a/resources/lang/lt/admin/licenses/table.php b/resources/lang/lt-LT/admin/licenses/table.php similarity index 100% rename from resources/lang/lt/admin/licenses/table.php rename to resources/lang/lt-LT/admin/licenses/table.php diff --git a/resources/lang/lt/admin/locations/message.php b/resources/lang/lt-LT/admin/locations/message.php similarity index 100% rename from resources/lang/lt/admin/locations/message.php rename to resources/lang/lt-LT/admin/locations/message.php diff --git a/resources/lang/lt/admin/locations/table.php b/resources/lang/lt-LT/admin/locations/table.php similarity index 97% rename from resources/lang/lt/admin/locations/table.php rename to resources/lang/lt-LT/admin/locations/table.php index 731b929713..9cf457410f 100644 --- a/resources/lang/lt/admin/locations/table.php +++ b/resources/lang/lt-LT/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => '', 'name' => 'Vietovės pavadinimas', 'address' => 'Adresas', - 'address2' => 'Address Line 2', + 'address2' => 'Antroji adreso eilutė', 'zip' => 'Pašto kodas', 'locations' => 'Vietovės', 'parent' => 'Pagrindinė', diff --git a/resources/lang/lt/admin/manufacturers/message.php b/resources/lang/lt-LT/admin/manufacturers/message.php similarity index 100% rename from resources/lang/lt/admin/manufacturers/message.php rename to resources/lang/lt-LT/admin/manufacturers/message.php diff --git a/resources/lang/lt/admin/manufacturers/table.php b/resources/lang/lt-LT/admin/manufacturers/table.php similarity index 100% rename from resources/lang/lt/admin/manufacturers/table.php rename to resources/lang/lt-LT/admin/manufacturers/table.php diff --git a/resources/lang/lt/admin/models/general.php b/resources/lang/lt-LT/admin/models/general.php similarity index 100% rename from resources/lang/lt/admin/models/general.php rename to resources/lang/lt-LT/admin/models/general.php diff --git a/resources/lang/lt/admin/models/message.php b/resources/lang/lt-LT/admin/models/message.php similarity index 100% rename from resources/lang/lt/admin/models/message.php rename to resources/lang/lt-LT/admin/models/message.php diff --git a/resources/lang/lt/admin/models/table.php b/resources/lang/lt-LT/admin/models/table.php similarity index 100% rename from resources/lang/lt/admin/models/table.php rename to resources/lang/lt-LT/admin/models/table.php diff --git a/resources/lang/lt/admin/reports/general.php b/resources/lang/lt-LT/admin/reports/general.php similarity index 100% rename from resources/lang/lt/admin/reports/general.php rename to resources/lang/lt-LT/admin/reports/general.php diff --git a/resources/lang/lt/admin/reports/message.php b/resources/lang/lt-LT/admin/reports/message.php similarity index 100% rename from resources/lang/lt/admin/reports/message.php rename to resources/lang/lt-LT/admin/reports/message.php diff --git a/resources/lang/lt/admin/settings/general.php b/resources/lang/lt-LT/admin/settings/general.php similarity index 99% rename from resources/lang/lt/admin/settings/general.php rename to resources/lang/lt-LT/admin/settings/general.php index c35971b058..9f6c2cc324 100644 --- a/resources/lang/lt/admin/settings/general.php +++ b/resources/lang/lt-LT/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC El. paštas', 'admin_cc_email_help' => 'Jeigu Jūs norite siųsti išduoto/neišduoto turto sąrašo kopiją, įveskite čia el. pašto adresą. Kitu atveju palikite laukelį tuščią.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Tai yra "Active Directory" serveris', 'alerts' => 'Įspėjimas', 'alert_title' => 'Update Notification Settings', @@ -316,10 +317,10 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Išvalyti ištrintus įrašus', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Darbuotojo numeris', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Naudojamas turtas pridėtas sėkmingai!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -341,7 +342,7 @@ return [ 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D barkodo tipas', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/lt/admin/settings/message.php b/resources/lang/lt-LT/admin/settings/message.php similarity index 98% rename from resources/lang/lt/admin/settings/message.php rename to resources/lang/lt-LT/admin/settings/message.php index 08db1fba4b..61f3c89235 100644 --- a/resources/lang/lt/admin/settings/message.php +++ b/resources/lang/lt-LT/admin/settings/message.php @@ -28,7 +28,7 @@ return [ 'ldap' => [ 'testing' => 'Testing LDAP Connection, Binding & Query ...', '500' => '500 Server Error. Please check your server logs for more information.', - 'error' => 'Something went wrong :(', + 'error' => 'Kažkas nepavyko :(', 'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:', 'testing_authentication' => 'Testing LDAP Authentication...', 'authentication_success' => 'User authenticated against LDAP successfully!' diff --git a/resources/lang/lt/admin/settings/table.php b/resources/lang/lt-LT/admin/settings/table.php similarity index 100% rename from resources/lang/lt/admin/settings/table.php rename to resources/lang/lt-LT/admin/settings/table.php diff --git a/resources/lang/lt/admin/statuslabels/message.php b/resources/lang/lt-LT/admin/statuslabels/message.php similarity index 97% rename from resources/lang/lt/admin/statuslabels/message.php rename to resources/lang/lt-LT/admin/statuslabels/message.php index e24b03d23f..b3e53c6a29 100644 --- a/resources/lang/lt/admin/statuslabels/message.php +++ b/resources/lang/lt-LT/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Statuso žymė neegzistuoja.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Ši būsenos etiketė šiuo metu yra susijusi su bent vienu turtu ir negali būti ištrinta. Prašome atnaujinti savo turtą, kad nebebūtų nuorodos į šį statusą ir bandykite dar kartą.', 'create' => [ diff --git a/resources/lang/lt/admin/statuslabels/table.php b/resources/lang/lt-LT/admin/statuslabels/table.php similarity index 100% rename from resources/lang/lt/admin/statuslabels/table.php rename to resources/lang/lt-LT/admin/statuslabels/table.php diff --git a/resources/lang/lt/admin/suppliers/message.php b/resources/lang/lt-LT/admin/suppliers/message.php similarity index 100% rename from resources/lang/lt/admin/suppliers/message.php rename to resources/lang/lt-LT/admin/suppliers/message.php diff --git a/resources/lang/lt/admin/suppliers/table.php b/resources/lang/lt-LT/admin/suppliers/table.php similarity index 100% rename from resources/lang/lt/admin/suppliers/table.php rename to resources/lang/lt-LT/admin/suppliers/table.php diff --git a/resources/lang/lt/admin/users/general.php b/resources/lang/lt-LT/admin/users/general.php similarity index 100% rename from resources/lang/lt/admin/users/general.php rename to resources/lang/lt-LT/admin/users/general.php diff --git a/resources/lang/lt/admin/users/message.php b/resources/lang/lt-LT/admin/users/message.php similarity index 96% rename from resources/lang/lt/admin/users/message.php rename to resources/lang/lt-LT/admin/users/message.php index 7ecb88297b..4f1ed6980f 100644 --- a/resources/lang/lt/admin/users/message.php +++ b/resources/lang/lt-LT/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Jūs sėkmingai atšaukėte šią įrangą.', 'bulk_manager_warn' => 'Jūsų vartotojai buvo sėkmingai atnaujinti, tačiau jūsų valdytojo įrašas nebuvo išsaugotas, nes pasirinktas valdytojas taip pat buvo naudotojo sąraše, kurį reikia redaguoti, o vartotojai gali būti ne jų valdytojai. Prašome vėl pasirinkti naudotojus, išskyrus valdytoją.', 'user_exists' => 'Naudotojas jau yra!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Naudotojo nėra.', 'user_login_required' => 'Prisijungimo laukelis privalomas', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Slaptažodis būtinas.', @@ -16,7 +16,7 @@ return array( 'password_resets_sent' => 'The selected users who are activated and have a valid email addresses have been sent a password reset link.', 'password_reset_sent' => 'A password reset link has been sent to :email!', 'user_has_no_email' => 'This user does not have an email address in their profile.', - 'log_record_not_found' => 'A matching log record for this user could not be found.', + 'log_record_not_found' => 'Atitinkamas log įrašas šiam naudotojui nerastas.', 'success' => array( diff --git a/resources/lang/lt/admin/users/table.php b/resources/lang/lt-LT/admin/users/table.php similarity index 95% rename from resources/lang/lt/admin/users/table.php rename to resources/lang/lt-LT/admin/users/table.php index d02b3425ce..67adf24b12 100644 --- a/resources/lang/lt/admin/users/table.php +++ b/resources/lang/lt-LT/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Tiesioginis vadovas', 'managed_locations' => 'Valdomos vietos', 'name' => 'Pavadinimas', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Pastabos', 'password_confirm' => 'Patvirtinti slaptažodį', 'password' => 'Slaptažodis', diff --git a/resources/lang/zu/auth.php b/resources/lang/lt-LT/auth.php similarity index 69% rename from resources/lang/zu/auth.php rename to resources/lang/lt-LT/auth.php index db310aa1bb..5bc6990974 100644 --- a/resources/lang/zu/auth.php +++ b/resources/lang/lt-LT/auth.php @@ -13,8 +13,8 @@ return array( | */ - 'failed' => 'These credentials do not match our records.', - 'password' => 'The provided password is incorrect.', - 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', + 'failed' => 'Neteisingi prisijungimo duomenys.', + 'password' => 'Naudotojo slaptažodis neteisingas.', + 'throttle' => 'Per daug bandymų prisijungti. Bandykite po :seconds sekundžių.', ); diff --git a/resources/lang/lt/auth/general.php b/resources/lang/lt-LT/auth/general.php similarity index 100% rename from resources/lang/lt/auth/general.php rename to resources/lang/lt-LT/auth/general.php diff --git a/resources/lang/lt/auth/message.php b/resources/lang/lt-LT/auth/message.php similarity index 63% rename from resources/lang/lt/auth/message.php rename to resources/lang/lt-LT/auth/message.php index 3550b812fc..519e110c25 100644 --- a/resources/lang/lt/auth/message.php +++ b/resources/lang/lt-LT/auth/message.php @@ -7,13 +7,13 @@ return array( 'account_not_activated' => 'Šio naudotojo paskyra nėra aktyvuota.', 'account_suspended' => 'Šio naudotojo paskyra užšaldyta.', 'account_banned' => 'Šio vartojo paskyra užblokuota.', - 'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.', + 'throttle' => 'Per daug bandymų prisijungti nepavyko. Prašome pabandyti dar kartą už :minutes minučių.', 'two_factor' => array( - 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', - 'code_required' => 'Two-factor code is required.', - 'invalid_code' => 'Two-factor code is invalid.', + 'already_enrolled' => 'Jūsų įrenginys jau įtrauktas.', + 'success' => 'Jūs sėkmingai prisijungėte.', + 'code_required' => 'Dviejų faktorių kodas yra privalomas.', + 'invalid_code' => 'Dviejų faktorių kodas neteisingas.', ), 'signin' => array( @@ -22,8 +22,8 @@ return array( ), 'logout' => array( - 'error' => 'There was a problem while trying to log you out, please try again.', - 'success' => 'You have successfully logged out.', + 'error' => 'Iškilo problema bandant atsijungti, prašome bandykite dar kartą.', + 'success' => 'Jūs sėkmingai atsijungėte.', ), 'signup' => array( @@ -33,7 +33,7 @@ return array( 'forgot-password' => array( 'error' => 'Iškilo sunkumų siekiant gauti slaptažodžio atnaujinimo kodą. Prašome bandykite dar kartą.', - 'success' => 'If that email address exists in our system, a password recovery email has been sent.', + 'success' => 'Jei sistemoje yra atitinkantis el. pašto adresas, bus išsiųstas slaptažodžio atkūrimo el. laiškas.', ), 'forgot-password-confirm' => array( diff --git a/resources/lang/lt/button.php b/resources/lang/lt-LT/button.php similarity index 87% rename from resources/lang/lt/button.php rename to resources/lang/lt-LT/button.php index 1f73443480..ff45cbc1a7 100644 --- a/resources/lang/lt/button.php +++ b/resources/lang/lt-LT/button.php @@ -15,9 +15,9 @@ return [ 'select_file' => 'Pasirinkite failą ...', 'select_files' => 'Pasirinkite failą...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Slaptažodžio atkūrimo nuoroda', 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', + 'bulk_actions' => 'Masiniai veiksmai', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', 'new' => 'Naujas', diff --git a/resources/lang/lt/general.php b/resources/lang/lt-LT/general.php similarity index 95% rename from resources/lang/lt/general.php rename to resources/lang/lt-LT/general.php index bc9e271c32..eda1f27e41 100644 --- a/resources/lang/lt/general.php +++ b/resources/lang/lt-LT/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Įkelti', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Ikeliama', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Importuoti istoriją', @@ -257,7 +258,7 @@ return [ 'show_current' => 'Rodyti dabartinį', 'sign_in' => 'Prisijungti', 'signature' => 'Parašas', - 'signed_off_by' => 'Signed Off By', + 'signed_off_by' => 'Nurašyta', 'skin' => 'Išvaizda', 'webhook_msg_note' => 'A notification will be sent via webhook', 'webhook_test_msg' => 'Oh hai! Looks like your :app integration with Snipe-IT is working!', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Tiekėjas', 'suppliers' => 'Tiekėjai', 'sure_to_delete' => 'Ar tikrai norite ištrinti', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Ar jūs norite tikrai ištrinti?', 'delete_what' => 'Delete :item', 'submit' => 'Pateikti', 'target' => 'Tikslinė', @@ -381,7 +382,7 @@ return [ 'model_name' => 'Modelio pavadinimas', 'asset_name' => 'Įrangos pavadinimas', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Suvartojamos įrangos pavadinimas:', 'accessory_information' => 'Priedo informacija:', 'accessory_name' => 'Priedo pavadinimas:', 'clone_item' => 'Clone Item', @@ -421,7 +422,7 @@ return [ 'true' => 'Tiesa', 'false' => 'Netiesa', 'integration_option' => 'Integration Option', - 'log_does_not_exist' => 'No matching log record exists.', + 'log_does_not_exist' => 'Atitinkamas log įrašas neegzistuoja.', 'merge_users' => 'Merge Users', 'merge_information' => 'This will merge the :count users into a single user. Select the user you wish to merge the others into below, and the associated assets, licenses, etc will be moved over to the selected user and the other users will be marked as deleted.', 'warning_merge_information' => 'This action CANNOT be undone and should ONLY be used when you need to merge users because of a bad import or sync. Be sure to run a backup first.', @@ -461,9 +462,9 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serijos numeris', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':failo Pavadinimas', 'error_user_company' => 'Checkout target company and asset company do not match', - 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', + 'error_user_company_accept_view' => 'Jums paskirta įranga priklauso kitai įmonei, todėl Jūs negalite jos priimti ar atmesti, pasitarkite su savo vadovu', 'importer' => [ 'checked_out_to_fullname' => 'Išduota: vardas, pavardė', 'checked_out_to_first_name' => 'Išduota: vardas', @@ -481,15 +482,22 @@ return [ 'do_not_import' => 'Neimportuoti', 'vip' => 'VIP', 'avatar' => 'Avataras', - 'gravatar' => 'Gravatar Email', + 'gravatar' => 'Gravataro el. paštas', 'currency' => 'Valiuta', - 'address2' => 'Address Line 2', - 'import_note' => 'Imported using csv importer', + 'address2' => 'Antroji adreso eilutė', + 'import_note' => 'Importuota naudojantis csv importo įrankiu', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% baigta', 'uploading' => 'Įkeliama... ', - 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', - 'copy_to_clipboard' => 'Copy to Clipboard', + 'upload_error' => 'Klaida kraunant bylą. Patikrinkite, ar nėra tuščių eilučių ar dublių stulpelių pavadinimuose.', + 'copy_to_clipboard' => 'Kopijuoti į iškarpinę', 'copied' => 'Nukopijuota!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'keisti', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/lt-LT/help.php b/resources/lang/lt-LT/help.php new file mode 100644 index 0000000000..beed11e518 --- /dev/null +++ b/resources/lang/lt-LT/help.php @@ -0,0 +1,35 @@ + 'Detaliau', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Turtas - tai daiktai, kurie stebimi serijos numeriu arba turinio žyma. Jie dažniausiai būna vertingesni dalykai, kai svarbu nustatyti konkretų elementą.', + + 'categories' => 'Kategorijos padeda jums tvarkyti savo daiktus. Kai kurių pavyzdžių kategorijos gali būti "Desktops", "Laptops", "Mobilieji telefonai", "Tablets" ir tt, bet jūs galite naudoti kategorijas bet kokiu būdu, kuris jums yra naudingas.', + + 'accessories' => 'Įranga yra viskas, kas yra išduodama naudotojams ir suteikiamas ar nesuteikiamas inventorizacinis numeris. Pvz. kompiuteris, kompiuterio pelė, programinė iranga ir t. t.', + + 'companies' => 'Įmonės gali būti naudojamos kaip paprastas identifikatoriaus laukas arba gali būti naudojami norint apriboti turto, naudotojų ir tt matomumą, jei jūsų administratoriaus nustatymuose yra įjungta visa įmonės parama.', + + 'components' => 'Komponentai yra daiktai, kurie yra įrangos sudedamoji dalis, pavyzdžiui HDD, RAM ir t. t.', + + 'consumables' => 'Suvartojama įranga, tai tokia įranga, kuri perkama ir suvartojama per tam tikrą laiką. Pvz. spausdintuvo kasetės ar popierius.', + + 'depreciations' => 'Jūs galite nustatyti irangos nusidėvėjimą naudodami proporcinio metodo nusidėvėjimą.', + + 'empty_file' => 'Importavimo vedlys aptiko, kad šis failas yra tuščias.' +]; diff --git a/resources/lang/lt-LT/localizations.php b/resources/lang/lt-LT/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/lt-LT/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/lt/mail.php b/resources/lang/lt-LT/mail.php similarity index 99% rename from resources/lang/lt/mail.php rename to resources/lang/lt-LT/mail.php index 7690c6a11b..73b70fd367 100644 --- a/resources/lang/lt/mail.php +++ b/resources/lang/lt-LT/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Įranga:', 'asset_name' => 'Įrangos pavadinimas:', 'asset_requested' => 'Užklausta įranga', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Įrangos kortelė', 'assigned_to' => 'Priskirtas', 'best_regards' => 'pagarbiai,', 'canceled' => 'Atšauktas:', diff --git a/resources/lang/lt/pagination.php b/resources/lang/lt-LT/pagination.php similarity index 100% rename from resources/lang/lt/pagination.php rename to resources/lang/lt-LT/pagination.php diff --git a/resources/lang/lt/passwords.php b/resources/lang/lt-LT/passwords.php similarity index 100% rename from resources/lang/lt/passwords.php rename to resources/lang/lt-LT/passwords.php diff --git a/resources/lang/lt/reminders.php b/resources/lang/lt-LT/reminders.php similarity index 68% rename from resources/lang/lt/reminders.php rename to resources/lang/lt-LT/reminders.php index 47237e165b..911a62c2ab 100644 --- a/resources/lang/lt/reminders.php +++ b/resources/lang/lt-LT/reminders.php @@ -15,7 +15,7 @@ return array( "password" => "Slaptažodžiai turi sutapti ir būti iš 6 simbolių.", "user" => "Neteisingas naudotojas arba el. paštas", - "token" => 'This password reset token is invalid or expired, or does not match the username provided.', - 'sent' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.', + "token" => 'Šis slaptažodžio atkūrimo raktas yra netinkamas, pasibaigęs jo galiojimas arba nesutampa su vartotojo vardu.', + 'sent' => 'Jei sistemoje yra atitinkantis naudotojas su galiojančiu el. pašto adresu, bus išsiųstas slaptažodžio atkūrimo el. laiškas.', ); diff --git a/resources/lang/lt/table.php b/resources/lang/lt-LT/table.php similarity index 100% rename from resources/lang/lt/table.php rename to resources/lang/lt-LT/table.php diff --git a/resources/lang/lt/validation.php b/resources/lang/lt-LT/validation.php similarity index 92% rename from resources/lang/lt/validation.php rename to resources/lang/lt-LT/validation.php index 2fde5d67c3..34ba16cd9a 100644 --- a/resources/lang/lt/validation.php +++ b/resources/lang/lt-LT/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute turi būti unikalus.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Slaptažodis negali sutapti su vartotojo vardu.', 'letters' => 'Slaptažodis turi turėti bent vieną raidę.', 'numbers' => 'Slaptažodis turi turėti bent vieną skaitmenį.', @@ -129,13 +128,13 @@ return [ // date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :( // We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP // people won't know how to format. - 'purchase_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'purchase_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', 'last_audit_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD hh:mm:ss format', - 'expiration_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'termination_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'expected_checkin.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'start_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'end_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'expiration_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', + 'termination_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', + 'expected_checkin.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', + 'start_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', + 'end_date.date_format' => ':attribute turi būti galiojanti data YYYY-MM-DD formatu', ], diff --git a/resources/lang/lt/admin/kits/general.php b/resources/lang/lt/admin/kits/general.php deleted file mode 100644 index e88510a581..0000000000 --- a/resources/lang/lt/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Rinkinys buvo sėkmingai sukurtas.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Rinkinys buvo sėkmingai sukurtas', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/lt/admin/labels/table.php b/resources/lang/lt/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/lt/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/lt/help.php b/resources/lang/lt/help.php deleted file mode 100644 index e38f99cf11..0000000000 --- a/resources/lang/lt/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Detaliau', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/lt/localizations.php b/resources/lang/lt/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/lt/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/ko/account/general.php b/resources/lang/lv-LV/account/general.php similarity index 100% rename from resources/lang/ko/account/general.php rename to resources/lang/lv-LV/account/general.php diff --git a/resources/lang/lv/admin/accessories/general.php b/resources/lang/lv-LV/admin/accessories/general.php similarity index 100% rename from resources/lang/lv/admin/accessories/general.php rename to resources/lang/lv-LV/admin/accessories/general.php diff --git a/resources/lang/lv/admin/accessories/message.php b/resources/lang/lv-LV/admin/accessories/message.php similarity index 100% rename from resources/lang/lv/admin/accessories/message.php rename to resources/lang/lv-LV/admin/accessories/message.php diff --git a/resources/lang/lv/admin/accessories/table.php b/resources/lang/lv-LV/admin/accessories/table.php similarity index 100% rename from resources/lang/lv/admin/accessories/table.php rename to resources/lang/lv-LV/admin/accessories/table.php diff --git a/resources/lang/lv/admin/asset_maintenances/form.php b/resources/lang/lv-LV/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/lv/admin/asset_maintenances/form.php rename to resources/lang/lv-LV/admin/asset_maintenances/form.php diff --git a/resources/lang/lv/admin/asset_maintenances/general.php b/resources/lang/lv-LV/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/lv/admin/asset_maintenances/general.php rename to resources/lang/lv-LV/admin/asset_maintenances/general.php diff --git a/resources/lang/lv/admin/asset_maintenances/message.php b/resources/lang/lv-LV/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/lv/admin/asset_maintenances/message.php rename to resources/lang/lv-LV/admin/asset_maintenances/message.php diff --git a/resources/lang/lv/admin/asset_maintenances/table.php b/resources/lang/lv-LV/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/lv/admin/asset_maintenances/table.php rename to resources/lang/lv-LV/admin/asset_maintenances/table.php diff --git a/resources/lang/lv/admin/categories/general.php b/resources/lang/lv-LV/admin/categories/general.php similarity index 100% rename from resources/lang/lv/admin/categories/general.php rename to resources/lang/lv-LV/admin/categories/general.php diff --git a/resources/lang/lv/admin/categories/message.php b/resources/lang/lv-LV/admin/categories/message.php similarity index 100% rename from resources/lang/lv/admin/categories/message.php rename to resources/lang/lv-LV/admin/categories/message.php diff --git a/resources/lang/lv/admin/categories/table.php b/resources/lang/lv-LV/admin/categories/table.php similarity index 100% rename from resources/lang/lv/admin/categories/table.php rename to resources/lang/lv-LV/admin/categories/table.php diff --git a/resources/lang/lv/admin/companies/general.php b/resources/lang/lv-LV/admin/companies/general.php similarity index 100% rename from resources/lang/lv/admin/companies/general.php rename to resources/lang/lv-LV/admin/companies/general.php diff --git a/resources/lang/lv/admin/companies/message.php b/resources/lang/lv-LV/admin/companies/message.php similarity index 100% rename from resources/lang/lv/admin/companies/message.php rename to resources/lang/lv-LV/admin/companies/message.php diff --git a/resources/lang/lv/admin/companies/table.php b/resources/lang/lv-LV/admin/companies/table.php similarity index 100% rename from resources/lang/lv/admin/companies/table.php rename to resources/lang/lv-LV/admin/companies/table.php diff --git a/resources/lang/lv/admin/components/general.php b/resources/lang/lv-LV/admin/components/general.php similarity index 100% rename from resources/lang/lv/admin/components/general.php rename to resources/lang/lv-LV/admin/components/general.php diff --git a/resources/lang/lv/admin/components/message.php b/resources/lang/lv-LV/admin/components/message.php similarity index 100% rename from resources/lang/lv/admin/components/message.php rename to resources/lang/lv-LV/admin/components/message.php diff --git a/resources/lang/lv/admin/components/table.php b/resources/lang/lv-LV/admin/components/table.php similarity index 100% rename from resources/lang/lv/admin/components/table.php rename to resources/lang/lv-LV/admin/components/table.php diff --git a/resources/lang/lv/admin/consumables/general.php b/resources/lang/lv-LV/admin/consumables/general.php similarity index 100% rename from resources/lang/lv/admin/consumables/general.php rename to resources/lang/lv-LV/admin/consumables/general.php diff --git a/resources/lang/lv/admin/consumables/message.php b/resources/lang/lv-LV/admin/consumables/message.php similarity index 100% rename from resources/lang/lv/admin/consumables/message.php rename to resources/lang/lv-LV/admin/consumables/message.php diff --git a/resources/lang/lv/admin/consumables/table.php b/resources/lang/lv-LV/admin/consumables/table.php similarity index 100% rename from resources/lang/lv/admin/consumables/table.php rename to resources/lang/lv-LV/admin/consumables/table.php diff --git a/resources/lang/lv/admin/custom_fields/general.php b/resources/lang/lv-LV/admin/custom_fields/general.php similarity index 95% rename from resources/lang/lv/admin/custom_fields/general.php rename to resources/lang/lv-LV/admin/custom_fields/general.php index 4a7829418b..19cc744e75 100644 --- a/resources/lang/lv/admin/custom_fields/general.php +++ b/resources/lang/lv-LV/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Jauna pielāgota lauks', 'create_field_title' => 'Izveidot jaunu pielāgoto lauku', 'value_encrypted' => 'Šī lauka vērtība ir šifrēta datu bāzē. Tikai admin lietotāji varēs apskatīt atšifrēto vērtību', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Vai iekļaut šī lauka vērtību lietotājiem nosūtītajos e-pasta paziņojumos? Šifrētie lauki nevar būt iekļauti e-pasta ziņojumos', 'show_in_email_short' => 'Include in emails.', 'help_text' => 'Palīdzības teksts', 'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.', diff --git a/resources/lang/lv/admin/custom_fields/message.php b/resources/lang/lv-LV/admin/custom_fields/message.php similarity index 100% rename from resources/lang/lv/admin/custom_fields/message.php rename to resources/lang/lv-LV/admin/custom_fields/message.php diff --git a/resources/lang/lv/admin/departments/message.php b/resources/lang/lv-LV/admin/departments/message.php similarity index 100% rename from resources/lang/lv/admin/departments/message.php rename to resources/lang/lv-LV/admin/departments/message.php diff --git a/resources/lang/lv/admin/departments/table.php b/resources/lang/lv-LV/admin/departments/table.php similarity index 100% rename from resources/lang/lv/admin/departments/table.php rename to resources/lang/lv-LV/admin/departments/table.php diff --git a/resources/lang/lv/admin/depreciations/general.php b/resources/lang/lv-LV/admin/depreciations/general.php similarity index 100% rename from resources/lang/lv/admin/depreciations/general.php rename to resources/lang/lv-LV/admin/depreciations/general.php diff --git a/resources/lang/lv/admin/depreciations/message.php b/resources/lang/lv-LV/admin/depreciations/message.php similarity index 100% rename from resources/lang/lv/admin/depreciations/message.php rename to resources/lang/lv-LV/admin/depreciations/message.php diff --git a/resources/lang/lv/admin/depreciations/table.php b/resources/lang/lv-LV/admin/depreciations/table.php similarity index 100% rename from resources/lang/lv/admin/depreciations/table.php rename to resources/lang/lv-LV/admin/depreciations/table.php diff --git a/resources/lang/lv/admin/groups/message.php b/resources/lang/lv-LV/admin/groups/message.php similarity index 100% rename from resources/lang/lv/admin/groups/message.php rename to resources/lang/lv-LV/admin/groups/message.php diff --git a/resources/lang/lv/admin/groups/table.php b/resources/lang/lv-LV/admin/groups/table.php similarity index 100% rename from resources/lang/lv/admin/groups/table.php rename to resources/lang/lv-LV/admin/groups/table.php diff --git a/resources/lang/lv/admin/groups/titles.php b/resources/lang/lv-LV/admin/groups/titles.php similarity index 100% rename from resources/lang/lv/admin/groups/titles.php rename to resources/lang/lv-LV/admin/groups/titles.php diff --git a/resources/lang/lv/admin/hardware/form.php b/resources/lang/lv-LV/admin/hardware/form.php similarity index 100% rename from resources/lang/lv/admin/hardware/form.php rename to resources/lang/lv-LV/admin/hardware/form.php diff --git a/resources/lang/lv/admin/hardware/general.php b/resources/lang/lv-LV/admin/hardware/general.php similarity index 100% rename from resources/lang/lv/admin/hardware/general.php rename to resources/lang/lv-LV/admin/hardware/general.php diff --git a/resources/lang/lv/admin/hardware/message.php b/resources/lang/lv-LV/admin/hardware/message.php similarity index 98% rename from resources/lang/lv/admin/hardware/message.php rename to resources/lang/lv-LV/admin/hardware/message.php index cdad59a43d..973d964c7c 100644 --- a/resources/lang/lv/admin/hardware/message.php +++ b/resources/lang/lv-LV/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Īpašums netika atjaunots, lūdzu, mēģiniet vēlreiz', 'success' => 'Aktīvs veiksmīgi atjaunots.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Aktīvs veiksmīgi atjaunots.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/lv/admin/hardware/table.php b/resources/lang/lv-LV/admin/hardware/table.php similarity index 96% rename from resources/lang/lv/admin/hardware/table.php rename to resources/lang/lv-LV/admin/hardware/table.php index 32d851dde8..f1c783c8fe 100644 --- a/resources/lang/lv/admin/hardware/table.php +++ b/resources/lang/lv-LV/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Ierīces attēls', 'days_without_acceptance' => 'Dienas bez pieņemšanas', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Piešķirts', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/mk/admin/kits/general.php b/resources/lang/lv-LV/admin/kits/general.php similarity index 96% rename from resources/lang/mk/admin/kits/general.php rename to resources/lang/lv-LV/admin/kits/general.php index f724ecbf07..20ab3162a1 100644 --- a/resources/lang/mk/admin/kits/general.php +++ b/resources/lang/lv-LV/admin/kits/general.php @@ -24,13 +24,13 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Licence neeksistē', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Patērējamais nav', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', diff --git a/resources/lang/ko/admin/labels/message.php b/resources/lang/lv-LV/admin/labels/message.php similarity index 100% rename from resources/lang/ko/admin/labels/message.php rename to resources/lang/lv-LV/admin/labels/message.php diff --git a/resources/lang/lv-LV/admin/labels/table.php b/resources/lang/lv-LV/admin/labels/table.php new file mode 100644 index 0000000000..025330c43e --- /dev/null +++ b/resources/lang/lv-LV/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Tag', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logotips', + 'support_title' => 'Nosaukums', + +]; \ No newline at end of file diff --git a/resources/lang/lv/admin/licenses/form.php b/resources/lang/lv-LV/admin/licenses/form.php similarity index 100% rename from resources/lang/lv/admin/licenses/form.php rename to resources/lang/lv-LV/admin/licenses/form.php diff --git a/resources/lang/lv/admin/licenses/general.php b/resources/lang/lv-LV/admin/licenses/general.php similarity index 100% rename from resources/lang/lv/admin/licenses/general.php rename to resources/lang/lv-LV/admin/licenses/general.php diff --git a/resources/lang/lv/admin/licenses/message.php b/resources/lang/lv-LV/admin/licenses/message.php similarity index 100% rename from resources/lang/lv/admin/licenses/message.php rename to resources/lang/lv-LV/admin/licenses/message.php diff --git a/resources/lang/lv/admin/licenses/table.php b/resources/lang/lv-LV/admin/licenses/table.php similarity index 100% rename from resources/lang/lv/admin/licenses/table.php rename to resources/lang/lv-LV/admin/licenses/table.php diff --git a/resources/lang/lv/admin/locations/message.php b/resources/lang/lv-LV/admin/locations/message.php similarity index 100% rename from resources/lang/lv/admin/locations/message.php rename to resources/lang/lv-LV/admin/locations/message.php diff --git a/resources/lang/lv/admin/locations/table.php b/resources/lang/lv-LV/admin/locations/table.php similarity index 74% rename from resources/lang/lv/admin/locations/table.php rename to resources/lang/lv-LV/admin/locations/table.php index 3201c44841..15f4b9e1e4 100644 --- a/resources/lang/lv/admin/locations/table.php +++ b/resources/lang/lv-LV/admin/locations/table.php @@ -12,7 +12,7 @@ return [ 'create' => 'Izveidot atrašanās vietu', 'update' => 'Atjaunināt atrašanās vietu', 'print_assigned' => 'Print Assigned', - 'print_all_assigned' => 'Print All Assigned', + 'print_all_assigned' => 'Drukāt izsniegto', 'name' => 'Atrašanās vietas nosaukums', 'address' => 'Adrese', 'address2' => 'Address Line 2', @@ -22,18 +22,18 @@ return [ 'currency' => 'Atrašanās vietas valūta', 'ldap_ou' => 'LDAP Search OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'nodaļa', + 'location' => 'Atrašanās vieta', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_name' => 'Nosaukums', + 'asset_category' => 'Kategorija', + 'asset_manufacturer' => 'Ražotājs', + 'asset_model' => 'Modelis', + 'asset_serial' => 'Sērijas numurs', + 'asset_location' => 'Atrašanās vieta', + 'asset_checked_out' => 'Izrakstīts', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Datums:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/lv/admin/manufacturers/message.php b/resources/lang/lv-LV/admin/manufacturers/message.php similarity index 100% rename from resources/lang/lv/admin/manufacturers/message.php rename to resources/lang/lv-LV/admin/manufacturers/message.php diff --git a/resources/lang/lv/admin/manufacturers/table.php b/resources/lang/lv-LV/admin/manufacturers/table.php similarity index 100% rename from resources/lang/lv/admin/manufacturers/table.php rename to resources/lang/lv-LV/admin/manufacturers/table.php diff --git a/resources/lang/lv/admin/models/general.php b/resources/lang/lv-LV/admin/models/general.php similarity index 100% rename from resources/lang/lv/admin/models/general.php rename to resources/lang/lv-LV/admin/models/general.php diff --git a/resources/lang/lv/admin/models/message.php b/resources/lang/lv-LV/admin/models/message.php similarity index 100% rename from resources/lang/lv/admin/models/message.php rename to resources/lang/lv-LV/admin/models/message.php diff --git a/resources/lang/lv/admin/models/table.php b/resources/lang/lv-LV/admin/models/table.php similarity index 100% rename from resources/lang/lv/admin/models/table.php rename to resources/lang/lv-LV/admin/models/table.php diff --git a/resources/lang/lv/admin/reports/general.php b/resources/lang/lv-LV/admin/reports/general.php similarity index 100% rename from resources/lang/lv/admin/reports/general.php rename to resources/lang/lv-LV/admin/reports/general.php diff --git a/resources/lang/lv/admin/reports/message.php b/resources/lang/lv-LV/admin/reports/message.php similarity index 100% rename from resources/lang/lv/admin/reports/message.php rename to resources/lang/lv-LV/admin/reports/message.php diff --git a/resources/lang/lv/admin/settings/general.php b/resources/lang/lv-LV/admin/settings/general.php similarity index 98% rename from resources/lang/lv/admin/settings/general.php rename to resources/lang/lv-LV/admin/settings/general.php index d24d9bcb13..85c0b2fb9e 100644 --- a/resources/lang/lv/admin/settings/general.php +++ b/resources/lang/lv-LV/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'E-pasta kopija', 'admin_cc_email_help' => 'Šeit ievadiet epasta adresi, ja vēlaties saņemt kopiju epastiem par izsniegšanu / saņemšanu, kuras sūta lietotājiem. Atstājiet tukšu, ja nevēlaties kopijas.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Tas ir Active Directory serveris', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Paroles minimums rakstzīmes', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Minimālā pieļaujamā vērtība ir 8', 'pwd_secure_uncommon' => 'Novērst parastās paroles', 'pwd_secure_uncommon_help' => 'Tas nepieļaus lietotājiem izmantot parastās paroles no lielākajām 10 000 paroļu, par kurām ziņots pārkāpumos.', 'qr_help' => 'Iespējojiet QR kodus vispirms, lai to iestatītu', @@ -316,10 +317,10 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Iztīrīt dzēstos ierakstus', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Darbinieka numurs', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Nosaukums', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D svītru kodu tips', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/lv/admin/settings/message.php b/resources/lang/lv-LV/admin/settings/message.php similarity index 100% rename from resources/lang/lv/admin/settings/message.php rename to resources/lang/lv-LV/admin/settings/message.php diff --git a/resources/lang/lv/admin/settings/table.php b/resources/lang/lv-LV/admin/settings/table.php similarity index 100% rename from resources/lang/lv/admin/settings/table.php rename to resources/lang/lv-LV/admin/settings/table.php diff --git a/resources/lang/lv/admin/statuslabels/message.php b/resources/lang/lv-LV/admin/statuslabels/message.php similarity index 86% rename from resources/lang/lv/admin/statuslabels/message.php rename to resources/lang/lv-LV/admin/statuslabels/message.php index b392b6a276..2bfc292426 100644 --- a/resources/lang/lv/admin/statuslabels/message.php +++ b/resources/lang/lv-LV/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Statusa marķējums nepastāv.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Šī statusa marķējums pašlaik ir saistīts ar vismaz vienu īpašumu un to nevar izdzēst. Lūdzu, atjauniniet savus aktīvus, lai vairs nenozīmē šo statusu, un mēģiniet vēlreiz.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Šos līdzekļus nevar nodot nevienam.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Šos aktīvus var pārbaudīt. Kad tie ir piešķirti, viņi uzņemsies meta statusu detalizēti.', 'archived' => 'Šos līdzekļus nevar pārbaudīt, un tie tiks parādīti tikai arhivētajā skatā. Tas ir noderīgi, lai saglabātu informāciju par aktīviem budžetam / vēsturiskiem mērķiem, bet tos saglabātu ikdienas aktīvu sarakstā.', 'pending' => 'Šos aktīvus vēl nevar piešķirt ikvienam, bieži tos izmanto priekšmetos, kas paredzēti remontam, bet tiek sagaidīts, ka tie atgriezīsies apgrozībā.', ], diff --git a/resources/lang/lv/admin/statuslabels/table.php b/resources/lang/lv-LV/admin/statuslabels/table.php similarity index 100% rename from resources/lang/lv/admin/statuslabels/table.php rename to resources/lang/lv-LV/admin/statuslabels/table.php diff --git a/resources/lang/lv/admin/suppliers/message.php b/resources/lang/lv-LV/admin/suppliers/message.php similarity index 100% rename from resources/lang/lv/admin/suppliers/message.php rename to resources/lang/lv-LV/admin/suppliers/message.php diff --git a/resources/lang/lv/admin/suppliers/table.php b/resources/lang/lv-LV/admin/suppliers/table.php similarity index 100% rename from resources/lang/lv/admin/suppliers/table.php rename to resources/lang/lv-LV/admin/suppliers/table.php diff --git a/resources/lang/lv/admin/users/general.php b/resources/lang/lv-LV/admin/users/general.php similarity index 97% rename from resources/lang/lv/admin/users/general.php rename to resources/lang/lv-LV/admin/users/general.php index f026da2828..b73ff04267 100644 --- a/resources/lang/lv/admin/users/general.php +++ b/resources/lang/lv-LV/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Apskatīt Lietotāju: vārds', 'usercsv' => 'CSV fails', 'two_factor_admin_optin_help' => 'Jūsu pašreizējie administrēšanas iestatījumi ļauj atlasīt divu faktoru autentifikāciju.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Reģistrēta 2F ierīce', + 'two_factor_active' => '2FA aktīvs', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/lv/admin/users/message.php b/resources/lang/lv-LV/admin/users/message.php similarity index 98% rename from resources/lang/lv/admin/users/message.php rename to resources/lang/lv-LV/admin/users/message.php index 4da24c502b..fbde00ccbf 100644 --- a/resources/lang/lv/admin/users/message.php +++ b/resources/lang/lv-LV/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Jūs esat veiksmīgi atteicies no šī īpašuma.', 'bulk_manager_warn' => 'Jūsu lietotāji ir veiksmīgi atjaunināti, taču jūsu pārvaldnieka ieraksts netika saglabāts, jo izvēlētā pārvaldnieks bija arī rediģējamo lietotāju sarakstā, un lietotāji, iespējams, nav viņu īpašnieks. Lūdzu, vēlreiz atlasiet savus lietotājus, izņemot pārvaldnieku.', 'user_exists' => 'Lietotājs jau eksistē!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Lietotājs neeksistē.', 'user_login_required' => 'Ievades lauks ir nepieciešams', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Parole ir nepieciešama.', diff --git a/resources/lang/lv/admin/users/table.php b/resources/lang/lv-LV/admin/users/table.php similarity index 95% rename from resources/lang/lv/admin/users/table.php rename to resources/lang/lv-LV/admin/users/table.php index aed776227c..125b8fc25a 100644 --- a/resources/lang/lv/admin/users/table.php +++ b/resources/lang/lv-LV/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Vadītājs', 'managed_locations' => 'Pārvaldītās atrašanās vietas', 'name' => 'Nosaukums', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Piezīmes', 'password_confirm' => 'apstipriniet paroli', 'password' => 'Parole', diff --git a/resources/lang/lt/auth.php b/resources/lang/lv-LV/auth.php similarity index 100% rename from resources/lang/lt/auth.php rename to resources/lang/lv-LV/auth.php diff --git a/resources/lang/lv/auth/general.php b/resources/lang/lv-LV/auth/general.php similarity index 100% rename from resources/lang/lv/auth/general.php rename to resources/lang/lv-LV/auth/general.php diff --git a/resources/lang/lv/auth/message.php b/resources/lang/lv-LV/auth/message.php similarity index 96% rename from resources/lang/lv/auth/message.php rename to resources/lang/lv-LV/auth/message.php index 6ed43f2cf3..d8e786a3f8 100644 --- a/resources/lang/lv/auth/message.php +++ b/resources/lang/lv-LV/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Jūs esat veiksmīgi pieteicies', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/lv/button.php b/resources/lang/lv-LV/button.php similarity index 82% rename from resources/lang/lv/button.php rename to resources/lang/lv-LV/button.php index b7339ddb87..b0aeb0cbab 100644 --- a/resources/lang/lv/button.php +++ b/resources/lang/lv-LV/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Atlasiet failu ...', 'select_files' => 'Atlasiet datnes...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Sūtīt paroles atiestatīšanas saiti', 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', + 'bulk_actions' => 'Lielapjoma darbības', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Jauns', ]; diff --git a/resources/lang/lv/general.php b/resources/lang/lv-LV/general.php similarity index 95% rename from resources/lang/lv/general.php rename to resources/lang/lv-LV/general.php index 2367498914..696fea267f 100644 --- a/resources/lang/lv/general.php +++ b/resources/lang/lv-LV/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Atļautie failu tipi ir jpg, webp, png, gif, and svg. Maksimālais augšuplādējamais faila izmērs ir :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Importēt', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Importa vēsture', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Gatavs izvietot', 'recent_activity' => 'Pēdējās aktivitātes', - 'remaining' => 'Remaining', + 'remaining' => 'Atlikušais', 'remove_company' => 'Noņemt uzņēmumu asociāciju', 'reports' => 'Ziņojumi', 'restored' => 'atjaunots', - 'restore' => 'Restore', + 'restore' => 'Atjaunot', 'requestable_models' => 'Requestable Models', 'requested' => 'Pieprasīts', 'requested_date' => 'Requested Date', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Piegādātājs', 'suppliers' => 'Piegādātāji', 'sure_to_delete' => 'Vai tiešām vēlaties dzēst', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Vai tiešām vēlaties dzēst :item?', 'delete_what' => 'Delete :item', 'submit' => 'Iesniegt', 'target' => 'Mērķis', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Un-deployable', 'unknown_admin' => 'Nezināms administrators', 'username_format' => 'Lietotājvārds formāts', - 'username' => 'Username', + 'username' => 'Lietotājvārds', 'update' => 'Atjaunināt', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Augšupielādēts', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'E-pasts', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Izrakstīts', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error', + 'notification_error' => 'Kļūda', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_warning' => 'Brīdinājums', 'notification_info' => 'Info', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Aktīva nosaukums', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Paturējamais nosaukums:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Piederumu nosaukums:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% pabeigt', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'rediģēt', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/lv-LV/help.php b/resources/lang/lv-LV/help.php new file mode 100644 index 0000000000..f31c9500b6 --- /dev/null +++ b/resources/lang/lv-LV/help.php @@ -0,0 +1,35 @@ + 'Vairāk informācijas', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Aktīvi ir posteņi, ko izseko pēc sērijas numura vai aktīvu taga. Viņi mēdz būt augstākas vērtības priekšmeti, kad ir svarīgi noteikt konkrētu objektu.', + + 'categories' => 'Kategorijas palīdz jums organizēt savus vienumus. Dažas piemēru kategorijas varētu būt "Desktops", "Laptops", "Mobilie telefoni", "Tablets" un tā tālāk, bet jūs varat izmantot kategorijas tādā veidā, kas jums ir jēga.', + + 'accessories' => 'Aksesuāri ir jebkas, ko jūs izsniedzat lietotājiem, bet kuriem nav sērijas numura (vai arī jums nav svarīgi, vai tie ir unikāli izsekojami). Piemēram, datoru peles vai tastatūras.', + + 'companies' => 'Uzņēmumus var izmantot kā vienkāršu identifikatora lauku vai tos var izmantot, lai ierobežotu aktīvu, lietotāju utt. Redzamību, ja jūsu Admin iestatījumos ir iespējots pilnīgs uzņēmuma atbalsts.', + + 'components' => 'Komponenti ir priekšmeti, kas ir aktīva sastāvdaļa, piemēram, cietais disks, RAM un citi.', + + 'consumables' => 'Izlietojamie materiāli ir kaut kas iegādāts, kas laika gaitā tiks izlietots. Piemēram, printera tinte vai kopētāja papīrs.', + + 'depreciations' => 'Jūs varat izveidot aktīvu nolietojumu, lai nolietotu aktīvus, pamatojoties uz lineāro nolietojumu.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/lv-LV/localizations.php b/resources/lang/lv-LV/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/lv-LV/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/lv/mail.php b/resources/lang/lv-LV/mail.php similarity index 100% rename from resources/lang/lv/mail.php rename to resources/lang/lv-LV/mail.php diff --git a/resources/lang/lv/pagination.php b/resources/lang/lv-LV/pagination.php similarity index 100% rename from resources/lang/lv/pagination.php rename to resources/lang/lv-LV/pagination.php diff --git a/resources/lang/ko/passwords.php b/resources/lang/lv-LV/passwords.php similarity index 100% rename from resources/lang/ko/passwords.php rename to resources/lang/lv-LV/passwords.php diff --git a/resources/lang/lv/reminders.php b/resources/lang/lv-LV/reminders.php similarity index 100% rename from resources/lang/lv/reminders.php rename to resources/lang/lv-LV/reminders.php diff --git a/resources/lang/lv/table.php b/resources/lang/lv-LV/table.php similarity index 100% rename from resources/lang/lv/table.php rename to resources/lang/lv-LV/table.php diff --git a/resources/lang/lv/validation.php b/resources/lang/lv-LV/validation.php similarity index 99% rename from resources/lang/lv/validation.php rename to resources/lang/lv-LV/validation.php index e3bec8eace..144e6cc46f 100644 --- a/resources/lang/lv/validation.php +++ b/resources/lang/lv-LV/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute jābūt unikālam.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/lv/admin/labels/table.php b/resources/lang/lv/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/lv/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/lv/localizations.php b/resources/lang/lv/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/lv/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/lv/account/general.php b/resources/lang/mi-NZ/account/general.php similarity index 100% rename from resources/lang/lv/account/general.php rename to resources/lang/mi-NZ/account/general.php diff --git a/resources/lang/mi/admin/accessories/general.php b/resources/lang/mi-NZ/admin/accessories/general.php similarity index 100% rename from resources/lang/mi/admin/accessories/general.php rename to resources/lang/mi-NZ/admin/accessories/general.php diff --git a/resources/lang/mi/admin/accessories/message.php b/resources/lang/mi-NZ/admin/accessories/message.php similarity index 100% rename from resources/lang/mi/admin/accessories/message.php rename to resources/lang/mi-NZ/admin/accessories/message.php diff --git a/resources/lang/mi/admin/accessories/table.php b/resources/lang/mi-NZ/admin/accessories/table.php similarity index 100% rename from resources/lang/mi/admin/accessories/table.php rename to resources/lang/mi-NZ/admin/accessories/table.php diff --git a/resources/lang/mi/admin/asset_maintenances/form.php b/resources/lang/mi-NZ/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/mi/admin/asset_maintenances/form.php rename to resources/lang/mi-NZ/admin/asset_maintenances/form.php diff --git a/resources/lang/mi/admin/asset_maintenances/general.php b/resources/lang/mi-NZ/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/mi/admin/asset_maintenances/general.php rename to resources/lang/mi-NZ/admin/asset_maintenances/general.php diff --git a/resources/lang/mi/admin/asset_maintenances/message.php b/resources/lang/mi-NZ/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/mi/admin/asset_maintenances/message.php rename to resources/lang/mi-NZ/admin/asset_maintenances/message.php diff --git a/resources/lang/mi/admin/asset_maintenances/table.php b/resources/lang/mi-NZ/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/mi/admin/asset_maintenances/table.php rename to resources/lang/mi-NZ/admin/asset_maintenances/table.php diff --git a/resources/lang/mi/admin/categories/general.php b/resources/lang/mi-NZ/admin/categories/general.php similarity index 100% rename from resources/lang/mi/admin/categories/general.php rename to resources/lang/mi-NZ/admin/categories/general.php diff --git a/resources/lang/mi/admin/categories/message.php b/resources/lang/mi-NZ/admin/categories/message.php similarity index 100% rename from resources/lang/mi/admin/categories/message.php rename to resources/lang/mi-NZ/admin/categories/message.php diff --git a/resources/lang/mi/admin/categories/table.php b/resources/lang/mi-NZ/admin/categories/table.php similarity index 100% rename from resources/lang/mi/admin/categories/table.php rename to resources/lang/mi-NZ/admin/categories/table.php diff --git a/resources/lang/mi/admin/companies/general.php b/resources/lang/mi-NZ/admin/companies/general.php similarity index 87% rename from resources/lang/mi/admin/companies/general.php rename to resources/lang/mi-NZ/admin/companies/general.php index d36b4e01c3..0eba83e55d 100644 --- a/resources/lang/mi/admin/companies/general.php +++ b/resources/lang/mi-NZ/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Tīpako Kamupene', - 'about_companies' => 'About Companies', + 'about_companies' => 'Mō Kamupene', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/mi/admin/companies/message.php b/resources/lang/mi-NZ/admin/companies/message.php similarity index 100% rename from resources/lang/mi/admin/companies/message.php rename to resources/lang/mi-NZ/admin/companies/message.php diff --git a/resources/lang/mi/admin/companies/table.php b/resources/lang/mi-NZ/admin/companies/table.php similarity index 100% rename from resources/lang/mi/admin/companies/table.php rename to resources/lang/mi-NZ/admin/companies/table.php diff --git a/resources/lang/mi/admin/components/general.php b/resources/lang/mi-NZ/admin/components/general.php similarity index 100% rename from resources/lang/mi/admin/components/general.php rename to resources/lang/mi-NZ/admin/components/general.php diff --git a/resources/lang/mi/admin/components/message.php b/resources/lang/mi-NZ/admin/components/message.php similarity index 100% rename from resources/lang/mi/admin/components/message.php rename to resources/lang/mi-NZ/admin/components/message.php diff --git a/resources/lang/mi/admin/components/table.php b/resources/lang/mi-NZ/admin/components/table.php similarity index 100% rename from resources/lang/mi/admin/components/table.php rename to resources/lang/mi-NZ/admin/components/table.php diff --git a/resources/lang/mi/admin/consumables/general.php b/resources/lang/mi-NZ/admin/consumables/general.php similarity index 100% rename from resources/lang/mi/admin/consumables/general.php rename to resources/lang/mi-NZ/admin/consumables/general.php diff --git a/resources/lang/mi/admin/consumables/message.php b/resources/lang/mi-NZ/admin/consumables/message.php similarity index 100% rename from resources/lang/mi/admin/consumables/message.php rename to resources/lang/mi-NZ/admin/consumables/message.php diff --git a/resources/lang/mi/admin/consumables/table.php b/resources/lang/mi-NZ/admin/consumables/table.php similarity index 100% rename from resources/lang/mi/admin/consumables/table.php rename to resources/lang/mi-NZ/admin/consumables/table.php diff --git a/resources/lang/mi/admin/custom_fields/general.php b/resources/lang/mi-NZ/admin/custom_fields/general.php similarity index 100% rename from resources/lang/mi/admin/custom_fields/general.php rename to resources/lang/mi-NZ/admin/custom_fields/general.php diff --git a/resources/lang/mi/admin/custom_fields/message.php b/resources/lang/mi-NZ/admin/custom_fields/message.php similarity index 100% rename from resources/lang/mi/admin/custom_fields/message.php rename to resources/lang/mi-NZ/admin/custom_fields/message.php diff --git a/resources/lang/mi/admin/departments/message.php b/resources/lang/mi-NZ/admin/departments/message.php similarity index 100% rename from resources/lang/mi/admin/departments/message.php rename to resources/lang/mi-NZ/admin/departments/message.php diff --git a/resources/lang/mi/admin/departments/table.php b/resources/lang/mi-NZ/admin/departments/table.php similarity index 100% rename from resources/lang/mi/admin/departments/table.php rename to resources/lang/mi-NZ/admin/departments/table.php diff --git a/resources/lang/mi/admin/depreciations/general.php b/resources/lang/mi-NZ/admin/depreciations/general.php similarity index 100% rename from resources/lang/mi/admin/depreciations/general.php rename to resources/lang/mi-NZ/admin/depreciations/general.php diff --git a/resources/lang/mi/admin/depreciations/message.php b/resources/lang/mi-NZ/admin/depreciations/message.php similarity index 100% rename from resources/lang/mi/admin/depreciations/message.php rename to resources/lang/mi-NZ/admin/depreciations/message.php diff --git a/resources/lang/mi/admin/depreciations/table.php b/resources/lang/mi-NZ/admin/depreciations/table.php similarity index 100% rename from resources/lang/mi/admin/depreciations/table.php rename to resources/lang/mi-NZ/admin/depreciations/table.php diff --git a/resources/lang/mi/admin/groups/message.php b/resources/lang/mi-NZ/admin/groups/message.php similarity index 100% rename from resources/lang/mi/admin/groups/message.php rename to resources/lang/mi-NZ/admin/groups/message.php diff --git a/resources/lang/mi/admin/groups/table.php b/resources/lang/mi-NZ/admin/groups/table.php similarity index 100% rename from resources/lang/mi/admin/groups/table.php rename to resources/lang/mi-NZ/admin/groups/table.php diff --git a/resources/lang/mi/admin/groups/titles.php b/resources/lang/mi-NZ/admin/groups/titles.php similarity index 100% rename from resources/lang/mi/admin/groups/titles.php rename to resources/lang/mi-NZ/admin/groups/titles.php diff --git a/resources/lang/mi/admin/hardware/form.php b/resources/lang/mi-NZ/admin/hardware/form.php similarity index 100% rename from resources/lang/mi/admin/hardware/form.php rename to resources/lang/mi-NZ/admin/hardware/form.php diff --git a/resources/lang/mi/admin/hardware/general.php b/resources/lang/mi-NZ/admin/hardware/general.php similarity index 100% rename from resources/lang/mi/admin/hardware/general.php rename to resources/lang/mi-NZ/admin/hardware/general.php diff --git a/resources/lang/mi/admin/hardware/message.php b/resources/lang/mi-NZ/admin/hardware/message.php similarity index 98% rename from resources/lang/mi/admin/hardware/message.php rename to resources/lang/mi-NZ/admin/hardware/message.php index 51e84350d9..281d887e47 100644 --- a/resources/lang/mi/admin/hardware/message.php +++ b/resources/lang/mi-NZ/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Kaore i whakahokia mai te tahua, tena koa ngana ano', 'success' => 'Kua hokihia te tahua.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Kua hokihia te tahua.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/mi/admin/hardware/table.php b/resources/lang/mi-NZ/admin/hardware/table.php similarity index 96% rename from resources/lang/mi/admin/hardware/table.php rename to resources/lang/mi-NZ/admin/hardware/table.php index 113359e194..21df04e9b2 100644 --- a/resources/lang/mi/admin/hardware/table.php +++ b/resources/lang/mi-NZ/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Atahanga Pūrere', 'days_without_acceptance' => 'Nga Rahui Te Whakaae', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Tohua Ki To', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/mi-NZ/admin/kits/general.php b/resources/lang/mi-NZ/admin/kits/general.php new file mode 100644 index 0000000000..1d251fb1aa --- /dev/null +++ b/resources/lang/mi-NZ/admin/kits/general.php @@ -0,0 +1,50 @@ + 'About Predefined Kits', + 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', + 'checkout' => 'Checkout Kit ', + 'create_success' => 'Kit was successfully created.', + 'create' => 'Create Predefined Kit', + 'update' => 'Update Predefined Kit', + 'delete_success' => 'Kit was successfully deleted.', + 'update_success' => 'Kit was successfully updated.', + 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', + 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', + 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', + 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'License already attached to kit', + 'license_added_success' => 'License added successfully', + 'license_updated' => 'License was successfully updated', + 'license_none' => 'Kaore he raihana', + 'license_detached' => 'License was successfully detached', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Delete was successful', + 'consumable_none' => 'Kaore e taea te whakamahi', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Accessory added successfully', + 'accessory_updated' => 'Accessory was successfully updated', + 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_error' => 'Accessory already attached to kit', + 'accessory_deleted' => 'Delete was successful', + 'accessory_none' => 'Accessory does not exist', + 'checkout_success' => 'Checkout was successful', + 'checkout_error' => 'Checkout error', + 'kit_none' => 'Kit does not exist', + 'kit_created' => 'Kit was successfully created', + 'kit_updated' => 'Kit was successfully updated', + 'kit_not_found' => 'Kit not found', + 'kit_deleted' => 'Kit was successfully deleted', + 'kit_model_updated' => 'Model was successfully updated', + 'kit_model_detached' => 'Model was successfully detached', +]; diff --git a/resources/lang/lt/admin/labels/message.php b/resources/lang/mi-NZ/admin/labels/message.php similarity index 100% rename from resources/lang/lt/admin/labels/message.php rename to resources/lang/mi-NZ/admin/labels/message.php diff --git a/resources/lang/mi-NZ/admin/labels/table.php b/resources/lang/mi-NZ/admin/labels/table.php new file mode 100644 index 0000000000..33e04bab12 --- /dev/null +++ b/resources/lang/mi-NZ/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Tohu', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Moko', + 'support_title' => 'Taitara', + +]; \ No newline at end of file diff --git a/resources/lang/mi/admin/licenses/form.php b/resources/lang/mi-NZ/admin/licenses/form.php similarity index 100% rename from resources/lang/mi/admin/licenses/form.php rename to resources/lang/mi-NZ/admin/licenses/form.php diff --git a/resources/lang/mi/admin/licenses/general.php b/resources/lang/mi-NZ/admin/licenses/general.php similarity index 100% rename from resources/lang/mi/admin/licenses/general.php rename to resources/lang/mi-NZ/admin/licenses/general.php diff --git a/resources/lang/mi/admin/licenses/message.php b/resources/lang/mi-NZ/admin/licenses/message.php similarity index 100% rename from resources/lang/mi/admin/licenses/message.php rename to resources/lang/mi-NZ/admin/licenses/message.php diff --git a/resources/lang/mi/admin/licenses/table.php b/resources/lang/mi-NZ/admin/licenses/table.php similarity index 100% rename from resources/lang/mi/admin/licenses/table.php rename to resources/lang/mi-NZ/admin/licenses/table.php diff --git a/resources/lang/mi/admin/locations/message.php b/resources/lang/mi-NZ/admin/locations/message.php similarity index 100% rename from resources/lang/mi/admin/locations/message.php rename to resources/lang/mi-NZ/admin/locations/message.php diff --git a/resources/lang/mi/admin/locations/table.php b/resources/lang/mi-NZ/admin/locations/table.php similarity index 77% rename from resources/lang/mi/admin/locations/table.php rename to resources/lang/mi-NZ/admin/locations/table.php index bb6cd8b97e..1b9a222561 100644 --- a/resources/lang/mi/admin/locations/table.php +++ b/resources/lang/mi-NZ/admin/locations/table.php @@ -22,18 +22,18 @@ return [ 'currency' => 'Wāhi Moni', 'ldap_ou' => 'Rapua Rapu LDAP', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Tari', + 'location' => 'Wāhi', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_name' => 'Ingoa', + 'asset_category' => 'Kāwai', + 'asset_manufacturer' => 'Kaihanga', + 'asset_model' => 'Tauira', + 'asset_serial' => 'Waea', + 'asset_location' => 'Wāhi', + 'asset_checked_out' => 'Kua Mataarahia', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Rā:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/mi/admin/manufacturers/message.php b/resources/lang/mi-NZ/admin/manufacturers/message.php similarity index 100% rename from resources/lang/mi/admin/manufacturers/message.php rename to resources/lang/mi-NZ/admin/manufacturers/message.php diff --git a/resources/lang/mi/admin/manufacturers/table.php b/resources/lang/mi-NZ/admin/manufacturers/table.php similarity index 100% rename from resources/lang/mi/admin/manufacturers/table.php rename to resources/lang/mi-NZ/admin/manufacturers/table.php diff --git a/resources/lang/mi/admin/models/general.php b/resources/lang/mi-NZ/admin/models/general.php similarity index 100% rename from resources/lang/mi/admin/models/general.php rename to resources/lang/mi-NZ/admin/models/general.php diff --git a/resources/lang/mi/admin/models/message.php b/resources/lang/mi-NZ/admin/models/message.php similarity index 100% rename from resources/lang/mi/admin/models/message.php rename to resources/lang/mi-NZ/admin/models/message.php diff --git a/resources/lang/mi/admin/models/table.php b/resources/lang/mi-NZ/admin/models/table.php similarity index 100% rename from resources/lang/mi/admin/models/table.php rename to resources/lang/mi-NZ/admin/models/table.php diff --git a/resources/lang/mi/admin/reports/general.php b/resources/lang/mi-NZ/admin/reports/general.php similarity index 100% rename from resources/lang/mi/admin/reports/general.php rename to resources/lang/mi-NZ/admin/reports/general.php diff --git a/resources/lang/mi/admin/reports/message.php b/resources/lang/mi-NZ/admin/reports/message.php similarity index 100% rename from resources/lang/mi/admin/reports/message.php rename to resources/lang/mi-NZ/admin/reports/message.php diff --git a/resources/lang/mi/admin/settings/general.php b/resources/lang/mi-NZ/admin/settings/general.php similarity index 99% rename from resources/lang/mi/admin/settings/general.php rename to resources/lang/mi-NZ/admin/settings/general.php index 7a2e4d1441..5356dfb4d8 100644 --- a/resources/lang/mi/admin/settings/general.php +++ b/resources/lang/mi-NZ/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'He raupapa Active Directory tēnei', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Kupuhipa iti kupuhipa', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Ko te uara iti kua whakaaetia he 8', 'pwd_secure_uncommon' => 'Aukati i nga kupuhipa noa', 'pwd_secure_uncommon_help' => 'Ka whakakore tenei i nga kaiwhakamahi i te whakamahi i nga kupuhipa noa mai i te top 10,000 o nga kupuhipa i korerotia i roto i nga takahanga.', 'qr_help' => 'Whakahohehia nga waehere QR tuatahi ki te whakarite i tenei', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Purea nga Tiwhikete Kua Mukua', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Taitara', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D Type Barcode', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/mi/admin/settings/message.php b/resources/lang/mi-NZ/admin/settings/message.php similarity index 100% rename from resources/lang/mi/admin/settings/message.php rename to resources/lang/mi-NZ/admin/settings/message.php diff --git a/resources/lang/mi-NZ/admin/settings/table.php b/resources/lang/mi-NZ/admin/settings/table.php new file mode 100644 index 0000000000..a9ae4f7948 --- /dev/null +++ b/resources/lang/mi-NZ/admin/settings/table.php @@ -0,0 +1,6 @@ + 'I waihangahia', + 'size' => 'Size', +); diff --git a/resources/lang/mi/admin/statuslabels/message.php b/resources/lang/mi-NZ/admin/statuslabels/message.php similarity index 86% rename from resources/lang/mi/admin/statuslabels/message.php rename to resources/lang/mi-NZ/admin/statuslabels/message.php index 96d074c390..4e48f9acc4 100644 --- a/resources/lang/mi/admin/statuslabels/message.php +++ b/resources/lang/mi-NZ/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Kaore te Ingoa Tūnga i te tīariari.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Ko tenei Tapanga Whakaaetanga kei te hono atu ki tetahi rawa rawa, kaore e taea te muku. Whakaorangia nga taonga ki a koe kia kaua e tuhi i tenei tikanga ka ngana ano.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Kaore e taea te tuku atu i enei taonga ki tetahi.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Ka taea te tirotiro i enei taonga. Kia tohaina ratou, ka whakatauhia he tohu meta o Deployed.', 'archived' => 'Kaore e taea te tirotiro i enei taonga, ka whakaaturia anake i roto i te tirohanga Whakamahia. He whai hua tenei mo te pupuri i nga korero e pa ana ki nga moni mo te tahua moni / kaupapa whakamaharatanga, engari ko te tiaki ia ratou i te rarangi o nga raanei raanei.', 'pending' => 'Kaore e taea te tuku atu i enei taonga ki tetahi, e whakamahia ana mo nga mea e tika ana mo te whakapai, engari e tika ana kia hoki mai ki te rere.', ], diff --git a/resources/lang/mi/admin/statuslabels/table.php b/resources/lang/mi-NZ/admin/statuslabels/table.php similarity index 100% rename from resources/lang/mi/admin/statuslabels/table.php rename to resources/lang/mi-NZ/admin/statuslabels/table.php diff --git a/resources/lang/mi/admin/suppliers/message.php b/resources/lang/mi-NZ/admin/suppliers/message.php similarity index 100% rename from resources/lang/mi/admin/suppliers/message.php rename to resources/lang/mi-NZ/admin/suppliers/message.php diff --git a/resources/lang/mi/admin/suppliers/table.php b/resources/lang/mi-NZ/admin/suppliers/table.php similarity index 100% rename from resources/lang/mi/admin/suppliers/table.php rename to resources/lang/mi-NZ/admin/suppliers/table.php diff --git a/resources/lang/mi/admin/users/general.php b/resources/lang/mi-NZ/admin/users/general.php similarity index 97% rename from resources/lang/mi/admin/users/general.php rename to resources/lang/mi-NZ/admin/users/general.php index 6e788e182e..6ca455c380 100644 --- a/resources/lang/mi/admin/users/general.php +++ b/resources/lang/mi-NZ/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Tirohia te Kaiwhakamahi: ingoa', 'usercsv' => 'Kōnae CSV', 'two_factor_admin_optin_help' => 'Ko to tautuhinga kaiwhakahaere o toianei kei te whakarite i te whakatinanatanga o te whakamotuhēhēnga-rua.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Kua whakauruhia te Pūrere 2FA', + 'two_factor_active' => '2FA Mahi', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/mi/admin/users/message.php b/resources/lang/mi-NZ/admin/users/message.php similarity index 98% rename from resources/lang/mi/admin/users/message.php rename to resources/lang/mi-NZ/admin/users/message.php index 170da70f67..d0d38c29d2 100644 --- a/resources/lang/mi/admin/users/message.php +++ b/resources/lang/mi-NZ/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Kua paopao angitu koe ki tenei taonga.', 'bulk_manager_warn' => 'Kua angitu te whakahoutia o nga kaiwhakamahi, heoi kihai i tohua to tautuhinga kaiwhakahaere no te mea ko te kaiwhakahaere i tohua e koe i roto i te rarangi kaiwhakamahi kia whakatikaia, kaore ano hoki nga kaiwhakamahi i to ratou ake kaiwhakahaere. Tēnā koa tīpako anō i ō kaiwhakamahi, kaore i te kaiwhakahaere.', 'user_exists' => 'Kua noho kē te Kaiwhakamahi!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Kāore te Kaiwhakamahi i te tīariari.', 'user_login_required' => 'Kei te hiahiatia te mara takiuru', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Kei te hiahiatia te kupuhipa.', diff --git a/resources/lang/mi/admin/users/table.php b/resources/lang/mi-NZ/admin/users/table.php similarity index 95% rename from resources/lang/mi/admin/users/table.php rename to resources/lang/mi-NZ/admin/users/table.php index 948f688921..1e1d67ea73 100644 --- a/resources/lang/mi/admin/users/table.php +++ b/resources/lang/mi-NZ/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Kaiwhakahaere', 'managed_locations' => 'Ngā Tauwāhi Whakahaere', 'name' => 'Ingoa', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Tuhipoka', 'password_confirm' => 'Whakaae Kupuhipa', 'password' => 'Kupuhipa', diff --git a/resources/lang/lv/auth.php b/resources/lang/mi-NZ/auth.php similarity index 100% rename from resources/lang/lv/auth.php rename to resources/lang/mi-NZ/auth.php diff --git a/resources/lang/mi/auth/general.php b/resources/lang/mi-NZ/auth/general.php similarity index 100% rename from resources/lang/mi/auth/general.php rename to resources/lang/mi-NZ/auth/general.php diff --git a/resources/lang/mi/auth/message.php b/resources/lang/mi-NZ/auth/message.php similarity index 96% rename from resources/lang/mi/auth/message.php rename to resources/lang/mi-NZ/auth/message.php index 7ccd87564c..860c966a85 100644 --- a/resources/lang/mi/auth/message.php +++ b/resources/lang/mi-NZ/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Kua uru koe ki roto.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/mi/button.php b/resources/lang/mi-NZ/button.php similarity index 88% rename from resources/lang/mi/button.php rename to resources/lang/mi-NZ/button.php index 142d3ce6d0..529958f096 100644 --- a/resources/lang/mi/button.php +++ b/resources/lang/mi-NZ/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Tīpako Kōnae ...', 'select_files' => 'Select Files...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Tukua te Tautuhi Tautuhi Kupuhipa', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Hou', ]; diff --git a/resources/lang/mi/general.php b/resources/lang/mi-NZ/general.php similarity index 96% rename from resources/lang/mi/general.php rename to resources/lang/mi-NZ/general.php index 5b91c0f927..41ae811915 100644 --- a/resources/lang/mi/general.php +++ b/resources/lang/mi-NZ/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Kawemai', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Kaweake Kawemai', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Kua rite ki te Whakamahia', 'recent_activity' => 'Mahi Hou', - 'remaining' => 'Remaining', + 'remaining' => 'Te noho', 'remove_company' => 'Tangohia te Kamupene Kamupene', 'reports' => 'Ngā pūrongo', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'Whakaora', 'requestable_models' => 'Requestable Models', 'requested' => 'I tonohia', 'requested_date' => 'Requested Date', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Kaore e taea te whakaputa', 'unknown_admin' => 'Kaiwhakahaere unknown', 'username_format' => 'Ingoa Kaiwhakamahi Hōputu', - 'username' => 'Username', + 'username' => 'Ingoa Kaiwhakamahi', 'update' => 'Whakahou', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Kua tukuna', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'Īmēra', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Kua Mataarahia', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Whakatūpato', + 'notification_info' => 'Mōhiohio', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Ingoa Ahua', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Ingoa Whakamahia:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Ingoa Whakauru:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% kua oti', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'whakatika', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/mi-NZ/help.php b/resources/lang/mi-NZ/help.php new file mode 100644 index 0000000000..c48d374240 --- /dev/null +++ b/resources/lang/mi-NZ/help.php @@ -0,0 +1,35 @@ + 'He Korero Ano', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Ko nga taonga he taonga kua rapua e te tau rangatū, te tohu taonga ranei. He ahua nui ake o nga taonga kei te tautuhi i nga take e tika ana.', + + 'categories' => 'Ka awhina nga akomanga ki a koe ki te whakarite whakaritenga Ko etahi o nga tauira tauira ko "Desktops", "Laptops", "Matau Phones", "Tablets", me te pera ano, engari ka taea e koe te whakamahi i nga kāwai i tetahi ara e whai tikanga ana ki a koe.', + + 'accessories' => 'Ko nga mea katoa ka hoatu e koe ki nga kaiwhakamahi, engari kaore he tau rangahau (kaore ranei koe e whakaaro ana ki te aroturuki i a raatau). Hei tauira, nga kiore rorohiko me nga papapātuhi ranei.', + + 'companies' => 'Ka taea te whakamahi i nga Kamupene hei mahinga tautuhi maatau, ka taea te whakamahi hei whakaiti i te tirohanga o nga rawa, nga kaiwhakamahi, mehemea ka taea te tautoko o te kamupene katoa i roto i to tautuhinga Kaiwhakahaere.', + + 'components' => 'Ko nga waahanga he mea waahanga o te taonga, hei tauira HDD, RAM, me etahi atu.', + + 'consumables' => 'Ko nga taonga e hokona ana ka hokona i runga ake i te wa. Hei tauira, he pene reta, he pepa tuhi ranei.', + + 'depreciations' => 'Ka taea e koe te whakarite i nga whakahekenga o te rawa ki te whakaiti i nga rawa i runga i te toenga o te raina tika.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/mi-NZ/localizations.php b/resources/lang/mi-NZ/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/mi-NZ/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/mi/mail.php b/resources/lang/mi-NZ/mail.php similarity index 97% rename from resources/lang/mi/mail.php rename to resources/lang/mi-NZ/mail.php index a26811f6f7..9f716184f6 100644 --- a/resources/lang/mi/mail.php +++ b/resources/lang/mi-NZ/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Tahua:', 'asset_name' => 'Ingoa Ahua:', 'asset_requested' => 'Ka tonohia te taonga', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Tae Taonga', 'assigned_to' => 'Tohua Ki To', 'best_regards' => 'Ko nga whakaaro pai,', 'canceled' => 'Kua whakakorehia:', @@ -55,7 +55,7 @@ return [ 'requested' => 'I tonohia:', 'reset_link' => 'Tautuhi Hononga Kupuhipa', 'reset_password' => 'Pāwhiri ki konei kia tautuhi i to kupuhipa:', - 'serial' => 'Serial', + 'serial' => 'Waea', 'supplier' => 'Kaihoko', 'tag' => 'Tohu', 'test_email' => 'Test Test from Snipe-IT', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'Hei tautuhi i to: kupuhipa tukutuku, whakaoti i tenei puka:', 'type' => 'Momo', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'Kaiwhakamahi', + 'username' => 'Ingoa Kaiwhakamahi', 'welcome' => 'Nau mai: ingoa', 'welcome_to' => 'Nau mai ki: web!', 'your_credentials' => 'Nga tohu tohu Snipe-IT', diff --git a/resources/lang/mi/pagination.php b/resources/lang/mi-NZ/pagination.php similarity index 100% rename from resources/lang/mi/pagination.php rename to resources/lang/mi-NZ/pagination.php diff --git a/resources/lang/lv/passwords.php b/resources/lang/mi-NZ/passwords.php similarity index 100% rename from resources/lang/lv/passwords.php rename to resources/lang/mi-NZ/passwords.php diff --git a/resources/lang/mi/reminders.php b/resources/lang/mi-NZ/reminders.php similarity index 100% rename from resources/lang/mi/reminders.php rename to resources/lang/mi-NZ/reminders.php diff --git a/resources/lang/mi/table.php b/resources/lang/mi-NZ/table.php similarity index 100% rename from resources/lang/mi/table.php rename to resources/lang/mi-NZ/table.php diff --git a/resources/lang/mi/validation.php b/resources/lang/mi-NZ/validation.php similarity index 98% rename from resources/lang/mi/validation.php rename to resources/lang/mi-NZ/validation.php index 74b3891c81..cf3f72e326 100644 --- a/resources/lang/mi/validation.php +++ b/resources/lang/mi-NZ/validation.php @@ -94,10 +94,9 @@ return [ 'unique' => 'Ko te: kua tangohia te huanga.', 'uploaded' => 'Ko te: ko te huanga i rahua te tuku.', 'url' => 'Ko te: ko te hōputu huanga he muhu.', - 'unique_undeleted' => 'The :attribute must be unique.', + 'unique_undeleted' => 'Ko te: me tino ahurei te huanga.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/mi/admin/labels/table.php b/resources/lang/mi/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/mi/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/mi/admin/settings/table.php b/resources/lang/mi/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/mi/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/mi/help.php b/resources/lang/mi/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/mi/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/mi/localizations.php b/resources/lang/mi/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/mi/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/mi/account/general.php b/resources/lang/mk-MK/account/general.php similarity index 100% rename from resources/lang/mi/account/general.php rename to resources/lang/mk-MK/account/general.php diff --git a/resources/lang/mk/admin/accessories/general.php b/resources/lang/mk-MK/admin/accessories/general.php similarity index 100% rename from resources/lang/mk/admin/accessories/general.php rename to resources/lang/mk-MK/admin/accessories/general.php diff --git a/resources/lang/mk/admin/accessories/message.php b/resources/lang/mk-MK/admin/accessories/message.php similarity index 100% rename from resources/lang/mk/admin/accessories/message.php rename to resources/lang/mk-MK/admin/accessories/message.php diff --git a/resources/lang/mk/admin/accessories/table.php b/resources/lang/mk-MK/admin/accessories/table.php similarity index 100% rename from resources/lang/mk/admin/accessories/table.php rename to resources/lang/mk-MK/admin/accessories/table.php diff --git a/resources/lang/mk/admin/asset_maintenances/form.php b/resources/lang/mk-MK/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/mk/admin/asset_maintenances/form.php rename to resources/lang/mk-MK/admin/asset_maintenances/form.php diff --git a/resources/lang/mk/admin/asset_maintenances/general.php b/resources/lang/mk-MK/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/mk/admin/asset_maintenances/general.php rename to resources/lang/mk-MK/admin/asset_maintenances/general.php diff --git a/resources/lang/mk/admin/asset_maintenances/message.php b/resources/lang/mk-MK/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/mk/admin/asset_maintenances/message.php rename to resources/lang/mk-MK/admin/asset_maintenances/message.php diff --git a/resources/lang/mk/admin/asset_maintenances/table.php b/resources/lang/mk-MK/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/mk/admin/asset_maintenances/table.php rename to resources/lang/mk-MK/admin/asset_maintenances/table.php diff --git a/resources/lang/mk/admin/categories/general.php b/resources/lang/mk-MK/admin/categories/general.php similarity index 100% rename from resources/lang/mk/admin/categories/general.php rename to resources/lang/mk-MK/admin/categories/general.php diff --git a/resources/lang/mk/admin/categories/message.php b/resources/lang/mk-MK/admin/categories/message.php similarity index 100% rename from resources/lang/mk/admin/categories/message.php rename to resources/lang/mk-MK/admin/categories/message.php diff --git a/resources/lang/mk/admin/categories/table.php b/resources/lang/mk-MK/admin/categories/table.php similarity index 100% rename from resources/lang/mk/admin/categories/table.php rename to resources/lang/mk-MK/admin/categories/table.php diff --git a/resources/lang/mk/admin/companies/general.php b/resources/lang/mk-MK/admin/companies/general.php similarity index 86% rename from resources/lang/mk/admin/companies/general.php rename to resources/lang/mk-MK/admin/companies/general.php index 77f9fd1ade..6e0a0f426b 100644 --- a/resources/lang/mk/admin/companies/general.php +++ b/resources/lang/mk-MK/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Изберете компанија', - 'about_companies' => 'About Companies', + 'about_companies' => 'За компаниите', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/mk/admin/companies/message.php b/resources/lang/mk-MK/admin/companies/message.php similarity index 100% rename from resources/lang/mk/admin/companies/message.php rename to resources/lang/mk-MK/admin/companies/message.php diff --git a/resources/lang/mk/admin/companies/table.php b/resources/lang/mk-MK/admin/companies/table.php similarity index 100% rename from resources/lang/mk/admin/companies/table.php rename to resources/lang/mk-MK/admin/companies/table.php diff --git a/resources/lang/mk/admin/components/general.php b/resources/lang/mk-MK/admin/components/general.php similarity index 100% rename from resources/lang/mk/admin/components/general.php rename to resources/lang/mk-MK/admin/components/general.php diff --git a/resources/lang/mk/admin/components/message.php b/resources/lang/mk-MK/admin/components/message.php similarity index 100% rename from resources/lang/mk/admin/components/message.php rename to resources/lang/mk-MK/admin/components/message.php diff --git a/resources/lang/mk/admin/components/table.php b/resources/lang/mk-MK/admin/components/table.php similarity index 100% rename from resources/lang/mk/admin/components/table.php rename to resources/lang/mk-MK/admin/components/table.php diff --git a/resources/lang/mk/admin/consumables/general.php b/resources/lang/mk-MK/admin/consumables/general.php similarity index 100% rename from resources/lang/mk/admin/consumables/general.php rename to resources/lang/mk-MK/admin/consumables/general.php diff --git a/resources/lang/mk/admin/consumables/message.php b/resources/lang/mk-MK/admin/consumables/message.php similarity index 100% rename from resources/lang/mk/admin/consumables/message.php rename to resources/lang/mk-MK/admin/consumables/message.php diff --git a/resources/lang/mk/admin/consumables/table.php b/resources/lang/mk-MK/admin/consumables/table.php similarity index 100% rename from resources/lang/mk/admin/consumables/table.php rename to resources/lang/mk-MK/admin/consumables/table.php diff --git a/resources/lang/mk/admin/custom_fields/general.php b/resources/lang/mk-MK/admin/custom_fields/general.php similarity index 94% rename from resources/lang/mk/admin/custom_fields/general.php rename to resources/lang/mk-MK/admin/custom_fields/general.php index ec4d3422f7..7f48e1b0a7 100644 --- a/resources/lang/mk/admin/custom_fields/general.php +++ b/resources/lang/mk-MK/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Ново прилагодено поле', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Вредноста на ова поле е емкриптирана во базата на податоци. Само административните корисници ќе можат да ја видат декриптираната вредност', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Вклучете ја вредноста на ова поле во е-поштата испратена до корисникот? Шифрираните полиња не можат да бидат вклучени во е-пошта', '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.', diff --git a/resources/lang/mk/admin/custom_fields/message.php b/resources/lang/mk-MK/admin/custom_fields/message.php similarity index 100% rename from resources/lang/mk/admin/custom_fields/message.php rename to resources/lang/mk-MK/admin/custom_fields/message.php diff --git a/resources/lang/mk/admin/departments/message.php b/resources/lang/mk-MK/admin/departments/message.php similarity index 100% rename from resources/lang/mk/admin/departments/message.php rename to resources/lang/mk-MK/admin/departments/message.php diff --git a/resources/lang/mk/admin/departments/table.php b/resources/lang/mk-MK/admin/departments/table.php similarity index 100% rename from resources/lang/mk/admin/departments/table.php rename to resources/lang/mk-MK/admin/departments/table.php diff --git a/resources/lang/mk/admin/depreciations/general.php b/resources/lang/mk-MK/admin/depreciations/general.php similarity index 100% rename from resources/lang/mk/admin/depreciations/general.php rename to resources/lang/mk-MK/admin/depreciations/general.php diff --git a/resources/lang/mk/admin/depreciations/message.php b/resources/lang/mk-MK/admin/depreciations/message.php similarity index 100% rename from resources/lang/mk/admin/depreciations/message.php rename to resources/lang/mk-MK/admin/depreciations/message.php diff --git a/resources/lang/mk/admin/depreciations/table.php b/resources/lang/mk-MK/admin/depreciations/table.php similarity index 100% rename from resources/lang/mk/admin/depreciations/table.php rename to resources/lang/mk-MK/admin/depreciations/table.php diff --git a/resources/lang/mk/admin/groups/message.php b/resources/lang/mk-MK/admin/groups/message.php similarity index 100% rename from resources/lang/mk/admin/groups/message.php rename to resources/lang/mk-MK/admin/groups/message.php diff --git a/resources/lang/mk/admin/groups/table.php b/resources/lang/mk-MK/admin/groups/table.php similarity index 100% rename from resources/lang/mk/admin/groups/table.php rename to resources/lang/mk-MK/admin/groups/table.php diff --git a/resources/lang/mk/admin/groups/titles.php b/resources/lang/mk-MK/admin/groups/titles.php similarity index 100% rename from resources/lang/mk/admin/groups/titles.php rename to resources/lang/mk-MK/admin/groups/titles.php diff --git a/resources/lang/mk/admin/hardware/form.php b/resources/lang/mk-MK/admin/hardware/form.php similarity index 100% rename from resources/lang/mk/admin/hardware/form.php rename to resources/lang/mk-MK/admin/hardware/form.php diff --git a/resources/lang/mk/admin/hardware/general.php b/resources/lang/mk-MK/admin/hardware/general.php similarity index 100% rename from resources/lang/mk/admin/hardware/general.php rename to resources/lang/mk-MK/admin/hardware/general.php diff --git a/resources/lang/mk/admin/hardware/message.php b/resources/lang/mk-MK/admin/hardware/message.php similarity index 98% rename from resources/lang/mk/admin/hardware/message.php rename to resources/lang/mk-MK/admin/hardware/message.php index 25923b329c..08ad1e3319 100644 --- a/resources/lang/mk/admin/hardware/message.php +++ b/resources/lang/mk-MK/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Основното средство не е вратено, обидете се повторно', 'success' => 'Основното средство е успешно вратено.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Основното средство е успешно вратено.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/mk/admin/hardware/table.php b/resources/lang/mk-MK/admin/hardware/table.php similarity index 96% rename from resources/lang/mk/admin/hardware/table.php rename to resources/lang/mk-MK/admin/hardware/table.php index 9d8a85ff44..ef0a7bccb7 100644 --- a/resources/lang/mk/admin/hardware/table.php +++ b/resources/lang/mk-MK/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Слика', 'days_without_acceptance' => 'Денови без прифаќање', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Задолжен на', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/mk-MK/admin/kits/general.php b/resources/lang/mk-MK/admin/kits/general.php new file mode 100644 index 0000000000..c5600fbd2d --- /dev/null +++ b/resources/lang/mk-MK/admin/kits/general.php @@ -0,0 +1,50 @@ + 'About Predefined Kits', + 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', + 'checkout' => 'Checkout Kit ', + 'create_success' => 'Kit was successfully created.', + 'create' => 'Create Predefined Kit', + 'update' => 'Update Predefined Kit', + 'delete_success' => 'Kit was successfully deleted.', + 'update_success' => 'Kit was successfully updated.', + 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', + 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', + 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', + 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'License already attached to kit', + 'license_added_success' => 'License added successfully', + 'license_updated' => 'License was successfully updated', + 'license_none' => 'Лиценцата не постои', + 'license_detached' => 'License was successfully detached', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Delete was successful', + 'consumable_none' => 'Потрошниот материјал не постои', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Accessory added successfully', + 'accessory_updated' => 'Accessory was successfully updated', + 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_error' => 'Accessory already attached to kit', + 'accessory_deleted' => 'Delete was successful', + 'accessory_none' => 'Accessory does not exist', + 'checkout_success' => 'Checkout was successful', + 'checkout_error' => 'Checkout error', + 'kit_none' => 'Kit does not exist', + 'kit_created' => 'Kit was successfully created', + 'kit_updated' => 'Kit was successfully updated', + 'kit_not_found' => 'Kit not found', + 'kit_deleted' => 'Kit was successfully deleted', + 'kit_model_updated' => 'Model was successfully updated', + 'kit_model_detached' => 'Model was successfully detached', +]; diff --git a/resources/lang/lv/admin/labels/message.php b/resources/lang/mk-MK/admin/labels/message.php similarity index 100% rename from resources/lang/lv/admin/labels/message.php rename to resources/lang/mk-MK/admin/labels/message.php diff --git a/resources/lang/mk-MK/admin/labels/table.php b/resources/lang/mk-MK/admin/labels/table.php new file mode 100644 index 0000000000..0245c98099 --- /dev/null +++ b/resources/lang/mk-MK/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Таг', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Лого', + 'support_title' => 'Наслов', + +]; \ No newline at end of file diff --git a/resources/lang/mk/admin/licenses/form.php b/resources/lang/mk-MK/admin/licenses/form.php similarity index 100% rename from resources/lang/mk/admin/licenses/form.php rename to resources/lang/mk-MK/admin/licenses/form.php diff --git a/resources/lang/mk/admin/licenses/general.php b/resources/lang/mk-MK/admin/licenses/general.php similarity index 100% rename from resources/lang/mk/admin/licenses/general.php rename to resources/lang/mk-MK/admin/licenses/general.php diff --git a/resources/lang/mk/admin/licenses/message.php b/resources/lang/mk-MK/admin/licenses/message.php similarity index 100% rename from resources/lang/mk/admin/licenses/message.php rename to resources/lang/mk-MK/admin/licenses/message.php diff --git a/resources/lang/mk/admin/licenses/table.php b/resources/lang/mk-MK/admin/licenses/table.php similarity index 100% rename from resources/lang/mk/admin/licenses/table.php rename to resources/lang/mk-MK/admin/licenses/table.php diff --git a/resources/lang/mk/admin/locations/message.php b/resources/lang/mk-MK/admin/locations/message.php similarity index 100% rename from resources/lang/mk/admin/locations/message.php rename to resources/lang/mk-MK/admin/locations/message.php diff --git a/resources/lang/mk/admin/locations/table.php b/resources/lang/mk-MK/admin/locations/table.php similarity index 75% rename from resources/lang/mk/admin/locations/table.php rename to resources/lang/mk-MK/admin/locations/table.php index f6bbdd6598..d561782127 100644 --- a/resources/lang/mk/admin/locations/table.php +++ b/resources/lang/mk-MK/admin/locations/table.php @@ -12,7 +12,7 @@ return [ 'create' => 'Креирај локација', 'update' => 'Ажурирај локација', 'print_assigned' => 'Print Assigned', - 'print_all_assigned' => 'Print All Assigned', + 'print_all_assigned' => 'Печати задолжение', 'name' => 'Име на локација', 'address' => 'Адреса', 'address2' => 'Address Line 2', @@ -22,18 +22,18 @@ return [ 'currency' => 'Валута на локација', 'ldap_ou' => 'LDAP OU за пребарување', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Одделение', + 'location' => 'Локација', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_name' => 'Име', + 'asset_category' => 'Категорија', + 'asset_manufacturer' => 'Производител', + 'asset_model' => 'Модел', + 'asset_serial' => 'Сериски', + 'asset_location' => 'Локација', + 'asset_checked_out' => 'Задолжен на', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Датум:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/mk/admin/manufacturers/message.php b/resources/lang/mk-MK/admin/manufacturers/message.php similarity index 100% rename from resources/lang/mk/admin/manufacturers/message.php rename to resources/lang/mk-MK/admin/manufacturers/message.php diff --git a/resources/lang/mk/admin/manufacturers/table.php b/resources/lang/mk-MK/admin/manufacturers/table.php similarity index 100% rename from resources/lang/mk/admin/manufacturers/table.php rename to resources/lang/mk-MK/admin/manufacturers/table.php diff --git a/resources/lang/mk/admin/models/general.php b/resources/lang/mk-MK/admin/models/general.php similarity index 100% rename from resources/lang/mk/admin/models/general.php rename to resources/lang/mk-MK/admin/models/general.php diff --git a/resources/lang/mk/admin/models/message.php b/resources/lang/mk-MK/admin/models/message.php similarity index 100% rename from resources/lang/mk/admin/models/message.php rename to resources/lang/mk-MK/admin/models/message.php diff --git a/resources/lang/mk/admin/models/table.php b/resources/lang/mk-MK/admin/models/table.php similarity index 100% rename from resources/lang/mk/admin/models/table.php rename to resources/lang/mk-MK/admin/models/table.php diff --git a/resources/lang/mk/admin/reports/general.php b/resources/lang/mk-MK/admin/reports/general.php similarity index 100% rename from resources/lang/mk/admin/reports/general.php rename to resources/lang/mk-MK/admin/reports/general.php diff --git a/resources/lang/mk/admin/reports/message.php b/resources/lang/mk-MK/admin/reports/message.php similarity index 100% rename from resources/lang/mk/admin/reports/message.php rename to resources/lang/mk-MK/admin/reports/message.php diff --git a/resources/lang/mk/admin/settings/general.php b/resources/lang/mk-MK/admin/settings/general.php similarity index 98% rename from resources/lang/mk/admin/settings/general.php rename to resources/lang/mk-MK/admin/settings/general.php index f235853d1b..0f0210c790 100644 --- a/resources/lang/mk/admin/settings/general.php +++ b/resources/lang/mk-MK/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Ова е сервер на Active Directory', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -146,7 +147,7 @@ return [ 'full_multiple_companies_support_text' => 'Full Multiple Companies Support', 'show_in_model_list' => 'Show in Model Dropdowns', 'optional' => 'опционално', - 'per_page' => 'Results Per Page', + 'per_page' => 'Резултати по страница', 'php' => 'PHP верзија', 'php_info' => 'PHP Info', 'php_overview' => 'PHP', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Минимум знаци во лозинка', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Минимална дозволена вредност е 8', 'pwd_secure_uncommon' => 'Спречете чести лозинки', 'pwd_secure_uncommon_help' => 'This will disallow users from using common passwords from the top 10,000 passwords reported in breaches.', 'qr_help' => 'Enable QR Codes first to set this', @@ -199,7 +200,7 @@ return [ 'show_assigned_assets_help' => 'Display assets which were assigned to the other assets in View User -> Assets, View User -> Info -> Print All Assigned and in Account -> View Assigned Assets.', 'show_images_in_email' => 'Show images in emails', 'show_images_in_email_help' => 'Uncheck this box if your Snipe-IT installation is behind a VPN or closed network and users outside the network will not be able to load images served from this installation in their emails.', - 'site_name' => 'Site Name', + 'site_name' => 'Име на сајтот', 'integrations' => 'Integrations', 'slack' => 'Slack', 'general_webhook' => 'General Webhook', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Наслов', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Тип на 2D бар код', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/mk/admin/settings/message.php b/resources/lang/mk-MK/admin/settings/message.php similarity index 100% rename from resources/lang/mk/admin/settings/message.php rename to resources/lang/mk-MK/admin/settings/message.php diff --git a/resources/lang/mk-MK/admin/settings/table.php b/resources/lang/mk-MK/admin/settings/table.php new file mode 100644 index 0000000000..57256ba334 --- /dev/null +++ b/resources/lang/mk-MK/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Креиран', + 'size' => 'Size', +); diff --git a/resources/lang/mk/admin/statuslabels/message.php b/resources/lang/mk-MK/admin/statuslabels/message.php similarity index 87% rename from resources/lang/mk/admin/statuslabels/message.php rename to resources/lang/mk-MK/admin/statuslabels/message.php index b79a479627..51a10fff63 100644 --- a/resources/lang/mk/admin/statuslabels/message.php +++ b/resources/lang/mk-MK/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Етикетата за статус не постои.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Оваа етикета за статус моментално е поврзана со барем едно основно средство и не може да се избрише. Ве молиме да ги ажурирате вашите основни средства за да не ја користите оваа етикета за статус и обидете се повторно. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Овие основни средства не може да се задолжат на никого.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Овие основни средства може да се задолжат. Откако ќе бидат задолжени, ќе имаат мета-статус на Распоредени.', 'archived' => 'Овие средства не може да се задолжат, и ќе се појавуваат во архивираните средства. Ова е корисно за зачувување на информации за основните средства за сметководствени/историски потреби.', 'pending' => 'Овие средства сè уште не можат да се задолжат. Најчесто се користи за средства кои се надвор за сервисирање, но се очекува да се вратат.', ], diff --git a/resources/lang/mk/admin/statuslabels/table.php b/resources/lang/mk-MK/admin/statuslabels/table.php similarity index 100% rename from resources/lang/mk/admin/statuslabels/table.php rename to resources/lang/mk-MK/admin/statuslabels/table.php diff --git a/resources/lang/mk/admin/suppliers/message.php b/resources/lang/mk-MK/admin/suppliers/message.php similarity index 100% rename from resources/lang/mk/admin/suppliers/message.php rename to resources/lang/mk-MK/admin/suppliers/message.php diff --git a/resources/lang/mk/admin/suppliers/table.php b/resources/lang/mk-MK/admin/suppliers/table.php similarity index 100% rename from resources/lang/mk/admin/suppliers/table.php rename to resources/lang/mk-MK/admin/suppliers/table.php diff --git a/resources/lang/mk/admin/users/general.php b/resources/lang/mk-MK/admin/users/general.php similarity index 97% rename from resources/lang/mk/admin/users/general.php rename to resources/lang/mk-MK/admin/users/general.php index 99624d8568..4c5b7c5d74 100644 --- a/resources/lang/mk/admin/users/general.php +++ b/resources/lang/mk-MK/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Погледнете го/ја :name', 'usercsv' => 'CSV датотека', 'two_factor_admin_optin_help' => 'Вашите тековни администраторски поставки овозможуваат селективно спроведување на автентикација со два фактори. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Поврзан уред за 2FA ', + 'two_factor_active' => '2FA активна', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/mk/admin/users/message.php b/resources/lang/mk-MK/admin/users/message.php similarity index 98% rename from resources/lang/mk/admin/users/message.php rename to resources/lang/mk-MK/admin/users/message.php index e3fbf5296c..a79782a40a 100644 --- a/resources/lang/mk/admin/users/message.php +++ b/resources/lang/mk-MK/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Го одбивте основното средство.', 'bulk_manager_warn' => 'Вашите корисници се ажурирани, но записот за менаџерот не е зачуван, бидејќи менаџерот што го избравте беше во листата на корисници што се ажурираа. Корисниците не може да бидат свој сопствен менаџер. Изберете ги корисниците повторно, со исклучок на менаџерот и пробајте пак.', 'user_exists' => 'Корисникот веќе постои!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Корисникот не постои.', 'user_login_required' => 'Полето за корисничко име е задолжително', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Потребна е лозинка.', diff --git a/resources/lang/mk/admin/users/table.php b/resources/lang/mk-MK/admin/users/table.php similarity index 96% rename from resources/lang/mk/admin/users/table.php rename to resources/lang/mk-MK/admin/users/table.php index 23c1e34635..29020e9d42 100644 --- a/resources/lang/mk/admin/users/table.php +++ b/resources/lang/mk-MK/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Менаџер', 'managed_locations' => 'Менаџирани локации', 'name' => 'Име', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Забелешки', 'password_confirm' => 'Потврди ја лозинката', 'password' => 'Лозинка', diff --git a/resources/lang/mi/auth.php b/resources/lang/mk-MK/auth.php similarity index 100% rename from resources/lang/mi/auth.php rename to resources/lang/mk-MK/auth.php diff --git a/resources/lang/mk/auth/general.php b/resources/lang/mk-MK/auth/general.php similarity index 100% rename from resources/lang/mk/auth/general.php rename to resources/lang/mk-MK/auth/general.php diff --git a/resources/lang/mk/auth/message.php b/resources/lang/mk-MK/auth/message.php similarity index 96% rename from resources/lang/mk/auth/message.php rename to resources/lang/mk-MK/auth/message.php index 7763c2a99f..a1b0f71719 100644 --- a/resources/lang/mk/auth/message.php +++ b/resources/lang/mk-MK/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Успешно сте најавени.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/mk/button.php b/resources/lang/mk-MK/button.php similarity index 86% rename from resources/lang/mk/button.php rename to resources/lang/mk-MK/button.php index f42ee80d0f..04d8a2197a 100644 --- a/resources/lang/mk/button.php +++ b/resources/lang/mk-MK/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Избери датотека...', 'select_files' => 'Избери датотека...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Испрати врска за ресетирање на лозинка', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Ново', ]; diff --git a/resources/lang/mk/general.php b/resources/lang/mk-MK/general.php similarity index 95% rename from resources/lang/mk/general.php rename to resources/lang/mk-MK/general.php index e361754993..12555a2d72 100644 --- a/resources/lang/mk/general.php +++ b/resources/lang/mk-MK/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Увоз', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Историја на увози', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Подготвен за распоредување', 'recent_activity' => 'Скорешна активност', - 'remaining' => 'Remaining', + 'remaining' => 'Останува', 'remove_company' => 'Отстрани поврзување со компанија', 'reports' => 'Извештаи', 'restored' => 'вратено', - 'restore' => 'Restore', + 'restore' => 'Врати', 'requestable_models' => 'Requestable Models', 'requested' => 'Побарано', 'requested_date' => 'Requested Date', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Добавувач', 'suppliers' => 'Добавувачи', 'sure_to_delete' => 'Дали сте сигурни дека сакате да ја избришете', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Дали сте сигурни дека сакате да избришете: ставка?', 'delete_what' => 'Delete :item', 'submit' => 'Поднеси', 'target' => 'Цел', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Не може да се распореди', 'unknown_admin' => 'Непознат Администратор', 'username_format' => 'Формат на корисничко име', - 'username' => 'Username', + 'username' => 'Корисничко име', 'update' => 'Ажурирање', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Прикачено', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'Е-пошта', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Задолжен на', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Предупредување', + 'notification_info' => 'Информации', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Име на основното средство', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Име на потрошен материјал:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Име на додаток:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% завршено', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'ажурирај', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/mk-MK/help.php b/resources/lang/mk-MK/help.php new file mode 100644 index 0000000000..482ebcc4db --- /dev/null +++ b/resources/lang/mk-MK/help.php @@ -0,0 +1,35 @@ + 'Повеќе информации', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Основни средства се ставки следени по сериски број или код на средства. Тие обично имаат повисока набавна вредност и е важно нивно поединечно евидентирање.', + + 'categories' => 'Категориите ви помагаат да ги организирате вашите средства. Некои примери може да бидат "Десктоп компјутери", "Лаптопи", "Мобилни телефони", "Таблети", и така натаму, но можете да користите категории и на кој било начин кој има смисла за вас.', + + 'accessories' => 'Додатоци се нешто што го задолжувате на корисниците, но нема сериски број (или не сакате да ги евидентирате поединечно). На пример, компјутерски глувчиња или тастатури.', + + 'companies' => 'Компаниите можат да се користат како поле за едноставен идентификатор, или може да се користат за да се ограничи видливоста на средствата, корисниците, итн, ако е овозможена целосна поддршка за компании во администраторските поставки.', + + 'components' => 'Компоненти се елементи кои се дел од основните средства, на пример, HDD, RAM меморија, итн.', + + 'consumables' => 'Потрошните материјали се нешто набавено, кое ќе се искористи и потроши со текот на времето. На пример, хартија за печатар или копир.', + + 'depreciations' => 'Можете да поставите амортизационен план за основните средства за да ја намалувате нивната вредност праволиниски.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/mk-MK/localizations.php b/resources/lang/mk-MK/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/mk-MK/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/mk/mail.php b/resources/lang/mk-MK/mail.php similarity index 98% rename from resources/lang/mk/mail.php rename to resources/lang/mk-MK/mail.php index 30dc7c7cd5..9da4bbcebb 100644 --- a/resources/lang/mk/mail.php +++ b/resources/lang/mk-MK/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Основно средство:', 'asset_name' => 'Име на основното средство:', 'asset_requested' => 'Бараното основно средство', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Код на основното средство', 'assigned_to' => 'Задолжен на', 'best_regards' => 'Со почит,', 'canceled' => 'Откажано:', diff --git a/resources/lang/mk/pagination.php b/resources/lang/mk-MK/pagination.php similarity index 100% rename from resources/lang/mk/pagination.php rename to resources/lang/mk-MK/pagination.php diff --git a/resources/lang/mi/passwords.php b/resources/lang/mk-MK/passwords.php similarity index 100% rename from resources/lang/mi/passwords.php rename to resources/lang/mk-MK/passwords.php diff --git a/resources/lang/mk/reminders.php b/resources/lang/mk-MK/reminders.php similarity index 100% rename from resources/lang/mk/reminders.php rename to resources/lang/mk-MK/reminders.php diff --git a/resources/lang/mk/table.php b/resources/lang/mk-MK/table.php similarity index 100% rename from resources/lang/mk/table.php rename to resources/lang/mk-MK/table.php diff --git a/resources/lang/mk/validation.php b/resources/lang/mk-MK/validation.php similarity index 99% rename from resources/lang/mk/validation.php rename to resources/lang/mk-MK/validation.php index 4a58af61d8..aa1b4547c4 100644 --- a/resources/lang/mk/validation.php +++ b/resources/lang/mk-MK/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute мора да биде уникатен.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/mk/admin/labels/table.php b/resources/lang/mk/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/mk/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/mk/admin/settings/table.php b/resources/lang/mk/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/mk/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/mk/help.php b/resources/lang/mk/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/mk/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/mk/localizations.php b/resources/lang/mk/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/mk/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/ml-IN/admin/accessories/general.php b/resources/lang/ml-IN/admin/accessories/general.php index bed7f38fab..6525684a85 100644 --- a/resources/lang/ml-IN/admin/accessories/general.php +++ b/resources/lang/ml-IN/admin/accessories/general.php @@ -7,7 +7,7 @@ return array( 'checkin' => 'Checkin Accessory', 'create' => 'Create Accessory', 'edit' => 'Edit Accessory', - 'eula_text' => 'Category EULA', + 'eula_text' => 'വിഭാഗം EULA', 'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.', 'require_acceptance' => 'Require users to confirm acceptance of assets in this category.', 'no_default_eula' => 'No primary default EULA found. Add one in Settings.', diff --git a/resources/lang/ml-IN/admin/accessories/table.php b/resources/lang/ml-IN/admin/accessories/table.php index e02d9f22e4..175cc5d3d3 100644 --- a/resources/lang/ml-IN/admin/accessories/table.php +++ b/resources/lang/ml-IN/admin/accessories/table.php @@ -3,7 +3,7 @@ return array( 'dl_csv' => 'Download CSV', 'eula_text' => 'EULA', - 'id' => 'ID', + 'id' => 'ഐഡി', 'require_acceptance' => 'Acceptance', 'title' => 'Accessory Name', diff --git a/resources/lang/ml-IN/admin/categories/general.php b/resources/lang/ml-IN/admin/categories/general.php index fc083b78d3..af047a56c9 100644 --- a/resources/lang/ml-IN/admin/categories/general.php +++ b/resources/lang/ml-IN/admin/categories/general.php @@ -12,7 +12,7 @@ return array( 'email_will_be_sent_due_to_category_eula' => 'An email will be sent to the user because a EULA is set for this category.', 'eula_text' => 'വിഭാഗം EULA', 'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.', - 'name' => 'Category Name', + 'name' => 'വിഭാഗത്തിന്റെ പേര്', 'require_acceptance' => 'Require users to confirm acceptance of assets in this category.', 'required_acceptance' => 'This user will be emailed with a link to confirm acceptance of this item.', 'required_eula' => 'This user will be emailed a copy of the EULA', diff --git a/resources/lang/ml-IN/admin/categories/table.php b/resources/lang/ml-IN/admin/categories/table.php index a3ee96ae7f..78e5abbb57 100644 --- a/resources/lang/ml-IN/admin/categories/table.php +++ b/resources/lang/ml-IN/admin/categories/table.php @@ -2,7 +2,7 @@ return array( 'eula_text' => 'EULA', - 'id' => 'ID', + 'id' => 'ഐഡി', 'parent' => 'Parent', 'require_acceptance' => 'Acceptance', 'title' => 'Asset Category Name', diff --git a/resources/lang/ml-IN/admin/companies/table.php b/resources/lang/ml-IN/admin/companies/table.php index 2f86126ff2..165465661a 100644 --- a/resources/lang/ml-IN/admin/companies/table.php +++ b/resources/lang/ml-IN/admin/companies/table.php @@ -5,5 +5,5 @@ return array( 'title' => 'Company', 'update' => 'Update Company', 'name' => 'Company Name', - 'id' => 'ID', + 'id' => 'ഐഡി', ); diff --git a/resources/lang/ml-IN/admin/departments/table.php b/resources/lang/ml-IN/admin/departments/table.php index 76494247be..8a61a653eb 100644 --- a/resources/lang/ml-IN/admin/departments/table.php +++ b/resources/lang/ml-IN/admin/departments/table.php @@ -2,7 +2,7 @@ return array( - 'id' => 'ID', + 'id' => 'ഐഡി', 'name' => 'Department Name', 'manager' => 'Manager', 'location' => 'Location', diff --git a/resources/lang/ml-IN/admin/depreciations/table.php b/resources/lang/ml-IN/admin/depreciations/table.php index 256b10b92a..29c9c74f8b 100644 --- a/resources/lang/ml-IN/admin/depreciations/table.php +++ b/resources/lang/ml-IN/admin/depreciations/table.php @@ -2,7 +2,7 @@ return [ - 'id' => 'ID', + 'id' => 'ഐഡി', 'months' => 'Months', 'term' => 'Term', 'title' => 'Name ', diff --git a/resources/lang/ml-IN/admin/hardware/table.php b/resources/lang/ml-IN/admin/hardware/table.php index 06b60bfd83..ebd6a46b41 100644 --- a/resources/lang/ml-IN/admin/hardware/table.php +++ b/resources/lang/ml-IN/admin/hardware/table.php @@ -13,7 +13,7 @@ return [ 'diff' => 'Diff', 'dl_csv' => 'Download CSV', 'eol' => 'EOL', - 'id' => 'ID', + 'id' => 'ഐഡി', 'last_checkin_date' => 'Last Checkin Date', 'location' => 'Location', 'purchase_cost' => 'Cost', diff --git a/resources/lang/ml-IN/admin/licenses/table.php b/resources/lang/ml-IN/admin/licenses/table.php index dfce4136cb..918ad9f5fa 100644 --- a/resources/lang/ml-IN/admin/licenses/table.php +++ b/resources/lang/ml-IN/admin/licenses/table.php @@ -4,7 +4,7 @@ return array( 'assigned_to' => 'Assigned To', 'checkout' => 'In/Out', - 'id' => 'ID', + 'id' => 'ഐഡി', 'license_email' => 'License Email', 'license_name' => 'Licensed To', 'purchase_date' => 'Purchase Date', diff --git a/resources/lang/ml-IN/admin/manufacturers/table.php b/resources/lang/ml-IN/admin/manufacturers/table.php index 38cab6fd91..617610ec62 100644 --- a/resources/lang/ml-IN/admin/manufacturers/table.php +++ b/resources/lang/ml-IN/admin/manufacturers/table.php @@ -5,7 +5,7 @@ return array( 'about_manufacturers_text' => 'Manufacturers are the companies that create your assets. You can store important support contact information about them here, which will be displayed on your asset detail pages.', 'asset_manufacturers' => 'Asset Manufacturers', 'create' => 'Create Manufacturer', - 'id' => 'ID', + 'id' => 'ഐഡി', 'name' => 'Name', 'support_email' => 'Support Email', 'support_phone' => 'Support Phone', diff --git a/resources/lang/ml-IN/admin/settings/general.php b/resources/lang/ml-IN/admin/settings/general.php index 64d0aef53e..c8d6306036 100644 --- a/resources/lang/ml-IN/admin/settings/general.php +++ b/resources/lang/ml-IN/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/ml-IN/admin/statuslabels/message.php b/resources/lang/ml-IN/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/ml-IN/admin/statuslabels/message.php +++ b/resources/lang/ml-IN/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/ml-IN/admin/suppliers/table.php b/resources/lang/ml-IN/admin/suppliers/table.php index 2a7b07ca93..43d9e4639e 100644 --- a/resources/lang/ml-IN/admin/suppliers/table.php +++ b/resources/lang/ml-IN/admin/suppliers/table.php @@ -5,23 +5,23 @@ return array( 'about_suppliers_text' => 'Suppliers are used to track the source of items', 'address' => 'Supplier Address', 'assets' => 'Assets', - 'city' => 'City', + 'city' => 'പട്ടണം', 'contact' => 'Contact Name', - 'country' => 'Country', + 'country' => 'രാജ്യം', 'create' => 'Create Supplier', 'email' => 'Email', 'fax' => 'Fax', - 'id' => 'ID', + 'id' => 'ഐഡി', 'licenses' => 'Licenses', 'name' => 'Supplier Name', 'notes' => 'Notes', 'phone' => 'Phone', - 'state' => 'State', + 'state' => 'സംസ്ഥാനം', 'suppliers' => 'Suppliers', 'update' => 'Update Supplier', 'url' => 'URL', 'view' => 'View Supplier', 'view_assets_for' => 'View Assets for', - 'zip' => 'Postal Code', + 'zip' => 'സിപ് / പോസ്റ്റൽ കോഡ്', ); diff --git a/resources/lang/ml-IN/admin/users/table.php b/resources/lang/ml-IN/admin/users/table.php index 21e2154280..b8b919bf28 100644 --- a/resources/lang/ml-IN/admin/users/table.php +++ b/resources/lang/ml-IN/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirm Password', 'password' => 'Password', diff --git a/resources/lang/ml-IN/general.php b/resources/lang/ml-IN/general.php index a568e00436..5c2c064f47 100644 --- a/resources/lang/ml-IN/general.php +++ b/resources/lang/ml-IN/general.php @@ -8,7 +8,7 @@ return [ 'accessory_report' => 'Accessory Report', 'action' => 'Action', 'activity_report' => 'Activity Report', - 'address' => 'Address', + 'address' => 'വിലാസം', 'admin' => 'Admin', 'administrator' => 'Administrator', 'add_seats' => 'Added seats', @@ -61,7 +61,7 @@ return [ 'checkouts_count' => 'Checkouts', 'checkins_count' => 'Checkins', 'user_requests_count' => 'Requests', - 'city' => 'City', + 'city' => 'പട്ടണം', 'click_here' => 'Click here', 'clear_selection' => 'Clear Selection', 'companies' => 'Companies', @@ -71,7 +71,7 @@ return [ 'complete' => 'Complete', 'consumable' => 'Consumable', 'consumables' => 'Consumables', - 'country' => 'Country', + 'country' => 'രാജ്യം', 'could_not_restore' => 'Error restoring :item_type: :error', 'not_deleted' => 'The :item_type is not deleted so it cannot be restored', 'create' => 'Create New', @@ -146,7 +146,7 @@ return [ 'gravatar_url' => 'Change your avatar at Gravatar.com.', 'history' => 'History', 'history_for' => 'History for', - 'id' => 'ID', + 'id' => 'ഐഡി', 'image' => 'Image', 'image_delete' => 'Delete Image', 'include_deleted' => 'Include Deleted Assets', @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', @@ -181,7 +182,7 @@ return [ 'lock_passwords' => 'This field value will not be saved in a demo installation.', 'feature_disabled' => 'This feature has been disabled for the demo installation.', 'location' => 'Location', - 'locations' => 'Locations', + 'locations' => 'സ്ഥലങ്ങൾ', 'logo_size' => 'Square logos look best with Logo + Text. Logo maximum display size is 50px high x 500px wide. ', 'logout' => 'Logout', 'lookup_by_tag' => 'Lookup by Asset Tag', @@ -263,7 +264,7 @@ return [ 'webhook_test_msg' => 'Oh hai! Looks like your :app integration with Snipe-IT is working!', 'some_features_disabled' => 'DEMO MODE: Some features are disabled for this installation.', 'site_name' => 'Site Name', - 'state' => 'State', + 'state' => 'സംസ്ഥാനം', 'status_labels' => 'Status Labels', 'status' => 'Status', 'accept_eula' => 'Acceptance Agreement', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ml-IN/localizations.php b/resources/lang/ml-IN/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/ml-IN/localizations.php +++ b/resources/lang/ml-IN/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/ml-IN/validation.php b/resources/lang/ml-IN/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/ml-IN/validation.php +++ b/resources/lang/ml-IN/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/mk/account/general.php b/resources/lang/mn-MN/account/general.php similarity index 100% rename from resources/lang/mk/account/general.php rename to resources/lang/mn-MN/account/general.php diff --git a/resources/lang/mn/admin/accessories/general.php b/resources/lang/mn-MN/admin/accessories/general.php similarity index 100% rename from resources/lang/mn/admin/accessories/general.php rename to resources/lang/mn-MN/admin/accessories/general.php diff --git a/resources/lang/mn/admin/accessories/message.php b/resources/lang/mn-MN/admin/accessories/message.php similarity index 100% rename from resources/lang/mn/admin/accessories/message.php rename to resources/lang/mn-MN/admin/accessories/message.php diff --git a/resources/lang/mn/admin/accessories/table.php b/resources/lang/mn-MN/admin/accessories/table.php similarity index 100% rename from resources/lang/mn/admin/accessories/table.php rename to resources/lang/mn-MN/admin/accessories/table.php diff --git a/resources/lang/mn/admin/asset_maintenances/form.php b/resources/lang/mn-MN/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/mn/admin/asset_maintenances/form.php rename to resources/lang/mn-MN/admin/asset_maintenances/form.php diff --git a/resources/lang/mn/admin/asset_maintenances/general.php b/resources/lang/mn-MN/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/mn/admin/asset_maintenances/general.php rename to resources/lang/mn-MN/admin/asset_maintenances/general.php diff --git a/resources/lang/mn/admin/asset_maintenances/message.php b/resources/lang/mn-MN/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/mn/admin/asset_maintenances/message.php rename to resources/lang/mn-MN/admin/asset_maintenances/message.php diff --git a/resources/lang/mn/admin/asset_maintenances/table.php b/resources/lang/mn-MN/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/mn/admin/asset_maintenances/table.php rename to resources/lang/mn-MN/admin/asset_maintenances/table.php diff --git a/resources/lang/mn/admin/categories/general.php b/resources/lang/mn-MN/admin/categories/general.php similarity index 100% rename from resources/lang/mn/admin/categories/general.php rename to resources/lang/mn-MN/admin/categories/general.php diff --git a/resources/lang/mn/admin/categories/message.php b/resources/lang/mn-MN/admin/categories/message.php similarity index 100% rename from resources/lang/mn/admin/categories/message.php rename to resources/lang/mn-MN/admin/categories/message.php diff --git a/resources/lang/mn/admin/categories/table.php b/resources/lang/mn-MN/admin/categories/table.php similarity index 100% rename from resources/lang/mn/admin/categories/table.php rename to resources/lang/mn-MN/admin/categories/table.php diff --git a/resources/lang/mn/admin/companies/general.php b/resources/lang/mn-MN/admin/companies/general.php similarity index 85% rename from resources/lang/mn/admin/companies/general.php rename to resources/lang/mn-MN/admin/companies/general.php index dc7237272a..4e88931297 100644 --- a/resources/lang/mn/admin/companies/general.php +++ b/resources/lang/mn-MN/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Компани сонгох', - 'about_companies' => 'About Companies', + 'about_companies' => 'Компанийн тухай', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/mn/admin/companies/message.php b/resources/lang/mn-MN/admin/companies/message.php similarity index 100% rename from resources/lang/mn/admin/companies/message.php rename to resources/lang/mn-MN/admin/companies/message.php diff --git a/resources/lang/mn/admin/companies/table.php b/resources/lang/mn-MN/admin/companies/table.php similarity index 100% rename from resources/lang/mn/admin/companies/table.php rename to resources/lang/mn-MN/admin/companies/table.php diff --git a/resources/lang/mn/admin/components/general.php b/resources/lang/mn-MN/admin/components/general.php similarity index 100% rename from resources/lang/mn/admin/components/general.php rename to resources/lang/mn-MN/admin/components/general.php diff --git a/resources/lang/mn/admin/components/message.php b/resources/lang/mn-MN/admin/components/message.php similarity index 100% rename from resources/lang/mn/admin/components/message.php rename to resources/lang/mn-MN/admin/components/message.php diff --git a/resources/lang/mn/admin/components/table.php b/resources/lang/mn-MN/admin/components/table.php similarity index 100% rename from resources/lang/mn/admin/components/table.php rename to resources/lang/mn-MN/admin/components/table.php diff --git a/resources/lang/mn/admin/consumables/general.php b/resources/lang/mn-MN/admin/consumables/general.php similarity index 100% rename from resources/lang/mn/admin/consumables/general.php rename to resources/lang/mn-MN/admin/consumables/general.php diff --git a/resources/lang/mn/admin/consumables/message.php b/resources/lang/mn-MN/admin/consumables/message.php similarity index 100% rename from resources/lang/mn/admin/consumables/message.php rename to resources/lang/mn-MN/admin/consumables/message.php diff --git a/resources/lang/mn/admin/consumables/table.php b/resources/lang/mn-MN/admin/consumables/table.php similarity index 100% rename from resources/lang/mn/admin/consumables/table.php rename to resources/lang/mn-MN/admin/consumables/table.php diff --git a/resources/lang/mn/admin/custom_fields/general.php b/resources/lang/mn-MN/admin/custom_fields/general.php similarity index 94% rename from resources/lang/mn/admin/custom_fields/general.php rename to resources/lang/mn-MN/admin/custom_fields/general.php index 306235221b..8a406df935 100644 --- a/resources/lang/mn/admin/custom_fields/general.php +++ b/resources/lang/mn-MN/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Шинэ Гаалийн талбар', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Энэ талбарын үнэ цэнийг мэдээллийн санд шифрлэдэг. Зөвхөн админ хэрэглэгч нар нь буцаагдсан утгыг харах боломжтой байна', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Хэрэглэгчид илгээсэн олголтын имэйлд энэ талбарын утгыг оруулах уу? Шифрлэгдсэн талбаруудыг имэйлд оруулах боломжгүй', '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.', diff --git a/resources/lang/mn/admin/custom_fields/message.php b/resources/lang/mn-MN/admin/custom_fields/message.php similarity index 100% rename from resources/lang/mn/admin/custom_fields/message.php rename to resources/lang/mn-MN/admin/custom_fields/message.php diff --git a/resources/lang/mn/admin/departments/message.php b/resources/lang/mn-MN/admin/departments/message.php similarity index 100% rename from resources/lang/mn/admin/departments/message.php rename to resources/lang/mn-MN/admin/departments/message.php diff --git a/resources/lang/mn/admin/departments/table.php b/resources/lang/mn-MN/admin/departments/table.php similarity index 100% rename from resources/lang/mn/admin/departments/table.php rename to resources/lang/mn-MN/admin/departments/table.php diff --git a/resources/lang/mn/admin/depreciations/general.php b/resources/lang/mn-MN/admin/depreciations/general.php similarity index 100% rename from resources/lang/mn/admin/depreciations/general.php rename to resources/lang/mn-MN/admin/depreciations/general.php diff --git a/resources/lang/mn/admin/depreciations/message.php b/resources/lang/mn-MN/admin/depreciations/message.php similarity index 100% rename from resources/lang/mn/admin/depreciations/message.php rename to resources/lang/mn-MN/admin/depreciations/message.php diff --git a/resources/lang/mn/admin/depreciations/table.php b/resources/lang/mn-MN/admin/depreciations/table.php similarity index 100% rename from resources/lang/mn/admin/depreciations/table.php rename to resources/lang/mn-MN/admin/depreciations/table.php diff --git a/resources/lang/mn/admin/groups/message.php b/resources/lang/mn-MN/admin/groups/message.php similarity index 100% rename from resources/lang/mn/admin/groups/message.php rename to resources/lang/mn-MN/admin/groups/message.php diff --git a/resources/lang/mn/admin/groups/table.php b/resources/lang/mn-MN/admin/groups/table.php similarity index 100% rename from resources/lang/mn/admin/groups/table.php rename to resources/lang/mn-MN/admin/groups/table.php diff --git a/resources/lang/mn/admin/groups/titles.php b/resources/lang/mn-MN/admin/groups/titles.php similarity index 100% rename from resources/lang/mn/admin/groups/titles.php rename to resources/lang/mn-MN/admin/groups/titles.php diff --git a/resources/lang/mn/admin/hardware/form.php b/resources/lang/mn-MN/admin/hardware/form.php similarity index 100% rename from resources/lang/mn/admin/hardware/form.php rename to resources/lang/mn-MN/admin/hardware/form.php diff --git a/resources/lang/mn/admin/hardware/general.php b/resources/lang/mn-MN/admin/hardware/general.php similarity index 100% rename from resources/lang/mn/admin/hardware/general.php rename to resources/lang/mn-MN/admin/hardware/general.php diff --git a/resources/lang/mn/admin/hardware/message.php b/resources/lang/mn-MN/admin/hardware/message.php similarity index 98% rename from resources/lang/mn/admin/hardware/message.php rename to resources/lang/mn-MN/admin/hardware/message.php index 71edd6dff5..b67e01d594 100644 --- a/resources/lang/mn/admin/hardware/message.php +++ b/resources/lang/mn-MN/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Хөрөнгө сэргээгээгүй байна, дахин оролдоно уу', 'success' => 'Хөрөнгийн амжилттай сэргээгдэв.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Хөрөнгийн амжилттай сэргээгдэв.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/mn/admin/hardware/table.php b/resources/lang/mn-MN/admin/hardware/table.php similarity index 95% rename from resources/lang/mn/admin/hardware/table.php rename to resources/lang/mn-MN/admin/hardware/table.php index 6d9138bc09..12a848a7c5 100644 --- a/resources/lang/mn/admin/hardware/table.php +++ b/resources/lang/mn-MN/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Төхөөрөмжийн дүрс', 'days_without_acceptance' => 'Хүлээн зөвшөөрөхгүй өдрүүд', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Томилогдсон', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/mn-MN/admin/kits/general.php b/resources/lang/mn-MN/admin/kits/general.php new file mode 100644 index 0000000000..01ea3b1758 --- /dev/null +++ b/resources/lang/mn-MN/admin/kits/general.php @@ -0,0 +1,50 @@ + 'About Predefined Kits', + 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', + 'checkout' => 'Checkout Kit ', + 'create_success' => 'Kit was successfully created.', + 'create' => 'Create Predefined Kit', + 'update' => 'Update Predefined Kit', + 'delete_success' => 'Kit was successfully deleted.', + 'update_success' => 'Kit was successfully updated.', + 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', + 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', + 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', + 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'License already attached to kit', + 'license_added_success' => 'License added successfully', + 'license_updated' => 'License was successfully updated', + 'license_none' => 'Лиценз байхгүй байна', + 'license_detached' => 'License was successfully detached', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Delete was successful', + 'consumable_none' => 'Хадгалах боломжгүй', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Accessory added successfully', + 'accessory_updated' => 'Accessory was successfully updated', + 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_error' => 'Accessory already attached to kit', + 'accessory_deleted' => 'Delete was successful', + 'accessory_none' => 'Accessory does not exist', + 'checkout_success' => 'Checkout was successful', + 'checkout_error' => 'Checkout error', + 'kit_none' => 'Kit does not exist', + 'kit_created' => 'Kit was successfully created', + 'kit_updated' => 'Kit was successfully updated', + 'kit_not_found' => 'Kit not found', + 'kit_deleted' => 'Kit was successfully deleted', + 'kit_model_updated' => 'Model was successfully updated', + 'kit_model_detached' => 'Model was successfully detached', +]; diff --git a/resources/lang/mi/admin/labels/message.php b/resources/lang/mn-MN/admin/labels/message.php similarity index 100% rename from resources/lang/mi/admin/labels/message.php rename to resources/lang/mn-MN/admin/labels/message.php diff --git a/resources/lang/mn-MN/admin/labels/table.php b/resources/lang/mn-MN/admin/labels/table.php new file mode 100644 index 0000000000..117c28e5fd --- /dev/null +++ b/resources/lang/mn-MN/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Таг', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Лого', + 'support_title' => 'Гарчиг', + +]; \ No newline at end of file diff --git a/resources/lang/mn/admin/licenses/form.php b/resources/lang/mn-MN/admin/licenses/form.php similarity index 100% rename from resources/lang/mn/admin/licenses/form.php rename to resources/lang/mn-MN/admin/licenses/form.php diff --git a/resources/lang/mn/admin/licenses/general.php b/resources/lang/mn-MN/admin/licenses/general.php similarity index 100% rename from resources/lang/mn/admin/licenses/general.php rename to resources/lang/mn-MN/admin/licenses/general.php diff --git a/resources/lang/mn/admin/licenses/message.php b/resources/lang/mn-MN/admin/licenses/message.php similarity index 100% rename from resources/lang/mn/admin/licenses/message.php rename to resources/lang/mn-MN/admin/licenses/message.php diff --git a/resources/lang/mn/admin/licenses/table.php b/resources/lang/mn-MN/admin/licenses/table.php similarity index 100% rename from resources/lang/mn/admin/licenses/table.php rename to resources/lang/mn-MN/admin/licenses/table.php diff --git a/resources/lang/mn/admin/locations/message.php b/resources/lang/mn-MN/admin/locations/message.php similarity index 100% rename from resources/lang/mn/admin/locations/message.php rename to resources/lang/mn-MN/admin/locations/message.php diff --git a/resources/lang/mn/admin/locations/table.php b/resources/lang/mn-MN/admin/locations/table.php similarity index 73% rename from resources/lang/mn/admin/locations/table.php rename to resources/lang/mn-MN/admin/locations/table.php index 3a40355b1e..1ae748571e 100644 --- a/resources/lang/mn/admin/locations/table.php +++ b/resources/lang/mn-MN/admin/locations/table.php @@ -12,7 +12,7 @@ return [ 'create' => 'Байршлыг үүсгэх нь', 'update' => 'Байршлын мэдээллийг шинэчлэх', 'print_assigned' => 'Print Assigned', - 'print_all_assigned' => 'Print All Assigned', + 'print_all_assigned' => 'Бүх хуваарилагдсан хөрөнгийг хэвлэх', 'name' => 'Байршил нэр', 'address' => 'Хаяг', 'address2' => 'Address Line 2', @@ -22,18 +22,18 @@ return [ 'currency' => 'Байршил валют', 'ldap_ou' => 'LDAP хайлт ОУ', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Газар', + 'location' => 'Байршил', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_name' => 'Нэр', + 'asset_category' => 'Бүлэг', + 'asset_manufacturer' => 'Үйлдвэрлэгч', + 'asset_model' => 'Загвар', + 'asset_serial' => 'Сериал', + 'asset_location' => 'Байршил', + 'asset_checked_out' => 'Нь шалгаж', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Огноо:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/mn/admin/manufacturers/message.php b/resources/lang/mn-MN/admin/manufacturers/message.php similarity index 100% rename from resources/lang/mn/admin/manufacturers/message.php rename to resources/lang/mn-MN/admin/manufacturers/message.php diff --git a/resources/lang/mn/admin/manufacturers/table.php b/resources/lang/mn-MN/admin/manufacturers/table.php similarity index 100% rename from resources/lang/mn/admin/manufacturers/table.php rename to resources/lang/mn-MN/admin/manufacturers/table.php diff --git a/resources/lang/mn/admin/models/general.php b/resources/lang/mn-MN/admin/models/general.php similarity index 100% rename from resources/lang/mn/admin/models/general.php rename to resources/lang/mn-MN/admin/models/general.php diff --git a/resources/lang/mn/admin/models/message.php b/resources/lang/mn-MN/admin/models/message.php similarity index 100% rename from resources/lang/mn/admin/models/message.php rename to resources/lang/mn-MN/admin/models/message.php diff --git a/resources/lang/mn/admin/models/table.php b/resources/lang/mn-MN/admin/models/table.php similarity index 100% rename from resources/lang/mn/admin/models/table.php rename to resources/lang/mn-MN/admin/models/table.php diff --git a/resources/lang/mn/admin/reports/general.php b/resources/lang/mn-MN/admin/reports/general.php similarity index 100% rename from resources/lang/mn/admin/reports/general.php rename to resources/lang/mn-MN/admin/reports/general.php diff --git a/resources/lang/mn/admin/reports/message.php b/resources/lang/mn-MN/admin/reports/message.php similarity index 100% rename from resources/lang/mn/admin/reports/message.php rename to resources/lang/mn-MN/admin/reports/message.php diff --git a/resources/lang/mn/admin/settings/general.php b/resources/lang/mn-MN/admin/settings/general.php similarity index 99% rename from resources/lang/mn/admin/settings/general.php rename to resources/lang/mn-MN/admin/settings/general.php index 7cfb38eda9..283495807a 100644 --- a/resources/lang/mn/admin/settings/general.php +++ b/resources/lang/mn-MN/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Имэйл', 'admin_cc_email_help' => 'Хэрэв та хэрэглэгчдэд илгээсэн хүлээн авах/олгох имэйлийн хуулбарыг нэмэлт имэйл үрүү илгээхийг хүсвэл энд оруулна уу. Үгүй бол энэ талбарыг хоосон орхино уу.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Энэ бол Active Directory Server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Нууц үгийн хамгийн бага тэмдэгт', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Хамгийн бага зөвшөөрөгдөх утга нь 8 байна', 'pwd_secure_uncommon' => 'Нийтлэг нууц үгийг урьдчилан сэргийлэх', 'pwd_secure_uncommon_help' => 'Энэ нь хэрэглэгчид зөрчсөн гэж мэдээлсэн дээд түвшний 10,000 нууц үгнээс нийтлэг нууц үгийг ашиглах боломжийг хэрэглэгчдэд олгохгүй.', 'qr_help' => 'Эхлээд QR кодыг идэвхжүүлнэ үү', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Устгагдсан бүртгэл', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Гарчиг', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2D бар кодны төрөл', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/mn/admin/settings/message.php b/resources/lang/mn-MN/admin/settings/message.php similarity index 100% rename from resources/lang/mn/admin/settings/message.php rename to resources/lang/mn-MN/admin/settings/message.php diff --git a/resources/lang/mn-MN/admin/settings/table.php b/resources/lang/mn-MN/admin/settings/table.php new file mode 100644 index 0000000000..84c021f17a --- /dev/null +++ b/resources/lang/mn-MN/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Үүсгэсэн', + 'size' => 'Size', +); diff --git a/resources/lang/mn/admin/statuslabels/message.php b/resources/lang/mn-MN/admin/statuslabels/message.php similarity index 86% rename from resources/lang/mn/admin/statuslabels/message.php rename to resources/lang/mn-MN/admin/statuslabels/message.php index 03ffca2c7c..4b89ef3d4b 100644 --- a/resources/lang/mn/admin/statuslabels/message.php +++ b/resources/lang/mn-MN/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Статусын шошго байхгүй байна.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Энэ Статистик хаяг нь одоогоор хамгийн багадаа нэг акттай холбоотой бөгөөд устгагдах боломжгүй байна. Энэ хөрөнгийг дахин ашиглахын тулд өөрийн хөрөнгийг шинэчилнэ үү.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Эдгээр хөрөнгийг хэн ч өгч чадахгүй.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Эдгээр хөрөнгийг шалгах боломжтой. Тэдгээрийг оноож дууссаны дараа тэд Deployed гэсэн мета төлөв гэж тооцдог.', 'archived' => 'Эдгээр хөрөнгө нь шалгагдаагүй, зөвхөн Архивлагдсан үзэгдэлд харагдана. Энэ нь төсөвт / түүхэн зориулалтаар ашиглах хөрөнгийн тухай мэдээллийг хадгалж үлдэхийн зэрэгцээ тэдгээрийг өдөр тутмын хөрөнгийн жагсаалтаас гаргахад тустай байдаг.', 'pending' => 'Эд хөрөнгийг засварлахын тулд ихэвчлэн ашигладаг боловч эргэлтэнд орохоор хүлээгдэж буй эд зүйлсэд ашиглагддаггүй.', ], diff --git a/resources/lang/mn/admin/statuslabels/table.php b/resources/lang/mn-MN/admin/statuslabels/table.php similarity index 100% rename from resources/lang/mn/admin/statuslabels/table.php rename to resources/lang/mn-MN/admin/statuslabels/table.php diff --git a/resources/lang/mn/admin/suppliers/message.php b/resources/lang/mn-MN/admin/suppliers/message.php similarity index 100% rename from resources/lang/mn/admin/suppliers/message.php rename to resources/lang/mn-MN/admin/suppliers/message.php diff --git a/resources/lang/mn/admin/suppliers/table.php b/resources/lang/mn-MN/admin/suppliers/table.php similarity index 100% rename from resources/lang/mn/admin/suppliers/table.php rename to resources/lang/mn-MN/admin/suppliers/table.php diff --git a/resources/lang/mn/admin/users/general.php b/resources/lang/mn-MN/admin/users/general.php similarity index 97% rename from resources/lang/mn/admin/users/general.php rename to resources/lang/mn-MN/admin/users/general.php index c198ce40c9..c2e94471ba 100644 --- a/resources/lang/mn/admin/users/general.php +++ b/resources/lang/mn-MN/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Хэрэглэгч: нэрийг харах', 'usercsv' => 'CSV файл', 'two_factor_admin_optin_help' => 'Таны одоогийн админ тохиргоо нь хоёр хүчин зүйлийн баталгаажуулалтыг сонгохыг зөвшөөрдөг.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA төхөөрөмжийг бүртгүүлсэн', + 'two_factor_active' => '2FA идэвхтэй', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/mn/admin/users/message.php b/resources/lang/mn-MN/admin/users/message.php similarity index 98% rename from resources/lang/mn/admin/users/message.php rename to resources/lang/mn-MN/admin/users/message.php index 9be715a16f..b37a44d2c6 100644 --- a/resources/lang/mn/admin/users/message.php +++ b/resources/lang/mn-MN/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Та энэ хөрөнгийг амжилттай татгалзсан.', 'bulk_manager_warn' => 'Таны хэрэглэгчид амжилттай шинэчлэгдсэн хэдий ч таны менежерийн оруулгыг хадгалсангүй, учир нь таны сонгосон менежер засварлах хэрэглэгчийн жагсаалт мөн хэрэглэгчид магадгүй өөрийн менежер биш байж болно. Менежерийг оруулалгүйгээр хэрэглэгчдийг дахин сонгоно уу.', 'user_exists' => 'Хэрэглэгч бүртгэгдсэн байна!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Хэрэглэгч байхгүй байна.', 'user_login_required' => 'Нэвтрэх талбар шаардлагатай байна', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Нууц үг шаардагдана.', diff --git a/resources/lang/mn/admin/users/table.php b/resources/lang/mn-MN/admin/users/table.php similarity index 96% rename from resources/lang/mn/admin/users/table.php rename to resources/lang/mn-MN/admin/users/table.php index 36c7a73a22..b988d941cf 100644 --- a/resources/lang/mn/admin/users/table.php +++ b/resources/lang/mn-MN/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Менежер', 'managed_locations' => 'Managed Locations', 'name' => 'Нэр', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Тэмдэглэл', 'password_confirm' => 'Нууц үгээ батална уу', 'password' => 'Нууц үг', diff --git a/resources/lang/mk/auth.php b/resources/lang/mn-MN/auth.php similarity index 100% rename from resources/lang/mk/auth.php rename to resources/lang/mn-MN/auth.php diff --git a/resources/lang/mn/auth/general.php b/resources/lang/mn-MN/auth/general.php similarity index 100% rename from resources/lang/mn/auth/general.php rename to resources/lang/mn-MN/auth/general.php diff --git a/resources/lang/mn/auth/message.php b/resources/lang/mn-MN/auth/message.php similarity index 95% rename from resources/lang/mn/auth/message.php rename to resources/lang/mn-MN/auth/message.php index f0898d2644..51dba96cbc 100644 --- a/resources/lang/mn/auth/message.php +++ b/resources/lang/mn-MN/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Та амжилттай нэвтэрсэн байна.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/mn/button.php b/resources/lang/mn-MN/button.php similarity index 87% rename from resources/lang/mn/button.php rename to resources/lang/mn-MN/button.php index ba1648d787..db7ced26c4 100644 --- a/resources/lang/mn/button.php +++ b/resources/lang/mn-MN/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Файл сонгох...', 'select_files' => 'Файл сонгох...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Нууц уг шинэчлэх имэйл илгээх', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Шинэ', ]; diff --git a/resources/lang/mn/general.php b/resources/lang/mn-MN/general.php similarity index 95% rename from resources/lang/mn/general.php rename to resources/lang/mn-MN/general.php index 6b2617fde6..18d0405383 100644 --- a/resources/lang/mn/general.php +++ b/resources/lang/mn-MN/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Импорт', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Түүхийг импортлох', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Хэрэглэхэд бэлэн байна', 'recent_activity' => 'Сүүлийн үеийн үйл ажиллагаа', - 'remaining' => 'Remaining', + 'remaining' => 'Үлдсэн', 'remove_company' => 'Компанийн холбоог устгах', 'reports' => 'Тайлан', 'restored' => 'сэргээгдсэн', - 'restore' => 'Restore', + 'restore' => 'Сэргээх', 'requestable_models' => 'Requestable Models', 'requested' => 'Хүсэлт гаргасан', 'requested_date' => 'Requested Date', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Нийлүүлэгч', 'suppliers' => 'Нийлүүлэгч', 'sure_to_delete' => 'Та устгахыг хүсч байгаадаа итгэлтэй байна уу', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Та :item устгахыг хүсч байгаадаа итгэлтэй байна уу?', 'delete_what' => 'Delete :item', 'submit' => 'Илгээх', 'target' => 'Зорилтот түвшин', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Дахин ашиглах боломжгүй байна', 'unknown_admin' => 'Unknown Admin', 'username_format' => 'Хэрэглэгчийн нэр Формат', - 'username' => 'Username', + 'username' => 'Нэвтрэх нэр', 'update' => 'Шинэчлэх', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Байршуулсан байна', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'И-мэйл хаяг', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Нь шалгаж', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Анхаар', + 'notification_info' => 'Мэдээлэл', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Хөрөнгийн нэр', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Боломжийн нэр:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Дагалдах хэрэгслийн нэр:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% бүрэн дуусгах', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'засах', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/mn-MN/help.php b/resources/lang/mn-MN/help.php new file mode 100644 index 0000000000..1c4fdefc92 --- /dev/null +++ b/resources/lang/mn-MN/help.php @@ -0,0 +1,35 @@ + 'Дэлгэрэнгүй мэдээлэл', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Актив нь сериал дугаар буюу хөрөнгийн тэмдэгтээр хянагдсан зүйлс юм. Эдгээр нь тодорхой зүйлүүдийг тодорхойлоход илүү үнэ цэнэтэй зүйлс байх хандлагатай байдаг.', + + 'categories' => 'Хөрөнгийн бүтэц зохион байгуулалтыг оновчтой болгоход Ангилал тус болно. Жишээлбэл "Ширээний компьютьер", "Ноутбүүк","Гар утас","Таблет" гэх мэт. Та өөрийн хүссэнээрээ ангиллаа зохиож болно.', + + 'accessories' => 'Дагалдах хэрэгсэл нь таны хэрэглэгчдэд олгодог аливаа зүйл боловч энэ нь сериал дугаартай (эсвэл та тэдгээрийг бусдыг дагах сонирхолтой биш) юм. Жишээ нь, компьютерийн хулгана, гар бөмбөг.', + + 'companies' => 'Компаниудыг энгийн тодорхойлогч талбар болгон ашиглаж болно, эсвэл Админ тохиргоонд компаний бүрэн дэмжлэгийг идэвхжүүлсэн тохиолдолд хөрөнгө, хэрэглэгчдийн харагдах байдлыг хязгаарлахад ашиглаж болно.', + + 'components' => 'Бүрэлдэхүүн хэсэг нь хөрөнгийн хэсэг болох зүйл, жишээ нь HDD, RAM, гэх мэт.', + + 'consumables' => 'Хэрэглээний бараа бүтээгдэхүүн нь цаг хугацааны турш хэрэглэгдэх зүйл юм. Жишээ нь, хэвлэгч бэх эсвэл хувилах цаас.', + + 'depreciations' => 'Та шулуун шугамын элэгдэл дээр үндэслэн хөрөнгийг элэгдүүлэхийн тулд хөрөнгийн элэгдлийг үүсгэж болно.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/mn-MN/localizations.php b/resources/lang/mn-MN/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/mn-MN/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/mn/mail.php b/resources/lang/mn-MN/mail.php similarity index 99% rename from resources/lang/mn/mail.php rename to resources/lang/mn-MN/mail.php index cf7b1f7c4b..997b6802e7 100644 --- a/resources/lang/mn/mail.php +++ b/resources/lang/mn-MN/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Актив:', 'asset_name' => 'Хөрөнгийн нэр:', 'asset_requested' => 'Хөрөнгө хүссэн', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Хөрөнгийн шошго', 'assigned_to' => 'Томилогдсон', 'best_regards' => 'Хамгийн сайн нь,', 'canceled' => 'Цуцалсан:', diff --git a/resources/lang/mn/pagination.php b/resources/lang/mn-MN/pagination.php similarity index 100% rename from resources/lang/mn/pagination.php rename to resources/lang/mn-MN/pagination.php diff --git a/resources/lang/mk/passwords.php b/resources/lang/mn-MN/passwords.php similarity index 100% rename from resources/lang/mk/passwords.php rename to resources/lang/mn-MN/passwords.php diff --git a/resources/lang/mn/reminders.php b/resources/lang/mn-MN/reminders.php similarity index 100% rename from resources/lang/mn/reminders.php rename to resources/lang/mn-MN/reminders.php diff --git a/resources/lang/mn/table.php b/resources/lang/mn-MN/table.php similarity index 100% rename from resources/lang/mn/table.php rename to resources/lang/mn-MN/table.php diff --git a/resources/lang/mn/validation.php b/resources/lang/mn-MN/validation.php similarity index 99% rename from resources/lang/mn/validation.php rename to resources/lang/mn-MN/validation.php index 790756002d..5f061052c8 100644 --- a/resources/lang/mn/validation.php +++ b/resources/lang/mn-MN/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute дахин давтагдашгүй байх ёстой.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/mn/admin/kits/general.php b/resources/lang/mn/admin/kits/general.php deleted file mode 100644 index f724ecbf07..0000000000 --- a/resources/lang/mn/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Kit was successfully created.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/mn/admin/labels/table.php b/resources/lang/mn/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/mn/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/mn/admin/settings/table.php b/resources/lang/mn/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/mn/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/mn/help.php b/resources/lang/mn/help.php deleted file mode 100644 index 18560449ba..0000000000 --- a/resources/lang/mn/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Дэлгэрэнгүй мэдээлэл', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/mn/localizations.php b/resources/lang/mn/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/mn/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/mn/account/general.php b/resources/lang/ms-MY/account/general.php similarity index 100% rename from resources/lang/mn/account/general.php rename to resources/lang/ms-MY/account/general.php diff --git a/resources/lang/ms/admin/accessories/general.php b/resources/lang/ms-MY/admin/accessories/general.php similarity index 100% rename from resources/lang/ms/admin/accessories/general.php rename to resources/lang/ms-MY/admin/accessories/general.php diff --git a/resources/lang/ms/admin/accessories/message.php b/resources/lang/ms-MY/admin/accessories/message.php similarity index 100% rename from resources/lang/ms/admin/accessories/message.php rename to resources/lang/ms-MY/admin/accessories/message.php diff --git a/resources/lang/ms/admin/accessories/table.php b/resources/lang/ms-MY/admin/accessories/table.php similarity index 100% rename from resources/lang/ms/admin/accessories/table.php rename to resources/lang/ms-MY/admin/accessories/table.php diff --git a/resources/lang/ms/admin/asset_maintenances/form.php b/resources/lang/ms-MY/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/ms/admin/asset_maintenances/form.php rename to resources/lang/ms-MY/admin/asset_maintenances/form.php diff --git a/resources/lang/ms/admin/asset_maintenances/general.php b/resources/lang/ms-MY/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/ms/admin/asset_maintenances/general.php rename to resources/lang/ms-MY/admin/asset_maintenances/general.php diff --git a/resources/lang/ms/admin/asset_maintenances/message.php b/resources/lang/ms-MY/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/ms/admin/asset_maintenances/message.php rename to resources/lang/ms-MY/admin/asset_maintenances/message.php diff --git a/resources/lang/ms/admin/asset_maintenances/table.php b/resources/lang/ms-MY/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/ms/admin/asset_maintenances/table.php rename to resources/lang/ms-MY/admin/asset_maintenances/table.php diff --git a/resources/lang/ms/admin/categories/general.php b/resources/lang/ms-MY/admin/categories/general.php similarity index 100% rename from resources/lang/ms/admin/categories/general.php rename to resources/lang/ms-MY/admin/categories/general.php diff --git a/resources/lang/ms/admin/categories/message.php b/resources/lang/ms-MY/admin/categories/message.php similarity index 100% rename from resources/lang/ms/admin/categories/message.php rename to resources/lang/ms-MY/admin/categories/message.php diff --git a/resources/lang/ms/admin/categories/table.php b/resources/lang/ms-MY/admin/categories/table.php similarity index 100% rename from resources/lang/ms/admin/categories/table.php rename to resources/lang/ms-MY/admin/categories/table.php diff --git a/resources/lang/ms/admin/companies/general.php b/resources/lang/ms-MY/admin/companies/general.php similarity index 87% rename from resources/lang/ms/admin/companies/general.php rename to resources/lang/ms-MY/admin/companies/general.php index b5b9b839f2..01fd0b3bff 100644 --- a/resources/lang/ms/admin/companies/general.php +++ b/resources/lang/ms-MY/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Pilih Syarikat', - 'about_companies' => 'About Companies', + 'about_companies' => 'Mengenai Syarikat', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/ms/admin/companies/message.php b/resources/lang/ms-MY/admin/companies/message.php similarity index 100% rename from resources/lang/ms/admin/companies/message.php rename to resources/lang/ms-MY/admin/companies/message.php diff --git a/resources/lang/ms/admin/companies/table.php b/resources/lang/ms-MY/admin/companies/table.php similarity index 100% rename from resources/lang/ms/admin/companies/table.php rename to resources/lang/ms-MY/admin/companies/table.php diff --git a/resources/lang/ms/admin/components/general.php b/resources/lang/ms-MY/admin/components/general.php similarity index 100% rename from resources/lang/ms/admin/components/general.php rename to resources/lang/ms-MY/admin/components/general.php diff --git a/resources/lang/ms/admin/components/message.php b/resources/lang/ms-MY/admin/components/message.php similarity index 100% rename from resources/lang/ms/admin/components/message.php rename to resources/lang/ms-MY/admin/components/message.php diff --git a/resources/lang/ms/admin/components/table.php b/resources/lang/ms-MY/admin/components/table.php similarity index 100% rename from resources/lang/ms/admin/components/table.php rename to resources/lang/ms-MY/admin/components/table.php diff --git a/resources/lang/ms/admin/consumables/general.php b/resources/lang/ms-MY/admin/consumables/general.php similarity index 100% rename from resources/lang/ms/admin/consumables/general.php rename to resources/lang/ms-MY/admin/consumables/general.php diff --git a/resources/lang/ms/admin/consumables/message.php b/resources/lang/ms-MY/admin/consumables/message.php similarity index 100% rename from resources/lang/ms/admin/consumables/message.php rename to resources/lang/ms-MY/admin/consumables/message.php diff --git a/resources/lang/ms/admin/consumables/table.php b/resources/lang/ms-MY/admin/consumables/table.php similarity index 100% rename from resources/lang/ms/admin/consumables/table.php rename to resources/lang/ms-MY/admin/consumables/table.php diff --git a/resources/lang/ms/admin/custom_fields/general.php b/resources/lang/ms-MY/admin/custom_fields/general.php similarity index 95% rename from resources/lang/ms/admin/custom_fields/general.php rename to resources/lang/ms-MY/admin/custom_fields/general.php index 680e1e6f39..ba570d3a0f 100644 --- a/resources/lang/ms/admin/custom_fields/general.php +++ b/resources/lang/ms-MY/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Padang Tersuai Baru', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Nilai medan ini disulitkan dalam pangkalan data. Hanya pengguna admin sahaja yang dapat melihat nilai yang disahkrit', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Sertakan nilai medan ini dalam e-mel semak keluar yang dihantar kepada pengguna? Medan yang disulitkan tidak boleh dimasukkan ke dalam e-mel', '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.', diff --git a/resources/lang/ms/admin/custom_fields/message.php b/resources/lang/ms-MY/admin/custom_fields/message.php similarity index 100% rename from resources/lang/ms/admin/custom_fields/message.php rename to resources/lang/ms-MY/admin/custom_fields/message.php diff --git a/resources/lang/ms/admin/departments/message.php b/resources/lang/ms-MY/admin/departments/message.php similarity index 100% rename from resources/lang/ms/admin/departments/message.php rename to resources/lang/ms-MY/admin/departments/message.php diff --git a/resources/lang/ms/admin/departments/table.php b/resources/lang/ms-MY/admin/departments/table.php similarity index 100% rename from resources/lang/ms/admin/departments/table.php rename to resources/lang/ms-MY/admin/departments/table.php diff --git a/resources/lang/ms/admin/depreciations/general.php b/resources/lang/ms-MY/admin/depreciations/general.php similarity index 100% rename from resources/lang/ms/admin/depreciations/general.php rename to resources/lang/ms-MY/admin/depreciations/general.php diff --git a/resources/lang/ms/admin/depreciations/message.php b/resources/lang/ms-MY/admin/depreciations/message.php similarity index 100% rename from resources/lang/ms/admin/depreciations/message.php rename to resources/lang/ms-MY/admin/depreciations/message.php diff --git a/resources/lang/ms/admin/depreciations/table.php b/resources/lang/ms-MY/admin/depreciations/table.php similarity index 100% rename from resources/lang/ms/admin/depreciations/table.php rename to resources/lang/ms-MY/admin/depreciations/table.php diff --git a/resources/lang/ms/admin/groups/message.php b/resources/lang/ms-MY/admin/groups/message.php similarity index 100% rename from resources/lang/ms/admin/groups/message.php rename to resources/lang/ms-MY/admin/groups/message.php diff --git a/resources/lang/ms/admin/groups/table.php b/resources/lang/ms-MY/admin/groups/table.php similarity index 100% rename from resources/lang/ms/admin/groups/table.php rename to resources/lang/ms-MY/admin/groups/table.php diff --git a/resources/lang/ms/admin/groups/titles.php b/resources/lang/ms-MY/admin/groups/titles.php similarity index 100% rename from resources/lang/ms/admin/groups/titles.php rename to resources/lang/ms-MY/admin/groups/titles.php diff --git a/resources/lang/ms/admin/hardware/form.php b/resources/lang/ms-MY/admin/hardware/form.php similarity index 100% rename from resources/lang/ms/admin/hardware/form.php rename to resources/lang/ms-MY/admin/hardware/form.php diff --git a/resources/lang/ms/admin/hardware/general.php b/resources/lang/ms-MY/admin/hardware/general.php similarity index 100% rename from resources/lang/ms/admin/hardware/general.php rename to resources/lang/ms-MY/admin/hardware/general.php diff --git a/resources/lang/ms/admin/hardware/message.php b/resources/lang/ms-MY/admin/hardware/message.php similarity index 98% rename from resources/lang/ms/admin/hardware/message.php rename to resources/lang/ms-MY/admin/hardware/message.php index 6571bde0ac..a6d12da771 100644 --- a/resources/lang/ms/admin/hardware/message.php +++ b/resources/lang/ms-MY/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Aset tidak dipulihkan, sila cuba lagi', 'success' => 'Aset dipulihkan dengan jayanya.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Aset dipulihkan dengan jayanya.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/ms/admin/hardware/table.php b/resources/lang/ms-MY/admin/hardware/table.php similarity index 100% rename from resources/lang/ms/admin/hardware/table.php rename to resources/lang/ms-MY/admin/hardware/table.php diff --git a/resources/lang/ms/admin/kits/general.php b/resources/lang/ms-MY/admin/kits/general.php similarity index 90% rename from resources/lang/ms/admin/kits/general.php rename to resources/lang/ms-MY/admin/kits/general.php index 83e33dcddb..c3c4ba5f7d 100644 --- a/resources/lang/ms/admin/kits/general.php +++ b/resources/lang/ms-MY/admin/kits/general.php @@ -24,13 +24,13 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Lesen tidak wujud', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Tidak boleh digunakan', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', @@ -41,10 +41,10 @@ return [ 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', + 'kit_created' => 'Kit berjaya dibuat', + 'kit_updated' => 'Kit telah berjaya dikemas kini', 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', + 'kit_deleted' => 'Kit berjaya dipadamkan', 'kit_model_updated' => 'Model was successfully updated', 'kit_model_detached' => 'Model was successfully detached', ]; diff --git a/resources/lang/mk/admin/labels/message.php b/resources/lang/ms-MY/admin/labels/message.php similarity index 100% rename from resources/lang/mk/admin/labels/message.php rename to resources/lang/ms-MY/admin/labels/message.php diff --git a/resources/lang/el/admin/labels/table.php b/resources/lang/ms-MY/admin/labels/table.php similarity index 86% rename from resources/lang/el/admin/labels/table.php rename to resources/lang/ms-MY/admin/labels/table.php index 87dee4bad0..091ffa3287 100644 --- a/resources/lang/el/admin/labels/table.php +++ b/resources/lang/ms-MY/admin/labels/table.php @@ -8,6 +8,6 @@ return [ 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Tajuk', ]; \ No newline at end of file diff --git a/resources/lang/ms/admin/licenses/form.php b/resources/lang/ms-MY/admin/licenses/form.php similarity index 100% rename from resources/lang/ms/admin/licenses/form.php rename to resources/lang/ms-MY/admin/licenses/form.php diff --git a/resources/lang/ms/admin/licenses/general.php b/resources/lang/ms-MY/admin/licenses/general.php similarity index 100% rename from resources/lang/ms/admin/licenses/general.php rename to resources/lang/ms-MY/admin/licenses/general.php diff --git a/resources/lang/ms/admin/licenses/message.php b/resources/lang/ms-MY/admin/licenses/message.php similarity index 100% rename from resources/lang/ms/admin/licenses/message.php rename to resources/lang/ms-MY/admin/licenses/message.php diff --git a/resources/lang/ms/admin/licenses/table.php b/resources/lang/ms-MY/admin/licenses/table.php similarity index 100% rename from resources/lang/ms/admin/licenses/table.php rename to resources/lang/ms-MY/admin/licenses/table.php diff --git a/resources/lang/ms/admin/locations/message.php b/resources/lang/ms-MY/admin/locations/message.php similarity index 100% rename from resources/lang/ms/admin/locations/message.php rename to resources/lang/ms-MY/admin/locations/message.php diff --git a/resources/lang/ms/admin/locations/table.php b/resources/lang/ms-MY/admin/locations/table.php similarity index 100% rename from resources/lang/ms/admin/locations/table.php rename to resources/lang/ms-MY/admin/locations/table.php diff --git a/resources/lang/ms/admin/manufacturers/message.php b/resources/lang/ms-MY/admin/manufacturers/message.php similarity index 100% rename from resources/lang/ms/admin/manufacturers/message.php rename to resources/lang/ms-MY/admin/manufacturers/message.php diff --git a/resources/lang/ms/admin/manufacturers/table.php b/resources/lang/ms-MY/admin/manufacturers/table.php similarity index 100% rename from resources/lang/ms/admin/manufacturers/table.php rename to resources/lang/ms-MY/admin/manufacturers/table.php diff --git a/resources/lang/ms/admin/models/general.php b/resources/lang/ms-MY/admin/models/general.php similarity index 100% rename from resources/lang/ms/admin/models/general.php rename to resources/lang/ms-MY/admin/models/general.php diff --git a/resources/lang/ms/admin/models/message.php b/resources/lang/ms-MY/admin/models/message.php similarity index 100% rename from resources/lang/ms/admin/models/message.php rename to resources/lang/ms-MY/admin/models/message.php diff --git a/resources/lang/ms/admin/models/table.php b/resources/lang/ms-MY/admin/models/table.php similarity index 100% rename from resources/lang/ms/admin/models/table.php rename to resources/lang/ms-MY/admin/models/table.php diff --git a/resources/lang/ms/admin/reports/general.php b/resources/lang/ms-MY/admin/reports/general.php similarity index 100% rename from resources/lang/ms/admin/reports/general.php rename to resources/lang/ms-MY/admin/reports/general.php diff --git a/resources/lang/ms/admin/reports/message.php b/resources/lang/ms-MY/admin/reports/message.php similarity index 100% rename from resources/lang/ms/admin/reports/message.php rename to resources/lang/ms-MY/admin/reports/message.php diff --git a/resources/lang/ms/admin/settings/general.php b/resources/lang/ms-MY/admin/settings/general.php similarity index 99% rename from resources/lang/ms/admin/settings/general.php rename to resources/lang/ms-MY/admin/settings/general.php index c6a2c98a21..43b1ce3fe2 100644 --- a/resources/lang/ms/admin/settings/general.php +++ b/resources/lang/ms-MY/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Pengguna tidak perlu menulis "nama pengguna@domain.local", mereka hanya boleh menaip "nama pengguna".', 'admin_cc_email' => 'SK Email', 'admin_cc_email_help' => 'Jika anda ingin menghantar salinan e-mel daftar masuk/daftar keluar yang dihantar kepada pengguna ke akaun e-mel tambahan, masukkannya di sini. Jika tidak, biarkan medan ini kosong.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Ini adalah pelayan Direktori Aktif', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Rekod Menghapuskan Rekod', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Tajuk', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Jenis Barcode 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/ms/admin/settings/message.php b/resources/lang/ms-MY/admin/settings/message.php similarity index 100% rename from resources/lang/ms/admin/settings/message.php rename to resources/lang/ms-MY/admin/settings/message.php diff --git a/resources/lang/ms-MY/admin/settings/table.php b/resources/lang/ms-MY/admin/settings/table.php new file mode 100644 index 0000000000..f4c83f3330 --- /dev/null +++ b/resources/lang/ms-MY/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Telah dicipta', + 'size' => 'Size', +); diff --git a/resources/lang/ms/admin/statuslabels/message.php b/resources/lang/ms-MY/admin/statuslabels/message.php similarity index 85% rename from resources/lang/ms/admin/statuslabels/message.php rename to resources/lang/ms-MY/admin/statuslabels/message.php index 8c23c98cef..8f4a261914 100644 --- a/resources/lang/ms/admin/statuslabels/message.php +++ b/resources/lang/ms-MY/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Label Status tidak wujud.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Label Status ini kini dikaitkan dengan sekurang-kurangnya satu Aset dan tidak boleh dipadamkan. Sila kemas kini aset anda untuk tidak merujuk lagi status ini dan cuba lagi.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Aset ini tidak boleh diberikan kepada sesiapa sahaja.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Aset ini boleh diperiksa. Sebaik sahaja mereka ditugaskan, mereka akan menerima status meta Deployed.', 'archived' => 'Aset-aset ini tidak boleh diperiksa, dan hanya akan dipaparkan dalam pandangan Arkib. Ini berguna untuk mengekalkan maklumat mengenai aset untuk tujuan belanjawan / bersejarah tetapi menyimpannya daripada senarai aset harian.', 'pending' => 'Aset-aset ini belum dapat ditugaskan kepada sesiapa sahaja, sering kali digunakan untuk barang-barang yang hendak dibaiki, tetapi diharapkan dapat kembali ke peredaran.', ], diff --git a/resources/lang/ms/admin/statuslabels/table.php b/resources/lang/ms-MY/admin/statuslabels/table.php similarity index 100% rename from resources/lang/ms/admin/statuslabels/table.php rename to resources/lang/ms-MY/admin/statuslabels/table.php diff --git a/resources/lang/ms/admin/suppliers/message.php b/resources/lang/ms-MY/admin/suppliers/message.php similarity index 100% rename from resources/lang/ms/admin/suppliers/message.php rename to resources/lang/ms-MY/admin/suppliers/message.php diff --git a/resources/lang/ms/admin/suppliers/table.php b/resources/lang/ms-MY/admin/suppliers/table.php similarity index 100% rename from resources/lang/ms/admin/suppliers/table.php rename to resources/lang/ms-MY/admin/suppliers/table.php diff --git a/resources/lang/ms/admin/users/general.php b/resources/lang/ms-MY/admin/users/general.php similarity index 97% rename from resources/lang/ms/admin/users/general.php rename to resources/lang/ms-MY/admin/users/general.php index 94f5930d5b..67539888fd 100644 --- a/resources/lang/ms/admin/users/general.php +++ b/resources/lang/ms-MY/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Papar Pengguna :nama', 'usercsv' => 'Fail CSV', 'two_factor_admin_optin_help' => 'Tetapan admin semasa anda membenarkan penguatkuasaan selektif pengesahan dua faktor.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA Device Enrolled', + 'two_factor_active' => '2FA Aktif', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/ms/admin/users/message.php b/resources/lang/ms-MY/admin/users/message.php similarity index 98% rename from resources/lang/ms/admin/users/message.php rename to resources/lang/ms-MY/admin/users/message.php index 65ec98b418..d943231949 100644 --- a/resources/lang/ms/admin/users/message.php +++ b/resources/lang/ms-MY/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Anda telah berjaya menolak aset ini.', 'bulk_manager_warn' => 'Pengguna anda telah berjaya dikemas kini, namun entri pengurus anda tidak disimpan kerana pengurus yang anda pilih juga dalam senarai pengguna untuk diedit, dan pengguna mungkin bukan pengurus mereka sendiri. Sila pilih pengguna anda sekali lagi, tidak termasuk pengurus.', 'user_exists' => 'Pengguna telah wujud!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Pengguna tidak wujud.', 'user_login_required' => 'Ruangan log masuk diperlukan', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Ruangan kata kunci diperlukan.', diff --git a/resources/lang/ms/admin/users/table.php b/resources/lang/ms-MY/admin/users/table.php similarity index 95% rename from resources/lang/ms/admin/users/table.php rename to resources/lang/ms-MY/admin/users/table.php index 86ee791a5b..3e57f02e96 100644 --- a/resources/lang/ms/admin/users/table.php +++ b/resources/lang/ms-MY/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Pengurus', 'managed_locations' => 'Lokasi Terurus', 'name' => 'Nama', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Nota', 'password_confirm' => 'Sahkan kata laluan', 'password' => 'Kata Laluan', diff --git a/resources/lang/mn/auth.php b/resources/lang/ms-MY/auth.php similarity index 100% rename from resources/lang/mn/auth.php rename to resources/lang/ms-MY/auth.php diff --git a/resources/lang/ms/auth/general.php b/resources/lang/ms-MY/auth/general.php similarity index 100% rename from resources/lang/ms/auth/general.php rename to resources/lang/ms-MY/auth/general.php diff --git a/resources/lang/ms/auth/message.php b/resources/lang/ms-MY/auth/message.php similarity index 95% rename from resources/lang/ms/auth/message.php rename to resources/lang/ms-MY/auth/message.php index 95b99c1c73..37aaa7672a 100644 --- a/resources/lang/ms/auth/message.php +++ b/resources/lang/ms-MY/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Anda berjaya log masuk.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/ms/button.php b/resources/lang/ms-MY/button.php similarity index 95% rename from resources/lang/ms/button.php rename to resources/lang/ms-MY/button.php index 58d451c4a0..ce639259ef 100644 --- a/resources/lang/ms/button.php +++ b/resources/lang/ms-MY/button.php @@ -20,5 +20,5 @@ return [ 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Baru', ]; diff --git a/resources/lang/ms/general.php b/resources/lang/ms-MY/general.php similarity index 95% rename from resources/lang/ms/general.php rename to resources/lang/ms-MY/general.php index 1fcc1c6a98..129b634523 100644 --- a/resources/lang/ms/general.php +++ b/resources/lang/ms-MY/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Sejarah Import', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Sedia untuk diagihkan', 'recent_activity' => 'Aktiviti Terkini', - 'remaining' => 'Remaining', + 'remaining' => 'Baki', 'remove_company' => 'Keluarkan Persatuan Syarikat', 'reports' => 'Laporan', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'Masukkan Semula', 'requestable_models' => 'Requestable Models', 'requested' => 'Diminta', 'requested_date' => 'Requested Date', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Pembekal', 'suppliers' => 'Pembekal', 'sure_to_delete' => 'Adakah anda pasti ingin memadamkannya', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Adakah anda pasti ingin memadamkan :item?', 'delete_what' => 'Delete :item', 'submit' => 'Hantar', 'target' => 'Sasaran', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Tidak Boleh Agih', 'unknown_admin' => 'Pentadbir Tidak Dikenali', 'username_format' => 'Format Nama Pengguna', - 'username' => 'Username', + 'username' => 'Nama Pengguna', 'update' => 'Kemas kini', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Dimuat naik', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'E-mel', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,14 +333,14 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Agihan Keluar', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', + 'expected_checkin' => 'Tarikh Agihan Masuk Yang Dijangka', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', + 'changed' => 'Berubah', 'to' => 'To', 'report_fields_info' => '

Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.

If you would like to export only certain assets, use the options below to fine-tune your results.

', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Amaran', + 'notification_info' => 'Maklumat', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Nama Aset', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Nama yang boleh digunakan:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Nama Aksesori:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% lengkap', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'kemaskini', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ms-MY/help.php b/resources/lang/ms-MY/help.php new file mode 100644 index 0000000000..5211e492a7 --- /dev/null +++ b/resources/lang/ms-MY/help.php @@ -0,0 +1,35 @@ + 'Maklumat tambahan', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Aset adalah item yang dikesan oleh nombor siri atau tag aset. Mereka cenderung menjadi item nilai yang lebih tinggi di mana mengenal pasti perkara-perkara tertentu.', + + 'categories' => 'Kategori membantu anda menyusun item anda. Sesetengah kategori contoh mungkin "Desktops", "Laptops", "Mobile Phones", "Tablets", dan sebagainya, tetapi anda boleh menggunakan kategori dengan cara yang masuk akal untuk anda.', + + 'accessories' => 'Aksesori adalah apa-apa yang kamu menetapkan untuk pengguna tetapi ia tidak mempunyai nombor siri (atau anda tidak peduli untuk trek ia dengan uniknya). Sebagai contoh, komputer tetikus atau papan kekunci.', + + 'companies' => 'Syarikat boleh digunakan sebagai medan pengecam ringkas, atau boleh digunakan untuk membatasi penglihatan aset, pengguna, dan lain-lain jika sokongan syarikat penuh diaktifkan dalam tetapan Admin anda.', + + 'components' => 'Komponen adalah item yang merupakan sebahagian daripada aset, contohnya HDD, RAM, dll.', + + 'consumables' => 'Barang kemas adalah apa-apa yang dibeli yang akan digunakan sepanjang masa. Sebagai contoh, dakwat pencetak atau kertas copier.', + + 'depreciations' => 'Anda boleh tetapkan susut nilai harta berdasarkan kepada penyusutan berasaskan susut nilai garisan lurus.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/ms-MY/localizations.php b/resources/lang/ms-MY/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/ms-MY/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/ms/mail.php b/resources/lang/ms-MY/mail.php similarity index 99% rename from resources/lang/ms/mail.php rename to resources/lang/ms-MY/mail.php index dfcfe5a2ec..46fec33b1a 100644 --- a/resources/lang/ms/mail.php +++ b/resources/lang/ms-MY/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Aset:', 'asset_name' => 'Nama Aset:', 'asset_requested' => 'Aset diminta', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Tag Harta', 'assigned_to' => 'Ditugaskan untuk', 'best_regards' => 'Selamat sejahtera,', 'canceled' => 'Dibatalkan:', diff --git a/resources/lang/ms/pagination.php b/resources/lang/ms-MY/pagination.php similarity index 100% rename from resources/lang/ms/pagination.php rename to resources/lang/ms-MY/pagination.php diff --git a/resources/lang/mn/passwords.php b/resources/lang/ms-MY/passwords.php similarity index 100% rename from resources/lang/mn/passwords.php rename to resources/lang/ms-MY/passwords.php diff --git a/resources/lang/ms/reminders.php b/resources/lang/ms-MY/reminders.php similarity index 100% rename from resources/lang/ms/reminders.php rename to resources/lang/ms-MY/reminders.php diff --git a/resources/lang/ms/table.php b/resources/lang/ms-MY/table.php similarity index 100% rename from resources/lang/ms/table.php rename to resources/lang/ms-MY/table.php diff --git a/resources/lang/ms/validation.php b/resources/lang/ms-MY/validation.php similarity index 99% rename from resources/lang/ms/validation.php rename to resources/lang/ms-MY/validation.php index dab9ab8f1a..d74105fd78 100644 --- a/resources/lang/ms/validation.php +++ b/resources/lang/ms-MY/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute mesti unik.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/ms/admin/labels/table.php b/resources/lang/ms/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/ms/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/ms/admin/settings/table.php b/resources/lang/ms/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/ms/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/ms/help.php b/resources/lang/ms/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/ms/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/ms/localizations.php b/resources/lang/ms/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/ms/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/nl/account/general.php b/resources/lang/nl-NL/account/general.php similarity index 100% rename from resources/lang/nl/account/general.php rename to resources/lang/nl-NL/account/general.php diff --git a/resources/lang/nl/admin/accessories/general.php b/resources/lang/nl-NL/admin/accessories/general.php similarity index 100% rename from resources/lang/nl/admin/accessories/general.php rename to resources/lang/nl-NL/admin/accessories/general.php diff --git a/resources/lang/nl/admin/accessories/message.php b/resources/lang/nl-NL/admin/accessories/message.php similarity index 100% rename from resources/lang/nl/admin/accessories/message.php rename to resources/lang/nl-NL/admin/accessories/message.php diff --git a/resources/lang/nl/admin/accessories/table.php b/resources/lang/nl-NL/admin/accessories/table.php similarity index 100% rename from resources/lang/nl/admin/accessories/table.php rename to resources/lang/nl-NL/admin/accessories/table.php diff --git a/resources/lang/nl/admin/asset_maintenances/form.php b/resources/lang/nl-NL/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/nl/admin/asset_maintenances/form.php rename to resources/lang/nl-NL/admin/asset_maintenances/form.php diff --git a/resources/lang/nl/admin/asset_maintenances/general.php b/resources/lang/nl-NL/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/nl/admin/asset_maintenances/general.php rename to resources/lang/nl-NL/admin/asset_maintenances/general.php diff --git a/resources/lang/nl/admin/asset_maintenances/message.php b/resources/lang/nl-NL/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/nl/admin/asset_maintenances/message.php rename to resources/lang/nl-NL/admin/asset_maintenances/message.php diff --git a/resources/lang/nl/admin/asset_maintenances/table.php b/resources/lang/nl-NL/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/nl/admin/asset_maintenances/table.php rename to resources/lang/nl-NL/admin/asset_maintenances/table.php diff --git a/resources/lang/nl/admin/categories/general.php b/resources/lang/nl-NL/admin/categories/general.php similarity index 100% rename from resources/lang/nl/admin/categories/general.php rename to resources/lang/nl-NL/admin/categories/general.php diff --git a/resources/lang/nl/admin/categories/message.php b/resources/lang/nl-NL/admin/categories/message.php similarity index 100% rename from resources/lang/nl/admin/categories/message.php rename to resources/lang/nl-NL/admin/categories/message.php diff --git a/resources/lang/nl/admin/categories/table.php b/resources/lang/nl-NL/admin/categories/table.php similarity index 100% rename from resources/lang/nl/admin/categories/table.php rename to resources/lang/nl-NL/admin/categories/table.php diff --git a/resources/lang/nl/admin/companies/general.php b/resources/lang/nl-NL/admin/companies/general.php similarity index 100% rename from resources/lang/nl/admin/companies/general.php rename to resources/lang/nl-NL/admin/companies/general.php diff --git a/resources/lang/nl/admin/companies/message.php b/resources/lang/nl-NL/admin/companies/message.php similarity index 100% rename from resources/lang/nl/admin/companies/message.php rename to resources/lang/nl-NL/admin/companies/message.php diff --git a/resources/lang/nl/admin/companies/table.php b/resources/lang/nl-NL/admin/companies/table.php similarity index 100% rename from resources/lang/nl/admin/companies/table.php rename to resources/lang/nl-NL/admin/companies/table.php diff --git a/resources/lang/nl/admin/components/general.php b/resources/lang/nl-NL/admin/components/general.php similarity index 100% rename from resources/lang/nl/admin/components/general.php rename to resources/lang/nl-NL/admin/components/general.php diff --git a/resources/lang/nl/admin/components/message.php b/resources/lang/nl-NL/admin/components/message.php similarity index 100% rename from resources/lang/nl/admin/components/message.php rename to resources/lang/nl-NL/admin/components/message.php diff --git a/resources/lang/nl/admin/components/table.php b/resources/lang/nl-NL/admin/components/table.php similarity index 100% rename from resources/lang/nl/admin/components/table.php rename to resources/lang/nl-NL/admin/components/table.php diff --git a/resources/lang/nl/admin/consumables/general.php b/resources/lang/nl-NL/admin/consumables/general.php similarity index 100% rename from resources/lang/nl/admin/consumables/general.php rename to resources/lang/nl-NL/admin/consumables/general.php diff --git a/resources/lang/nl/admin/consumables/message.php b/resources/lang/nl-NL/admin/consumables/message.php similarity index 100% rename from resources/lang/nl/admin/consumables/message.php rename to resources/lang/nl-NL/admin/consumables/message.php diff --git a/resources/lang/nl/admin/consumables/table.php b/resources/lang/nl-NL/admin/consumables/table.php similarity index 100% rename from resources/lang/nl/admin/consumables/table.php rename to resources/lang/nl-NL/admin/consumables/table.php diff --git a/resources/lang/nl/admin/custom_fields/general.php b/resources/lang/nl-NL/admin/custom_fields/general.php similarity index 100% rename from resources/lang/nl/admin/custom_fields/general.php rename to resources/lang/nl-NL/admin/custom_fields/general.php diff --git a/resources/lang/nl/admin/custom_fields/message.php b/resources/lang/nl-NL/admin/custom_fields/message.php similarity index 100% rename from resources/lang/nl/admin/custom_fields/message.php rename to resources/lang/nl-NL/admin/custom_fields/message.php diff --git a/resources/lang/nl/admin/departments/message.php b/resources/lang/nl-NL/admin/departments/message.php similarity index 100% rename from resources/lang/nl/admin/departments/message.php rename to resources/lang/nl-NL/admin/departments/message.php diff --git a/resources/lang/nl/admin/departments/table.php b/resources/lang/nl-NL/admin/departments/table.php similarity index 100% rename from resources/lang/nl/admin/departments/table.php rename to resources/lang/nl-NL/admin/departments/table.php diff --git a/resources/lang/nl/admin/depreciations/general.php b/resources/lang/nl-NL/admin/depreciations/general.php similarity index 100% rename from resources/lang/nl/admin/depreciations/general.php rename to resources/lang/nl-NL/admin/depreciations/general.php diff --git a/resources/lang/nl/admin/depreciations/message.php b/resources/lang/nl-NL/admin/depreciations/message.php similarity index 100% rename from resources/lang/nl/admin/depreciations/message.php rename to resources/lang/nl-NL/admin/depreciations/message.php diff --git a/resources/lang/nl/admin/depreciations/table.php b/resources/lang/nl-NL/admin/depreciations/table.php similarity index 100% rename from resources/lang/nl/admin/depreciations/table.php rename to resources/lang/nl-NL/admin/depreciations/table.php diff --git a/resources/lang/nl/admin/groups/message.php b/resources/lang/nl-NL/admin/groups/message.php similarity index 100% rename from resources/lang/nl/admin/groups/message.php rename to resources/lang/nl-NL/admin/groups/message.php diff --git a/resources/lang/nl/admin/groups/table.php b/resources/lang/nl-NL/admin/groups/table.php similarity index 100% rename from resources/lang/nl/admin/groups/table.php rename to resources/lang/nl-NL/admin/groups/table.php diff --git a/resources/lang/nl/admin/groups/titles.php b/resources/lang/nl-NL/admin/groups/titles.php similarity index 100% rename from resources/lang/nl/admin/groups/titles.php rename to resources/lang/nl-NL/admin/groups/titles.php diff --git a/resources/lang/nl/admin/hardware/form.php b/resources/lang/nl-NL/admin/hardware/form.php similarity index 100% rename from resources/lang/nl/admin/hardware/form.php rename to resources/lang/nl-NL/admin/hardware/form.php diff --git a/resources/lang/nl/admin/hardware/general.php b/resources/lang/nl-NL/admin/hardware/general.php similarity index 100% rename from resources/lang/nl/admin/hardware/general.php rename to resources/lang/nl-NL/admin/hardware/general.php diff --git a/resources/lang/nl/admin/hardware/message.php b/resources/lang/nl-NL/admin/hardware/message.php similarity index 100% rename from resources/lang/nl/admin/hardware/message.php rename to resources/lang/nl-NL/admin/hardware/message.php diff --git a/resources/lang/nl/admin/hardware/table.php b/resources/lang/nl-NL/admin/hardware/table.php similarity index 100% rename from resources/lang/nl/admin/hardware/table.php rename to resources/lang/nl-NL/admin/hardware/table.php diff --git a/resources/lang/nl/admin/kits/general.php b/resources/lang/nl-NL/admin/kits/general.php similarity index 100% rename from resources/lang/nl/admin/kits/general.php rename to resources/lang/nl-NL/admin/kits/general.php diff --git a/resources/lang/nl/admin/labels/message.php b/resources/lang/nl-NL/admin/labels/message.php similarity index 100% rename from resources/lang/nl/admin/labels/message.php rename to resources/lang/nl-NL/admin/labels/message.php diff --git a/resources/lang/nl/admin/labels/table.php b/resources/lang/nl-NL/admin/labels/table.php similarity index 100% rename from resources/lang/nl/admin/labels/table.php rename to resources/lang/nl-NL/admin/labels/table.php diff --git a/resources/lang/nl/admin/licenses/form.php b/resources/lang/nl-NL/admin/licenses/form.php similarity index 100% rename from resources/lang/nl/admin/licenses/form.php rename to resources/lang/nl-NL/admin/licenses/form.php diff --git a/resources/lang/nl/admin/licenses/general.php b/resources/lang/nl-NL/admin/licenses/general.php similarity index 100% rename from resources/lang/nl/admin/licenses/general.php rename to resources/lang/nl-NL/admin/licenses/general.php diff --git a/resources/lang/nl/admin/licenses/message.php b/resources/lang/nl-NL/admin/licenses/message.php similarity index 100% rename from resources/lang/nl/admin/licenses/message.php rename to resources/lang/nl-NL/admin/licenses/message.php diff --git a/resources/lang/nl/admin/licenses/table.php b/resources/lang/nl-NL/admin/licenses/table.php similarity index 100% rename from resources/lang/nl/admin/licenses/table.php rename to resources/lang/nl-NL/admin/licenses/table.php diff --git a/resources/lang/nl/admin/locations/message.php b/resources/lang/nl-NL/admin/locations/message.php similarity index 100% rename from resources/lang/nl/admin/locations/message.php rename to resources/lang/nl-NL/admin/locations/message.php diff --git a/resources/lang/nl/admin/locations/table.php b/resources/lang/nl-NL/admin/locations/table.php similarity index 100% rename from resources/lang/nl/admin/locations/table.php rename to resources/lang/nl-NL/admin/locations/table.php diff --git a/resources/lang/nl/admin/manufacturers/message.php b/resources/lang/nl-NL/admin/manufacturers/message.php similarity index 100% rename from resources/lang/nl/admin/manufacturers/message.php rename to resources/lang/nl-NL/admin/manufacturers/message.php diff --git a/resources/lang/nl/admin/manufacturers/table.php b/resources/lang/nl-NL/admin/manufacturers/table.php similarity index 100% rename from resources/lang/nl/admin/manufacturers/table.php rename to resources/lang/nl-NL/admin/manufacturers/table.php diff --git a/resources/lang/nl/admin/models/general.php b/resources/lang/nl-NL/admin/models/general.php similarity index 100% rename from resources/lang/nl/admin/models/general.php rename to resources/lang/nl-NL/admin/models/general.php diff --git a/resources/lang/nl/admin/models/message.php b/resources/lang/nl-NL/admin/models/message.php similarity index 100% rename from resources/lang/nl/admin/models/message.php rename to resources/lang/nl-NL/admin/models/message.php diff --git a/resources/lang/nl/admin/models/table.php b/resources/lang/nl-NL/admin/models/table.php similarity index 100% rename from resources/lang/nl/admin/models/table.php rename to resources/lang/nl-NL/admin/models/table.php diff --git a/resources/lang/nl/admin/reports/general.php b/resources/lang/nl-NL/admin/reports/general.php similarity index 100% rename from resources/lang/nl/admin/reports/general.php rename to resources/lang/nl-NL/admin/reports/general.php diff --git a/resources/lang/nl/admin/reports/message.php b/resources/lang/nl-NL/admin/reports/message.php similarity index 100% rename from resources/lang/nl/admin/reports/message.php rename to resources/lang/nl-NL/admin/reports/message.php diff --git a/resources/lang/nl/admin/settings/general.php b/resources/lang/nl-NL/admin/settings/general.php similarity index 99% rename from resources/lang/nl/admin/settings/general.php rename to resources/lang/nl-NL/admin/settings/general.php index 58b029fe9a..2447b0894f 100644 --- a/resources/lang/nl/admin/settings/general.php +++ b/resources/lang/nl-NL/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Gebruiker is niet verplicht om "username@domain.local" te schrijven, deze kan alleen "username" typen.', 'admin_cc_email' => 'CC e-mail', 'admin_cc_email_help' => 'Als u een kopie van de checkout/checkin e-mail die aan de gebruikers worden verzonden wilt verzenden naar een extra e-mailaccount, vul dan hier het e-mailadres in. Laat anders dit veld leeg.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Dit is een Active Directory server', 'alerts' => 'Waarschuwingen', 'alert_title' => 'Meldingsinstellingen aanpassen', diff --git a/resources/lang/nl/admin/settings/message.php b/resources/lang/nl-NL/admin/settings/message.php similarity index 100% rename from resources/lang/nl/admin/settings/message.php rename to resources/lang/nl-NL/admin/settings/message.php diff --git a/resources/lang/nl/admin/settings/table.php b/resources/lang/nl-NL/admin/settings/table.php similarity index 100% rename from resources/lang/nl/admin/settings/table.php rename to resources/lang/nl-NL/admin/settings/table.php diff --git a/resources/lang/nl/admin/statuslabels/message.php b/resources/lang/nl-NL/admin/statuslabels/message.php similarity index 97% rename from resources/lang/nl/admin/statuslabels/message.php rename to resources/lang/nl-NL/admin/statuslabels/message.php index e495b2bd88..3e12d03416 100644 --- a/resources/lang/nl/admin/statuslabels/message.php +++ b/resources/lang/nl-NL/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Statuslabel bestaat niet.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Dit statuslabel is tenminste met één asset gekoppeld en kan niet verwijderd worden. Zorg ervoor dat assets geen gebruik maken van dit statuslabel en probeer het nogmaals. ', 'create' => [ diff --git a/resources/lang/nl/admin/statuslabels/table.php b/resources/lang/nl-NL/admin/statuslabels/table.php similarity index 100% rename from resources/lang/nl/admin/statuslabels/table.php rename to resources/lang/nl-NL/admin/statuslabels/table.php diff --git a/resources/lang/nl/admin/suppliers/message.php b/resources/lang/nl-NL/admin/suppliers/message.php similarity index 100% rename from resources/lang/nl/admin/suppliers/message.php rename to resources/lang/nl-NL/admin/suppliers/message.php diff --git a/resources/lang/nl/admin/suppliers/table.php b/resources/lang/nl-NL/admin/suppliers/table.php similarity index 100% rename from resources/lang/nl/admin/suppliers/table.php rename to resources/lang/nl-NL/admin/suppliers/table.php diff --git a/resources/lang/nl/admin/users/general.php b/resources/lang/nl-NL/admin/users/general.php similarity index 100% rename from resources/lang/nl/admin/users/general.php rename to resources/lang/nl-NL/admin/users/general.php diff --git a/resources/lang/nl/admin/users/message.php b/resources/lang/nl-NL/admin/users/message.php similarity index 100% rename from resources/lang/nl/admin/users/message.php rename to resources/lang/nl-NL/admin/users/message.php diff --git a/resources/lang/nl/admin/users/table.php b/resources/lang/nl-NL/admin/users/table.php similarity index 95% rename from resources/lang/nl/admin/users/table.php rename to resources/lang/nl-NL/admin/users/table.php index 9489fed759..3def722e30 100644 --- a/resources/lang/nl/admin/users/table.php +++ b/resources/lang/nl-NL/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Beheerde locaties', 'name' => 'Naam', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notities', 'password_confirm' => 'Bevestig uw wachtwoord', 'password' => 'Wachtwoord', diff --git a/resources/lang/nl/auth.php b/resources/lang/nl-NL/auth.php similarity index 100% rename from resources/lang/nl/auth.php rename to resources/lang/nl-NL/auth.php diff --git a/resources/lang/nl/auth/general.php b/resources/lang/nl-NL/auth/general.php similarity index 100% rename from resources/lang/nl/auth/general.php rename to resources/lang/nl-NL/auth/general.php diff --git a/resources/lang/nl/auth/message.php b/resources/lang/nl-NL/auth/message.php similarity index 100% rename from resources/lang/nl/auth/message.php rename to resources/lang/nl-NL/auth/message.php diff --git a/resources/lang/nl/button.php b/resources/lang/nl-NL/button.php similarity index 100% rename from resources/lang/nl/button.php rename to resources/lang/nl-NL/button.php diff --git a/resources/lang/nl/general.php b/resources/lang/nl-NL/general.php similarity index 97% rename from resources/lang/nl/general.php rename to resources/lang/nl-NL/general.php index a6cb74b9a1..7eaf344e29 100644 --- a/resources/lang/nl/general.php +++ b/resources/lang/nl-NL/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Geaccepteerde bestandstypen zijn jpg, webp, png, gif en svg. Maximale toegestane bestandsgrootte is :size.', 'unaccepted_image_type' => 'Dit afbeeldingsbestand is niet leesbaar. Geaccepteerde bestandstypen zijn jpg, webp, png, gif en svg. Het mimetype van dit bestand is: :mimetype.', 'import' => 'Importeer', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importeren', 'importing_help' => 'U kunt assets, accessoires, licenties, componenten, verbruiksartikelen en gebruikers importeren via het CSV-bestand.

De CSV moet door komma\'s worden gescheiden en met koppen die overeenkomen met de koppen in de voorbeeld CSV\'s in de documentatie.', 'import-history' => 'Import historie', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Kopiëren naar klembord', 'copied' => 'Gekopieerd!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'bewerk', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/nl/help.php b/resources/lang/nl-NL/help.php similarity index 100% rename from resources/lang/nl/help.php rename to resources/lang/nl-NL/help.php diff --git a/resources/lang/nl/localizations.php b/resources/lang/nl-NL/localizations.php similarity index 99% rename from resources/lang/nl/localizations.php rename to resources/lang/nl-NL/localizations.php index 80ea85b64d..a8979575be 100644 --- a/resources/lang/nl/localizations.php +++ b/resources/lang/nl-NL/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Iers', 'it'=> 'Italiaans', 'ja'=> 'Japans', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Koreaans', 'lv'=>'Lets', 'lt'=> 'Litouws', diff --git a/resources/lang/nl/mail.php b/resources/lang/nl-NL/mail.php similarity index 100% rename from resources/lang/nl/mail.php rename to resources/lang/nl-NL/mail.php diff --git a/resources/lang/nl/pagination.php b/resources/lang/nl-NL/pagination.php similarity index 100% rename from resources/lang/nl/pagination.php rename to resources/lang/nl-NL/pagination.php diff --git a/resources/lang/nl/passwords.php b/resources/lang/nl-NL/passwords.php similarity index 100% rename from resources/lang/nl/passwords.php rename to resources/lang/nl-NL/passwords.php diff --git a/resources/lang/nl/reminders.php b/resources/lang/nl-NL/reminders.php similarity index 100% rename from resources/lang/nl/reminders.php rename to resources/lang/nl-NL/reminders.php diff --git a/resources/lang/nl/table.php b/resources/lang/nl-NL/table.php similarity index 100% rename from resources/lang/nl/table.php rename to resources/lang/nl-NL/table.php diff --git a/resources/lang/nl/validation.php b/resources/lang/nl-NL/validation.php similarity index 99% rename from resources/lang/nl/validation.php rename to resources/lang/nl-NL/validation.php index 7b56a00214..4edbe2eb62 100644 --- a/resources/lang/nl/validation.php +++ b/resources/lang/nl-NL/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'De :attribute moet uniek zijn. ', 'non_circular' => ':attribute mag geen circulaire referentie aanmaken.', 'not_array' => ':attribute veld kan geen array zijn.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Wachtwoord kan niet hetzelfde zijn als de gebruikersnaam.', 'letters' => 'Wachtwoord moet ten minste één letter bevatten.', 'numbers' => 'Wachtwoord moet ten minste één cijfer bevatten.', diff --git a/resources/lang/no/account/general.php b/resources/lang/no-NO/account/general.php similarity index 100% rename from resources/lang/no/account/general.php rename to resources/lang/no-NO/account/general.php diff --git a/resources/lang/no/admin/accessories/general.php b/resources/lang/no-NO/admin/accessories/general.php similarity index 100% rename from resources/lang/no/admin/accessories/general.php rename to resources/lang/no-NO/admin/accessories/general.php diff --git a/resources/lang/no/admin/accessories/message.php b/resources/lang/no-NO/admin/accessories/message.php similarity index 100% rename from resources/lang/no/admin/accessories/message.php rename to resources/lang/no-NO/admin/accessories/message.php diff --git a/resources/lang/no/admin/accessories/table.php b/resources/lang/no-NO/admin/accessories/table.php similarity index 100% rename from resources/lang/no/admin/accessories/table.php rename to resources/lang/no-NO/admin/accessories/table.php diff --git a/resources/lang/no/admin/asset_maintenances/form.php b/resources/lang/no-NO/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/no/admin/asset_maintenances/form.php rename to resources/lang/no-NO/admin/asset_maintenances/form.php diff --git a/resources/lang/no/admin/asset_maintenances/general.php b/resources/lang/no-NO/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/no/admin/asset_maintenances/general.php rename to resources/lang/no-NO/admin/asset_maintenances/general.php diff --git a/resources/lang/no/admin/asset_maintenances/message.php b/resources/lang/no-NO/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/no/admin/asset_maintenances/message.php rename to resources/lang/no-NO/admin/asset_maintenances/message.php diff --git a/resources/lang/no/admin/asset_maintenances/table.php b/resources/lang/no-NO/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/no/admin/asset_maintenances/table.php rename to resources/lang/no-NO/admin/asset_maintenances/table.php diff --git a/resources/lang/no/admin/categories/general.php b/resources/lang/no-NO/admin/categories/general.php similarity index 100% rename from resources/lang/no/admin/categories/general.php rename to resources/lang/no-NO/admin/categories/general.php diff --git a/resources/lang/no/admin/categories/message.php b/resources/lang/no-NO/admin/categories/message.php similarity index 100% rename from resources/lang/no/admin/categories/message.php rename to resources/lang/no-NO/admin/categories/message.php diff --git a/resources/lang/no/admin/categories/table.php b/resources/lang/no-NO/admin/categories/table.php similarity index 100% rename from resources/lang/no/admin/categories/table.php rename to resources/lang/no-NO/admin/categories/table.php diff --git a/resources/lang/no/admin/companies/general.php b/resources/lang/no-NO/admin/companies/general.php similarity index 100% rename from resources/lang/no/admin/companies/general.php rename to resources/lang/no-NO/admin/companies/general.php diff --git a/resources/lang/no/admin/companies/message.php b/resources/lang/no-NO/admin/companies/message.php similarity index 100% rename from resources/lang/no/admin/companies/message.php rename to resources/lang/no-NO/admin/companies/message.php diff --git a/resources/lang/no/admin/companies/table.php b/resources/lang/no-NO/admin/companies/table.php similarity index 100% rename from resources/lang/no/admin/companies/table.php rename to resources/lang/no-NO/admin/companies/table.php diff --git a/resources/lang/no/admin/components/general.php b/resources/lang/no-NO/admin/components/general.php similarity index 100% rename from resources/lang/no/admin/components/general.php rename to resources/lang/no-NO/admin/components/general.php diff --git a/resources/lang/no/admin/components/message.php b/resources/lang/no-NO/admin/components/message.php similarity index 100% rename from resources/lang/no/admin/components/message.php rename to resources/lang/no-NO/admin/components/message.php diff --git a/resources/lang/no/admin/components/table.php b/resources/lang/no-NO/admin/components/table.php similarity index 100% rename from resources/lang/no/admin/components/table.php rename to resources/lang/no-NO/admin/components/table.php diff --git a/resources/lang/no/admin/consumables/general.php b/resources/lang/no-NO/admin/consumables/general.php similarity index 100% rename from resources/lang/no/admin/consumables/general.php rename to resources/lang/no-NO/admin/consumables/general.php diff --git a/resources/lang/no/admin/consumables/message.php b/resources/lang/no-NO/admin/consumables/message.php similarity index 100% rename from resources/lang/no/admin/consumables/message.php rename to resources/lang/no-NO/admin/consumables/message.php diff --git a/resources/lang/no/admin/consumables/table.php b/resources/lang/no-NO/admin/consumables/table.php similarity index 100% rename from resources/lang/no/admin/consumables/table.php rename to resources/lang/no-NO/admin/consumables/table.php diff --git a/resources/lang/no/admin/custom_fields/general.php b/resources/lang/no-NO/admin/custom_fields/general.php similarity index 100% rename from resources/lang/no/admin/custom_fields/general.php rename to resources/lang/no-NO/admin/custom_fields/general.php diff --git a/resources/lang/no/admin/custom_fields/message.php b/resources/lang/no-NO/admin/custom_fields/message.php similarity index 100% rename from resources/lang/no/admin/custom_fields/message.php rename to resources/lang/no-NO/admin/custom_fields/message.php diff --git a/resources/lang/no/admin/departments/message.php b/resources/lang/no-NO/admin/departments/message.php similarity index 100% rename from resources/lang/no/admin/departments/message.php rename to resources/lang/no-NO/admin/departments/message.php diff --git a/resources/lang/no/admin/departments/table.php b/resources/lang/no-NO/admin/departments/table.php similarity index 100% rename from resources/lang/no/admin/departments/table.php rename to resources/lang/no-NO/admin/departments/table.php diff --git a/resources/lang/no/admin/depreciations/general.php b/resources/lang/no-NO/admin/depreciations/general.php similarity index 100% rename from resources/lang/no/admin/depreciations/general.php rename to resources/lang/no-NO/admin/depreciations/general.php diff --git a/resources/lang/no/admin/depreciations/message.php b/resources/lang/no-NO/admin/depreciations/message.php similarity index 100% rename from resources/lang/no/admin/depreciations/message.php rename to resources/lang/no-NO/admin/depreciations/message.php diff --git a/resources/lang/no/admin/depreciations/table.php b/resources/lang/no-NO/admin/depreciations/table.php similarity index 100% rename from resources/lang/no/admin/depreciations/table.php rename to resources/lang/no-NO/admin/depreciations/table.php diff --git a/resources/lang/no/admin/groups/message.php b/resources/lang/no-NO/admin/groups/message.php similarity index 100% rename from resources/lang/no/admin/groups/message.php rename to resources/lang/no-NO/admin/groups/message.php diff --git a/resources/lang/no/admin/groups/table.php b/resources/lang/no-NO/admin/groups/table.php similarity index 100% rename from resources/lang/no/admin/groups/table.php rename to resources/lang/no-NO/admin/groups/table.php diff --git a/resources/lang/no/admin/groups/titles.php b/resources/lang/no-NO/admin/groups/titles.php similarity index 100% rename from resources/lang/no/admin/groups/titles.php rename to resources/lang/no-NO/admin/groups/titles.php diff --git a/resources/lang/no/admin/hardware/form.php b/resources/lang/no-NO/admin/hardware/form.php similarity index 100% rename from resources/lang/no/admin/hardware/form.php rename to resources/lang/no-NO/admin/hardware/form.php diff --git a/resources/lang/no/admin/hardware/general.php b/resources/lang/no-NO/admin/hardware/general.php similarity index 100% rename from resources/lang/no/admin/hardware/general.php rename to resources/lang/no-NO/admin/hardware/general.php diff --git a/resources/lang/no/admin/hardware/message.php b/resources/lang/no-NO/admin/hardware/message.php similarity index 100% rename from resources/lang/no/admin/hardware/message.php rename to resources/lang/no-NO/admin/hardware/message.php diff --git a/resources/lang/no/admin/hardware/table.php b/resources/lang/no-NO/admin/hardware/table.php similarity index 100% rename from resources/lang/no/admin/hardware/table.php rename to resources/lang/no-NO/admin/hardware/table.php diff --git a/resources/lang/no/admin/kits/general.php b/resources/lang/no-NO/admin/kits/general.php similarity index 100% rename from resources/lang/no/admin/kits/general.php rename to resources/lang/no-NO/admin/kits/general.php diff --git a/resources/lang/no/admin/labels/message.php b/resources/lang/no-NO/admin/labels/message.php similarity index 100% rename from resources/lang/no/admin/labels/message.php rename to resources/lang/no-NO/admin/labels/message.php diff --git a/resources/lang/no/admin/labels/table.php b/resources/lang/no-NO/admin/labels/table.php similarity index 100% rename from resources/lang/no/admin/labels/table.php rename to resources/lang/no-NO/admin/labels/table.php diff --git a/resources/lang/no/admin/licenses/form.php b/resources/lang/no-NO/admin/licenses/form.php similarity index 100% rename from resources/lang/no/admin/licenses/form.php rename to resources/lang/no-NO/admin/licenses/form.php diff --git a/resources/lang/no/admin/licenses/general.php b/resources/lang/no-NO/admin/licenses/general.php similarity index 100% rename from resources/lang/no/admin/licenses/general.php rename to resources/lang/no-NO/admin/licenses/general.php diff --git a/resources/lang/no/admin/licenses/message.php b/resources/lang/no-NO/admin/licenses/message.php similarity index 100% rename from resources/lang/no/admin/licenses/message.php rename to resources/lang/no-NO/admin/licenses/message.php diff --git a/resources/lang/no/admin/licenses/table.php b/resources/lang/no-NO/admin/licenses/table.php similarity index 100% rename from resources/lang/no/admin/licenses/table.php rename to resources/lang/no-NO/admin/licenses/table.php diff --git a/resources/lang/no/admin/locations/message.php b/resources/lang/no-NO/admin/locations/message.php similarity index 100% rename from resources/lang/no/admin/locations/message.php rename to resources/lang/no-NO/admin/locations/message.php diff --git a/resources/lang/no/admin/locations/table.php b/resources/lang/no-NO/admin/locations/table.php similarity index 97% rename from resources/lang/no/admin/locations/table.php rename to resources/lang/no-NO/admin/locations/table.php index 2bfe5779e1..bcb65ad098 100644 --- a/resources/lang/no/admin/locations/table.php +++ b/resources/lang/no-NO/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Skriv ut alle tilordnede', 'name' => 'Plasseringsnavn', 'address' => 'Adresse', - 'address2' => 'Address Line 2', + 'address2' => 'Adresselinje 2', 'zip' => 'Postnummer', 'locations' => 'Plasseringer', 'parent' => 'Overordnet', diff --git a/resources/lang/no/admin/manufacturers/message.php b/resources/lang/no-NO/admin/manufacturers/message.php similarity index 100% rename from resources/lang/no/admin/manufacturers/message.php rename to resources/lang/no-NO/admin/manufacturers/message.php diff --git a/resources/lang/no/admin/manufacturers/table.php b/resources/lang/no-NO/admin/manufacturers/table.php similarity index 100% rename from resources/lang/no/admin/manufacturers/table.php rename to resources/lang/no-NO/admin/manufacturers/table.php diff --git a/resources/lang/no/admin/models/general.php b/resources/lang/no-NO/admin/models/general.php similarity index 100% rename from resources/lang/no/admin/models/general.php rename to resources/lang/no-NO/admin/models/general.php diff --git a/resources/lang/no/admin/models/message.php b/resources/lang/no-NO/admin/models/message.php similarity index 100% rename from resources/lang/no/admin/models/message.php rename to resources/lang/no-NO/admin/models/message.php diff --git a/resources/lang/no/admin/models/table.php b/resources/lang/no-NO/admin/models/table.php similarity index 100% rename from resources/lang/no/admin/models/table.php rename to resources/lang/no-NO/admin/models/table.php diff --git a/resources/lang/no/admin/reports/general.php b/resources/lang/no-NO/admin/reports/general.php similarity index 100% rename from resources/lang/no/admin/reports/general.php rename to resources/lang/no-NO/admin/reports/general.php diff --git a/resources/lang/no/admin/reports/message.php b/resources/lang/no-NO/admin/reports/message.php similarity index 100% rename from resources/lang/no/admin/reports/message.php rename to resources/lang/no-NO/admin/reports/message.php diff --git a/resources/lang/no/admin/settings/general.php b/resources/lang/no-NO/admin/settings/general.php similarity index 99% rename from resources/lang/no/admin/settings/general.php rename to resources/lang/no-NO/admin/settings/general.php index 265d8d5515..3373d7c25c 100644 --- a/resources/lang/no/admin/settings/general.php +++ b/resources/lang/no-NO/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Bruker kreves ikke å skrive "brukernavn@domene.local", de kan bare skrive "brukernavn".', 'admin_cc_email' => 'CC e-post', 'admin_cc_email_help' => 'Hvis du vil sende en kopi av innsjekk-/utsjekkeposter som sendes til brukere til en ekstra epostadresse, skriv den inn her. La ellers feltet stå tomt.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Dette er en Active Directory server', 'alerts' => 'Varsler', 'alert_title' => 'Oppdater varslingsinnstillinger', diff --git a/resources/lang/no/admin/settings/message.php b/resources/lang/no-NO/admin/settings/message.php similarity index 100% rename from resources/lang/no/admin/settings/message.php rename to resources/lang/no-NO/admin/settings/message.php diff --git a/resources/lang/no/admin/settings/table.php b/resources/lang/no-NO/admin/settings/table.php similarity index 100% rename from resources/lang/no/admin/settings/table.php rename to resources/lang/no-NO/admin/settings/table.php diff --git a/resources/lang/no/admin/statuslabels/message.php b/resources/lang/no-NO/admin/statuslabels/message.php similarity index 97% rename from resources/lang/no/admin/statuslabels/message.php rename to resources/lang/no-NO/admin/statuslabels/message.php index 63d1e3d164..9c3264a94d 100644 --- a/resources/lang/no/admin/statuslabels/message.php +++ b/resources/lang/no-NO/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status-etiketten finnes ikke.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Denne status-etiketten er for øyeblikket i bruk på minst en eiendel, og kan ikke slettes. Vennligst endre dine eiendeler til å ikke bruke denne statusen, og prøv igjen. ', 'create' => [ diff --git a/resources/lang/no/admin/statuslabels/table.php b/resources/lang/no-NO/admin/statuslabels/table.php similarity index 100% rename from resources/lang/no/admin/statuslabels/table.php rename to resources/lang/no-NO/admin/statuslabels/table.php diff --git a/resources/lang/no/admin/suppliers/message.php b/resources/lang/no-NO/admin/suppliers/message.php similarity index 100% rename from resources/lang/no/admin/suppliers/message.php rename to resources/lang/no-NO/admin/suppliers/message.php diff --git a/resources/lang/no/admin/suppliers/table.php b/resources/lang/no-NO/admin/suppliers/table.php similarity index 100% rename from resources/lang/no/admin/suppliers/table.php rename to resources/lang/no-NO/admin/suppliers/table.php diff --git a/resources/lang/no/admin/users/general.php b/resources/lang/no-NO/admin/users/general.php similarity index 100% rename from resources/lang/no/admin/users/general.php rename to resources/lang/no-NO/admin/users/general.php diff --git a/resources/lang/no/admin/users/message.php b/resources/lang/no-NO/admin/users/message.php similarity index 100% rename from resources/lang/no/admin/users/message.php rename to resources/lang/no-NO/admin/users/message.php diff --git a/resources/lang/no/admin/users/table.php b/resources/lang/no-NO/admin/users/table.php similarity index 95% rename from resources/lang/no/admin/users/table.php rename to resources/lang/no-NO/admin/users/table.php index e912c49d4d..30d33362ad 100644 --- a/resources/lang/no/admin/users/table.php +++ b/resources/lang/no-NO/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Overordnet', 'managed_locations' => 'Administrere plasseringer', 'name' => 'Navn', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notater', 'password_confirm' => 'Bekreft passord', 'password' => 'Passord', diff --git a/resources/lang/no/auth.php b/resources/lang/no-NO/auth.php similarity index 100% rename from resources/lang/no/auth.php rename to resources/lang/no-NO/auth.php diff --git a/resources/lang/no/auth/general.php b/resources/lang/no-NO/auth/general.php similarity index 100% rename from resources/lang/no/auth/general.php rename to resources/lang/no-NO/auth/general.php diff --git a/resources/lang/no/auth/message.php b/resources/lang/no-NO/auth/message.php similarity index 100% rename from resources/lang/no/auth/message.php rename to resources/lang/no-NO/auth/message.php diff --git a/resources/lang/no/button.php b/resources/lang/no-NO/button.php similarity index 100% rename from resources/lang/no/button.php rename to resources/lang/no-NO/button.php diff --git a/resources/lang/no/general.php b/resources/lang/no-NO/general.php similarity index 97% rename from resources/lang/no/general.php rename to resources/lang/no-NO/general.php index a2d80385b3..6474733e41 100644 --- a/resources/lang/no/general.php +++ b/resources/lang/no-NO/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Tillatte filtyper er jpg, webp, png, gif, og svg. Maks filstørrelse er :size.', 'unaccepted_image_type' => 'Denne bildefilen var ikke lesbar. Aksepterte filtyper er jpg, webp, png, gif og svg. Mime-typen til denne filen er :mimetype.', 'import' => 'Importer', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importerer', 'importing_help' => 'Du kan importere eiendeler, tilbehør, lisenser, komponenter, forbruksvarer og brukere via CSV-fil.

CSV-en må være kommaseparert og formatert med overskrifter som stemmer overens med de i eksempel-CSV i dokumentasjonen.', 'import-history' => 'Importhistorikk', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Kopier til utklippstavlen', 'copied' => 'Kopiert!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'rediger', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/no/help.php b/resources/lang/no-NO/help.php similarity index 100% rename from resources/lang/no/help.php rename to resources/lang/no-NO/help.php diff --git a/resources/lang/no/localizations.php b/resources/lang/no-NO/localizations.php similarity index 99% rename from resources/lang/no/localizations.php rename to resources/lang/no-NO/localizations.php index ccb993e851..c27b3cc276 100644 --- a/resources/lang/no/localizations.php +++ b/resources/lang/no-NO/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irsk', 'it'=> 'Italiensk', 'ja'=> 'Japansk', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Koreansk', 'lv'=>'Latvisk', 'lt'=> 'Litauisk', diff --git a/resources/lang/no/mail.php b/resources/lang/no-NO/mail.php similarity index 100% rename from resources/lang/no/mail.php rename to resources/lang/no-NO/mail.php diff --git a/resources/lang/no/pagination.php b/resources/lang/no-NO/pagination.php similarity index 100% rename from resources/lang/no/pagination.php rename to resources/lang/no-NO/pagination.php diff --git a/resources/lang/no/passwords.php b/resources/lang/no-NO/passwords.php similarity index 100% rename from resources/lang/no/passwords.php rename to resources/lang/no-NO/passwords.php diff --git a/resources/lang/no/reminders.php b/resources/lang/no-NO/reminders.php similarity index 100% rename from resources/lang/no/reminders.php rename to resources/lang/no-NO/reminders.php diff --git a/resources/lang/no/table.php b/resources/lang/no-NO/table.php similarity index 100% rename from resources/lang/no/table.php rename to resources/lang/no-NO/table.php diff --git a/resources/lang/no/validation.php b/resources/lang/no-NO/validation.php similarity index 99% rename from resources/lang/no/validation.php rename to resources/lang/no-NO/validation.php index 0e7a5dd043..9854423f40 100644 --- a/resources/lang/no/validation.php +++ b/resources/lang/no-NO/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute må være unikt.', 'non_circular' => 'Attributtet :attribute kan ikke opprette en sirkulær referanse.', 'not_array' => ':attribute feltet kan ikke være en liste.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Passordet kan ikke være det samme som brukernavnet.', 'letters' => 'Passordet må inneholde minst en bokstav.', 'numbers' => 'Passordet må inneholde minst ett tall.', diff --git a/resources/lang/pl/account/general.php b/resources/lang/pl-PL/account/general.php similarity index 100% rename from resources/lang/pl/account/general.php rename to resources/lang/pl-PL/account/general.php diff --git a/resources/lang/pl/admin/accessories/general.php b/resources/lang/pl-PL/admin/accessories/general.php similarity index 89% rename from resources/lang/pl/admin/accessories/general.php rename to resources/lang/pl-PL/admin/accessories/general.php index 143b53ffc4..f4e8cca4c6 100644 --- a/resources/lang/pl/admin/accessories/general.php +++ b/resources/lang/pl-PL/admin/accessories/general.php @@ -17,6 +17,6 @@ return array( 'use_default_eula' => 'Użyj domyślnej EULA zamiast tego.', 'use_default_eula_disabled' => 'Użyj zamiast domyślnego EULA. Brak domyślnego EULA. Proszę dodaj jakieś w opcjach.', 'clone' => 'Klonuj Akcesoria', - 'delete_disabled' => 'This accessory cannot be deleted yet because some items are still checked out.', + 'delete_disabled' => 'To akcesorium nie może być jeszcze usunięte, ponieważ niektóre elementy są nadal zablokowane.', ); diff --git a/resources/lang/pl/admin/accessories/message.php b/resources/lang/pl-PL/admin/accessories/message.php similarity index 95% rename from resources/lang/pl/admin/accessories/message.php rename to resources/lang/pl-PL/admin/accessories/message.php index 2c394f6c3c..7b5e856bea 100644 --- a/resources/lang/pl/admin/accessories/message.php +++ b/resources/lang/pl-PL/admin/accessories/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Akcesorium [:id] nie istnieje.', - 'not_found' => 'That accessory was not found.', + 'not_found' => 'To akcesorium nie zostało znalezione.', 'assoc_users' => 'Akcesoria z tej kategorii zostały wydane do :count użytkowników. Zbierz akcesoria i spróbuj ponownie. ', 'create' => array( diff --git a/resources/lang/pl/admin/accessories/table.php b/resources/lang/pl-PL/admin/accessories/table.php similarity index 100% rename from resources/lang/pl/admin/accessories/table.php rename to resources/lang/pl-PL/admin/accessories/table.php diff --git a/resources/lang/pl/admin/asset_maintenances/form.php b/resources/lang/pl-PL/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/pl/admin/asset_maintenances/form.php rename to resources/lang/pl-PL/admin/asset_maintenances/form.php diff --git a/resources/lang/pl/admin/asset_maintenances/general.php b/resources/lang/pl-PL/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/pl/admin/asset_maintenances/general.php rename to resources/lang/pl-PL/admin/asset_maintenances/general.php diff --git a/resources/lang/pl/admin/asset_maintenances/message.php b/resources/lang/pl-PL/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/pl/admin/asset_maintenances/message.php rename to resources/lang/pl-PL/admin/asset_maintenances/message.php diff --git a/resources/lang/pl/admin/asset_maintenances/table.php b/resources/lang/pl-PL/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/pl/admin/asset_maintenances/table.php rename to resources/lang/pl-PL/admin/asset_maintenances/table.php diff --git a/resources/lang/pl/admin/categories/general.php b/resources/lang/pl-PL/admin/categories/general.php similarity index 100% rename from resources/lang/pl/admin/categories/general.php rename to resources/lang/pl-PL/admin/categories/general.php diff --git a/resources/lang/pl/admin/categories/message.php b/resources/lang/pl-PL/admin/categories/message.php similarity index 100% rename from resources/lang/pl/admin/categories/message.php rename to resources/lang/pl-PL/admin/categories/message.php diff --git a/resources/lang/pl/admin/categories/table.php b/resources/lang/pl-PL/admin/categories/table.php similarity index 100% rename from resources/lang/pl/admin/categories/table.php rename to resources/lang/pl-PL/admin/categories/table.php diff --git a/resources/lang/pl/admin/companies/general.php b/resources/lang/pl-PL/admin/companies/general.php similarity index 100% rename from resources/lang/pl/admin/companies/general.php rename to resources/lang/pl-PL/admin/companies/general.php diff --git a/resources/lang/pl/admin/companies/message.php b/resources/lang/pl-PL/admin/companies/message.php similarity index 95% rename from resources/lang/pl/admin/companies/message.php rename to resources/lang/pl-PL/admin/companies/message.php index b877eca58a..25a432c702 100644 --- a/resources/lang/pl/admin/companies/message.php +++ b/resources/lang/pl-PL/admin/companies/message.php @@ -2,7 +2,7 @@ return [ 'does_not_exist' => 'Wskazana firma nie istnieje.', - 'deleted' => 'Deleted company', + 'deleted' => 'Usunięta firma', 'assoc_users' => 'Wybrana kategoria jest obecnie powiązana z co najmniej jednym typem urządzenia i nie może zostać usunięta. Uaktualnij swoją listę modeli urządzeń by nie zwierała tej kategorii, a następnie spróbuj ponownie. ', 'create' => [ 'error' => 'Firma nie została utworzona, spróbuj ponownie.', diff --git a/resources/lang/pl/admin/companies/table.php b/resources/lang/pl-PL/admin/companies/table.php similarity index 100% rename from resources/lang/pl/admin/companies/table.php rename to resources/lang/pl-PL/admin/companies/table.php diff --git a/resources/lang/pl/admin/components/general.php b/resources/lang/pl-PL/admin/components/general.php similarity index 100% rename from resources/lang/pl/admin/components/general.php rename to resources/lang/pl-PL/admin/components/general.php diff --git a/resources/lang/pl/admin/components/message.php b/resources/lang/pl-PL/admin/components/message.php similarity index 90% rename from resources/lang/pl/admin/components/message.php rename to resources/lang/pl-PL/admin/components/message.php index e0e40b35fa..ceac0a95e9 100644 --- a/resources/lang/pl/admin/components/message.php +++ b/resources/lang/pl-PL/admin/components/message.php @@ -24,7 +24,7 @@ return array( 'error' => 'Składnik nie został wydany, spróbuj ponownie', 'success' => 'Składnik został wydany pomyślnie.', 'user_does_not_exist' => 'Nieprawidłowy użytkownik. Spróbuj ponownie.', - 'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ', + 'unavailable' => 'Niewystarczająca ilość pozostałych komponentów: :remaining pozostało, :requested żądano ', ), 'checkin' => array( diff --git a/resources/lang/pl/admin/components/table.php b/resources/lang/pl-PL/admin/components/table.php similarity index 100% rename from resources/lang/pl/admin/components/table.php rename to resources/lang/pl-PL/admin/components/table.php diff --git a/resources/lang/pl/admin/consumables/general.php b/resources/lang/pl-PL/admin/consumables/general.php similarity index 100% rename from resources/lang/pl/admin/consumables/general.php rename to resources/lang/pl-PL/admin/consumables/general.php diff --git a/resources/lang/pl/admin/consumables/message.php b/resources/lang/pl-PL/admin/consumables/message.php similarity index 100% rename from resources/lang/pl/admin/consumables/message.php rename to resources/lang/pl-PL/admin/consumables/message.php diff --git a/resources/lang/pl/admin/consumables/table.php b/resources/lang/pl-PL/admin/consumables/table.php similarity index 100% rename from resources/lang/pl/admin/consumables/table.php rename to resources/lang/pl-PL/admin/consumables/table.php diff --git a/resources/lang/pl/admin/custom_fields/general.php b/resources/lang/pl-PL/admin/custom_fields/general.php similarity index 83% rename from resources/lang/pl/admin/custom_fields/general.php rename to resources/lang/pl-PL/admin/custom_fields/general.php index f34b2c62ca..c07b0af457 100644 --- a/resources/lang/pl/admin/custom_fields/general.php +++ b/resources/lang/pl-PL/admin/custom_fields/general.php @@ -34,8 +34,8 @@ return [ 'create_field' => 'Nowe pole niestandardowe', 'create_field_title' => 'Utwórz pole niestandardowe', 'value_encrypted' => 'Wartość tego pola jest zaszyfrowana w bazie danych. Tylko admini będą mogli wyświetlić rozszyfrowaną wartość', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', - 'show_in_email_short' => 'Include in emails.', + 'show_in_email' => 'Czy podać wartość tego pola w e-mailach z przypisaniem, wysłanych do użytkownika? Zaszyfrowane pola nie mogą być zawarte w wiadomościach e-mail', + 'show_in_email_short' => 'Dołącz do wiadomości e-mail.', 'help_text' => 'Tekst pomocniczy', 'help_text_description' => 'Jest to tekst opcjonalny, który pojawi się pod elementami formularza podczas edycji zasobu w celu zapewnienia kontekstu.', 'about_custom_fields_title' => 'O polach niestandardowych', @@ -50,12 +50,12 @@ return [ 'unique' => 'Unikalny', 'display_in_user_view' => 'Zezwalaj zaznaczonemu użytkownikowi na wyświetlanie tych wartości na stronie Widok Przypisanych Zasobów', 'display_in_user_view_table' => 'Widoczne dla użytkownika', - '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', + 'auto_add_to_fieldsets' => 'Automatycznie dodaj to do każdego nowego zestawu pól', + 'add_to_preexisting_fieldsets' => 'Dodaj do dowolnego istniejącego zestawu pól', + 'show_in_listview' => 'Domyślnie pokazuj w widokach list. Autoryzowani użytkownicy nadal będą mogli pokazywać/ukrywać za pomocą selektora kolumn', + 'show_in_listview_short' => 'Pokaż na listach', '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.', + 'encrypted_options' => 'To pole jest zaszyfrowane, więc niektóre opcje wyświetlania nie będą dostępne.', ]; diff --git a/resources/lang/pl/admin/custom_fields/message.php b/resources/lang/pl-PL/admin/custom_fields/message.php similarity index 100% rename from resources/lang/pl/admin/custom_fields/message.php rename to resources/lang/pl-PL/admin/custom_fields/message.php diff --git a/resources/lang/pl/admin/departments/message.php b/resources/lang/pl-PL/admin/departments/message.php similarity index 100% rename from resources/lang/pl/admin/departments/message.php rename to resources/lang/pl-PL/admin/departments/message.php diff --git a/resources/lang/pl/admin/departments/table.php b/resources/lang/pl-PL/admin/departments/table.php similarity index 100% rename from resources/lang/pl/admin/departments/table.php rename to resources/lang/pl-PL/admin/departments/table.php diff --git a/resources/lang/pl/admin/depreciations/general.php b/resources/lang/pl-PL/admin/depreciations/general.php similarity index 100% rename from resources/lang/pl/admin/depreciations/general.php rename to resources/lang/pl-PL/admin/depreciations/general.php diff --git a/resources/lang/pl/admin/depreciations/message.php b/resources/lang/pl-PL/admin/depreciations/message.php similarity index 100% rename from resources/lang/pl/admin/depreciations/message.php rename to resources/lang/pl-PL/admin/depreciations/message.php diff --git a/resources/lang/pl/admin/depreciations/table.php b/resources/lang/pl-PL/admin/depreciations/table.php similarity index 100% rename from resources/lang/pl/admin/depreciations/table.php rename to resources/lang/pl-PL/admin/depreciations/table.php diff --git a/resources/lang/pl/admin/groups/message.php b/resources/lang/pl-PL/admin/groups/message.php similarity index 92% rename from resources/lang/pl/admin/groups/message.php rename to resources/lang/pl-PL/admin/groups/message.php index 55de7ce678..8fd79e784e 100644 --- a/resources/lang/pl/admin/groups/message.php +++ b/resources/lang/pl-PL/admin/groups/message.php @@ -3,7 +3,7 @@ return array( 'group_exists' => 'Taka grupa już istnieje!', - 'group_not_found' => 'Group ID :id does not exist.', + 'group_not_found' => 'ID grupy :id nie istnieje.', 'group_name_required' => 'Nazwa jest polem obowiązkowym', 'success' => array( diff --git a/resources/lang/pl/admin/groups/table.php b/resources/lang/pl-PL/admin/groups/table.php similarity index 100% rename from resources/lang/pl/admin/groups/table.php rename to resources/lang/pl-PL/admin/groups/table.php diff --git a/resources/lang/pl/admin/groups/titles.php b/resources/lang/pl-PL/admin/groups/titles.php similarity index 100% rename from resources/lang/pl/admin/groups/titles.php rename to resources/lang/pl-PL/admin/groups/titles.php diff --git a/resources/lang/pl/admin/hardware/form.php b/resources/lang/pl-PL/admin/hardware/form.php similarity index 93% rename from resources/lang/pl/admin/hardware/form.php rename to resources/lang/pl-PL/admin/hardware/form.php index 53a449d1b6..48dda203c3 100644 --- a/resources/lang/pl/admin/hardware/form.php +++ b/resources/lang/pl-PL/admin/hardware/form.php @@ -11,8 +11,8 @@ return [ 'bulk_update_help' => 'Ten formularz umożliwia zbiorczą aktualizację wielu aktywów na raz. Wypełnij tylko te pola, które chcesz zmienić. Puste pola pozostaną niezmienione. ', 'bulk_update_warn' => 'Zamierzasz edytować właściwości pojedynczego zasobu.|Zamierzasz edytować właściwości :asset_count zasobów.', 'bulk_update_with_custom_field' => 'Note the assets are :asset_model_count different types of models.', - 'bulk_update_model_prefix' => 'On Models', - 'bulk_update_custom_field_unique' => 'This is a unique field and can not be bulk edited.', + 'bulk_update_model_prefix' => 'Na modelach', + 'bulk_update_custom_field_unique' => 'To pole jest unikalne i nie może być edytowane zbiorczo.', 'checkedout_to' => 'Wypożyczony do', 'checkout_date' => 'Data przypisania', 'checkin_date' => 'Data przypisania', @@ -49,7 +49,7 @@ return [ 'asset_location' => 'Zaktualizuj lokalizację aktywa', 'asset_location_update_default_current' => 'Zaktualizuj domyślną i aktualną lokalizację', 'asset_location_update_default' => 'Zaktualizuj tylko domyślną lokalizację', - 'asset_location_update_actual' => 'Update only actual location', + 'asset_location_update_actual' => 'Aktualizuj tylko bieżącą lokalizację', 'asset_not_deployable' => 'Ten status oznacza brak możliwości wdrożenia. Ten zasób nie może zostać przypisany.', 'asset_deployable' => 'Ten status oznacza możliwość wdrożenia. Ten zasób może zostać przypisany.', 'processing_spinner' => 'Przetwarzanie... (To może zająć trochę czasu dla dużych plików)', diff --git a/resources/lang/pl/admin/hardware/general.php b/resources/lang/pl-PL/admin/hardware/general.php similarity index 96% rename from resources/lang/pl/admin/hardware/general.php rename to resources/lang/pl-PL/admin/hardware/general.php index 6710b05c83..3e6da0a196 100644 --- a/resources/lang/pl/admin/hardware/general.php +++ b/resources/lang/pl-PL/admin/hardware/general.php @@ -4,7 +4,7 @@ return [ 'about_assets_title' => 'O Aktywach', 'about_assets_text' => 'Aktywa są to elementy identyfikowane przez numer seryjny lub etykietę. Są to przedmioty o większej wartości, gdzie liczy się identyfikacji określonego elementu.', 'archived' => 'Zarchiwizowane', - 'asset' => 'Nabytek', + 'asset' => 'Aktywo', 'bulk_checkout' => 'Przypisz aktywa', 'bulk_checkin' => 'Przyjmij aktywa', 'checkin' => 'Potwierdzanie zasobu/aktywa', @@ -37,7 +37,7 @@ return [

Data zaewidencjonowania: puste lub przyszłe daty zaewidencjonowania spowodują wyewidencjonowanie przedmiotów dla powiązanego użytkownika. Wykluczenie kolumny Data zameldowania spowoduje utworzenie daty zameldowania z dzisiejszą datą.

', 'csv_import_match_f-l' => 'Spróbuj dopasować użytkowników przez imię.nazwisko (jan.kowalski)', 'csv_import_match_initial_last' => 'Spróbuj dopasować użytkowników przez pierwszą literę imienia i nazwisko (jkowalski)', - 'csv_import_match_first' => 'Spróbuj dopasować użytkowników według formatu imienia (jane)', + 'csv_import_match_first' => 'Spróbuj dopasować użytkowników według formatu imienia (jan)', 'csv_import_match_email' => 'Spróbuj dopasować użytkowników po adresie e-mail', 'csv_import_match_username' => 'Spróbuj dopasować użytkowników po nazwie użytkownika', 'error_messages' => 'Komunikat błędu:', @@ -45,5 +45,5 @@ return [ 'alert_details' => 'Więcej szczegółów znajduje się poniżej.', 'custom_export' => 'Eksport niestandardowy', 'mfg_warranty_lookup' => ':Producent Wyszukiwarka Statusu Gwarancji', - 'user_department' => 'User Department', + 'user_department' => 'Departament użytkownika', ]; diff --git a/resources/lang/pl/admin/hardware/message.php b/resources/lang/pl-PL/admin/hardware/message.php similarity index 95% rename from resources/lang/pl/admin/hardware/message.php rename to resources/lang/pl-PL/admin/hardware/message.php index e851a8670d..0f890f5578 100644 --- a/resources/lang/pl/admin/hardware/message.php +++ b/resources/lang/pl-PL/admin/hardware/message.php @@ -11,7 +11,7 @@ return [ 'create' => [ 'error' => 'Nabytek nie został utworzony, proszę spróbować ponownie. :(', 'success' => 'Nowy nabytek został utworzony. :)', - 'success_linked' => 'Asset with tag :tag was created successfully. Click here to view.', + 'success_linked' => 'Zasób o tagu :tag został utworzony pomyślnie. Kliknij tutaj, aby wyświetlić.', ], 'update' => [ @@ -52,7 +52,7 @@ return [ 'success' => 'Twój plik został zaimportowany', 'file_delete_success' => 'Twój plik został poprawnie usunięty', 'file_delete_error' => 'Plik nie może zostać usunięty', - 'file_missing' => 'The file selected is missing', + 'file_missing' => 'Brakuje wybranego pliku', 'header_row_has_malformed_characters' => 'Jeden lub więcej atrybutów w wierszu nagłówka zawiera nieprawidłowe znaki UTF-8', 'content_row_has_malformed_characters' => 'Jeden lub więcej atrybutów w pierwszym rzędzie zawartości zawiera nieprawidłowe znaki UTF-8', ], diff --git a/resources/lang/pl/admin/hardware/table.php b/resources/lang/pl-PL/admin/hardware/table.php similarity index 100% rename from resources/lang/pl/admin/hardware/table.php rename to resources/lang/pl-PL/admin/hardware/table.php diff --git a/resources/lang/pl/admin/kits/general.php b/resources/lang/pl-PL/admin/kits/general.php similarity index 87% rename from resources/lang/pl/admin/kits/general.php rename to resources/lang/pl-PL/admin/kits/general.php index b5f292e150..1e39770423 100644 --- a/resources/lang/pl/admin/kits/general.php +++ b/resources/lang/pl-PL/admin/kits/general.php @@ -15,12 +15,12 @@ return [ 'none_accessory' => 'Brak wystarczającej liczby dostępnych jednostek z :accessory do zamówienia. :qty są wymagane. ', 'append_accessory' => 'Dołącz Akcesoria', 'update_appended_accessory' => 'Aktualizuj załączone Akcesoria', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', + 'append_consumable' => 'Dołącz materiały eksploatacyjne', + 'update_appended_consumable' => 'Aktualizuj załączone materiały eksploatacyjne', 'append_license' => 'Dołącz licencję', 'update_appended_license' => 'Zaktualizuj załączone licencje', 'append_model' => 'Dołącz model', - 'update_appended_model' => 'Update appended model', + 'update_appended_model' => 'Aktualizuj dołączony model', 'license_error' => 'Licencja została już dołączona do zestawu', 'license_added_success' => 'Licencja została pomyślnie dodana', 'license_updated' => 'Licencja zaktualizowana pomyślnie', @@ -28,13 +28,13 @@ return [ 'license_detached' => 'Licencja została pomyślnie odłączona', 'consumable_added_success' => 'Materiał eksploatacyjny został pomyślnie dodany', 'consumable_updated' => 'Materiał eksploatacyjny zaktualizowany pomyślnie', - 'consumable_error' => 'Consumable already attached to kit', + 'consumable_error' => 'Materiały eksploatacyjne już dołączone do zestawu', 'consumable_deleted' => 'Usuwanie zakończone powodzeniem', 'consumable_none' => 'Materiał eksploatacyjny nie istnieje', - 'consumable_detached' => 'Consumable was successfully detached', + 'consumable_detached' => 'Materiał eksploatacyjny został pomyślnie odłączony', 'accessory_added_success' => 'Pomyślnie dodano akcesorium', 'accessory_updated' => 'Akcesorium zaktualizowano pomyślnie', - 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_detached' => 'Akcesoria zostały pomyślnie odłączone', 'accessory_error' => 'Akcesoria są już dołączone do zestawu', 'accessory_deleted' => 'Usuwanie zakończone powodzeniem', 'accessory_none' => 'Akcesorium nie istnieje', diff --git a/resources/lang/pl/admin/labels/message.php b/resources/lang/pl-PL/admin/labels/message.php similarity index 100% rename from resources/lang/pl/admin/labels/message.php rename to resources/lang/pl-PL/admin/labels/message.php diff --git a/resources/lang/pl/admin/labels/table.php b/resources/lang/pl-PL/admin/labels/table.php similarity index 100% rename from resources/lang/pl/admin/labels/table.php rename to resources/lang/pl-PL/admin/labels/table.php diff --git a/resources/lang/pl/admin/licenses/form.php b/resources/lang/pl-PL/admin/licenses/form.php similarity index 100% rename from resources/lang/pl/admin/licenses/form.php rename to resources/lang/pl-PL/admin/licenses/form.php diff --git a/resources/lang/pl/admin/licenses/general.php b/resources/lang/pl-PL/admin/licenses/general.php similarity index 92% rename from resources/lang/pl/admin/licenses/general.php rename to resources/lang/pl-PL/admin/licenses/general.php index a583b53729..0fd5694ed3 100644 --- a/resources/lang/pl/admin/licenses/general.php +++ b/resources/lang/pl-PL/admin/licenses/general.php @@ -37,9 +37,9 @@ return array( 'enabled_tooltip' => 'Checkout ALL seats (or as many as are available) to ALL users', 'disabled_tooltip' => 'This is disabled because there are no seats currently available', 'success' => 'License successfully checked out! | :count licenses were successfully checked out!', - 'error_no_seats' => 'There are no remaining seats left for this license.', + 'error_no_seats' => 'Nie ma pozostałych miejsc dla tej licencji.', 'warn_not_enough_seats' => ':count users were assigned this license, but we ran out of available license seats.', - 'warn_no_avail_users' => 'Nothing to do. There are no users who do not already have this license assigned to them.', + 'warn_no_avail_users' => 'Nic do zrobienia. Nie ma żadnych użytkowników, którzy nie mają jeszcze przypisanej im tej licencji.', 'log_msg' => 'Checked out via bulk license checkout in license GUI', diff --git a/resources/lang/pl/admin/licenses/message.php b/resources/lang/pl-PL/admin/licenses/message.php similarity index 97% rename from resources/lang/pl/admin/licenses/message.php rename to resources/lang/pl-PL/admin/licenses/message.php index 17af103cb1..94aa251fc2 100644 --- a/resources/lang/pl/admin/licenses/message.php +++ b/resources/lang/pl-PL/admin/licenses/message.php @@ -9,7 +9,7 @@ return array( 'assoc_users' => 'Ten nabytek/zasób jest przypisany do użytkownika i nie może być usunięty. Proszę sprawdzić przypisanie nabytków/zasobów a następnie spróbować ponownie. ', 'select_asset_or_person' => 'Musisz wybrać składnik aktywów lub użytkownika, ale nie oba.', 'not_found' => 'Licencja nie została znaleziona', - 'seats_available' => ':seat_count seats available', + 'seats_available' => ':seat_count dostępnych miejsc', 'create' => array( diff --git a/resources/lang/pl/admin/licenses/table.php b/resources/lang/pl-PL/admin/licenses/table.php similarity index 100% rename from resources/lang/pl/admin/licenses/table.php rename to resources/lang/pl-PL/admin/licenses/table.php diff --git a/resources/lang/pl/admin/locations/message.php b/resources/lang/pl-PL/admin/locations/message.php similarity index 100% rename from resources/lang/pl/admin/locations/message.php rename to resources/lang/pl-PL/admin/locations/message.php diff --git a/resources/lang/pl/admin/locations/table.php b/resources/lang/pl-PL/admin/locations/table.php similarity index 100% rename from resources/lang/pl/admin/locations/table.php rename to resources/lang/pl-PL/admin/locations/table.php diff --git a/resources/lang/pl/admin/manufacturers/message.php b/resources/lang/pl-PL/admin/manufacturers/message.php similarity index 76% rename from resources/lang/pl/admin/manufacturers/message.php rename to resources/lang/pl-PL/admin/manufacturers/message.php index 5bf39f4886..1dfa13a347 100644 --- a/resources/lang/pl/admin/manufacturers/message.php +++ b/resources/lang/pl-PL/admin/manufacturers/message.php @@ -2,7 +2,7 @@ return array( - 'support_url_help' => 'Variables {LOCALE}, {SERIAL}, {MODEL_NUMBER}, and {MODEL_NAME} may be used in your URL to have those values auto-populate when viewing assets - for example https://support.apple.com/{LOCALE}/{SERIAL}.', + 'support_url_help' => 'Zmienne {LOCALE}, {SERIAL}, {MODEL_NUMBER}, i {MODEL_NAME} może być używany w Twoim adresie URL, aby wartości te były automatycznie wypełniane podczas oglądania aktywów - na przykład https://support.apple.com/{LOCALE}/{SERIAL}.', 'does_not_exist' => 'Producent nie istnieje.', 'assoc_users' => 'Wybrany producent jest obecnie skojarzony z minimum jednym modelem i nie może zostać usunięty. Uaktualnij swoją listę modeli urządzeń by nie zawierała tego producenta, a następnie spróbuj ponownie. ', diff --git a/resources/lang/pl/admin/manufacturers/table.php b/resources/lang/pl-PL/admin/manufacturers/table.php similarity index 91% rename from resources/lang/pl/admin/manufacturers/table.php rename to resources/lang/pl-PL/admin/manufacturers/table.php index f07e8c02ad..53ce7e8cb5 100644 --- a/resources/lang/pl/admin/manufacturers/table.php +++ b/resources/lang/pl-PL/admin/manufacturers/table.php @@ -10,7 +10,7 @@ return array( 'support_email' => 'Email wsparcia technicznego', 'support_phone' => 'Telefon wsparcia technicznego', 'support_url' => 'Adres WWW wsparcia technicznego', - 'warranty_lookup_url' => 'Warranty Lookup URL', + 'warranty_lookup_url' => 'Adres URL wyszukiwania gwarancji', 'update' => 'Zaktualizuj Producenta', 'url' => 'Adres WWW', diff --git a/resources/lang/pl/admin/models/general.php b/resources/lang/pl-PL/admin/models/general.php similarity index 100% rename from resources/lang/pl/admin/models/general.php rename to resources/lang/pl-PL/admin/models/general.php diff --git a/resources/lang/pl/admin/models/message.php b/resources/lang/pl-PL/admin/models/message.php similarity index 83% rename from resources/lang/pl/admin/models/message.php rename to resources/lang/pl-PL/admin/models/message.php index c28b07a73f..4942d97e43 100644 --- a/resources/lang/pl/admin/models/message.php +++ b/resources/lang/pl-PL/admin/models/message.php @@ -33,14 +33,14 @@ return array( 'bulkedit' => array( 'error' => 'Żadne pole nie zostało zmodyfikowane, więc nic nie zostało zaktualizowane.', - 'success' => 'Model successfully updated. |:model_count models successfully updated.', - 'warn' => 'You are about to update the properies of the following model: |You are about to edit the properties of the following :model_count models:', + 'success' => 'Model pomyślnie zaktualizowany. |:model_count modele pomyślnie zaktualizowane.', + 'warn' => 'Zamierzasz zaktualizować właściwości następującego modelu: |Zamierzasz edytować właściwości następujących modeli :model_count:', ), 'bulkdelete' => array( 'error' => 'Nie wybrano modeli, więc nic nie zostało usunięte.', - 'success' => 'Model deleted!|:success_count models deleted!', + 'success' => 'Model usunięty!|:success_count modele usunięte!', 'success_partial' => ':success_count model(i) zostało usuniętych, jednakże :fail_count nie udało się usunąć, ponieważ wciąż są powiązane z nimi zasoby.' ), diff --git a/resources/lang/pl/admin/models/table.php b/resources/lang/pl-PL/admin/models/table.php similarity index 100% rename from resources/lang/pl/admin/models/table.php rename to resources/lang/pl-PL/admin/models/table.php diff --git a/resources/lang/pl/admin/reports/general.php b/resources/lang/pl-PL/admin/reports/general.php similarity index 100% rename from resources/lang/pl/admin/reports/general.php rename to resources/lang/pl-PL/admin/reports/general.php diff --git a/resources/lang/pl/admin/reports/message.php b/resources/lang/pl-PL/admin/reports/message.php similarity index 100% rename from resources/lang/pl/admin/reports/message.php rename to resources/lang/pl-PL/admin/reports/message.php diff --git a/resources/lang/pl/admin/settings/general.php b/resources/lang/pl-PL/admin/settings/general.php similarity index 97% rename from resources/lang/pl/admin/settings/general.php rename to resources/lang/pl-PL/admin/settings/general.php index 435fedafc4..541c7aa727 100644 --- a/resources/lang/pl/admin/settings/general.php +++ b/resources/lang/pl-PL/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Użytkownik nie jest wymagany do wpisywania "username@domain.local", może po prostu wpisać "username".', 'admin_cc_email' => 'Kopia', 'admin_cc_email_help' => 'Jeśli chcesz otrzymywać kopię e-maili przypisań wysyłanych do użytkowników na dodatkowy adres e-mail, wpisz go tutaj. W przeciwnym razie zostaw to pole puste.', + 'admin_settings' => 'Ustawienia administratora', 'is_ad' => 'To jest serwer Active Directory', 'alerts' => 'Powiadomienia', 'alert_title' => 'Aktualizuj ustawienia powiadomień', @@ -297,10 +298,10 @@ return [ 'general_title' => 'Aktualizuj ustawienia ogólne', 'mail_test' => 'Wyślij wiadomość testową', 'mail_test_help' => 'Spowoduje to próbę wysłania wiadomości testowej do :replyto.', - 'filter_by_keyword' => 'Filter by setting keyword', + 'filter_by_keyword' => 'Filtruj przez ustawienie słowa kluczowego', 'security' => 'Bezpieczeństwo', 'security_title' => 'Aktualizuj ustawienia zabezpieczeń', - 'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication', + 'security_keywords' => 'hasło, hasła, wymagania, dwuskładnikowe, dwuskładnikowe, wspólne hasła, zdalne logowanie, wylogowanie, uwierzytelnianie', 'security_help' => 'Weryfikacja dwuetapowa, wymagania haseł', 'groups_keywords' => 'uprawnienia, grupy uprawnień, autoryzacje', 'groups_help' => 'Grupy uprawnień', @@ -324,7 +325,7 @@ return [ 'create_admin_success' => 'Sukces! Twój użytkownik administratracyjny został dodany!', 'create_admin_redirect' => 'Kliknij tutaj, aby przejść do logowania aplikacji!', 'setup_migrations' => 'Migracje bazy danych ::', - 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', + 'setup_no_migrations' => 'Nie było nic do migracji. Twoje tabele bazy danych zostały już skonfigurowane!', 'setup_successful_migrations' => 'Twoje tabele bazy danych zostały utworzone', 'setup_migration_output' => 'Wyniki migracji:', 'setup_migration_create_user' => 'Następnie: Stwórz użytkownika', @@ -349,16 +350,16 @@ return [ 'label2_fields_help' => 'Pola mogą być dodawane, usuwane i przesuwane w lewej kolumnie. Dla każdego pola wiele opcji etykiet i źródeł danych może być dodawanych, usuwanych i zmienianych w prawej kolumnie.', 'help_asterisk_bold' => 'Tekst wprowadzony jako **text** będzie wyświetlany jako pogrubiony', 'help_blank_to_use' => 'Pozostaw puste, aby użyć wartości z :setting_name', - 'help_default_will_use' => ':default will use the value from :setting_name.
Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see the documentation for more details. ', + 'help_default_will_use' => ':default użyje wartości z :setting_name.
Zauważ, że wartość kodów kreskowych musi być zgodna z odpowiednią specyfikacją kodu kreskowego, aby mogła zostać wygenerowana. Aby uzyskać więcej informacji zapoznaj się z dokumentacją . ', 'default' => 'Domyślny', 'none' => 'Brak', 'google_callback_help' => 'Należy go wprowadzić jako adres URL wywołania zwrotnego w ustawieniach aplikacji Google OAuth w 's konsoli programisty Google .', 'google_login' => 'Ustawienia logowania Google Workspace', 'enable_google_login' => 'Włącz logowanie przez Google Workspace', 'enable_google_login_help' => 'Użytkownicy nie będą automatycznie tworzeni. Muszą mieć istniejące konto tutaj i w Google Workspace, a ich nazwa użytkownika musi pasować do ich adresu e-mail w obszarze roboczym Google. ', - 'mail_reply_to' => 'Mail Reply-To Address', - 'mail_from' => 'Mail From Address', - 'database_driver' => 'Database Driver', + 'mail_reply_to' => 'Adres e-mail odpowiedzi', + 'mail_from' => 'Adres nadawcy', + 'database_driver' => 'Sterownik bazy danych', 'bs_table_storage' => 'Table Storage', 'timezone' => 'Strefa czasowa', diff --git a/resources/lang/pl/admin/settings/message.php b/resources/lang/pl-PL/admin/settings/message.php similarity index 90% rename from resources/lang/pl/admin/settings/message.php rename to resources/lang/pl-PL/admin/settings/message.php index 0557cc4a99..7aa9389e36 100644 --- a/resources/lang/pl/admin/settings/message.php +++ b/resources/lang/pl-PL/admin/settings/message.php @@ -35,12 +35,12 @@ return [ ], 'webhook' => [ 'sending' => 'Wysyłanie wiadomości testowej :app...', - 'success' => 'Your :webhook_name Integration works!', + 'success' => 'Twoja integracja :webhook_name działa!', 'success_pt1' => 'Sukces! Sprawdź ', 'success_pt2' => ' kanał wiadomości testowej i pamiętaj, aby kliknąć ZAPISZ poniżej, aby zapisać ustawienia.', '500' => 'Błąd 500 serwera.', 'error' => 'Coś poszło nie tak. :app odpowiedział: :error_message', - 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', + 'error_redirect' => 'BŁĄD: 301/302 :endpoint zwraca przekierowanie. Ze względów bezpieczeństwa nie podążamy za przekierowaniami. Proszę użyć aktualnego punktu końcowego.', 'error_misc' => 'Coś poszło nie tak. :( ', ] ]; diff --git a/resources/lang/pl/admin/settings/table.php b/resources/lang/pl-PL/admin/settings/table.php similarity index 100% rename from resources/lang/pl/admin/settings/table.php rename to resources/lang/pl-PL/admin/settings/table.php diff --git a/resources/lang/pl/admin/statuslabels/message.php b/resources/lang/pl-PL/admin/statuslabels/message.php similarity index 97% rename from resources/lang/pl/admin/statuslabels/message.php rename to resources/lang/pl-PL/admin/statuslabels/message.php index 44e54c4dc6..d74dd333eb 100644 --- a/resources/lang/pl/admin/statuslabels/message.php +++ b/resources/lang/pl-PL/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status etykiety nie istnieje.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Status etykiety jest skojarzony z minimum jednym aktywem i nie może być usunięty. Uaktualnij aktywa tak aby nie było relacji z tym statusem i spróbuj ponownie. ', 'create' => [ diff --git a/resources/lang/pl/admin/statuslabels/table.php b/resources/lang/pl-PL/admin/statuslabels/table.php similarity index 100% rename from resources/lang/pl/admin/statuslabels/table.php rename to resources/lang/pl-PL/admin/statuslabels/table.php diff --git a/resources/lang/pl/admin/suppliers/message.php b/resources/lang/pl-PL/admin/suppliers/message.php similarity index 97% rename from resources/lang/pl/admin/suppliers/message.php rename to resources/lang/pl-PL/admin/suppliers/message.php index da791f9ec2..0725a2fd64 100644 --- a/resources/lang/pl/admin/suppliers/message.php +++ b/resources/lang/pl-PL/admin/suppliers/message.php @@ -2,7 +2,7 @@ return array( - 'deleted' => 'Deleted supplier', + 'deleted' => 'Usunięty dostawca', 'does_not_exist' => 'Dostawca nie istnieje.', diff --git a/resources/lang/pl/admin/suppliers/table.php b/resources/lang/pl-PL/admin/suppliers/table.php similarity index 100% rename from resources/lang/pl/admin/suppliers/table.php rename to resources/lang/pl-PL/admin/suppliers/table.php diff --git a/resources/lang/pl/admin/users/general.php b/resources/lang/pl-PL/admin/users/general.php similarity index 94% rename from resources/lang/pl/admin/users/general.php rename to resources/lang/pl-PL/admin/users/general.php index 5837085648..73cd5d4fa7 100644 --- a/resources/lang/pl/admin/users/general.php +++ b/resources/lang/pl-PL/admin/users/general.php @@ -43,12 +43,12 @@ return [ 'remote_help' => 'Może być przydatne, jeśli chciałbyś filtrować po użytkownikach zdalnych, którzy nigdy lub rzadko są fizycznie w twojej lokalizacji.', 'not_remote_label' => 'To nie jest zdalny użytkownik', 'vip_label' => 'Użytkownik VIP', - 'vip_help' => 'This can be helpful to mark important people in your org if you would like to handle them in special ways.', + 'vip_help' => 'To może być pomocne w oznaczaniu ważnych osób w Twojej organizacji, jeśli chcesz obsługiwać je w specjalny sposób.', 'create_user' => 'Utwórz użytkownika', 'create_user_page_explanation' => 'To są informacje o koncie, których użyjesz, aby uzyskać dostęp do strony po raz pierwszy.', 'email_credentials' => 'Dane uwierzytelniające e-mail', 'email_credentials_text' => 'Wyślij moje poświadczenia na powyższy adres e-mail', 'next_save_user' => 'Następnie: Zapisz użytkownika', 'all_assigned_list_generation' => 'Data wygenerowania:', - 'email_user_creds_on_create' => 'Email this user their credentials?', + 'email_user_creds_on_create' => 'Czy wysłać temu użytkownikowi dane logowania mailem?', ]; diff --git a/resources/lang/pl/admin/users/message.php b/resources/lang/pl-PL/admin/users/message.php similarity index 97% rename from resources/lang/pl/admin/users/message.php rename to resources/lang/pl-PL/admin/users/message.php index ad63d89dff..959c756cf4 100644 --- a/resources/lang/pl/admin/users/message.php +++ b/resources/lang/pl-PL/admin/users/message.php @@ -16,7 +16,7 @@ return array( 'password_resets_sent' => 'Wybrani użytkownicy, którzy są aktywni i mają prawidłowe adresy e-mail, otrzymali link do resetowania hasła.', 'password_reset_sent' => 'Link umożliwiający zresetowanie hasła został wysłany na :email!', 'user_has_no_email' => 'Ten użytkownik nie ma adresu e-mail w swoim profilu.', - 'log_record_not_found' => 'A matching log record for this user could not be found.', + 'log_record_not_found' => 'Nie można znaleźć pasującego rekordu dziennika dla tego użytkownika.', 'success' => array( diff --git a/resources/lang/pl/admin/users/table.php b/resources/lang/pl-PL/admin/users/table.php similarity index 94% rename from resources/lang/pl/admin/users/table.php rename to resources/lang/pl-PL/admin/users/table.php index ac4fef804b..747acb0984 100644 --- a/resources/lang/pl/admin/users/table.php +++ b/resources/lang/pl-PL/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Kierownik', 'managed_locations' => 'Zarządzane lokalizacje', 'name' => 'Nazwa', + 'nogroup' => 'Nie utworzono jeszcze żadnych grup. Aby dodać jedną, odwiedź: ', 'notes' => 'Uwagi', 'password_confirm' => 'Potwierdź hasło', 'password' => 'Hasło', diff --git a/resources/lang/pl/auth.php b/resources/lang/pl-PL/auth.php similarity index 100% rename from resources/lang/pl/auth.php rename to resources/lang/pl-PL/auth.php diff --git a/resources/lang/pl/auth/general.php b/resources/lang/pl-PL/auth/general.php similarity index 100% rename from resources/lang/pl/auth/general.php rename to resources/lang/pl-PL/auth/general.php diff --git a/resources/lang/pl/auth/message.php b/resources/lang/pl-PL/auth/message.php similarity index 100% rename from resources/lang/pl/auth/message.php rename to resources/lang/pl-PL/auth/message.php diff --git a/resources/lang/pl/button.php b/resources/lang/pl-PL/button.php similarity index 100% rename from resources/lang/pl/button.php rename to resources/lang/pl-PL/button.php diff --git a/resources/lang/pl/general.php b/resources/lang/pl-PL/general.php similarity index 92% rename from resources/lang/pl/general.php rename to resources/lang/pl-PL/general.php index 5f71764862..e457866f39 100644 --- a/resources/lang/pl/general.php +++ b/resources/lang/pl-PL/general.php @@ -72,7 +72,7 @@ return [ 'consumable' => 'Materiał eksploatacyjny', 'consumables' => 'Materiały eksploatacyjne', 'country' => 'Kraj', - 'could_not_restore' => 'Error restoring :item_type: :error', + 'could_not_restore' => 'Wystąpił błąd podczas przywracania :item_type: :error', 'not_deleted' => 'The :item_type is not deleted so it cannot be restored', 'create' => 'Utwórz nowe', 'created' => 'Utworzony element', @@ -94,7 +94,7 @@ return [ 'debug_warning_text' => 'Ta aplikacja jest uruchomiona w trybie produkcyjnym z włączonym debugowaniem. Jeśli aplikacja jest dostępna na zewnątrz, może to zagrażać ujawnieniem wrażliwych danych. Wyłącz tryb debugowania przez ustawienie wartości APP_DEBUG w pliku .env na false.', 'delete' => 'Kasuj', 'delete_confirm' => 'Czy na pewno chcesz usunąć :przedmiot?', - 'delete_confirm_no_undo' => 'Are you sure you wish to delete :item? This can not be undone.', + 'delete_confirm_no_undo' => 'Czy na pewno chcesz usunąć :item? Nie można tego cofnąć.', 'deleted' => 'Usunięte', 'delete_seats' => 'Usunięte miejsca', 'deletion_failed' => 'Usunięcie nieudane', @@ -118,18 +118,18 @@ return [ 'exclude_deleted' => 'Wyklucz usunięte zasoby', 'example' => 'Przykład: ', 'filastname_format' => 'Pierwsza litera imienia i nazwisko (jsmith@example.com)', - 'firstname_lastname_format' => 'Imię nazwisko (jane.smith@example.com)', - 'firstname_lastname_underscore_format' => 'Imię Nazwisko (pawel@example.com)', - 'lastnamefirstinitial_format' => 'Nazwisko i pierwsza litera imienia (np. smithj@example.com)', + 'firstname_lastname_format' => 'Imię i nazwisko (jane.smith@example.com)', + 'firstname_lastname_underscore_format' => 'Imię i Nazwisko (pawel@example.com)', + 'lastnamefirstinitial_format' => 'Nazwisko i pierwsza litera imienia (smithj@example.com)', 'firstintial_dot_lastname_format' => 'Pierwsza litera imienia i nazwisko (jsmith@example.com)', - 'firstname_lastname_display' => 'First Name Last Name (Jane Smith)', - 'lastname_firstname_display' => 'Last Name First Name (Smith Jane)', - 'name_display_format' => 'Name Display Format', + 'firstname_lastname_display' => 'Imię i Nazwisko (Jan Kowalski)', + 'lastname_firstname_display' => 'Nazwisko Imię (Smith Jane)', + 'name_display_format' => 'Format wyświetlania nazwy', 'first' => 'Pierwszy', - 'firstnamelastname' => 'Imię nazwisko (jane.smith@example.com)', - 'lastname_firstinitial' => 'Nazwisko i pierwsza litera imienia (np. smithj@example.com)', + 'firstnamelastname' => 'Imię i nazwisko (jane.smith@example.com)', + 'lastname_firstinitial' => 'Nazwisko i pierwsza litera imienia (smith_j@example.com)', 'firstinitial.lastname' => 'Pierwsza litera imienia i nazwisko (jsmith@example.com)', - 'firstnamelastinitial' => 'Nazwisko i pierwsza litera imienia (np. smithj@example.com)', + 'firstnamelastinitial' => 'Nazwisko i pierwsza litera imienia (smithj@example.com)', 'first_name' => 'Imię', 'first_name_format' => 'Imię (jane@example.com)', 'files' => 'Pliki', @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Akceptowane typy plików to jpg, webp, png, gif i svg. Maksymalny dozwolony rozmiar to :size.', 'unaccepted_image_type' => 'Plik z obrazem jest nieczytelny. Akceptowane typy plików to JPG, WebP, PNG, GIF i SVG. Typ MIME przesłanego pliku to :mimetype.', 'import' => 'Zaimportuj', + 'import_this_file' => 'Mapuj pola i przetwarzaj ten plik', 'importing' => 'Importowanie', 'importing_help' => 'Możesz importować aktywa, akcesoria, licencje, komponenty, materiały eksploatacyjne i użytkowników za pomocą pliku CSV.

CSV powinien być rozdzielony przecinkami i sformatowany z nagłówkami, które pasują do tych w przykładowych CSV w dokumentacji.', 'import-history' => 'Historia importu', @@ -355,9 +356,9 @@ return [ 'synchronize' => 'Synchronizuj', 'sync_results' => 'Wyniki Synchronizacji', 'license_serial' => 'Klucz seryjny/produktu', - 'invalid_category' => 'Invalid or missing category', + 'invalid_category' => 'Nieprawidłowa lub brakująca kategoria', 'invalid_item_category_single' => 'Invalid or missing :type category. Please update the category of this :type to include a valid category before checking out.', - 'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.', + 'dashboard_info' => 'To jest twój kokpit menedżerski. Jest wiele podobnych, ale ten jest Twój.', '60_percent_warning' => 'Ukończono w 60% (ostrzeżenie)', 'dashboard_empty' => 'Wygląda na to, że nie dodałeś jeszcze nic, więc nie mamy nic niesamowitego do wyświetlenia. Zacznij od dodania niektórych zasobów, akcesoriów, materiałów eksploatacyjnych lub licencji!', 'new_asset' => 'Nowy środek trwały', @@ -371,7 +372,7 @@ return [ 'consumables_count' => 'Liczba materiałów eksploatacyjnych', 'components_count' => 'Liczba komponentów', 'licenses_count' => 'Liczba licencji', - 'notification_error' => 'Error', + 'notification_error' => 'Błąd', 'notification_error_hint' => 'Proszę sprawdzić poniższy formularz pod kątem błędów', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Sukces', @@ -380,7 +381,7 @@ return [ 'asset_information' => 'Informacje o aktywach', 'model_name' => 'Nazwa modelu', 'asset_name' => 'Nazwa Aktywu', - 'consumable_information' => 'Consumable Information:', + 'consumable_information' => 'Informacje o materiałach eksploatacyjnych:', 'consumable_name' => 'Nazwa materiału eksploatacyjnego:', 'accessory_information' => 'Informacje o akcesoriach:', 'accessory_name' => 'Nazwa akcesorium:', @@ -413,7 +414,7 @@ return [ 'file_not_found' => 'Nie odnaleziono pliku', 'preview_not_available' => '(brak podglądu)', 'setup' => 'Ustawienia', - 'pre_flight' => 'Pre-Flight', + 'pre_flight' => 'Sprawdzenie', 'skip_to_main_content' => 'Przejdź do treści głównej', 'toggle_navigation' => 'Przełącz nawigację', 'alerts' => 'Alerty', @@ -421,7 +422,7 @@ return [ 'true' => 'Prawda', 'false' => 'Fałsz', 'integration_option' => 'Opcja integracji', - 'log_does_not_exist' => 'No matching log record exists.', + 'log_does_not_exist' => 'Brak pasującego rekordu dziennika.', 'merge_users' => 'Scal użytkowników', 'merge_information' => 'This will merge the :count users into a single user. Select the user you wish to merge the others into below, and the associated assets, licenses, etc will be moved over to the selected user and the other users will be marked as deleted.', 'warning_merge_information' => 'Tej akcji NIE MOŻNA cofnąć i powinna zostać użyta TYLKO WTEDY gdy musisz połączyć użytkowników z powodu złego importu lub synchronizacji. Pamiętaj, aby najpierw utworzyć kopię zapasową.', @@ -456,7 +457,7 @@ return [ 'autoassign_licenses_help' => 'Allow this user to have licenses assigned via the bulk-assign license UI or cli tools.', 'autoassign_licenses_help_long' => 'This allows a user to be have licenses assigned via the bulk-assign license UI or cli tools. (For example, you might not want contractors to be auto-assigned a license you would provide to only staff members. You can still individually assign licenses to those users, but they will not be included in the Checkout License to All Users functions.)', 'no_autoassign_licenses_help' => 'Do not include user for bulk-assigning through the license UI or cli tools.', - 'modal_confirm_generic' => 'Are you sure?', + 'modal_confirm_generic' => 'Czy jesteś pewien?', 'cannot_be_deleted' => 'Nie można usunąć tego elementu', 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Numer seryjny', @@ -471,25 +472,32 @@ return [ 'checked_out_to_username' => 'Checked Out to: Username', 'checked_out_to_email' => 'Checked Out to: Email', 'checked_out_to_tag' => 'Checked Out to: Asset Tag', - 'manager_first_name' => 'Manager First Name', + 'manager_first_name' => 'Imię menedżera', 'manager_last_name' => 'Nazwisko menedżera', - 'manager_full_name' => 'Manager Full Name', - 'manager_username' => 'Manager Username', + 'manager_full_name' => 'Imię i nazwisko menedżera', + 'manager_username' => 'Nazwa użytkownika menedżera', 'checkout_type' => 'Checkout Type', 'checkout_location' => 'Checkout to Location', 'image_filename' => 'Nazwa pliku obrazu', 'do_not_import' => 'Nie importuj', 'vip' => 'VIP', - 'avatar' => 'Avatar', + 'avatar' => 'Awatar', 'gravatar' => 'Gravatar Email', - 'currency' => 'Currency', - 'address2' => 'Address Line 2', - 'import_note' => 'Imported using csv importer', + 'currency' => 'Waluta', + 'address2' => 'Druga linia adresu', + 'import_note' => 'Zaimportowano przy użyciu importera csv', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% ukończone', 'uploading' => 'Uploading... ', 'upload_error' => 'Błąd podczas przesyłania pliku. Sprawdź, czy nie ma pustych wierszy i czy nazwy kolumn nie są zduplikowane.', - 'copy_to_clipboard' => 'Copy to Clipboard', - 'copied' => 'Copied!', + 'copy_to_clipboard' => 'Kopiuj do schowka', + 'copied' => 'Skopiowano!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id nie istnieje lub został usunięty', + 'action_permission_denied' => 'Nie masz uprawnień do :action :item_type ID :id', + 'action_permission_generic' => 'Nie masz uprawnień do :action this :item_type', + 'edit' => 'edycja', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/pl/help.php b/resources/lang/pl-PL/help.php similarity index 100% rename from resources/lang/pl/help.php rename to resources/lang/pl-PL/help.php diff --git a/resources/lang/pl/localizations.php b/resources/lang/pl-PL/localizations.php similarity index 99% rename from resources/lang/pl/localizations.php rename to resources/lang/pl-PL/localizations.php index e84b50a09f..132fc86952 100644 --- a/resources/lang/pl/localizations.php +++ b/resources/lang/pl-PL/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'irlandzki', 'it'=> 'włoski', 'ja'=> 'japoński', - 'km' => 'Khmer', + 'km-KH'=>'khmerski', 'ko'=> 'koreański', 'lv'=>'łotewski', 'lt'=> 'litewski', diff --git a/resources/lang/pl/mail.php b/resources/lang/pl-PL/mail.php similarity index 100% rename from resources/lang/pl/mail.php rename to resources/lang/pl-PL/mail.php diff --git a/resources/lang/pl/pagination.php b/resources/lang/pl-PL/pagination.php similarity index 100% rename from resources/lang/pl/pagination.php rename to resources/lang/pl-PL/pagination.php diff --git a/resources/lang/pl/passwords.php b/resources/lang/pl-PL/passwords.php similarity index 88% rename from resources/lang/pl/passwords.php rename to resources/lang/pl-PL/passwords.php index 7e6906f958..3742eaa566 100644 --- a/resources/lang/pl/passwords.php +++ b/resources/lang/pl-PL/passwords.php @@ -5,5 +5,5 @@ return [ 'user' => 'Jeśli w systemie istnieje podany użytkownik z podanym adresem e-mail, hasło odzyskiwania zostanie wysłane na e-mail.', 'token' => 'Ten token resetowania hasła jest nieprawidłowy lub wygasł, lub nie pasuje do podanej nazwy użytkownika.', 'reset' => 'Twoje hasło zostało zresetowane!', - 'password_change' => 'Your password has been updated!', + 'password_change' => 'Twoje hasło zostało zaktualizowane!', ]; diff --git a/resources/lang/pl/reminders.php b/resources/lang/pl-PL/reminders.php similarity index 100% rename from resources/lang/pl/reminders.php rename to resources/lang/pl-PL/reminders.php diff --git a/resources/lang/pl/table.php b/resources/lang/pl-PL/table.php similarity index 100% rename from resources/lang/pl/table.php rename to resources/lang/pl-PL/table.php diff --git a/resources/lang/pl/validation.php b/resources/lang/pl-PL/validation.php similarity index 97% rename from resources/lang/pl/validation.php rename to resources/lang/pl-PL/validation.php index d968add4c9..0598ea4b43 100644 --- a/resources/lang/pl/validation.php +++ b/resources/lang/pl-PL/validation.php @@ -90,14 +90,13 @@ return [ ], 'string' => 'Atrybut: atrybut musi być ciągiem.', 'timezone' => 'Atrybut: musi być poprawną strefą.', - 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', + 'two_column_unique_undeleted' => ':attribute musi być unikalny pomiędzy :table1 i :table2. ', 'unique' => ':attribute został już wzięty.', 'uploaded' => 'Nie udało się przesłać atrybutu:.', 'url' => 'Format pola :attribute jest niewłaściwy.', 'unique_undeleted' => 'Wartość :attribute musi być unikalna.', 'non_circular' => ':attribute nie może tworzyć odwołań cyklicznych.', - 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', + 'not_array' => 'Pole :attribute nie może być tablicą.', 'disallow_same_pwd_as_user_fields' => 'Hasło nie może być takie samo jak nazwa użytkownika.', 'letters' => 'Hasło musi zawierać co najmniej jedną literę.', 'numbers' => 'Hasło musi zawierać co najmniej jedną cyfrę.', diff --git a/resources/lang/pt-BR/admin/accessories/message.php b/resources/lang/pt-BR/admin/accessories/message.php index db3b0cd600..e77b81131b 100644 --- a/resources/lang/pt-BR/admin/accessories/message.php +++ b/resources/lang/pt-BR/admin/accessories/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Este acessório [:id] não existe.', - 'not_found' => 'That accessory was not found.', + 'not_found' => 'Esse acessório não foi encontrado.', 'assoc_users' => 'Este acessório tem atualmente :count itens alocado para os usuários. Por favor, verifique em acessórios e e tente novamente. ', 'create' => array( diff --git a/resources/lang/pt-BR/admin/custom_fields/general.php b/resources/lang/pt-BR/admin/custom_fields/general.php index 067a7d2441..0f95d95f84 100644 --- a/resources/lang/pt-BR/admin/custom_fields/general.php +++ b/resources/lang/pt-BR/admin/custom_fields/general.php @@ -34,8 +34,8 @@ return [ 'create_field' => 'Novo conjunto de campos personalizado', 'create_field_title' => 'Criar um novo campo personalizado', 'value_encrypted' => 'O valor deste campo é encriptado no banco de dados. Somente usuários administradores podem ver o valor descriptografado', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', - 'show_in_email_short' => 'Include in emails.', + 'show_in_email' => 'Incluir o valor desse campo nos e-mails enviados para o usuário? Campos criptografados não podem ser incluídos em e-mails', + 'show_in_email_short' => 'Incluir nos e-mails.', 'help_text' => 'Texto de ajuda', 'help_text_description' => 'Este é um texto opcional que irá aparecer abaixo dos elementos de formulário ao editar um ativo para fornecer o contexto no campo.', 'about_custom_fields_title' => 'Sobre os campos personalizados', @@ -52,10 +52,10 @@ return [ 'display_in_user_view_table' => 'Visível para o Usuário', 'auto_add_to_fieldsets' => 'Adicionar automaticamente para cada novo conjunto de campos', 'add_to_preexisting_fieldsets' => 'Adicionar para qualquer conjunto de campos existente', - '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' => 'Mostrar na lista visualizações por padrão. Usuários autorizados ainda serão capazes de mostrar/ocultar através do seletor de coluna', 'show_in_listview_short' => 'Mostrar nas listas', - '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.', + 'show_in_requestable_list_short' => 'Mostrar na lista de ativos solicitáveis', + 'show_in_requestable_list' => 'Mostrar valor na lista de ativos solicitáveis. Campos criptografados não serão exibidos', + 'encrypted_options' => 'Este campo está criptografado, então algumas opções de exibição não estarão disponíveis.', ]; diff --git a/resources/lang/pt-BR/admin/hardware/form.php b/resources/lang/pt-BR/admin/hardware/form.php index 334b5322e7..05ff6c9990 100644 --- a/resources/lang/pt-BR/admin/hardware/form.php +++ b/resources/lang/pt-BR/admin/hardware/form.php @@ -49,7 +49,7 @@ return [ 'asset_location' => 'Atualizar Local do Ativo', 'asset_location_update_default_current' => 'Atualizar a localização padrão e local real', 'asset_location_update_default' => 'Atualizar somente local padrão', - 'asset_location_update_actual' => 'Update only actual location', + 'asset_location_update_actual' => 'Atualizar somente a localização atual', 'asset_not_deployable' => 'Este status de ativo não é implantado. Este ativo não pode ser verificado.', 'asset_deployable' => 'Este status pode ser implementado. Este ativo pode ser verificado.', 'processing_spinner' => 'Processando... (Isso pode levar algum tempo em arquivos grandes)', diff --git a/resources/lang/pt-BR/admin/hardware/message.php b/resources/lang/pt-BR/admin/hardware/message.php index 13519f209e..7b459c6e9a 100644 --- a/resources/lang/pt-BR/admin/hardware/message.php +++ b/resources/lang/pt-BR/admin/hardware/message.php @@ -10,7 +10,7 @@ return [ 'create' => [ 'error' => 'O ativo não foi criado, tente novamente. :(', 'success' => 'Ativo criado com sucesso. :)', - 'success_linked' => 'Asset with tag :tag was created successfully. Click here to view.', + 'success_linked' => 'O ativo com a tag :tag foi criado com sucesso. clique aqui para ver.', ], 'update' => [ diff --git a/resources/lang/pt-BR/admin/licenses/message.php b/resources/lang/pt-BR/admin/licenses/message.php index 75725108e4..d8310494f3 100644 --- a/resources/lang/pt-BR/admin/licenses/message.php +++ b/resources/lang/pt-BR/admin/licenses/message.php @@ -9,7 +9,7 @@ return array( 'assoc_users' => 'Esta licença é atualmente check-out para um usuário e não pode ser excluído. Por favor, atualize seu bem para que não referencie mais este usuário e, em seguida, tente apagar novamente. ', 'select_asset_or_person' => 'Você deve selecionar um ativo ou um usuário, mas não ambos.', 'not_found' => 'Licença não encontrada', - 'seats_available' => ':seat_count seats available', + 'seats_available' => ':seat_count vagas disponíveis', 'create' => array( @@ -43,7 +43,7 @@ return array( 'checkout' => array( 'error' => 'Houve um problema de registro na licença. Favor tentar novamente.', 'success' => 'A licença foi registrada com sucesso', - 'not_enough_seats' => 'Not enough license seats available for checkout', + 'not_enough_seats' => 'Não há vagas de licença suficientes disponíveis para o pagamento', ), 'checkin' => array( diff --git a/resources/lang/pt-BR/admin/locations/table.php b/resources/lang/pt-BR/admin/locations/table.php index 3af53cd8c3..7182b60e43 100644 --- a/resources/lang/pt-BR/admin/locations/table.php +++ b/resources/lang/pt-BR/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Imprimir Todos Atribuídos', 'name' => 'Nome do Local', 'address' => 'Endereço', - 'address2' => 'Address Line 2', + 'address2' => 'Linha de Endereço 2', 'zip' => 'Código Postal', 'locations' => 'Locais', 'parent' => 'Principal', diff --git a/resources/lang/pt-BR/admin/reports/general.php b/resources/lang/pt-BR/admin/reports/general.php index c118ba5d26..4600542e7a 100644 --- a/resources/lang/pt-BR/admin/reports/general.php +++ b/resources/lang/pt-BR/admin/reports/general.php @@ -8,10 +8,10 @@ return [ 'acceptance_deleted' => 'Pedido de aceitação excluído', 'acceptance_request' => 'Solicitação de aceitação', 'custom_export' => [ - 'user_address' => 'User Address', - 'user_city' => 'User City', - 'user_state' => 'User State', - 'user_country' => 'User Country', - 'user_zip' => 'User Zip' + 'user_address' => 'Endereço do Usuário', + 'user_city' => 'Cidade do usuário', + 'user_state' => 'Estado do Usuário', + 'user_country' => 'País do usuário', + 'user_zip' => 'CEP do Usuário' ] ]; \ No newline at end of file diff --git a/resources/lang/pt-BR/admin/settings/general.php b/resources/lang/pt-BR/admin/settings/general.php index 4ad0f0b7bb..e9e1e49825 100644 --- a/resources/lang/pt-BR/admin/settings/general.php +++ b/resources/lang/pt-BR/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Usuário não é necessário para escrever "username@domain.local", ele pode apenas digitar "username".', 'admin_cc_email' => 'E-mail em CC', 'admin_cc_email_help' => 'Se você quiser enviar uma cópia dos e-mails de check-in / check-out que são enviados aos usuários para uma conta de e-mail adicional, insira-a aqui. Caso contrário, deixe este campo em branco.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Este é um servidor de Diretório Ativo', 'alerts' => 'Alertas', 'alert_title' => 'Atualizar Configurações de Notificação', diff --git a/resources/lang/pt-BR/admin/settings/message.php b/resources/lang/pt-BR/admin/settings/message.php index d8be0b5b3b..ee47849e90 100644 --- a/resources/lang/pt-BR/admin/settings/message.php +++ b/resources/lang/pt-BR/admin/settings/message.php @@ -35,12 +35,12 @@ return [ ], 'webhook' => [ 'sending' => 'Enviando mensagem :app de teste...', - 'success' => 'Your :webhook_name Integration works!', + 'success' => 'Sua integração com :webhook_name funciona!', 'success_pt1' => 'Sucesso! Verifique o ', 'success_pt2' => ' canal para sua mensagem de teste, e certifique-se de clicar em SALVAR abaixo para armazenar suas configurações.', '500' => '500 Erro no Servidor.', 'error' => 'Algo deu errado. :app respondeu com: :error_message', - 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', + 'error_redirect' => 'ERRO: 301/302 :endpoint retorna um redirecionamento. Por razões de segurança, não seguimos redirecionamentos. Por favor, use o ponto de extremidade atual.', 'error_misc' => 'Algo deu errado. :( ', ] ]; diff --git a/resources/lang/pt-BR/admin/statuslabels/message.php b/resources/lang/pt-BR/admin/statuslabels/message.php index 68d7d87ed7..331e8d39bb 100644 --- a/resources/lang/pt-BR/admin/statuslabels/message.php +++ b/resources/lang/pt-BR/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Rótulo de estado não existe.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Este rótulo de estado está associado com pelo menos um Asset e não pode ser removido. Por favor atualize seus assets para não referenciarem este rótulo e tente novamente. ', 'create' => [ diff --git a/resources/lang/pt-BR/admin/users/message.php b/resources/lang/pt-BR/admin/users/message.php index 8c36c79536..46dedce852 100644 --- a/resources/lang/pt-BR/admin/users/message.php +++ b/resources/lang/pt-BR/admin/users/message.php @@ -8,7 +8,7 @@ return array( 'user_exists' => 'O usuário já existe!', 'user_not_found' => 'O usuário não existe.', 'user_login_required' => 'O campo de login é requerido', - 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', + 'user_has_no_assets_assigned' => 'Não há ativos atualmente atribuídos ao usuário.', 'user_password_required' => 'A senha é requerida.', 'insufficient_permissions' => 'Permissões Insuficientes.', 'user_deleted_warning' => 'Este usuário foi deletado. Você terá que restaurar este usuário para editá-los ou atribui-lós novos bens.', @@ -16,7 +16,7 @@ return array( 'password_resets_sent' => 'Os usuários selecionados que são ativados e têm um endereço de e-mail válido receberam um link de redefinição de senha.', 'password_reset_sent' => 'Um link de redefinição de senha foi enviado para :email!', 'user_has_no_email' => 'Esse usuário não tem um endereço de e-mail no seu perfil.', - 'log_record_not_found' => 'A matching log record for this user could not be found.', + 'log_record_not_found' => 'Não foi possível encontrar um histórico de registro correspondente para este usuário.', 'success' => array( diff --git a/resources/lang/pt-BR/admin/users/table.php b/resources/lang/pt-BR/admin/users/table.php index df2783dba8..c75ea307a7 100644 --- a/resources/lang/pt-BR/admin/users/table.php +++ b/resources/lang/pt-BR/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Gerenciador', 'managed_locations' => 'Gerenciar locações', 'name' => 'Nome', + 'nogroup' => 'Nenhum grupo foi criado ainda. Para criar um, visite: ', 'notes' => 'Notas', 'password_confirm' => 'Confirmar Senha', 'password' => 'Senha', diff --git a/resources/lang/pt-BR/general.php b/resources/lang/pt-BR/general.php index 682162df98..8d3f450683 100644 --- a/resources/lang/pt-BR/general.php +++ b/resources/lang/pt-BR/general.php @@ -72,8 +72,8 @@ return [ 'consumable' => 'Consumível', 'consumables' => 'Consumíveis', 'country' => 'País', - 'could_not_restore' => 'Error restoring :item_type: :error', - 'not_deleted' => 'The :item_type is not deleted so it cannot be restored', + 'could_not_restore' => 'Erro ao restaurar :item_type: :error', + 'not_deleted' => 'O :item_type não foi excluído, portanto, não pode ser restaurado', 'create' => 'Criar Novo', 'created' => 'Item criado', 'created_asset' => 'ativo criado', @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Os tipos de arquivo aceitos são jpg, webp, png, gif e svg. O tamanho máximo de upload permitido é :tamanho.', 'unaccepted_image_type' => 'Este arquivo de imagem não é legível. Tipos de arquivos aceitos são jpg, webp, png, gif e svg. O mimetype deste arquivo é: :mimetype.', 'import' => 'Importar', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importando', 'importing_help' => 'Você pode importar ativos, acessórios, licenças, componentes, consumíveis e usuários via arquivo CSV.

O CSV deve ser delimitado por vírgula e formatado com cabeçalhos que correspondem aos dos CSVs de amostra na documentação.', 'import-history' => 'Importar Histórico', @@ -356,8 +357,8 @@ return [ 'sync_results' => ' Resultados da Sincronização', 'license_serial' => 'Chave Serial/Produto', - 'invalid_category' => 'Invalid or missing category', - 'invalid_item_category_single' => 'Invalid or missing :type category. Please update the category of this :type to include a valid category before checking out.', + 'invalid_category' => 'Categoria inválida ou ausente', + 'invalid_item_category_single' => 'Categoria :type inválida ou ausente. Por favor, atualize a categoria deste :type para incluir uma categoria válida antes de finalizar a saída.', 'dashboard_info' => 'Este é o seu painel de controle. Há muitos como este, mas este é o seu.', '60_percent_warning' => '60% Completo (aviso)', 'dashboard_empty' => 'Parece que você ainda não adicionou nada, por isso não temos nada incrível para exibir. Comece adicionando alguns ativos, acessórios, consumíveis ou licenças agora!', @@ -372,7 +373,7 @@ Resultados da Sincronização', 'consumables_count' => 'Contagem de Consumíveis', 'components_count' => 'Contagem de Componentes', 'licenses_count' => 'Contagem de Licenças', - 'notification_error' => 'Error', + 'notification_error' => 'Erro', 'notification_error_hint' => 'Por favor, verifique o formulário abaixo para erros', 'notification_bulk_error_hint' => 'Os seguintes campos tiveram erros de validação e não foram editados:', 'notification_success' => 'Sucesso', @@ -489,8 +490,15 @@ Resultados da Sincronização', ], 'percent_complete' => '% completo', 'uploading' => 'Enviando... ', - 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', - 'copy_to_clipboard' => 'Copy to Clipboard', - 'copied' => 'Copied!', + 'upload_error' => 'Erro ao enviar o arquivo. Por favor, verifique se não existem linhas vazias e se nenhum nome de coluna está duplicado.', + 'copy_to_clipboard' => 'Copiar para Área de Transferência', + 'copied' => 'Copiado!', + 'status_compatibility' => 'Se os ativos já estão atribuídos, eles não podem ser alterados para um tipo de status não implantável e este valor será ignorado.', + 'rtd_location_help' => 'Esta é a localização do ativo quando ele não está em uso', + 'item_not_found' => ':item_type ID :id não existe ou foi excluído', + 'action_permission_denied' => 'Você não tem permissão para :action :item_type ID :id', + 'action_permission_generic' => 'Você não tem permissão para :action este :item_type', + 'edit' => 'editar', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/pt-BR/help.php b/resources/lang/pt-BR/help.php index bdcb76b1d8..0d50477416 100644 --- a/resources/lang/pt-BR/help.php +++ b/resources/lang/pt-BR/help.php @@ -31,5 +31,5 @@ return [ 'depreciations' => 'Você pode configurar depreciações para depreciar ativos baseados na depreciação linear.', - 'empty_file' => 'The importer detects that this file is empty.' + 'empty_file' => 'O importador detectou que este arquivo está vazio.' ]; diff --git a/resources/lang/pt-BR/localizations.php b/resources/lang/pt-BR/localizations.php index d438e3c563..67e4aa819e 100644 --- a/resources/lang/pt-BR/localizations.php +++ b/resources/lang/pt-BR/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irlandês', 'it'=> 'Italiano', 'ja'=> 'Japonês', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Coreano', 'lv'=>'Letão', 'lt'=> 'Lituano', diff --git a/resources/lang/pt-BR/passwords.php b/resources/lang/pt-BR/passwords.php index d2a7a4e030..df16cdc344 100644 --- a/resources/lang/pt-BR/passwords.php +++ b/resources/lang/pt-BR/passwords.php @@ -5,5 +5,5 @@ return [ 'user' => 'Se existir um usuário correspondente com um endereço de e-mail válido em nosso sistema, um e-mail de recuperação de senha foi enviado.', 'token' => 'Este token de redefinição de senha é inválido ou expirou, ou não corresponde ao nome de usuário fornecido.', 'reset' => 'Sua senha foi redefinida!', - 'password_change' => 'Your password has been updated!', + 'password_change' => 'Sua senha foi atualizada!', ]; diff --git a/resources/lang/pt-BR/validation.php b/resources/lang/pt-BR/validation.php index 05ffd48753..2b0d64dc77 100644 --- a/resources/lang/pt-BR/validation.php +++ b/resources/lang/pt-BR/validation.php @@ -90,14 +90,13 @@ return [ ], 'string' => 'O :attribute deve ser string.', 'timezone' => 'O :attribute deve ser um campo válido.', - 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', + 'two_column_unique_undeleted' => 'O :attribute deve ser único entre :table1 e :table2. ', 'unique' => 'O :attribute já foi tomado.', 'uploaded' => 'O :attribute falhou no upload.', 'url' => 'O formato de :attribute é inválido.', 'unique_undeleted' => 'O :attribute deve ser único.', 'non_circular' => 'O :attribute não pode criar uma referência circular.', - 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', + 'not_array' => 'O campo :attribute não pode ser um vetor.', 'disallow_same_pwd_as_user_fields' => 'A senha não pode ser igual ao nome de usuário.', 'letters' => 'A senha deve conter pelo menos uma letra.', 'numbers' => 'A senha deve conter pelo menos um número.', diff --git a/resources/lang/pt-PT/admin/custom_fields/general.php b/resources/lang/pt-PT/admin/custom_fields/general.php index 5595532e99..08a3d8728a 100644 --- a/resources/lang/pt-PT/admin/custom_fields/general.php +++ b/resources/lang/pt-PT/admin/custom_fields/general.php @@ -35,7 +35,7 @@ return [ 'create_field' => 'Novo conjunto de campos personalizado', 'create_field_title' => 'Criar um novo campo personalizado', 'value_encrypted' => 'O valor deste campo está encriptado na base de dados. apenas administradores poderão ver o valor desencriptado', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Incluir o valor deste campo nos e-mails de checktout enviados ao utilizador? Os campos encriptados não serão incluídos', 'show_in_email_short' => 'Include in emails.', 'help_text' => 'Texto de Ajuda', 'help_text_description' => 'Este é um texto opcional que irá aparecer abaixo dos elementos de formulário ao editar um ativo para fornecer o contexto no campo.', @@ -53,7 +53,7 @@ return [ 'display_in_user_view_table' => 'Visível para o Utilizador', 'auto_add_to_fieldsets' => 'Adicionar automaticamente para cada novo conjunto de campos', 'add_to_preexisting_fieldsets' => 'Adicionar para qualquer conjunto de campos existente', - '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' => 'Mostrar nas listas de visualizações por defeito. Utilizadores autorizados conseguem mostrar/ocultar através do seletor de colunas', 'show_in_listview_short' => 'Mostrar em listas', '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', diff --git a/resources/lang/pt-PT/admin/settings/general.php b/resources/lang/pt-PT/admin/settings/general.php index e2078a872f..7f88074811 100644 --- a/resources/lang/pt-PT/admin/settings/general.php +++ b/resources/lang/pt-PT/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'O utilizador não tem que escrever "username@domain.local", pode apenas digitar "username".', 'admin_cc_email' => 'E-mail em CC', 'admin_cc_email_help' => 'Se prefere que seja enviada uma cópia do e-mail de checkin/checktout que é enviado aos utilizadores para uma conta de e-mail adicional, introduza o endereço de e-mail aqui. Caso contrário, deixe este campo em branco.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Isto é um servidor do Active Directoriy', 'alerts' => 'Alertas', 'alert_title' => 'Atualizar configurações de notificação', diff --git a/resources/lang/pt-PT/admin/statuslabels/message.php b/resources/lang/pt-PT/admin/statuslabels/message.php index 371c145d10..53d6a5330b 100644 --- a/resources/lang/pt-PT/admin/statuslabels/message.php +++ b/resources/lang/pt-PT/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Etiqueta de estado não existe.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Esta etiqueta de estado está associada a pelo menos um Asset e não pode ser apagada. Atualize os seus Assets para que não sejam usados novamente como referência a estes estado e tente novamente. ', 'create' => [ diff --git a/resources/lang/pt-PT/admin/users/table.php b/resources/lang/pt-PT/admin/users/table.php index 8cf6e2fb4d..4c536f647c 100644 --- a/resources/lang/pt-PT/admin/users/table.php +++ b/resources/lang/pt-PT/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Responsável', 'managed_locations' => 'Locais gerenciados', 'name' => 'Nome', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notas', 'password_confirm' => 'Confirmar palavra-passe', 'password' => 'Password', diff --git a/resources/lang/pt-PT/general.php b/resources/lang/pt-PT/general.php index 741026b817..877cd993b1 100644 --- a/resources/lang/pt-PT/general.php +++ b/resources/lang/pt-PT/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Os tipos de ficheiros aceites são jpg, webp, png, gif e svg. O tamanho máximo permitido para envio é de :size.', 'unaccepted_image_type' => 'Este ficheiro de imagem não era legível. Tipos de ficheiros aceites são jpg, webp, png, gif e svg. O mimetype deste ficheiro é: :mimetype.', 'import' => 'Importar', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'A importar', 'importing_help' => 'Você pode importar ativoss, acessórios, licenças, componentes, consumíveis e utilizadores via ficheiro CSV.

O CSV deve ser delimitado por vírgula e formatado com cabeçalhos que correspondem aos dos CSVs de exemplo na documentação.', 'import-history' => 'Histórico de Importação', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Fornecedor', 'suppliers' => 'Fornecedores', 'sure_to_delete' => 'Tem certeza de que deseja excluir', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Tem a certeza que deseja eliminar :item?', 'delete_what' => 'Delete :item', 'submit' => 'Submeter', 'target' => 'Destino', @@ -371,11 +372,11 @@ return [ 'consumables_count' => 'Contagem de Consumíveis', 'components_count' => 'Contagem de componentes', 'licenses_count' => 'Contagem de licenças', - 'notification_error' => 'Error', + 'notification_error' => 'Erro', 'notification_error_hint' => 'Por favor, verifique os erros no formulário abaixo', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_success' => 'Sucesso', + 'notification_warning' => 'Aviso', 'notification_info' => 'Info', 'asset_information' => 'Informação do Artigo', 'model_name' => 'Nome do modelo', @@ -486,10 +487,17 @@ return [ 'address2' => 'Linha de Endereço 2', 'import_note' => 'Importado usando o importador csv', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% completo', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'editar', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/pt-PT/localizations.php b/resources/lang/pt-PT/localizations.php index f639019fed..703b5ab706 100644 --- a/resources/lang/pt-PT/localizations.php +++ b/resources/lang/pt-PT/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irlandês', 'it'=> 'Italiano', 'ja'=> 'Japonês', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Coreano', 'lv'=>'Letão', 'lt'=> 'Lituano', diff --git a/resources/lang/pt-PT/validation.php b/resources/lang/pt-PT/validation.php index c3f950a473..4ee1da7326 100644 --- a/resources/lang/pt-PT/validation.php +++ b/resources/lang/pt-PT/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'O :atribute deve ser único.', 'non_circular' => 'O :attribute não deve criar uma referência circular.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'A senha não pode ser igual ao nome de utilizador.', 'letters' => 'A senha deve conter no mínimo uma letra.', 'numbers' => 'A senha deve conter no mínimo um símbolo.', diff --git a/resources/lang/ms/account/general.php b/resources/lang/ro-RO/account/general.php similarity index 100% rename from resources/lang/ms/account/general.php rename to resources/lang/ro-RO/account/general.php diff --git a/resources/lang/ro/admin/accessories/general.php b/resources/lang/ro-RO/admin/accessories/general.php similarity index 100% rename from resources/lang/ro/admin/accessories/general.php rename to resources/lang/ro-RO/admin/accessories/general.php diff --git a/resources/lang/ro/admin/accessories/message.php b/resources/lang/ro-RO/admin/accessories/message.php similarity index 100% rename from resources/lang/ro/admin/accessories/message.php rename to resources/lang/ro-RO/admin/accessories/message.php diff --git a/resources/lang/ro/admin/accessories/table.php b/resources/lang/ro-RO/admin/accessories/table.php similarity index 100% rename from resources/lang/ro/admin/accessories/table.php rename to resources/lang/ro-RO/admin/accessories/table.php diff --git a/resources/lang/ro/admin/asset_maintenances/form.php b/resources/lang/ro-RO/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/ro/admin/asset_maintenances/form.php rename to resources/lang/ro-RO/admin/asset_maintenances/form.php diff --git a/resources/lang/ro/admin/asset_maintenances/general.php b/resources/lang/ro-RO/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/ro/admin/asset_maintenances/general.php rename to resources/lang/ro-RO/admin/asset_maintenances/general.php diff --git a/resources/lang/ro/admin/asset_maintenances/message.php b/resources/lang/ro-RO/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/ro/admin/asset_maintenances/message.php rename to resources/lang/ro-RO/admin/asset_maintenances/message.php diff --git a/resources/lang/ro/admin/asset_maintenances/table.php b/resources/lang/ro-RO/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/ro/admin/asset_maintenances/table.php rename to resources/lang/ro-RO/admin/asset_maintenances/table.php diff --git a/resources/lang/ro/admin/categories/general.php b/resources/lang/ro-RO/admin/categories/general.php similarity index 100% rename from resources/lang/ro/admin/categories/general.php rename to resources/lang/ro-RO/admin/categories/general.php diff --git a/resources/lang/ro/admin/categories/message.php b/resources/lang/ro-RO/admin/categories/message.php similarity index 100% rename from resources/lang/ro/admin/categories/message.php rename to resources/lang/ro-RO/admin/categories/message.php diff --git a/resources/lang/ro/admin/categories/table.php b/resources/lang/ro-RO/admin/categories/table.php similarity index 100% rename from resources/lang/ro/admin/categories/table.php rename to resources/lang/ro-RO/admin/categories/table.php diff --git a/resources/lang/ro/admin/companies/general.php b/resources/lang/ro-RO/admin/companies/general.php similarity index 100% rename from resources/lang/ro/admin/companies/general.php rename to resources/lang/ro-RO/admin/companies/general.php diff --git a/resources/lang/ro/admin/companies/message.php b/resources/lang/ro-RO/admin/companies/message.php similarity index 100% rename from resources/lang/ro/admin/companies/message.php rename to resources/lang/ro-RO/admin/companies/message.php diff --git a/resources/lang/ro/admin/companies/table.php b/resources/lang/ro-RO/admin/companies/table.php similarity index 100% rename from resources/lang/ro/admin/companies/table.php rename to resources/lang/ro-RO/admin/companies/table.php diff --git a/resources/lang/ro/admin/components/general.php b/resources/lang/ro-RO/admin/components/general.php similarity index 100% rename from resources/lang/ro/admin/components/general.php rename to resources/lang/ro-RO/admin/components/general.php diff --git a/resources/lang/ro/admin/components/message.php b/resources/lang/ro-RO/admin/components/message.php similarity index 100% rename from resources/lang/ro/admin/components/message.php rename to resources/lang/ro-RO/admin/components/message.php diff --git a/resources/lang/ro/admin/components/table.php b/resources/lang/ro-RO/admin/components/table.php similarity index 100% rename from resources/lang/ro/admin/components/table.php rename to resources/lang/ro-RO/admin/components/table.php diff --git a/resources/lang/ro/admin/consumables/general.php b/resources/lang/ro-RO/admin/consumables/general.php similarity index 100% rename from resources/lang/ro/admin/consumables/general.php rename to resources/lang/ro-RO/admin/consumables/general.php diff --git a/resources/lang/ro/admin/consumables/message.php b/resources/lang/ro-RO/admin/consumables/message.php similarity index 100% rename from resources/lang/ro/admin/consumables/message.php rename to resources/lang/ro-RO/admin/consumables/message.php diff --git a/resources/lang/ro/admin/consumables/table.php b/resources/lang/ro-RO/admin/consumables/table.php similarity index 100% rename from resources/lang/ro/admin/consumables/table.php rename to resources/lang/ro-RO/admin/consumables/table.php diff --git a/resources/lang/ro/admin/custom_fields/general.php b/resources/lang/ro-RO/admin/custom_fields/general.php similarity index 96% rename from resources/lang/ro/admin/custom_fields/general.php rename to resources/lang/ro-RO/admin/custom_fields/general.php index 4263970a87..09e854bbc2 100644 --- a/resources/lang/ro/admin/custom_fields/general.php +++ b/resources/lang/ro-RO/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Noul câmp personalizat', 'create_field_title' => 'Creați un nou câmp personalizat', 'value_encrypted' => 'Valoarea acestui câmp este criptată în baza de date. Numai utilizatorii de administrare vor putea vizualiza valoarea decriptată', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Includeți valoarea acestui câmp în e-mailurile trimise utilizatorului? Căsuțele criptate nu pot fi incluse în e-mailuri', 'show_in_email_short' => 'Include in emails.', 'help_text' => 'Text de ajutor', 'help_text_description' => 'Acesta este un text opțional care va apărea mai jos de elementele formularului în timp ce editezi un activ pentru a oferi informații contextuale pentru fiecare câmp.', diff --git a/resources/lang/ro/admin/custom_fields/message.php b/resources/lang/ro-RO/admin/custom_fields/message.php similarity index 100% rename from resources/lang/ro/admin/custom_fields/message.php rename to resources/lang/ro-RO/admin/custom_fields/message.php diff --git a/resources/lang/ro/admin/departments/message.php b/resources/lang/ro-RO/admin/departments/message.php similarity index 100% rename from resources/lang/ro/admin/departments/message.php rename to resources/lang/ro-RO/admin/departments/message.php diff --git a/resources/lang/ro/admin/departments/table.php b/resources/lang/ro-RO/admin/departments/table.php similarity index 100% rename from resources/lang/ro/admin/departments/table.php rename to resources/lang/ro-RO/admin/departments/table.php diff --git a/resources/lang/ro/admin/depreciations/general.php b/resources/lang/ro-RO/admin/depreciations/general.php similarity index 100% rename from resources/lang/ro/admin/depreciations/general.php rename to resources/lang/ro-RO/admin/depreciations/general.php diff --git a/resources/lang/ro/admin/depreciations/message.php b/resources/lang/ro-RO/admin/depreciations/message.php similarity index 100% rename from resources/lang/ro/admin/depreciations/message.php rename to resources/lang/ro-RO/admin/depreciations/message.php diff --git a/resources/lang/ro/admin/depreciations/table.php b/resources/lang/ro-RO/admin/depreciations/table.php similarity index 100% rename from resources/lang/ro/admin/depreciations/table.php rename to resources/lang/ro-RO/admin/depreciations/table.php diff --git a/resources/lang/ro/admin/groups/message.php b/resources/lang/ro-RO/admin/groups/message.php similarity index 100% rename from resources/lang/ro/admin/groups/message.php rename to resources/lang/ro-RO/admin/groups/message.php diff --git a/resources/lang/ro/admin/groups/table.php b/resources/lang/ro-RO/admin/groups/table.php similarity index 100% rename from resources/lang/ro/admin/groups/table.php rename to resources/lang/ro-RO/admin/groups/table.php diff --git a/resources/lang/ro/admin/groups/titles.php b/resources/lang/ro-RO/admin/groups/titles.php similarity index 100% rename from resources/lang/ro/admin/groups/titles.php rename to resources/lang/ro-RO/admin/groups/titles.php diff --git a/resources/lang/ro/admin/hardware/form.php b/resources/lang/ro-RO/admin/hardware/form.php similarity index 100% rename from resources/lang/ro/admin/hardware/form.php rename to resources/lang/ro-RO/admin/hardware/form.php diff --git a/resources/lang/ro/admin/hardware/general.php b/resources/lang/ro-RO/admin/hardware/general.php similarity index 100% rename from resources/lang/ro/admin/hardware/general.php rename to resources/lang/ro-RO/admin/hardware/general.php diff --git a/resources/lang/ro/admin/hardware/message.php b/resources/lang/ro-RO/admin/hardware/message.php similarity index 98% rename from resources/lang/ro/admin/hardware/message.php rename to resources/lang/ro-RO/admin/hardware/message.php index 787e527576..db8e6668fc 100644 --- a/resources/lang/ro/admin/hardware/message.php +++ b/resources/lang/ro-RO/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Asset nu a fost restaurat, încercați din nou', 'success' => 'Activul a fost restaurat cu succes.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Activul a fost restaurat cu succes.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/ro/admin/hardware/table.php b/resources/lang/ro-RO/admin/hardware/table.php similarity index 100% rename from resources/lang/ro/admin/hardware/table.php rename to resources/lang/ro-RO/admin/hardware/table.php diff --git a/resources/lang/ro/admin/kits/general.php b/resources/lang/ro-RO/admin/kits/general.php similarity index 94% rename from resources/lang/ro/admin/kits/general.php rename to resources/lang/ro-RO/admin/kits/general.php index 55b5f60205..08f8570d76 100644 --- a/resources/lang/ro/admin/kits/general.php +++ b/resources/lang/ro-RO/admin/kits/general.php @@ -24,20 +24,20 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Licenta nu exista', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Consumul nu există', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', 'accessory_detached' => 'Accessory was successfully detached', 'accessory_error' => 'Accessory already attached to kit', 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', + 'accessory_none' => 'Accesoriul nu exista', 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', diff --git a/resources/lang/mn/admin/labels/message.php b/resources/lang/ro-RO/admin/labels/message.php similarity index 100% rename from resources/lang/mn/admin/labels/message.php rename to resources/lang/ro-RO/admin/labels/message.php diff --git a/resources/lang/ro-RO/admin/labels/table.php b/resources/lang/ro-RO/admin/labels/table.php new file mode 100644 index 0000000000..64ddda1ab5 --- /dev/null +++ b/resources/lang/ro-RO/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Etichetă', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Siglă', + 'support_title' => 'Titlu', + +]; \ No newline at end of file diff --git a/resources/lang/ro/admin/licenses/form.php b/resources/lang/ro-RO/admin/licenses/form.php similarity index 100% rename from resources/lang/ro/admin/licenses/form.php rename to resources/lang/ro-RO/admin/licenses/form.php diff --git a/resources/lang/ro/admin/licenses/general.php b/resources/lang/ro-RO/admin/licenses/general.php similarity index 100% rename from resources/lang/ro/admin/licenses/general.php rename to resources/lang/ro-RO/admin/licenses/general.php diff --git a/resources/lang/ro/admin/licenses/message.php b/resources/lang/ro-RO/admin/licenses/message.php similarity index 100% rename from resources/lang/ro/admin/licenses/message.php rename to resources/lang/ro-RO/admin/licenses/message.php diff --git a/resources/lang/ro/admin/licenses/table.php b/resources/lang/ro-RO/admin/licenses/table.php similarity index 100% rename from resources/lang/ro/admin/licenses/table.php rename to resources/lang/ro-RO/admin/licenses/table.php diff --git a/resources/lang/ro/admin/locations/message.php b/resources/lang/ro-RO/admin/locations/message.php similarity index 100% rename from resources/lang/ro/admin/locations/message.php rename to resources/lang/ro-RO/admin/locations/message.php diff --git a/resources/lang/ro/admin/locations/table.php b/resources/lang/ro-RO/admin/locations/table.php similarity index 95% rename from resources/lang/ro/admin/locations/table.php rename to resources/lang/ro-RO/admin/locations/table.php index 458adb02f8..3dc383178c 100644 --- a/resources/lang/ro/admin/locations/table.php +++ b/resources/lang/ro-RO/admin/locations/table.php @@ -31,9 +31,9 @@ return [ 'asset_model' => 'Model', 'asset_serial' => 'Serie', 'asset_location' => 'Locatie', - 'asset_checked_out' => 'Checked Out', + 'asset_checked_out' => 'Predat', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Data:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/ro/admin/manufacturers/message.php b/resources/lang/ro-RO/admin/manufacturers/message.php similarity index 100% rename from resources/lang/ro/admin/manufacturers/message.php rename to resources/lang/ro-RO/admin/manufacturers/message.php diff --git a/resources/lang/ro/admin/manufacturers/table.php b/resources/lang/ro-RO/admin/manufacturers/table.php similarity index 100% rename from resources/lang/ro/admin/manufacturers/table.php rename to resources/lang/ro-RO/admin/manufacturers/table.php diff --git a/resources/lang/ro/admin/models/general.php b/resources/lang/ro-RO/admin/models/general.php similarity index 100% rename from resources/lang/ro/admin/models/general.php rename to resources/lang/ro-RO/admin/models/general.php diff --git a/resources/lang/ro/admin/models/message.php b/resources/lang/ro-RO/admin/models/message.php similarity index 100% rename from resources/lang/ro/admin/models/message.php rename to resources/lang/ro-RO/admin/models/message.php diff --git a/resources/lang/ro/admin/models/table.php b/resources/lang/ro-RO/admin/models/table.php similarity index 100% rename from resources/lang/ro/admin/models/table.php rename to resources/lang/ro-RO/admin/models/table.php diff --git a/resources/lang/ro/admin/reports/general.php b/resources/lang/ro-RO/admin/reports/general.php similarity index 100% rename from resources/lang/ro/admin/reports/general.php rename to resources/lang/ro-RO/admin/reports/general.php diff --git a/resources/lang/ro/admin/reports/message.php b/resources/lang/ro-RO/admin/reports/message.php similarity index 100% rename from resources/lang/ro/admin/reports/message.php rename to resources/lang/ro-RO/admin/reports/message.php diff --git a/resources/lang/ro/admin/settings/general.php b/resources/lang/ro-RO/admin/settings/general.php similarity index 99% rename from resources/lang/ro/admin/settings/general.php rename to resources/lang/ro-RO/admin/settings/general.php index afa5865206..3a0c8e9f91 100644 --- a/resources/lang/ro/admin/settings/general.php +++ b/resources/lang/ro-RO/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC e-mail', 'admin_cc_email_help' => 'Dacă doriți să trimiteți o copie a e-mailurilor de predare/ primire trimise utilizatorilor către un cont de e-mail suplimentar, introduceți-l aici. În caz contrar, lăsați acest câmp necompletat.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Acesta este un server Active Directory', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Caractere minime de caractere', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Valoarea minimă admisă este de 8', 'pwd_secure_uncommon' => 'Împiedicați parolele comune', 'pwd_secure_uncommon_help' => 'Acest lucru va interzice utilizatorilor să folosească parole comune din primele 10.000 de parole raportate în încălcare.', 'qr_help' => 'Activeaza codurile QR inainte sa setati asta', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Eliminați înregistrările șterse', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Titlu', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Tip de cod de bare 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/ro/admin/settings/message.php b/resources/lang/ro-RO/admin/settings/message.php similarity index 100% rename from resources/lang/ro/admin/settings/message.php rename to resources/lang/ro-RO/admin/settings/message.php diff --git a/resources/lang/ro-RO/admin/settings/table.php b/resources/lang/ro-RO/admin/settings/table.php new file mode 100644 index 0000000000..7bb2716c34 --- /dev/null +++ b/resources/lang/ro-RO/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Creat la', + 'size' => 'Size', +); diff --git a/resources/lang/ro/admin/statuslabels/message.php b/resources/lang/ro-RO/admin/statuslabels/message.php similarity index 87% rename from resources/lang/ro/admin/statuslabels/message.php rename to resources/lang/ro-RO/admin/statuslabels/message.php index 39feaa883c..79402f1a2a 100644 --- a/resources/lang/ro/admin/statuslabels/message.php +++ b/resources/lang/ro-RO/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Eticheta de stare nu există.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Această etichetă de stare este în prezent asociată cu cel puțin un singur activ și nu poate fi ștearsă. Actualizați-vă activele astfel încât să nu mai faceți referire la această stare și încercați din nou.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Aceste active nu pot fi atribuite nimănui.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Aceste active pot fi verificate. Odată ce sunt atribuite, vor avea un status meta de Deployed.', 'archived' => 'Aceste active nu pot fi verificate și vor apărea numai în vizualizarea Arhivat. Acest lucru este util pentru păstrarea informațiilor despre active în scopuri bugetare / istorice, dar păstrându-le din lista activelor zilnice.', 'pending' => 'Aceste bunuri nu pot fi încă alocate nimănui, adesea folosite pentru articole care urmează să fie reparate, dar se așteaptă ca acestea să revină în circulație.', ], diff --git a/resources/lang/ro/admin/statuslabels/table.php b/resources/lang/ro-RO/admin/statuslabels/table.php similarity index 100% rename from resources/lang/ro/admin/statuslabels/table.php rename to resources/lang/ro-RO/admin/statuslabels/table.php diff --git a/resources/lang/ro/admin/suppliers/message.php b/resources/lang/ro-RO/admin/suppliers/message.php similarity index 100% rename from resources/lang/ro/admin/suppliers/message.php rename to resources/lang/ro-RO/admin/suppliers/message.php diff --git a/resources/lang/ro/admin/suppliers/table.php b/resources/lang/ro-RO/admin/suppliers/table.php similarity index 100% rename from resources/lang/ro/admin/suppliers/table.php rename to resources/lang/ro-RO/admin/suppliers/table.php diff --git a/resources/lang/ro/admin/users/general.php b/resources/lang/ro-RO/admin/users/general.php similarity index 95% rename from resources/lang/ro/admin/users/general.php rename to resources/lang/ro-RO/admin/users/general.php index 7f1a605691..bbc8f3e25e 100644 --- a/resources/lang/ro/admin/users/general.php +++ b/resources/lang/ro-RO/admin/users/general.php @@ -16,7 +16,7 @@ return [ 'restore_user' => 'Faceți clic aici pentru a le restaura.', 'last_login' => 'Ultima logare', 'ldap_config_text' => 'Setările de configurare LDAP pot fi găsite pe Administrator> Setări. Locația selectată (opțional) va fi setată pentru toți utilizatorii importați.', - 'print_assigned' => 'Print All Assigned', + 'print_assigned' => 'Tipărește toate activele atribuite', 'email_assigned' => 'Email List of All Assigned', 'user_notified' => 'User has been emailed a list of their currently assigned items.', 'auto_assign_label' => 'Include this user when auto-assigning eligible licenses', @@ -26,8 +26,8 @@ return [ 'view_user' => 'Vezi utilizator :name', 'usercsv' => 'Fișier CSV', 'two_factor_admin_optin_help' => 'Setările dvs. actuale de administrare permit executarea selectivă a autentificării cu două factori.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Dispozitivul 2FA Înregistrat', + 'two_factor_active' => '2FA Active', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/ro/admin/users/message.php b/resources/lang/ro-RO/admin/users/message.php similarity index 98% rename from resources/lang/ro/admin/users/message.php rename to resources/lang/ro-RO/admin/users/message.php index 50d63f6f71..a99361b11c 100644 --- a/resources/lang/ro/admin/users/message.php +++ b/resources/lang/ro-RO/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Ați refuzat cu succes acest activ.', 'bulk_manager_warn' => 'Utilizatorii dvs. au fost actualizați cu succes, cu toate acestea, intrarea managerului dvs. nu a fost salvată, deoarece managerul pe care l-ați selectat a fost, de asemenea, în lista de utilizatori care urmează să fie editat și este posibil ca utilizatorii să nu fie propriul manager. Selectați din nou utilizatorii dvs., cu excepția managerului.', 'user_exists' => 'Utilizatorul exista deja!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Utilizatorul nu exista.', 'user_login_required' => 'Campul de login este necesar', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Este necesara parola.', diff --git a/resources/lang/ro/admin/users/table.php b/resources/lang/ro-RO/admin/users/table.php similarity index 95% rename from resources/lang/ro/admin/users/table.php rename to resources/lang/ro-RO/admin/users/table.php index 95ddfd6570..ef1418ffc2 100644 --- a/resources/lang/ro/admin/users/table.php +++ b/resources/lang/ro-RO/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Locații gestionate', 'name' => 'Nume', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'notițe', 'password_confirm' => 'Confirma parola', 'password' => 'Parola', diff --git a/resources/lang/ro/auth.php b/resources/lang/ro-RO/auth.php similarity index 100% rename from resources/lang/ro/auth.php rename to resources/lang/ro-RO/auth.php diff --git a/resources/lang/ro/auth/general.php b/resources/lang/ro-RO/auth/general.php similarity index 100% rename from resources/lang/ro/auth/general.php rename to resources/lang/ro-RO/auth/general.php diff --git a/resources/lang/ro/auth/message.php b/resources/lang/ro-RO/auth/message.php similarity index 95% rename from resources/lang/ro/auth/message.php rename to resources/lang/ro-RO/auth/message.php index 9526afa804..fbabb36d0c 100644 --- a/resources/lang/ro/auth/message.php +++ b/resources/lang/ro-RO/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'V-ati logat cu succes.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/ro/button.php b/resources/lang/ro-RO/button.php similarity index 100% rename from resources/lang/ro/button.php rename to resources/lang/ro-RO/button.php diff --git a/resources/lang/ro/general.php b/resources/lang/ro-RO/general.php similarity index 95% rename from resources/lang/ro/general.php rename to resources/lang/ro-RO/general.php index f95443f5d0..8c2fa65e23 100644 --- a/resources/lang/ro/general.php +++ b/resources/lang/ro-RO/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Istoricul importurilor', @@ -224,14 +225,14 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Gata de lansare', 'recent_activity' => 'Activitate recentă', - 'remaining' => 'Remaining', + 'remaining' => 'Rămas', 'remove_company' => 'Eliminați asocierea companiilor', 'reports' => 'Rapoarte', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'Restaureaza', 'requestable_models' => 'Requestable Models', 'requested' => 'Cereri', - 'requested_date' => 'Requested Date', + 'requested_date' => 'Data solicitării', 'requested_assets' => 'Requested Assets', 'requested_assets_menu' => 'Requested Assets', 'request_canceled' => 'Cerere anulată', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Furnizor', 'suppliers' => 'Furnizori', 'sure_to_delete' => 'Sigur doriți să ștergeți', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Sigur doriți să ștergeți :item?', 'delete_what' => 'Delete :item', 'submit' => 'A depune', 'target' => 'Ţintă', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Nelansabil', 'unknown_admin' => 'Admin necunoscut', 'username_format' => 'Nume de utilizator Format', - 'username' => 'Username', + 'username' => 'Utilizator', 'update' => 'Actualizează', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Încărcat', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'E-mail', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,14 +333,14 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Predat', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', 'expected_checkin' => 'Expected Checkin', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', + 'changed' => 'Modificat', 'to' => 'To', 'report_fields_info' => '

Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.

If you would like to export only certain assets, use the options below to fine-tune your results.

', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_warning' => 'Avertizare', 'notification_info' => 'Info', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Numele activului', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Nume consumabile:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Nume accesoriu:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% complet', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'editeaza', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ro-RO/help.php b/resources/lang/ro-RO/help.php new file mode 100644 index 0000000000..637499b94e --- /dev/null +++ b/resources/lang/ro-RO/help.php @@ -0,0 +1,35 @@ + 'Mai multe', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Activele sunt elemente urmărite prin numărul de serie sau eticheta de activ. Ele tind să fie elemente de valoare mai mare în cazul în care identificarea unui anumit element contează.', + + 'categories' => 'Categoriile vă ajută să vă organizați articolele. Unele categorii de exemple ar putea fi "Desktops", "Laptops", "Mobile Phones", "Tablets" și așa mai departe, dar puteți utiliza categoriile în orice mod care vă poate face sens.', + + 'accessories' => 'Accesoriile reprezinta produsele distribuite utilizatorilor, dar care nu au un numar serial (sau nu este de interes unica lor inregistrare). De exemplu, mausurile sau tastaturile.', + + 'companies' => 'Companiile pot fi utilizate ca câmp simplu de identificare sau pot fi utilizate pentru a limita vizibilitatea activelor, a utilizatorilor etc., dacă activarea completă a companiei este activată în setările de administrator.', + + 'components' => 'Componentele sunt elemente care fac parte dintr-un bun, de exemplu HDD, RAM etc.', + + 'consumables' => 'Consumabilele sunt produse achiziționate care vor fi consumate în timp. De exemplu, cerneala imprimantei sau hârtia pentru copiatoare.', + + 'depreciations' => 'Poti sa setezi deprecierea activelor bazat pe depreciere in linie.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/ro-RO/localizations.php b/resources/lang/ro-RO/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/ro-RO/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/ro/mail.php b/resources/lang/ro-RO/mail.php similarity index 98% rename from resources/lang/ro/mail.php rename to resources/lang/ro-RO/mail.php index f9b9c288ce..a012c347fa 100644 --- a/resources/lang/ro/mail.php +++ b/resources/lang/ro-RO/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'activ:', 'asset_name' => 'Numele activului:', 'asset_requested' => 'Activul solicitat', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Eticheta activ', 'assigned_to' => 'Atribuit', 'best_regards' => 'Toate cele bune,', 'canceled' => 'Anulat:', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'Pentru a vă reseta parola web, completați acest formular:', 'type' => 'Tip', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'Utilizator', + 'username' => 'Utilizator', 'welcome' => 'Bun venit: nume', 'welcome_to' => 'Bun venit pe: web!', 'your_credentials' => 'Informațiile dvs. Snipe-IT', diff --git a/resources/lang/ro/pagination.php b/resources/lang/ro-RO/pagination.php similarity index 100% rename from resources/lang/ro/pagination.php rename to resources/lang/ro-RO/pagination.php diff --git a/resources/lang/ms/passwords.php b/resources/lang/ro-RO/passwords.php similarity index 100% rename from resources/lang/ms/passwords.php rename to resources/lang/ro-RO/passwords.php diff --git a/resources/lang/ro/reminders.php b/resources/lang/ro-RO/reminders.php similarity index 100% rename from resources/lang/ro/reminders.php rename to resources/lang/ro-RO/reminders.php diff --git a/resources/lang/ro/table.php b/resources/lang/ro-RO/table.php similarity index 100% rename from resources/lang/ro/table.php rename to resources/lang/ro-RO/table.php diff --git a/resources/lang/ro/validation.php b/resources/lang/ro-RO/validation.php similarity index 98% rename from resources/lang/ro/validation.php rename to resources/lang/ro-RO/validation.php index 222434a799..5eaf1dafae 100644 --- a/resources/lang/ro/validation.php +++ b/resources/lang/ro-RO/validation.php @@ -94,10 +94,9 @@ return [ 'unique' => ':attribute este deja folosit.', 'uploaded' => 'Atributul: nu a reușit să se încarce.', 'url' => 'Formatul :attribute nu este valid.', - 'unique_undeleted' => 'The :attribute must be unique.', + 'unique_undeleted' => 'Atributul: trebuie să fie unic.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/ro/admin/labels/table.php b/resources/lang/ro/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/ro/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/ro/admin/settings/table.php b/resources/lang/ro/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/ro/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/ro/help.php b/resources/lang/ro/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/ro/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/ro/localizations.php b/resources/lang/ro/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/ro/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/ru/account/general.php b/resources/lang/ru-RU/account/general.php similarity index 100% rename from resources/lang/ru/account/general.php rename to resources/lang/ru-RU/account/general.php diff --git a/resources/lang/ru/admin/accessories/general.php b/resources/lang/ru-RU/admin/accessories/general.php similarity index 100% rename from resources/lang/ru/admin/accessories/general.php rename to resources/lang/ru-RU/admin/accessories/general.php diff --git a/resources/lang/ru/admin/accessories/message.php b/resources/lang/ru-RU/admin/accessories/message.php similarity index 96% rename from resources/lang/ru/admin/accessories/message.php rename to resources/lang/ru-RU/admin/accessories/message.php index adc5dd0c65..4f4abee8ed 100644 --- a/resources/lang/ru/admin/accessories/message.php +++ b/resources/lang/ru-RU/admin/accessories/message.php @@ -3,7 +3,7 @@ return array( 'does_not_exist' => 'Аксессуар [:id] не существует.', - 'not_found' => 'That accessory was not found.', + 'not_found' => 'Этот аксессуар не найден.', 'assoc_users' => 'Данный аксессуар выдан пользователям в количестве :count. Сделайте возврат аксессуара и попробуйте снова. ', 'create' => array( diff --git a/resources/lang/ru/admin/accessories/table.php b/resources/lang/ru-RU/admin/accessories/table.php similarity index 100% rename from resources/lang/ru/admin/accessories/table.php rename to resources/lang/ru-RU/admin/accessories/table.php diff --git a/resources/lang/ru/admin/asset_maintenances/form.php b/resources/lang/ru-RU/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/ru/admin/asset_maintenances/form.php rename to resources/lang/ru-RU/admin/asset_maintenances/form.php diff --git a/resources/lang/ru/admin/asset_maintenances/general.php b/resources/lang/ru-RU/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/ru/admin/asset_maintenances/general.php rename to resources/lang/ru-RU/admin/asset_maintenances/general.php diff --git a/resources/lang/ru/admin/asset_maintenances/message.php b/resources/lang/ru-RU/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/ru/admin/asset_maintenances/message.php rename to resources/lang/ru-RU/admin/asset_maintenances/message.php diff --git a/resources/lang/ru/admin/asset_maintenances/table.php b/resources/lang/ru-RU/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/ru/admin/asset_maintenances/table.php rename to resources/lang/ru-RU/admin/asset_maintenances/table.php diff --git a/resources/lang/ru/admin/categories/general.php b/resources/lang/ru-RU/admin/categories/general.php similarity index 100% rename from resources/lang/ru/admin/categories/general.php rename to resources/lang/ru-RU/admin/categories/general.php diff --git a/resources/lang/ru/admin/categories/message.php b/resources/lang/ru-RU/admin/categories/message.php similarity index 100% rename from resources/lang/ru/admin/categories/message.php rename to resources/lang/ru-RU/admin/categories/message.php diff --git a/resources/lang/ru/admin/categories/table.php b/resources/lang/ru-RU/admin/categories/table.php similarity index 100% rename from resources/lang/ru/admin/categories/table.php rename to resources/lang/ru-RU/admin/categories/table.php diff --git a/resources/lang/ru/admin/companies/general.php b/resources/lang/ru-RU/admin/companies/general.php similarity index 100% rename from resources/lang/ru/admin/companies/general.php rename to resources/lang/ru-RU/admin/companies/general.php diff --git a/resources/lang/ru/admin/companies/message.php b/resources/lang/ru-RU/admin/companies/message.php similarity index 100% rename from resources/lang/ru/admin/companies/message.php rename to resources/lang/ru-RU/admin/companies/message.php diff --git a/resources/lang/ru/admin/companies/table.php b/resources/lang/ru-RU/admin/companies/table.php similarity index 100% rename from resources/lang/ru/admin/companies/table.php rename to resources/lang/ru-RU/admin/companies/table.php diff --git a/resources/lang/ru/admin/components/general.php b/resources/lang/ru-RU/admin/components/general.php similarity index 100% rename from resources/lang/ru/admin/components/general.php rename to resources/lang/ru-RU/admin/components/general.php diff --git a/resources/lang/ru/admin/components/message.php b/resources/lang/ru-RU/admin/components/message.php similarity index 100% rename from resources/lang/ru/admin/components/message.php rename to resources/lang/ru-RU/admin/components/message.php diff --git a/resources/lang/ru/admin/components/table.php b/resources/lang/ru-RU/admin/components/table.php similarity index 100% rename from resources/lang/ru/admin/components/table.php rename to resources/lang/ru-RU/admin/components/table.php diff --git a/resources/lang/ru/admin/consumables/general.php b/resources/lang/ru-RU/admin/consumables/general.php similarity index 100% rename from resources/lang/ru/admin/consumables/general.php rename to resources/lang/ru-RU/admin/consumables/general.php diff --git a/resources/lang/ru/admin/consumables/message.php b/resources/lang/ru-RU/admin/consumables/message.php similarity index 100% rename from resources/lang/ru/admin/consumables/message.php rename to resources/lang/ru-RU/admin/consumables/message.php diff --git a/resources/lang/ru/admin/consumables/table.php b/resources/lang/ru-RU/admin/consumables/table.php similarity index 100% rename from resources/lang/ru/admin/consumables/table.php rename to resources/lang/ru-RU/admin/consumables/table.php diff --git a/resources/lang/ru/admin/custom_fields/general.php b/resources/lang/ru-RU/admin/custom_fields/general.php similarity index 82% rename from resources/lang/ru/admin/custom_fields/general.php rename to resources/lang/ru-RU/admin/custom_fields/general.php index e2dabbb79b..bf7830bdf0 100644 --- a/resources/lang/ru/admin/custom_fields/general.php +++ b/resources/lang/ru-RU/admin/custom_fields/general.php @@ -34,8 +34,8 @@ return [ 'create_field' => 'Новое настраиваемое поле', 'create_field_title' => 'Создайте новое настраиваемое поле', 'value_encrypted' => 'Значение этого поля зашифровано в базе данных. Только администраторам будет доступно для просмотра расшифрованное значение', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', - 'show_in_email_short' => 'Include in emails.', + 'show_in_email' => 'Включить значение этого поля в письмах оформления заказа, отправленных пользователю? Зашифрованные поля не могут быть включены в письма', + 'show_in_email_short' => 'Включить в письма.', 'help_text' => 'Текст справки', 'help_text_description' => 'Это необязательный текст, который будет отображаться под элементами формы при редактировании ресурса для предоставления контекста в поле.', 'about_custom_fields_title' => 'О пользовательских полях', @@ -52,10 +52,10 @@ return [ 'display_in_user_view_table' => 'Видимый для пользователя', 'auto_add_to_fieldsets' => 'Автоматически добавлять это к каждому новому набору полей', 'add_to_preexisting_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' => 'Показывать в списках по умолчанию. Авторизованные пользователи будут по-прежнему иметь возможность показывать/скрывать через выбор столбца', 'show_in_listview_short' => 'Показать в списках', - '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.', + 'show_in_requestable_list_short' => 'Показать в списке запрашиваемых активов', + 'show_in_requestable_list' => 'Показать значение в списке запрашиваемых активов. Зашифрованные поля не будут показаны', + 'encrypted_options' => 'Это поле зашифровано, поэтому некоторые параметры отображения будут недоступны.', ]; diff --git a/resources/lang/ru/admin/custom_fields/message.php b/resources/lang/ru-RU/admin/custom_fields/message.php similarity index 100% rename from resources/lang/ru/admin/custom_fields/message.php rename to resources/lang/ru-RU/admin/custom_fields/message.php diff --git a/resources/lang/ru/admin/departments/message.php b/resources/lang/ru-RU/admin/departments/message.php similarity index 100% rename from resources/lang/ru/admin/departments/message.php rename to resources/lang/ru-RU/admin/departments/message.php diff --git a/resources/lang/ru/admin/departments/table.php b/resources/lang/ru-RU/admin/departments/table.php similarity index 100% rename from resources/lang/ru/admin/departments/table.php rename to resources/lang/ru-RU/admin/departments/table.php diff --git a/resources/lang/ru/admin/depreciations/general.php b/resources/lang/ru-RU/admin/depreciations/general.php similarity index 100% rename from resources/lang/ru/admin/depreciations/general.php rename to resources/lang/ru-RU/admin/depreciations/general.php diff --git a/resources/lang/ru/admin/depreciations/message.php b/resources/lang/ru-RU/admin/depreciations/message.php similarity index 100% rename from resources/lang/ru/admin/depreciations/message.php rename to resources/lang/ru-RU/admin/depreciations/message.php diff --git a/resources/lang/ru/admin/depreciations/table.php b/resources/lang/ru-RU/admin/depreciations/table.php similarity index 100% rename from resources/lang/ru/admin/depreciations/table.php rename to resources/lang/ru-RU/admin/depreciations/table.php diff --git a/resources/lang/ru/admin/groups/message.php b/resources/lang/ru-RU/admin/groups/message.php similarity index 100% rename from resources/lang/ru/admin/groups/message.php rename to resources/lang/ru-RU/admin/groups/message.php diff --git a/resources/lang/ru/admin/groups/table.php b/resources/lang/ru-RU/admin/groups/table.php similarity index 100% rename from resources/lang/ru/admin/groups/table.php rename to resources/lang/ru-RU/admin/groups/table.php diff --git a/resources/lang/ru/admin/groups/titles.php b/resources/lang/ru-RU/admin/groups/titles.php similarity index 100% rename from resources/lang/ru/admin/groups/titles.php rename to resources/lang/ru-RU/admin/groups/titles.php diff --git a/resources/lang/ru/admin/hardware/form.php b/resources/lang/ru-RU/admin/hardware/form.php similarity index 97% rename from resources/lang/ru/admin/hardware/form.php rename to resources/lang/ru-RU/admin/hardware/form.php index afc96bf423..90ed68403f 100644 --- a/resources/lang/ru/admin/hardware/form.php +++ b/resources/lang/ru-RU/admin/hardware/form.php @@ -49,7 +49,7 @@ return [ 'asset_location' => 'Обновить местоположение актива', 'asset_location_update_default_current' => 'Обновить местоположение по умолчанию и фактическое местоположение', 'asset_location_update_default' => 'Обновить только местоположение по умолчанию', - 'asset_location_update_actual' => 'Update only actual location', + 'asset_location_update_actual' => 'Обновить только фактическое местоположение', 'asset_not_deployable' => 'Этот статус актива не подлежит развертыванию. Этот актив не может быть проверен.', 'asset_deployable' => 'Этот статус доступен для развертывания. Этот актив может быть привязан.', 'processing_spinner' => 'Обработка... (Это может занять некоторое время на больших файлах)', diff --git a/resources/lang/ru/admin/hardware/general.php b/resources/lang/ru-RU/admin/hardware/general.php similarity index 100% rename from resources/lang/ru/admin/hardware/general.php rename to resources/lang/ru-RU/admin/hardware/general.php diff --git a/resources/lang/ru/admin/hardware/message.php b/resources/lang/ru-RU/admin/hardware/message.php similarity index 96% rename from resources/lang/ru/admin/hardware/message.php rename to resources/lang/ru-RU/admin/hardware/message.php index f69703285d..6b0698c70e 100644 --- a/resources/lang/ru/admin/hardware/message.php +++ b/resources/lang/ru-RU/admin/hardware/message.php @@ -11,7 +11,7 @@ return [ 'create' => [ 'error' => 'Актив не был создан, пожалуйста попробуйте снова. :(', 'success' => 'Актив успешно создан. :)', - 'success_linked' => 'Asset with tag :tag was created successfully. Click here to view.', + 'success_linked' => 'Актив с тегом :tag успешно создан. Нажмите для просмотра.', ], 'update' => [ diff --git a/resources/lang/ru/admin/hardware/table.php b/resources/lang/ru-RU/admin/hardware/table.php similarity index 100% rename from resources/lang/ru/admin/hardware/table.php rename to resources/lang/ru-RU/admin/hardware/table.php diff --git a/resources/lang/ru/admin/kits/general.php b/resources/lang/ru-RU/admin/kits/general.php similarity index 100% rename from resources/lang/ru/admin/kits/general.php rename to resources/lang/ru-RU/admin/kits/general.php diff --git a/resources/lang/ru/admin/labels/message.php b/resources/lang/ru-RU/admin/labels/message.php similarity index 100% rename from resources/lang/ru/admin/labels/message.php rename to resources/lang/ru-RU/admin/labels/message.php diff --git a/resources/lang/ru/admin/labels/table.php b/resources/lang/ru-RU/admin/labels/table.php similarity index 100% rename from resources/lang/ru/admin/labels/table.php rename to resources/lang/ru-RU/admin/labels/table.php diff --git a/resources/lang/ru/admin/licenses/form.php b/resources/lang/ru-RU/admin/licenses/form.php similarity index 100% rename from resources/lang/ru/admin/licenses/form.php rename to resources/lang/ru-RU/admin/licenses/form.php diff --git a/resources/lang/ru/admin/licenses/general.php b/resources/lang/ru-RU/admin/licenses/general.php similarity index 100% rename from resources/lang/ru/admin/licenses/general.php rename to resources/lang/ru-RU/admin/licenses/general.php diff --git a/resources/lang/ru/admin/licenses/message.php b/resources/lang/ru-RU/admin/licenses/message.php similarity index 94% rename from resources/lang/ru/admin/licenses/message.php rename to resources/lang/ru-RU/admin/licenses/message.php index b8f571f7e4..b43ddc7268 100644 --- a/resources/lang/ru/admin/licenses/message.php +++ b/resources/lang/ru-RU/admin/licenses/message.php @@ -9,7 +9,7 @@ return array( 'assoc_users' => 'Эта лицензия выдана пользователю и не может быть удалена. Перед удалением необходимо сначала списать лицензию на склад. ', 'select_asset_or_person' => 'Вы должны выбрать актив или пользователя, но не оба.', 'not_found' => 'Лицензия не найдена', - 'seats_available' => ':seat_count seats available', + 'seats_available' => ':seat_count мест доступно', 'create' => array( @@ -43,7 +43,7 @@ return array( 'checkout' => array( 'error' => 'При выдаче лицензии произошла ошибка. Повторите попытку.', 'success' => 'Лицензия успешно назначена', - 'not_enough_seats' => 'Not enough license seats available for checkout', + 'not_enough_seats' => 'Недостаточно лицензионных мест для оформления заказа', ), 'checkin' => array( diff --git a/resources/lang/ru/admin/licenses/table.php b/resources/lang/ru-RU/admin/licenses/table.php similarity index 100% rename from resources/lang/ru/admin/licenses/table.php rename to resources/lang/ru-RU/admin/licenses/table.php diff --git a/resources/lang/ru/admin/locations/message.php b/resources/lang/ru-RU/admin/locations/message.php similarity index 100% rename from resources/lang/ru/admin/locations/message.php rename to resources/lang/ru-RU/admin/locations/message.php diff --git a/resources/lang/ru/admin/locations/table.php b/resources/lang/ru-RU/admin/locations/table.php similarity index 100% rename from resources/lang/ru/admin/locations/table.php rename to resources/lang/ru-RU/admin/locations/table.php diff --git a/resources/lang/ru/admin/manufacturers/message.php b/resources/lang/ru-RU/admin/manufacturers/message.php similarity index 100% rename from resources/lang/ru/admin/manufacturers/message.php rename to resources/lang/ru-RU/admin/manufacturers/message.php diff --git a/resources/lang/ru/admin/manufacturers/table.php b/resources/lang/ru-RU/admin/manufacturers/table.php similarity index 100% rename from resources/lang/ru/admin/manufacturers/table.php rename to resources/lang/ru-RU/admin/manufacturers/table.php diff --git a/resources/lang/ru/admin/models/general.php b/resources/lang/ru-RU/admin/models/general.php similarity index 100% rename from resources/lang/ru/admin/models/general.php rename to resources/lang/ru-RU/admin/models/general.php diff --git a/resources/lang/ru/admin/models/message.php b/resources/lang/ru-RU/admin/models/message.php similarity index 100% rename from resources/lang/ru/admin/models/message.php rename to resources/lang/ru-RU/admin/models/message.php diff --git a/resources/lang/ru/admin/models/table.php b/resources/lang/ru-RU/admin/models/table.php similarity index 100% rename from resources/lang/ru/admin/models/table.php rename to resources/lang/ru-RU/admin/models/table.php diff --git a/resources/lang/ru/admin/reports/general.php b/resources/lang/ru-RU/admin/reports/general.php similarity index 100% rename from resources/lang/ru/admin/reports/general.php rename to resources/lang/ru-RU/admin/reports/general.php diff --git a/resources/lang/ru/admin/reports/message.php b/resources/lang/ru-RU/admin/reports/message.php similarity index 100% rename from resources/lang/ru/admin/reports/message.php rename to resources/lang/ru-RU/admin/reports/message.php diff --git a/resources/lang/ru/admin/settings/general.php b/resources/lang/ru-RU/admin/settings/general.php similarity index 97% rename from resources/lang/ru/admin/settings/general.php rename to resources/lang/ru-RU/admin/settings/general.php index 0634c6ab4a..43599b12c9 100644 --- a/resources/lang/ru/admin/settings/general.php +++ b/resources/lang/ru-RU/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Пользователю не нужно будет вводить "username@domain.local", можно просто ввести "username".', 'admin_cc_email' => 'Скрытая копия', 'admin_cc_email_help' => 'Если вы хотите отправлять копии писем, что приходят пользователям при выдаче/возврате, на какой-то дополнительный адрес электронной почты, то введите его здесь. В противном случае оставьте это поле пустым.', + 'admin_settings' => 'Настройки администратора', 'is_ad' => 'У вас сервер Active Directory', 'alerts' => 'Уведомления', 'alert_title' => 'Обновить настройки уведомлений', @@ -212,7 +213,7 @@ return [ 'webhook_endpoint' => ':app Endpoint', 'webhook_integration' => ':app Настройки', 'webhook_test' =>'Test :app integration', - 'webhook_integration_help' => ':app integration is optional, however the endpoint and channel are required if you wish to use it. To configure :app integration, you must first create an incoming webhook on your :app account. Click on the Test :app Integration button to confirm your settings are correct before saving. ', + 'webhook_integration_help' => 'Интеграция с :app необязательна, однако конечная точка и канал - обязательны, если Вы планируете её использовать. Для конфигурации интеграции с :app, Вы должны в первую очередь создать исходящий веб-хук на свою учетную запись в :app. Нажмите на кнопку Протестировать Интеграцию с :app чтобы убедится перед сохранением, что Ваши параметры - верны. ', 'webhook_integration_help_button' => 'Как только вы сохраните :app информацию, появится тестовая кнопка.', 'webhook_test_help' => 'Test whether your :app integration is configured correctly. YOU MUST SAVE YOUR UPDATED :app SETTINGS FIRST.', 'snipe_version' => 'Версия Snipe-IT', @@ -355,11 +356,11 @@ return [ 'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's Google developer console .', 'google_login' => 'Настройки входа через Google Workspace', 'enable_google_login' => 'Разрешить пользователям входить, используя Google Workspace', - 'enable_google_login_help' => 'Users will not be automatically provisioned. They must have an existing account here AND in Google Workspace, and their username here must match their Google Workspace email address. ', + 'enable_google_login_help' => 'Пользователи не будут автоматически обеспечены. Они должны иметь существующую учетную запись здесь И в Google Workspace, и их имя пользователя здесь должно соответствовать их электронному адресу Google Workspace. ', 'mail_reply_to' => 'Адрес почты для ответа', - 'mail_from' => 'Mail From Address', + 'mail_from' => 'Адрес почты отправителя', 'database_driver' => 'Драйвер базы данных', 'bs_table_storage' => 'Table Storage', - 'timezone' => 'Timezone', + 'timezone' => 'Часовой пояс', ]; diff --git a/resources/lang/ru/admin/settings/message.php b/resources/lang/ru-RU/admin/settings/message.php similarity index 100% rename from resources/lang/ru/admin/settings/message.php rename to resources/lang/ru-RU/admin/settings/message.php diff --git a/resources/lang/ru/admin/settings/table.php b/resources/lang/ru-RU/admin/settings/table.php similarity index 100% rename from resources/lang/ru/admin/settings/table.php rename to resources/lang/ru-RU/admin/settings/table.php diff --git a/resources/lang/ru/admin/statuslabels/message.php b/resources/lang/ru-RU/admin/statuslabels/message.php similarity index 98% rename from resources/lang/ru/admin/statuslabels/message.php rename to resources/lang/ru-RU/admin/statuslabels/message.php index 9bfbf90998..82bae61132 100644 --- a/resources/lang/ru/admin/statuslabels/message.php +++ b/resources/lang/ru-RU/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Ярлык состояния не существует.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Этот ярлык состояния связан как минимум с одним активом и не может быть удален. Измените состояние ваших активов и попробуйте ещё раз. ', 'create' => [ diff --git a/resources/lang/ru/admin/statuslabels/table.php b/resources/lang/ru-RU/admin/statuslabels/table.php similarity index 100% rename from resources/lang/ru/admin/statuslabels/table.php rename to resources/lang/ru-RU/admin/statuslabels/table.php diff --git a/resources/lang/ru/admin/suppliers/message.php b/resources/lang/ru-RU/admin/suppliers/message.php similarity index 100% rename from resources/lang/ru/admin/suppliers/message.php rename to resources/lang/ru-RU/admin/suppliers/message.php diff --git a/resources/lang/ru/admin/suppliers/table.php b/resources/lang/ru-RU/admin/suppliers/table.php similarity index 100% rename from resources/lang/ru/admin/suppliers/table.php rename to resources/lang/ru-RU/admin/suppliers/table.php diff --git a/resources/lang/ru/admin/users/general.php b/resources/lang/ru-RU/admin/users/general.php similarity index 100% rename from resources/lang/ru/admin/users/general.php rename to resources/lang/ru-RU/admin/users/general.php diff --git a/resources/lang/ru/admin/users/message.php b/resources/lang/ru-RU/admin/users/message.php similarity index 100% rename from resources/lang/ru/admin/users/message.php rename to resources/lang/ru-RU/admin/users/message.php diff --git a/resources/lang/ru/admin/users/table.php b/resources/lang/ru-RU/admin/users/table.php similarity index 94% rename from resources/lang/ru/admin/users/table.php rename to resources/lang/ru-RU/admin/users/table.php index 4875c1a71e..2ab096907d 100644 --- a/resources/lang/ru/admin/users/table.php +++ b/resources/lang/ru-RU/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Руководитель', 'managed_locations' => 'Управляемые расположения', 'name' => 'Имя', + 'nogroup' => 'Ни одной группы ещё не было создано. Что бы добавить, посетите: ', 'notes' => 'Заметки', 'password_confirm' => 'Подтверждение пароля', 'password' => 'Пароль', diff --git a/resources/lang/ru/auth.php b/resources/lang/ru-RU/auth.php similarity index 100% rename from resources/lang/ru/auth.php rename to resources/lang/ru-RU/auth.php diff --git a/resources/lang/ru/auth/general.php b/resources/lang/ru-RU/auth/general.php similarity index 100% rename from resources/lang/ru/auth/general.php rename to resources/lang/ru-RU/auth/general.php diff --git a/resources/lang/ru/auth/message.php b/resources/lang/ru-RU/auth/message.php similarity index 100% rename from resources/lang/ru/auth/message.php rename to resources/lang/ru-RU/auth/message.php diff --git a/resources/lang/ru/button.php b/resources/lang/ru-RU/button.php similarity index 100% rename from resources/lang/ru/button.php rename to resources/lang/ru-RU/button.php diff --git a/resources/lang/ru/general.php b/resources/lang/ru-RU/general.php similarity index 97% rename from resources/lang/ru/general.php rename to resources/lang/ru-RU/general.php index 490c9a05e5..2f751a56e2 100644 --- a/resources/lang/ru/general.php +++ b/resources/lang/ru-RU/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Допустимые типы файлов - pg, webp, png, gif, и svg. Максимальный размер файла :size.', 'unaccepted_image_type' => 'Нечитаемый файл изображения. Допустимые типы файлов: jpg, webp, png, gif и svg. Медиа тип этого файла: :mimetype.', 'import' => 'Импорт', + 'import_this_file' => 'Сопоставить поля и обработать этот файл', 'importing' => 'Импортируется', 'importing_help' => 'Вы можете импортировать активы, аксессуары, лицензии, компоненты, расходные материалы и пользователей через CSV-файл.

CSV должен быть разделен запятыми и отформатирован заголовками, которые соответствуют заголовкам образца CSV в документации.', 'import-history' => 'История импорта', @@ -371,7 +372,7 @@ return [ 'consumables_count' => 'Количество расходников', 'components_count' => 'Количество компонентов', 'licenses_count' => 'Количество лицензий', - 'notification_error' => 'Error', + 'notification_error' => 'Ошибка', 'notification_error_hint' => 'Пожалуйста, проверьте форму ниже на наличие ошибок', 'notification_bulk_error_hint' => 'В следующих полях были ошибки проверки и они не были исправлены:', 'notification_success' => 'Успешно', @@ -448,7 +449,7 @@ return [ 'success_redirecting' => '"Успешно... Переадресация.', 'cancel_request' => 'Cancel this item request', 'setup_successful_migrations' => 'Ваши таблицы базы данных были созданы', - 'setup_migration_output' => 'Migration output:', + 'setup_migration_output' => 'Вывод миграции:', 'setup_migration_create_user' => 'Далее: Создать пользователя', 'importer_generic_error' => 'Импорт файлов завершен, но мы получили ошибку. Обычно это вызвано ограничениями стороннего API из вебхука уведомлений (например, Slack) и не должно помешать импорту, но вам стоит подтвердить это.', 'confirm' => 'Подтвердить', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'Этот элемент не может быть выдан. Проверьте оставшееся количество.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Заметки', - 'item_name_var' => ':item Name', + 'item_name_var' => ':название', 'error_user_company' => 'Компания-получатель актива не соответствует компании-владельцу актива', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'Если активы уже назначены, они не могут быть изменены на неразвертываемый тип статуса и это значение будет пропущено.', + 'rtd_location_help' => 'Это местонахождение актива, когда он не заблокирован', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'редактировать', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ru/help.php b/resources/lang/ru-RU/help.php similarity index 97% rename from resources/lang/ru/help.php rename to resources/lang/ru-RU/help.php index a3fd1d1821..4b60f710e3 100644 --- a/resources/lang/ru/help.php +++ b/resources/lang/ru-RU/help.php @@ -31,5 +31,5 @@ return [ 'depreciations' => 'Вы можете настроить амортизацию активов для амортизации активов по правилу линейной амортизации.', - 'empty_file' => 'The importer detects that this file is empty.' + 'empty_file' => 'Импортер обнаружил, что этот файл пуст.' ]; diff --git a/resources/lang/ru/localizations.php b/resources/lang/ru-RU/localizations.php similarity index 99% rename from resources/lang/ru/localizations.php rename to resources/lang/ru-RU/localizations.php index 6ff63f0dab..6170e418fa 100644 --- a/resources/lang/ru/localizations.php +++ b/resources/lang/ru-RU/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Ирландский', 'it'=> 'Итальянский', 'ja'=> 'Японский', - 'km' => 'Khmer', + 'km-KH'=>'Кхмерский язык', 'ko'=> 'Корейский', 'lv'=>'Латвийский', 'lt'=> 'Литовский', diff --git a/resources/lang/ru/mail.php b/resources/lang/ru-RU/mail.php similarity index 100% rename from resources/lang/ru/mail.php rename to resources/lang/ru-RU/mail.php diff --git a/resources/lang/ru/pagination.php b/resources/lang/ru-RU/pagination.php similarity index 100% rename from resources/lang/ru/pagination.php rename to resources/lang/ru-RU/pagination.php diff --git a/resources/lang/ru/passwords.php b/resources/lang/ru-RU/passwords.php similarity index 100% rename from resources/lang/ru/passwords.php rename to resources/lang/ru-RU/passwords.php diff --git a/resources/lang/ru/reminders.php b/resources/lang/ru-RU/reminders.php similarity index 100% rename from resources/lang/ru/reminders.php rename to resources/lang/ru-RU/reminders.php diff --git a/resources/lang/ru/table.php b/resources/lang/ru-RU/table.php similarity index 100% rename from resources/lang/ru/table.php rename to resources/lang/ru-RU/table.php diff --git a/resources/lang/ru/validation.php b/resources/lang/ru-RU/validation.php similarity index 97% rename from resources/lang/ru/validation.php rename to resources/lang/ru-RU/validation.php index 838f8d2ab3..12ec5e1daf 100644 --- a/resources/lang/ru/validation.php +++ b/resources/lang/ru-RU/validation.php @@ -90,14 +90,13 @@ return [ ], 'string' => 'Атрибут: должен быть строкой.', 'timezone' => 'Атрибут: должен быть допустимой зоной.', - 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', + 'two_column_unique_undeleted' => 'Поле :attribute должно быть уникальным для :table1 и :table2. ', 'unique' => ':attribute уже занят.', 'uploaded' => 'Атрибут: не удалось загрузить.', 'url' => 'Неправильный формат :attribute.', 'unique_undeleted' => 'Свойство :attribute должно быть уникальным.', 'non_circular' => ':attribute не должен создавать циклическую ссылку.', - 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', + 'not_array' => ':Attribute не может быть массивом.', 'disallow_same_pwd_as_user_fields' => 'Пароль не может совпадать с именем пользователя.', 'letters' => 'Пароль должен содержать хотя бы одну букву.', 'numbers' => 'Пароль должен содержать хотя бы одну цифру.', diff --git a/resources/lang/si-LK/admin/consumables/general.php b/resources/lang/si-LK/admin/consumables/general.php index 7c6bb32968..fb8c28443b 100644 --- a/resources/lang/si-LK/admin/consumables/general.php +++ b/resources/lang/si-LK/admin/consumables/general.php @@ -6,6 +6,6 @@ return array( 'create' => 'Create Consumable', 'item_no' => 'Item No.', 'remaining' => 'Remaining', - 'total' => 'Total', + 'total' => 'එකතුව', 'update' => 'Update Consumable', ); diff --git a/resources/lang/si-LK/admin/hardware/form.php b/resources/lang/si-LK/admin/hardware/form.php index ee3fa20fb0..39c06ef243 100644 --- a/resources/lang/si-LK/admin/hardware/form.php +++ b/resources/lang/si-LK/admin/hardware/form.php @@ -34,7 +34,7 @@ return [ 'model' => 'Model', 'months' => 'months', 'name' => 'Asset Name', - 'notes' => 'Notes', + 'notes' => 'සටහන්', 'order' => 'Order Number', 'qr' => 'QR Code', 'requestable' => 'Users may request this asset', diff --git a/resources/lang/si-LK/admin/hardware/table.php b/resources/lang/si-LK/admin/hardware/table.php index 06b60bfd83..df7fbe6669 100644 --- a/resources/lang/si-LK/admin/hardware/table.php +++ b/resources/lang/si-LK/admin/hardware/table.php @@ -16,7 +16,7 @@ return [ 'id' => 'ID', 'last_checkin_date' => 'Last Checkin Date', 'location' => 'Location', - 'purchase_cost' => 'Cost', + 'purchase_cost' => 'පිරිවැය', 'purchase_date' => 'Purchased', 'serial' => 'Serial', 'status' => 'Status', diff --git a/resources/lang/si-LK/admin/settings/general.php b/resources/lang/si-LK/admin/settings/general.php index 64d0aef53e..c8d6306036 100644 --- a/resources/lang/si-LK/admin/settings/general.php +++ b/resources/lang/si-LK/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/si-LK/admin/statuslabels/message.php b/resources/lang/si-LK/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/si-LK/admin/statuslabels/message.php +++ b/resources/lang/si-LK/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/si-LK/admin/suppliers/table.php b/resources/lang/si-LK/admin/suppliers/table.php index 2a7b07ca93..85f17c3e18 100644 --- a/resources/lang/si-LK/admin/suppliers/table.php +++ b/resources/lang/si-LK/admin/suppliers/table.php @@ -14,7 +14,7 @@ return array( 'id' => 'ID', 'licenses' => 'Licenses', 'name' => 'Supplier Name', - 'notes' => 'Notes', + 'notes' => 'සටහන්', 'phone' => 'Phone', 'state' => 'State', 'suppliers' => 'Suppliers', diff --git a/resources/lang/si-LK/admin/users/table.php b/resources/lang/si-LK/admin/users/table.php index 21e2154280..ba138d22bc 100644 --- a/resources/lang/si-LK/admin/users/table.php +++ b/resources/lang/si-LK/admin/users/table.php @@ -21,7 +21,8 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', - 'notes' => 'Notes', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', + 'notes' => 'සටහන්', 'password_confirm' => 'Confirm Password', 'password' => 'Password', 'phone' => 'Phone', diff --git a/resources/lang/si-LK/general.php b/resources/lang/si-LK/general.php index a568e00436..69c517e5ab 100644 --- a/resources/lang/si-LK/general.php +++ b/resources/lang/si-LK/general.php @@ -87,7 +87,7 @@ return [ 'customize_report' => 'Customize Report', 'custom_report' => 'Custom Asset Report', 'dashboard' => 'Dashboard', - 'days' => 'days', + 'days' => 'දින', 'days_to_next_audit' => 'Days to Next Audit', 'date' => 'Date', 'debug_warning' => 'Warning!', @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', @@ -204,7 +205,7 @@ return [ 'no_depreciation' => 'No Depreciation', 'no_results' => 'No Results.', 'no' => 'No', - 'notes' => 'Notes', + 'notes' => 'සටහන්', 'order_number' => 'Order Number', 'only_deleted' => 'Only Deleted Assets', 'page_menu' => 'Showing _MENU_ items', @@ -284,7 +285,7 @@ return [ 'unknown_admin' => 'Unknown Admin', 'username_format' => 'Username Format', 'username' => 'Username', - 'update' => 'Update', + 'update' => 'යාවත්කාල', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Uploaded', 'user' => 'User', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/si-LK/localizations.php b/resources/lang/si-LK/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/si-LK/localizations.php +++ b/resources/lang/si-LK/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/si-LK/mail.php b/resources/lang/si-LK/mail.php index 7dd8d6181c..ab17841b66 100644 --- a/resources/lang/si-LK/mail.php +++ b/resources/lang/si-LK/mail.php @@ -27,8 +27,8 @@ return [ 'Confirm_asset_delivery' => 'Asset delivery confirmation', 'Confirm_consumable_delivery' => 'Consumable delivery confirmation', 'current_QTY' => 'Current QTY', - 'Days' => 'Days', - 'days' => 'Days', + 'Days' => 'දින', + 'days' => 'දින', 'expecting_checkin_date' => 'Expected Checkin Date:', 'expires' => 'Expires', 'Expiring_Assets_Report' => 'Expiring Assets Report.', diff --git a/resources/lang/si-LK/validation.php b/resources/lang/si-LK/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/si-LK/validation.php +++ b/resources/lang/si-LK/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/sk/account/general.php b/resources/lang/sk-SK/account/general.php similarity index 100% rename from resources/lang/sk/account/general.php rename to resources/lang/sk-SK/account/general.php diff --git a/resources/lang/sk/admin/accessories/general.php b/resources/lang/sk-SK/admin/accessories/general.php similarity index 100% rename from resources/lang/sk/admin/accessories/general.php rename to resources/lang/sk-SK/admin/accessories/general.php diff --git a/resources/lang/sk/admin/accessories/message.php b/resources/lang/sk-SK/admin/accessories/message.php similarity index 87% rename from resources/lang/sk/admin/accessories/message.php rename to resources/lang/sk-SK/admin/accessories/message.php index 4a8a4d94ce..75fef16772 100644 --- a/resources/lang/sk/admin/accessories/message.php +++ b/resources/lang/sk-SK/admin/accessories/message.php @@ -26,13 +26,13 @@ return array( 'error' => 'Accessory was not checked out, please try again', 'success' => 'Accessory checked out successfully.', 'unavailable' => 'Accessory is not available for checkout. Check quantity available', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'Tento užívateľ nie je platný. Prosím skúste znovu.' ), 'checkin' => array( 'error' => 'Accessory was not checked in, please try again', 'success' => 'Accessory checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'Tento užívateľ nie je platný. Prosím skúste znovu.' ) diff --git a/resources/lang/sk-SK/admin/accessories/table.php b/resources/lang/sk-SK/admin/accessories/table.php new file mode 100644 index 0000000000..8d1db06154 --- /dev/null +++ b/resources/lang/sk-SK/admin/accessories/table.php @@ -0,0 +1,11 @@ + 'Stiahnuť CSV', + 'eula_text' => 'EULA', + 'id' => 'ID', + 'require_acceptance' => 'Akceptácia', + 'title' => 'Názov príslušenstva', + + +); diff --git a/resources/lang/so/admin/asset_maintenances/form.php b/resources/lang/sk-SK/admin/asset_maintenances/form.php similarity index 67% rename from resources/lang/so/admin/asset_maintenances/form.php rename to resources/lang/sk-SK/admin/asset_maintenances/form.php index 785d06b08f..15fc69db74 100644 --- a/resources/lang/so/admin/asset_maintenances/form.php +++ b/resources/lang/sk-SK/admin/asset_maintenances/form.php @@ -2,13 +2,13 @@ return [ 'asset_maintenance_type' => 'Asset Maintenance Type', - 'title' => 'Title', - 'start_date' => 'Start Date', + 'title' => 'Názov', + 'start_date' => 'Dátum začiatku', 'completion_date' => 'Completion Date', - 'cost' => 'Cost', + 'cost' => 'Cena', 'is_warranty' => 'Warranty Improvement', 'asset_maintenance_time' => 'Asset Maintenance Time (in days)', - 'notes' => 'Notes', + 'notes' => 'Poznámky', 'update' => 'Update Asset Maintenance', 'create' => 'Create Asset Maintenance' ]; diff --git a/resources/lang/so/admin/asset_maintenances/general.php b/resources/lang/sk-SK/admin/asset_maintenances/general.php similarity index 75% rename from resources/lang/so/admin/asset_maintenances/general.php rename to resources/lang/sk-SK/admin/asset_maintenances/general.php index 0f9a4547a2..b301b87826 100644 --- a/resources/lang/so/admin/asset_maintenances/general.php +++ b/resources/lang/sk-SK/admin/asset_maintenances/general.php @@ -8,9 +8,9 @@ 'repair' => 'Repair', 'maintenance' => 'Maintenance', 'upgrade' => 'Upgrade', - 'calibration' => 'Calibration', - 'software_support' => 'Software Support', - 'hardware_support' => 'Hardware Support', + 'calibration' => 'Kalibrácia', + 'software_support' => 'Softvérová podpora', + 'hardware_support' => 'Hardvérová podpora', 'configuration_change' => 'Configuration Change', 'pat_test' => 'PAT Test', ]; diff --git a/resources/lang/sk/admin/asset_maintenances/message.php b/resources/lang/sk-SK/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/sk/admin/asset_maintenances/message.php rename to resources/lang/sk-SK/admin/asset_maintenances/message.php diff --git a/resources/lang/sk/admin/asset_maintenances/table.php b/resources/lang/sk-SK/admin/asset_maintenances/table.php similarity index 56% rename from resources/lang/sk/admin/asset_maintenances/table.php rename to resources/lang/sk-SK/admin/asset_maintenances/table.php index e389b70477..93217d83d3 100644 --- a/resources/lang/sk/admin/asset_maintenances/table.php +++ b/resources/lang/sk-SK/admin/asset_maintenances/table.php @@ -2,7 +2,7 @@ return [ 'title' => 'Asset Maintenance', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Názov asetu', 'is_warranty' => 'Záruka', - 'dl_csv' => 'Download CSV', + 'dl_csv' => 'Stiahnuť CSV', ]; diff --git a/resources/lang/sk/admin/categories/general.php b/resources/lang/sk-SK/admin/categories/general.php similarity index 100% rename from resources/lang/sk/admin/categories/general.php rename to resources/lang/sk-SK/admin/categories/general.php diff --git a/resources/lang/sk/admin/categories/message.php b/resources/lang/sk-SK/admin/categories/message.php similarity index 100% rename from resources/lang/sk/admin/categories/message.php rename to resources/lang/sk-SK/admin/categories/message.php diff --git a/resources/lang/sk/admin/categories/table.php b/resources/lang/sk-SK/admin/categories/table.php similarity index 100% rename from resources/lang/sk/admin/categories/table.php rename to resources/lang/sk-SK/admin/categories/table.php diff --git a/resources/lang/sk/admin/companies/general.php b/resources/lang/sk-SK/admin/companies/general.php similarity index 100% rename from resources/lang/sk/admin/companies/general.php rename to resources/lang/sk-SK/admin/companies/general.php diff --git a/resources/lang/sk/admin/companies/message.php b/resources/lang/sk-SK/admin/companies/message.php similarity index 100% rename from resources/lang/sk/admin/companies/message.php rename to resources/lang/sk-SK/admin/companies/message.php diff --git a/resources/lang/iu/admin/companies/table.php b/resources/lang/sk-SK/admin/companies/table.php similarity index 100% rename from resources/lang/iu/admin/companies/table.php rename to resources/lang/sk-SK/admin/companies/table.php diff --git a/resources/lang/tl/admin/components/general.php b/resources/lang/sk-SK/admin/components/general.php similarity index 78% rename from resources/lang/tl/admin/components/general.php rename to resources/lang/sk-SK/admin/components/general.php index 5b788a51ec..97946aa3a5 100644 --- a/resources/lang/tl/admin/components/general.php +++ b/resources/lang/sk-SK/admin/components/general.php @@ -4,13 +4,13 @@ return array( 'component_name' => 'Component Name', 'checkin' => 'Checkin Component', 'checkout' => 'Checkout Component', - 'cost' => 'Purchase Cost', + 'cost' => 'Kúpna cena', 'create' => 'Create Component', 'edit' => 'Edit Component', - 'date' => 'Purchase Date', - 'order' => 'Order Number', + 'date' => 'Dátum nákupu', + 'order' => 'Číslo objednávky', 'remaining' => 'Remaining', - 'total' => 'Total', + 'total' => 'Celkom', 'update' => 'Update Component', 'checkin_limit' => 'Amount checked in must be equal to or less than :assigned_qty' ); diff --git a/resources/lang/tl/admin/components/message.php b/resources/lang/sk-SK/admin/components/message.php similarity index 85% rename from resources/lang/tl/admin/components/message.php rename to resources/lang/sk-SK/admin/components/message.php index 0a7dd8d954..911f848d2d 100644 --- a/resources/lang/tl/admin/components/message.php +++ b/resources/lang/sk-SK/admin/components/message.php @@ -23,14 +23,14 @@ return array( 'checkout' => array( 'error' => 'Component was not checked out, please try again', 'success' => 'Component checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Tento užívateľ nie je platný. Prosím skúste znovu.', 'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ', ), 'checkin' => array( 'error' => 'Component was not checked in, please try again', 'success' => 'Component checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'Tento užívateľ nie je platný. Prosím skúste znovu.' ) diff --git a/resources/lang/sk/admin/components/table.php b/resources/lang/sk-SK/admin/components/table.php similarity index 100% rename from resources/lang/sk/admin/components/table.php rename to resources/lang/sk-SK/admin/components/table.php diff --git a/resources/lang/tl/admin/consumables/general.php b/resources/lang/sk-SK/admin/consumables/general.php similarity index 89% rename from resources/lang/tl/admin/consumables/general.php rename to resources/lang/sk-SK/admin/consumables/general.php index 7c6bb32968..a1c7a5fda6 100644 --- a/resources/lang/tl/admin/consumables/general.php +++ b/resources/lang/sk-SK/admin/consumables/general.php @@ -6,6 +6,6 @@ return array( 'create' => 'Create Consumable', 'item_no' => 'Item No.', 'remaining' => 'Remaining', - 'total' => 'Total', + 'total' => 'Celkom', 'update' => 'Update Consumable', ); diff --git a/resources/lang/tl/admin/consumables/message.php b/resources/lang/sk-SK/admin/consumables/message.php similarity index 85% rename from resources/lang/tl/admin/consumables/message.php rename to resources/lang/sk-SK/admin/consumables/message.php index c0d0aa7f68..6bb2663459 100644 --- a/resources/lang/tl/admin/consumables/message.php +++ b/resources/lang/sk-SK/admin/consumables/message.php @@ -23,14 +23,14 @@ return array( 'checkout' => array( 'error' => 'Consumable was not checked out, please try again', 'success' => 'Consumable checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Tento užívateľ nie je platný. Prosím skúste znovu.', 'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ', ), 'checkin' => array( 'error' => 'Consumable was not checked in, please try again', 'success' => 'Consumable checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'Tento užívateľ nie je platný. Prosím skúste znovu.' ) diff --git a/resources/lang/sk/admin/consumables/table.php b/resources/lang/sk-SK/admin/consumables/table.php similarity index 100% rename from resources/lang/sk/admin/consumables/table.php rename to resources/lang/sk-SK/admin/consumables/table.php diff --git a/resources/lang/sk/admin/custom_fields/general.php b/resources/lang/sk-SK/admin/custom_fields/general.php similarity index 100% rename from resources/lang/sk/admin/custom_fields/general.php rename to resources/lang/sk-SK/admin/custom_fields/general.php diff --git a/resources/lang/sk/admin/custom_fields/message.php b/resources/lang/sk-SK/admin/custom_fields/message.php similarity index 100% rename from resources/lang/sk/admin/custom_fields/message.php rename to resources/lang/sk-SK/admin/custom_fields/message.php diff --git a/resources/lang/sk/admin/departments/message.php b/resources/lang/sk-SK/admin/departments/message.php similarity index 100% rename from resources/lang/sk/admin/departments/message.php rename to resources/lang/sk-SK/admin/departments/message.php diff --git a/resources/lang/so/admin/departments/table.php b/resources/lang/sk-SK/admin/departments/table.php similarity index 71% rename from resources/lang/so/admin/departments/table.php rename to resources/lang/sk-SK/admin/departments/table.php index 76494247be..4316e53a36 100644 --- a/resources/lang/so/admin/departments/table.php +++ b/resources/lang/sk-SK/admin/departments/table.php @@ -4,8 +4,8 @@ return array( 'id' => 'ID', 'name' => 'Department Name', - 'manager' => 'Manager', - 'location' => 'Location', + 'manager' => 'Manažér', + 'location' => 'Lokalita', 'create' => 'Create Department', 'update' => 'Update Department', ); diff --git a/resources/lang/sk/admin/depreciations/general.php b/resources/lang/sk-SK/admin/depreciations/general.php similarity index 100% rename from resources/lang/sk/admin/depreciations/general.php rename to resources/lang/sk-SK/admin/depreciations/general.php diff --git a/resources/lang/sk/admin/depreciations/message.php b/resources/lang/sk-SK/admin/depreciations/message.php similarity index 100% rename from resources/lang/sk/admin/depreciations/message.php rename to resources/lang/sk-SK/admin/depreciations/message.php diff --git a/resources/lang/sk/admin/depreciations/table.php b/resources/lang/sk-SK/admin/depreciations/table.php similarity index 100% rename from resources/lang/sk/admin/depreciations/table.php rename to resources/lang/sk-SK/admin/depreciations/table.php diff --git a/resources/lang/sk/admin/groups/message.php b/resources/lang/sk-SK/admin/groups/message.php similarity index 100% rename from resources/lang/sk/admin/groups/message.php rename to resources/lang/sk-SK/admin/groups/message.php diff --git a/resources/lang/sk/admin/groups/table.php b/resources/lang/sk-SK/admin/groups/table.php similarity index 100% rename from resources/lang/sk/admin/groups/table.php rename to resources/lang/sk-SK/admin/groups/table.php diff --git a/resources/lang/sk/admin/groups/titles.php b/resources/lang/sk-SK/admin/groups/titles.php similarity index 100% rename from resources/lang/sk/admin/groups/titles.php rename to resources/lang/sk-SK/admin/groups/titles.php diff --git a/resources/lang/sk/admin/hardware/form.php b/resources/lang/sk-SK/admin/hardware/form.php similarity index 100% rename from resources/lang/sk/admin/hardware/form.php rename to resources/lang/sk-SK/admin/hardware/form.php diff --git a/resources/lang/sk/admin/hardware/general.php b/resources/lang/sk-SK/admin/hardware/general.php similarity index 100% rename from resources/lang/sk/admin/hardware/general.php rename to resources/lang/sk-SK/admin/hardware/general.php diff --git a/resources/lang/sk/admin/hardware/message.php b/resources/lang/sk-SK/admin/hardware/message.php similarity index 98% rename from resources/lang/sk/admin/hardware/message.php rename to resources/lang/sk-SK/admin/hardware/message.php index 2bbad56a9f..30abea1068 100644 --- a/resources/lang/sk/admin/hardware/message.php +++ b/resources/lang/sk-SK/admin/hardware/message.php @@ -24,7 +24,7 @@ return [ 'restore' => [ 'error' => 'Majetok nebol obnovený, prosím skúste znovu', 'success' => 'Majetok bol úspešne obnovený.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Majetok bol úspešne obnovený.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/sk/admin/hardware/table.php b/resources/lang/sk-SK/admin/hardware/table.php similarity index 96% rename from resources/lang/sk/admin/hardware/table.php rename to resources/lang/sk-SK/admin/hardware/table.php index 9d45559f94..b475aa7d25 100644 --- a/resources/lang/sk/admin/hardware/table.php +++ b/resources/lang/sk-SK/admin/hardware/table.php @@ -27,6 +27,6 @@ return [ 'assigned_to' => 'Assigned To', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', - 'changed' => 'Changed', + 'changed' => 'Zmenené', 'icon' => 'Ikona', ]; diff --git a/resources/lang/cy/admin/kits/general.php b/resources/lang/sk-SK/admin/kits/general.php similarity index 100% rename from resources/lang/cy/admin/kits/general.php rename to resources/lang/sk-SK/admin/kits/general.php diff --git a/resources/lang/ms/admin/labels/message.php b/resources/lang/sk-SK/admin/labels/message.php similarity index 100% rename from resources/lang/ms/admin/labels/message.php rename to resources/lang/sk-SK/admin/labels/message.php diff --git a/resources/lang/sk-SK/admin/labels/table.php b/resources/lang/sk-SK/admin/labels/table.php new file mode 100644 index 0000000000..84fac27f0c --- /dev/null +++ b/resources/lang/sk-SK/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Štítky', + 'support_fields' => 'Polia', + 'support_asset_tag' => 'Tag', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logo', + 'support_title' => 'Názov', + +]; \ No newline at end of file diff --git a/resources/lang/so/admin/licenses/form.php b/resources/lang/sk-SK/admin/licenses/form.php similarity index 95% rename from resources/lang/so/admin/licenses/form.php rename to resources/lang/sk-SK/admin/licenses/form.php index ce29167874..5e8b28300f 100644 --- a/resources/lang/so/admin/licenses/form.php +++ b/resources/lang/sk-SK/admin/licenses/form.php @@ -2,7 +2,7 @@ return array( - 'asset' => 'Asset', + 'asset' => 'Majetok', 'checkin' => 'Checkin', 'create' => 'Create License', 'expiration' => 'Expiration Date', diff --git a/resources/lang/sk/admin/licenses/general.php b/resources/lang/sk-SK/admin/licenses/general.php similarity index 95% rename from resources/lang/sk/admin/licenses/general.php rename to resources/lang/sk-SK/admin/licenses/general.php index 3d13fbf7d0..37c13a3a6d 100644 --- a/resources/lang/sk/admin/licenses/general.php +++ b/resources/lang/sk-SK/admin/licenses/general.php @@ -7,10 +7,10 @@ return array( 'checkout_history' => 'Checkout History', 'checkout' => 'Checkout License Seat', 'edit' => 'Edit License', - 'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', + 'filetype_info' => 'Podporované typy súborov: png, gif, jpg, jpeg, doc, docx, pdf, txt, zip a rar.', 'clone' => 'Clone License', 'history_for' => 'History for ', - 'in_out' => 'In/Out', + 'in_out' => 'Vsetup/Výstup', 'info' => 'License Info', 'license_seats' => 'License Seats', 'seat' => 'Seat', diff --git a/resources/lang/sk/admin/licenses/message.php b/resources/lang/sk-SK/admin/licenses/message.php similarity index 97% rename from resources/lang/sk/admin/licenses/message.php rename to resources/lang/sk-SK/admin/licenses/message.php index 6e02b7b443..8990ba46b0 100644 --- a/resources/lang/sk/admin/licenses/message.php +++ b/resources/lang/sk-SK/admin/licenses/message.php @@ -18,7 +18,7 @@ return array( ), 'deletefile' => array( - 'error' => 'File not deleted. Please try again.', + 'error' => 'Súbor nebol odstránený. Prosím skúste znovu.', 'success' => 'Súbor bol úspešne odstránený.', ), diff --git a/resources/lang/so/admin/licenses/table.php b/resources/lang/sk-SK/admin/licenses/table.php similarity index 62% rename from resources/lang/so/admin/licenses/table.php rename to resources/lang/sk-SK/admin/licenses/table.php index dfce4136cb..8d9308e18e 100644 --- a/resources/lang/so/admin/licenses/table.php +++ b/resources/lang/sk-SK/admin/licenses/table.php @@ -3,15 +3,15 @@ return array( 'assigned_to' => 'Assigned To', - 'checkout' => 'In/Out', + 'checkout' => 'Vsetup/Výstup', 'id' => 'ID', 'license_email' => 'License Email', 'license_name' => 'Licensed To', - 'purchase_date' => 'Purchase Date', - 'purchased' => 'Purchased', + 'purchase_date' => 'Dátum nákupu', + 'purchased' => 'Zakúpené', 'seats' => 'Seats', 'hardware' => 'Hardware', - 'serial' => 'Serial', + 'serial' => 'Sériové číslo', 'title' => 'License', ); diff --git a/resources/lang/sk/admin/locations/message.php b/resources/lang/sk-SK/admin/locations/message.php similarity index 100% rename from resources/lang/sk/admin/locations/message.php rename to resources/lang/sk-SK/admin/locations/message.php diff --git a/resources/lang/sk/admin/locations/table.php b/resources/lang/sk-SK/admin/locations/table.php similarity index 100% rename from resources/lang/sk/admin/locations/table.php rename to resources/lang/sk-SK/admin/locations/table.php diff --git a/resources/lang/sk/admin/manufacturers/message.php b/resources/lang/sk-SK/admin/manufacturers/message.php similarity index 100% rename from resources/lang/sk/admin/manufacturers/message.php rename to resources/lang/sk-SK/admin/manufacturers/message.php diff --git a/resources/lang/sk/admin/manufacturers/table.php b/resources/lang/sk-SK/admin/manufacturers/table.php similarity index 100% rename from resources/lang/sk/admin/manufacturers/table.php rename to resources/lang/sk-SK/admin/manufacturers/table.php diff --git a/resources/lang/iu/admin/models/general.php b/resources/lang/sk-SK/admin/models/general.php similarity index 100% rename from resources/lang/iu/admin/models/general.php rename to resources/lang/sk-SK/admin/models/general.php diff --git a/resources/lang/sk/admin/models/message.php b/resources/lang/sk-SK/admin/models/message.php similarity index 100% rename from resources/lang/sk/admin/models/message.php rename to resources/lang/sk-SK/admin/models/message.php diff --git a/resources/lang/sk/admin/models/table.php b/resources/lang/sk-SK/admin/models/table.php similarity index 100% rename from resources/lang/sk/admin/models/table.php rename to resources/lang/sk-SK/admin/models/table.php diff --git a/resources/lang/sk/admin/reports/general.php b/resources/lang/sk-SK/admin/reports/general.php similarity index 100% rename from resources/lang/sk/admin/reports/general.php rename to resources/lang/sk-SK/admin/reports/general.php diff --git a/resources/lang/sk/admin/reports/message.php b/resources/lang/sk-SK/admin/reports/message.php similarity index 100% rename from resources/lang/sk/admin/reports/message.php rename to resources/lang/sk-SK/admin/reports/message.php diff --git a/resources/lang/sk/admin/settings/general.php b/resources/lang/sk-SK/admin/settings/general.php similarity index 98% rename from resources/lang/sk/admin/settings/general.php rename to resources/lang/sk-SK/admin/settings/general.php index 4c3cbcd30c..1f99f157fe 100644 --- a/resources/lang/sk/admin/settings/general.php +++ b/resources/lang/sk-SK/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Od používateľa nie je vyžadované používaľ tvar "username@domain.local", stačí keď použije "username".', 'admin_cc_email' => 'Kópia e-mailu', 'admin_cc_email_help' => 'Ak chcete poslať kópiu potvrdzujúceho emailu o prevzatí / odovzdaní, ktorý sa posiela používateľom, aj na ďalšiu e-mailovú adresu, tu ju zadajte. V opačnom prípade nechajte políčko prázdne.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Toto je server typu Active Directory', 'alerts' => 'Upozornenia', 'alert_title' => 'Update Notification Settings', @@ -70,7 +71,7 @@ return [ 'general_settings_help' => 'Default EULA and more', 'generate_backup' => 'Generate Backup', 'header_color' => 'Header Color', - 'info' => 'These settings let you customize certain aspects of your installation.', + 'info' => 'Tieto nastavenia umožňujú upraviť vybrané aspekty Vašej inštalácie.', 'label_logo' => 'Label Logo', 'label_logo_size' => 'Square logos look best - will be displayed in the top right of each asset label. ', 'laravel' => 'Laravel Version', @@ -85,7 +86,7 @@ return [ 'ldap_integration' => 'LDAP Integration', 'ldap_settings' => 'LDAP Settings', 'ldap_client_tls_cert_help' => 'Certifikát a kľúč TLS na strane klienta pre pripojenia LDAP sú zvyčajne užitočné iba v konfiguráciách služby Google Workspace so zabezpečeným protokolom LDAP. Obe sú povinné.', - 'ldap_client_tls_key' => 'LDAP Client-Side TLS key', + 'ldap_client_tls_key' => 'Kľúč TLS na strane klienta LDAP', 'ldap_location' => 'LDAP Location', 'ldap_location_help' => 'The Ldap Location field should be used if an OU is not being used in the Base Bind DN. Leave this blank if an OU search is being used.', 'ldap_login_test_help' => 'Enter a valid LDAP username and password from the base DN you specified above to test whether your LDAP login is configured correctly. YOU MUST SAVE YOUR UPDATED LDAP SETTINGS FIRST.', @@ -109,7 +110,7 @@ return [ 'ldap_pw_sync' => 'LDAP Password Sync', 'ldap_pw_sync_help' => 'Uncheck this box if you do not wish to keep LDAP passwords synced with local passwords. Disabling this means that your users may not be able to login if your LDAP server is unreachable for some reason.', 'ldap_username_field' => 'Username Field', - 'ldap_lname_field' => 'Last Name', + 'ldap_lname_field' => 'Priezvisko', 'ldap_fname_field' => 'LDAP First Name', 'ldap_auth_filter_query' => 'LDAP Authentication query', 'ldap_version' => 'LDAP Version', @@ -181,7 +182,7 @@ return [ 'saml_idp_metadata_help' => 'Môžete špecifikovať IdP metadata formou URL alebo XML súboru.', 'saml_attr_mapping_username' => 'Matovanie atribútov - používateľské meno', 'saml_attr_mapping_username_help' => 'NameID bude použité ak nie je definovanie mapovanie atribútov alebo toto mapovanie je nesprávne.', - 'saml_forcelogin_label' => 'SAML Force Login', + 'saml_forcelogin_label' => 'Vynútené SAML prihlásenie', 'saml_forcelogin' => 'Nastaví SAML ako predvolené prihlasovanie', 'saml_forcelogin_help' => 'Môžete použiť \'/login?nosaml\' k načítaniu normálnej prihlasovacej stránky.', 'saml_slo_label' => 'SAML jednotné odhlásenie', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Veľkosti štítka & nastavenia', 'purge' => 'Purge', 'purge_keywords' => 'natrvalo odstrániť', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Odstrániť odmazané záznamy', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Číslo zamestnanca', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Názov', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Typ 2D čiarového kódu', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/sk/admin/settings/message.php b/resources/lang/sk-SK/admin/settings/message.php similarity index 94% rename from resources/lang/sk/admin/settings/message.php rename to resources/lang/sk-SK/admin/settings/message.php index 9811c69032..08d0be465d 100644 --- a/resources/lang/sk/admin/settings/message.php +++ b/resources/lang/sk-SK/admin/settings/message.php @@ -28,7 +28,7 @@ return [ 'ldap' => [ 'testing' => 'Testing LDAP Connection, Binding & Query ...', '500' => '500 Server Error. Please check your server logs for more information.', - 'error' => 'Something went wrong :(', + 'error' => 'Niečo sa pokazilo :(', 'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:', 'testing_authentication' => 'Testing LDAP Authentication...', 'authentication_success' => 'User authenticated against LDAP successfully!' @@ -38,9 +38,9 @@ return [ 'success' => 'Your :webhook_name Integration works!', 'success_pt1' => 'Success! Check the ', 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', - '500' => '500 Server Error.', + '500' => '500 Chyba servera.', 'error' => 'Something went wrong. :app responded with: :error_message', 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', - 'error_misc' => 'Something went wrong. :( ', + 'error_misc' => 'Niečo sa pokazilo. :( ', ] ]; diff --git a/resources/lang/sk-SK/admin/settings/table.php b/resources/lang/sk-SK/admin/settings/table.php new file mode 100644 index 0000000000..e8ac35ccd4 --- /dev/null +++ b/resources/lang/sk-SK/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Vytvorený', + 'size' => 'Size', +); diff --git a/resources/lang/sk/admin/statuslabels/message.php b/resources/lang/sk-SK/admin/statuslabels/message.php similarity index 86% rename from resources/lang/sk/admin/statuslabels/message.php rename to resources/lang/sk-SK/admin/statuslabels/message.php index 94654c50f7..807a42a7d4 100644 --- a/resources/lang/sk/admin/statuslabels/message.php +++ b/resources/lang/sk-SK/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Stav neexistuje.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Tento stav je priradený minimálne jednému mejtku, preto nemôže byť odstránený. Prosím odstráňte referenciu na tento stav z príslušného majetku a skúste znovu. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Tieto majetky nemôžu byť nikomu priradené.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Tieto majetky môžu byť priradené. Akonáhle sú priradené nadobudnú stav Priradené.', 'archived' => 'Tieto majetky nemôžu byť priradené, budú zobrazené iba vo výpise Archovavné. Tento stav je vhodný, ak si chcete ponechať informácie o predchádzajúcom majetku pre historické účely alebo prípravu rozpočtu, ale zároveň ich nechcete mať zobrazené v prehľade aktuálneho majetku.', 'pending' => 'Tieto majetky nemôžu byť ešte nikomu priradené. Často sa používa na predmety, ktoré čakajú na opravu ale očakáva sa ich návrat do obehu.', ], diff --git a/resources/lang/sk/admin/statuslabels/table.php b/resources/lang/sk-SK/admin/statuslabels/table.php similarity index 100% rename from resources/lang/sk/admin/statuslabels/table.php rename to resources/lang/sk-SK/admin/statuslabels/table.php diff --git a/resources/lang/sk/admin/suppliers/message.php b/resources/lang/sk-SK/admin/suppliers/message.php similarity index 100% rename from resources/lang/sk/admin/suppliers/message.php rename to resources/lang/sk-SK/admin/suppliers/message.php diff --git a/resources/lang/sk/admin/suppliers/table.php b/resources/lang/sk-SK/admin/suppliers/table.php similarity index 76% rename from resources/lang/sk/admin/suppliers/table.php rename to resources/lang/sk-SK/admin/suppliers/table.php index 9476509997..1e3729c386 100644 --- a/resources/lang/sk/admin/suppliers/table.php +++ b/resources/lang/sk-SK/admin/suppliers/table.php @@ -4,18 +4,18 @@ return array( 'about_suppliers_title' => 'About Suppliers', 'about_suppliers_text' => 'Suppliers are used to track the source of items', 'address' => 'Supplier Address', - 'assets' => 'Assets', - 'city' => 'City', + 'assets' => 'Majetok', + 'city' => 'Mesto', 'contact' => 'Contact Name', - 'country' => 'Country', + 'country' => 'Krajina', 'create' => 'Create Supplier', - 'email' => 'Email', + 'email' => 'E-mail', 'fax' => 'Fax', 'id' => 'ID', 'licenses' => 'Licenses', 'name' => 'Supplier Name', - 'notes' => 'Notes', - 'phone' => 'Phone', + 'notes' => 'Poznámky', + 'phone' => 'Telefón', 'state' => 'Štát', 'suppliers' => 'Dodávatelia', 'update' => 'Aktualizovať dodávateľa', diff --git a/resources/lang/sk/admin/users/general.php b/resources/lang/sk-SK/admin/users/general.php similarity index 97% rename from resources/lang/sk/admin/users/general.php rename to resources/lang/sk-SK/admin/users/general.php index 518df797c7..e70f35e64f 100644 --- a/resources/lang/sk/admin/users/general.php +++ b/resources/lang/sk-SK/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Zobraziť používateľa :name', 'usercsv' => 'CSV súbor', 'two_factor_admin_optin_help' => 'Vaše súčasné nastavenie administrátora umožňujú selektívne vynútenie dvojfaktorovej autentifikácie. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA prihlásené zariadenie ', + 'two_factor_active' => '2FA aktívne ', 'user_deactivated' => 'Užívateľ sa nemôže prihlásiť', 'user_activated' => 'Užívateľ sa môže prihlásiť', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/sk/admin/users/message.php b/resources/lang/sk-SK/admin/users/message.php similarity index 100% rename from resources/lang/sk/admin/users/message.php rename to resources/lang/sk-SK/admin/users/message.php diff --git a/resources/lang/sk/admin/users/table.php b/resources/lang/sk-SK/admin/users/table.php similarity index 95% rename from resources/lang/sk/admin/users/table.php rename to resources/lang/sk-SK/admin/users/table.php index 156e450579..9eb00f267c 100644 --- a/resources/lang/sk/admin/users/table.php +++ b/resources/lang/sk-SK/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manažér', 'managed_locations' => 'Spravované lokality', 'name' => 'Názov', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Poznámky', 'password_confirm' => 'Potvrdiť heslo', 'password' => 'Heslo', diff --git a/resources/lang/ms/auth.php b/resources/lang/sk-SK/auth.php similarity index 100% rename from resources/lang/ms/auth.php rename to resources/lang/sk-SK/auth.php diff --git a/resources/lang/sk/auth/general.php b/resources/lang/sk-SK/auth/general.php similarity index 100% rename from resources/lang/sk/auth/general.php rename to resources/lang/sk-SK/auth/general.php diff --git a/resources/lang/sk/auth/message.php b/resources/lang/sk-SK/auth/message.php similarity index 100% rename from resources/lang/sk/auth/message.php rename to resources/lang/sk-SK/auth/message.php diff --git a/resources/lang/sk/button.php b/resources/lang/sk-SK/button.php similarity index 100% rename from resources/lang/sk/button.php rename to resources/lang/sk-SK/button.php diff --git a/resources/lang/sk/general.php b/resources/lang/sk-SK/general.php similarity index 90% rename from resources/lang/sk/general.php rename to resources/lang/sk-SK/general.php index 7be7ef81bf..cfa6af70a7 100644 --- a/resources/lang/sk/general.php +++ b/resources/lang/sk-SK/general.php @@ -6,28 +6,28 @@ return [ 'accepted_date' => 'Date Accepted', 'accessory' => 'Accessory', 'accessory_report' => 'Accessory Report', - 'action' => 'Action', + 'action' => 'Akcia', 'activity_report' => 'Activity Report', - 'address' => 'Address', + 'address' => 'Adresa', 'admin' => 'Admin', 'administrator' => 'Administrator', 'add_seats' => 'Added seats', 'age' => "Age", 'all_assets' => 'All Assets', 'all' => 'All', - 'archived' => 'Archived', - 'asset_models' => 'Asset Models', + 'archived' => 'Archivované', + 'asset_models' => 'Typy majetku', 'asset_model' => 'Model', - 'asset' => 'Asset', + 'asset' => 'Majetok', 'asset_report' => 'Asset Report', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Označenie majetku', 'asset_tags' => 'Asset Tags', 'assets_available' => 'Assets available', 'accept_assets' => 'Accept Assets :name', 'accept_assets_menu' => 'Accept Assets', 'audit' => 'Audit', 'audit_report' => 'Audit Log', - 'assets' => 'Assets', + 'assets' => 'Majetok', 'assets_audited' => 'assets audited', 'assets_checked_in_count' => 'assets checked in', 'assets_checked_out_count' => 'assets checked out', @@ -51,8 +51,8 @@ return [ 'bystatus' => 'by Status', 'cancel' => 'Zrušiť', 'categories' => 'Categories', - 'category' => 'Category', - 'change' => 'In/Out', + 'category' => 'Kategória', + 'change' => 'Vsetup/Výstup', 'changeemail' => 'Change Email Address', 'changepassword' => 'Change Password', 'checkin' => 'Checkin', @@ -61,7 +61,7 @@ return [ 'checkouts_count' => 'Checkouts', 'checkins_count' => 'Checkins', 'user_requests_count' => 'Requests', - 'city' => 'City', + 'city' => 'Mesto', 'click_here' => 'Click here', 'clear_selection' => 'Clear Selection', 'companies' => 'Companies', @@ -71,7 +71,7 @@ return [ 'complete' => 'Complete', 'consumable' => 'Consumable', 'consumables' => 'Consumables', - 'country' => 'Country', + 'country' => 'Krajina', 'could_not_restore' => 'Error restoring :item_type: :error', 'not_deleted' => 'The :item_type is not deleted so it cannot be restored', 'create' => 'Create New', @@ -89,8 +89,8 @@ return [ 'dashboard' => 'Dashboard', 'days' => 'days', 'days_to_next_audit' => 'Days to Next Audit', - 'date' => 'Date', - 'debug_warning' => 'Warning!', + 'date' => 'Dátum', + 'debug_warning' => 'Upozornenie!', 'debug_warning_text' => 'This application is running in production mode with debugging enabled. This can expose sensitive data if your application is accessible to the outside world. Disable debug mode by setting the APP_DEBUG value in your .env file to false.', 'delete' => 'Odstrániť', 'delete_confirm' => 'Are you sure you wish to delete :item?', @@ -99,9 +99,9 @@ return [ 'delete_seats' => 'Deleted Seats', 'deletion_failed' => 'Vymazanie zlyhalo', 'departments' => 'Departments', - 'department' => 'Department', + 'department' => 'Oddelenie', 'deployed' => 'Deployed', - 'depreciation' => 'Depreciation', + 'depreciation' => 'Odpisovanie', 'depreciations' => 'Depreciations', 'depreciation_report' => 'Depreciation Report', 'details' => 'Details', @@ -111,7 +111,7 @@ return [ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Číslo zamestnanca', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Chyba', 'exclude_archived' => 'Exclude Archived Assets', @@ -130,7 +130,7 @@ return [ 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)', 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)', 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)', - 'first_name' => 'First Name', + 'first_name' => 'Meno', 'first_name_format' => 'First Name (jane@example.com)', 'files' => 'Files', 'file_name' => 'Súbor', @@ -156,13 +156,14 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', 'asset_maintenance' => 'Asset Maintenance', 'asset_maintenance_report' => 'Asset Maintenance Report', 'asset_maintenances' => 'Asset Maintenances', - 'item' => 'Item', + 'item' => 'Položka', 'item_name' => 'Názov položky', 'import_file' => 'import CSV file', 'import_type' => 'CSV import type', @@ -170,8 +171,8 @@ return [ 'kits' => 'Predefined Kits', 'language' => 'Language', 'last' => 'Last', - 'last_login' => 'Last Login', - 'last_name' => 'Last Name', + 'last_login' => 'Posledné prihlásenie', + 'last_name' => 'Priezvisko', 'license' => 'License', 'license_report' => 'License Report', 'licenses_available' => 'licenses available', @@ -180,43 +181,43 @@ return [ 'loading' => 'Načítavanie... prosím čakajte....', 'lock_passwords' => 'This field value will not be saved in a demo installation.', 'feature_disabled' => 'This feature has been disabled for the demo installation.', - 'location' => 'Location', - 'locations' => 'Locations', + 'location' => 'Lokalita', + 'locations' => 'Lokality', 'logo_size' => 'Square logos look best with Logo + Text. Logo maximum display size is 50px high x 500px wide. ', 'logout' => 'Logout', 'lookup_by_tag' => 'Lookup by Asset Tag', 'maintenances' => 'Maintenances', 'manage_api_keys' => 'Spravovať API kľúče', - 'manufacturer' => 'Manufacturer', + 'manufacturer' => 'Výrobca', 'manufacturers' => 'Manufacturers', 'markdown' => 'This field allows Github flavored markdown.', 'min_amt' => 'Min. QTY', 'min_amt_help' => 'Minimálny počet položiek, ktoré by mali byť dostupné pred spustením upozornenia. Nechajte minimálne množstvo prázdne, ak nechcete dostávať upozornenia na nízky inventár.', - 'model_no' => 'Model No.', - 'months' => 'months', - 'moreinfo' => 'More Info', - 'name' => 'Name', + 'model_no' => 'Číslo modelu', + 'months' => 'mesiace/ov', + 'moreinfo' => 'Viac info', + 'name' => 'Názov', 'new_password' => 'Nové Heslo', 'next' => 'Next', 'next_audit_date' => 'Next Audit Date', 'last_audit' => 'Last Audit', - 'new' => 'new!', + 'new' => 'nový!', 'no_depreciation' => 'No Depreciation', 'no_results' => 'No Results.', 'no' => 'Nie', - 'notes' => 'Notes', - 'order_number' => 'Order Number', + 'notes' => 'Poznámky', + 'order_number' => 'Číslo objednávky', 'only_deleted' => 'Only Deleted Assets', 'page_menu' => 'Showing _MENU_ items', 'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items', - 'pending' => 'Pending', + 'pending' => 'Čakajúce', 'people' => 'People', - 'per_page' => 'Results Per Page', + 'per_page' => 'Výsledkov na stránku', 'previous' => 'Previous', 'processing' => 'Processing', 'profile' => 'Your profile', - 'purchase_cost' => 'Purchase Cost', - 'purchase_date' => 'Purchase Date', + 'purchase_cost' => 'Kúpna cena', + 'purchase_date' => 'Dátum nákupu', 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', @@ -228,9 +229,9 @@ return [ 'remove_company' => 'Remove Company Association', 'reports' => 'Reports', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'Obnoviť', 'requestable_models' => 'Requestable Models', - 'requested' => 'Requested', + 'requested' => 'Vyžiadané', 'requested_date' => 'Requested Date', 'requested_assets' => 'Requested Assets', 'requested_assets_menu' => 'Requested Assets', @@ -262,17 +263,17 @@ return [ 'webhook_msg_note' => 'A notification will be sent via webhook', 'webhook_test_msg' => 'Oh hai! Looks like your :app integration with Snipe-IT is working!', 'some_features_disabled' => 'DEMO MODE: Some features are disabled for this installation.', - 'site_name' => 'Site Name', - 'state' => 'State', - 'status_labels' => 'Status Labels', - 'status' => 'Status', + 'site_name' => 'Názov stránky', + 'state' => 'Štát', + 'status_labels' => 'Stavy', + 'status' => 'Stav', 'accept_eula' => 'Licenčné podmienky', 'supplier' => 'Supplier', - 'suppliers' => 'Suppliers', + 'suppliers' => 'Dodávatelia', 'sure_to_delete' => 'Are you sure you wish to delete', 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', 'delete_what' => 'Delete :item', - 'submit' => 'Submit', + 'submit' => 'Odoslať', 'target' => 'Target', 'time_and_date_display' => 'Time and Date Display', 'total_assets' => 'total assets', @@ -298,7 +299,7 @@ return [ 'viewassetsfor' => 'View Assets for :name', 'website' => 'Website', 'welcome' => 'Welcome, :name', - 'years' => 'years', + 'years' => 'roky/ov', 'yes' => 'Áno', 'zip' => 'Zip', 'noimage' => 'No image uploaded or image not found.', @@ -332,12 +333,12 @@ return [ 'setup_create_admin' => 'Vytvoriť admin užívateľa', 'setup_done' => 'Hotovo!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Odovzdané', 'checked_out_to' => 'Checked out to', 'fields' => 'Polia', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', + 'expected_checkin' => 'Očakávaný dátum prijatia', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', 'changed' => 'Zmenené', 'to' => 'To', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error', + 'notification_error' => 'Chyba', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', + 'notification_warning' => 'Upozornenie', 'notification_info' => 'Info', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Názov asetu', 'consumable_information' => 'Consumable Information:', 'consumable_name' => 'Consumable Name:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Názov príslušenstva:', 'clone_item' => 'Duplikovať položku', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -406,7 +407,7 @@ return [ 'pie_chart_type' => 'Dashboard Pie Chart Type', 'hello_name' => 'Hello, :name!', 'unaccepted_profile_warning' => 'You have :count items requiring acceptance. Click here to accept or decline them', - 'start_date' => 'Start Date', + 'start_date' => 'Dátum začiatku', 'end_date' => 'End Date', 'alt_uploaded_image_thumbnail' => 'Uploaded thumbnail', 'placeholder_kit' => 'Select a kit', @@ -416,7 +417,7 @@ return [ 'pre_flight' => 'Pre-Flight', 'skip_to_main_content' => 'Skip to main content', 'toggle_navigation' => 'Toggle navigation', - 'alerts' => 'Alerts', + 'alerts' => 'Upozornenia', 'tasks_view_all' => 'View all tasks', 'true' => 'True', 'false' => 'False', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':názov položky', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'upraviť', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/sk/help.php b/resources/lang/sk-SK/help.php similarity index 84% rename from resources/lang/sk/help.php rename to resources/lang/sk-SK/help.php index b8c7549e5c..87bebbee3a 100644 --- a/resources/lang/sk/help.php +++ b/resources/lang/sk-SK/help.php @@ -17,7 +17,7 @@ return [ 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', + 'assets' => 'Majetkom sú položky identifikované sériovým čislom alebo značkou majetku. Väčšinou ide o položky s vyššou hodnotou, pri ktorých je dôležité identifikovať konkrétnu položku.', 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', @@ -29,7 +29,7 @@ return [ 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', + 'depreciations' => 'Môžete nastaviť odpisovanie majetku, aby dochádzalo k rovnomernému odpisovaniu.', 'empty_file' => 'The importer detects that this file is empty.' ]; diff --git a/resources/lang/sk-SK/localizations.php b/resources/lang/sk-SK/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/sk-SK/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/so/mail.php b/resources/lang/sk-SK/mail.php similarity index 88% rename from resources/lang/so/mail.php rename to resources/lang/sk-SK/mail.php index 7dd8d6181c..7858642cb6 100644 --- a/resources/lang/so/mail.php +++ b/resources/lang/sk-SK/mail.php @@ -5,18 +5,18 @@ return [ 'acceptance_asset_declined' => 'A user has declined an item', 'a_user_canceled' => 'A user has canceled an item request on the website', 'a_user_requested' => 'A user has requested an item on the website', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Názov príslušenstva:', 'additional_notes' => 'Additional Notes:', 'admin_has_created' => 'An administrator has created an account for you on the :web website.', - 'asset' => 'Asset:', - 'asset_name' => 'Asset Name:', + 'asset' => 'Majetok:', + 'asset_name' => 'Názov assetu/majetku:', 'asset_requested' => 'Asset requested', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Označenie majetku', 'assigned_to' => 'Assigned To', 'best_regards' => 'Best regards,', 'canceled' => 'Canceled:', - 'checkin_date' => 'Checkin Date:', - 'checkout_date' => 'Checkout Date:', + 'checkin_date' => 'Dátum prijatia:', + 'checkout_date' => 'Dátum odovzdania:', 'click_to_confirm' => 'Please click on the following link to confirm your :web account:', 'click_on_the_link_accessory' => 'Please click on the link at the bottom to confirm that you have received the accessory.', 'click_on_the_link_asset' => 'Please click on the link at the bottom to confirm that you have received the asset.', @@ -29,34 +29,34 @@ return [ 'current_QTY' => 'Current QTY', 'Days' => 'Days', 'days' => 'Days', - 'expecting_checkin_date' => 'Expected Checkin Date:', - 'expires' => 'Expires', + 'expecting_checkin_date' => 'Očakávaný dátum prijatia:', + 'expires' => 'Exspiruje', 'Expiring_Assets_Report' => 'Expiring Assets Report.', 'Expiring_Licenses_Report' => 'Expiring Licenses Report.', 'hello' => 'Hello', 'hi' => 'Hi', 'i_have_read' => 'I have read and agree to the terms of use, and have received this item.', - 'item' => 'Item:', + 'item' => 'Položka:', 'Item_Request_Canceled' => 'Item Request Canceled', 'Item_Requested' => 'Item Requested', 'link_to_update_password' => 'Please click on the following link to update your :web password:', 'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:', - 'login' => 'Login:', + 'login' => 'Prihlásenie:', 'Low_Inventory_Report' => 'Low Inventory Report', 'inventory_report' => 'Inventory Report', 'min_QTY' => 'Min QTY', - 'name' => 'Name', + 'name' => 'Názov', 'new_item_checked' => 'A new item has been checked out under your name, details are below.', - 'password' => 'Password:', + 'password' => 'Heslo:', 'password_reset' => 'Password Reset', 'read_the_terms' => 'Please read the terms of use below.', 'read_the_terms_and_click' => 'Please read the terms of use below, and click on the link at the bottom to confirm that you read and agree to the terms of use, and have received the asset.', - 'requested' => 'Requested:', + 'requested' => 'Vyžiadané:', 'reset_link' => 'Your Password Reset Link', 'reset_password' => 'Click here to reset your password:', - 'serial' => 'Serial', + 'serial' => 'Sériové číslo', 'supplier' => 'Supplier', 'tag' => 'Tag', 'test_email' => 'Test Email from Snipe-IT', @@ -69,7 +69,7 @@ return [ 'type' => 'Type', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', 'user' => 'User', - 'username' => 'Username', + 'username' => 'Používateľské meno', 'welcome' => 'Welcome :name', 'welcome_to' => 'Welcome to :web!', 'your_credentials' => 'Your Snipe-IT credentials', diff --git a/resources/lang/sk/pagination.php b/resources/lang/sk-SK/pagination.php similarity index 100% rename from resources/lang/sk/pagination.php rename to resources/lang/sk-SK/pagination.php diff --git a/resources/lang/ro/passwords.php b/resources/lang/sk-SK/passwords.php similarity index 100% rename from resources/lang/ro/passwords.php rename to resources/lang/sk-SK/passwords.php diff --git a/resources/lang/sk/reminders.php b/resources/lang/sk-SK/reminders.php similarity index 100% rename from resources/lang/sk/reminders.php rename to resources/lang/sk-SK/reminders.php diff --git a/resources/lang/sk/table.php b/resources/lang/sk-SK/table.php similarity index 100% rename from resources/lang/sk/table.php rename to resources/lang/sk-SK/table.php diff --git a/resources/lang/sk/validation.php b/resources/lang/sk-SK/validation.php similarity index 99% rename from resources/lang/sk/validation.php rename to resources/lang/sk-SK/validation.php index e9db716f09..c3b9688444 100644 --- a/resources/lang/sk/validation.php +++ b/resources/lang/sk-SK/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Heslo nemôže byť rovnaké ako užívateľské meno.', 'letters' => 'Heslo musí obsahovať najmenej jedno písmeno.', 'numbers' => 'Heslo musí obsahovať najmenej jednu číslicu.', diff --git a/resources/lang/sk/admin/kits/general.php b/resources/lang/sk/admin/kits/general.php deleted file mode 100644 index f724ecbf07..0000000000 --- a/resources/lang/sk/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Kit was successfully created.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/sk/admin/labels/table.php b/resources/lang/sk/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/sk/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/sk/admin/settings/table.php b/resources/lang/sk/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/sk/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/sk/localizations.php b/resources/lang/sk/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/sk/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/ro/account/general.php b/resources/lang/sl-SI/account/general.php similarity index 100% rename from resources/lang/ro/account/general.php rename to resources/lang/sl-SI/account/general.php diff --git a/resources/lang/sl/admin/accessories/general.php b/resources/lang/sl-SI/admin/accessories/general.php similarity index 100% rename from resources/lang/sl/admin/accessories/general.php rename to resources/lang/sl-SI/admin/accessories/general.php diff --git a/resources/lang/sl/admin/accessories/message.php b/resources/lang/sl-SI/admin/accessories/message.php similarity index 100% rename from resources/lang/sl/admin/accessories/message.php rename to resources/lang/sl-SI/admin/accessories/message.php diff --git a/resources/lang/sl/admin/accessories/table.php b/resources/lang/sl-SI/admin/accessories/table.php similarity index 100% rename from resources/lang/sl/admin/accessories/table.php rename to resources/lang/sl-SI/admin/accessories/table.php diff --git a/resources/lang/sl/admin/asset_maintenances/form.php b/resources/lang/sl-SI/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/sl/admin/asset_maintenances/form.php rename to resources/lang/sl-SI/admin/asset_maintenances/form.php diff --git a/resources/lang/sl/admin/asset_maintenances/general.php b/resources/lang/sl-SI/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/sl/admin/asset_maintenances/general.php rename to resources/lang/sl-SI/admin/asset_maintenances/general.php diff --git a/resources/lang/sl/admin/asset_maintenances/message.php b/resources/lang/sl-SI/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/sl/admin/asset_maintenances/message.php rename to resources/lang/sl-SI/admin/asset_maintenances/message.php diff --git a/resources/lang/sl/admin/asset_maintenances/table.php b/resources/lang/sl-SI/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/sl/admin/asset_maintenances/table.php rename to resources/lang/sl-SI/admin/asset_maintenances/table.php diff --git a/resources/lang/sl/admin/categories/general.php b/resources/lang/sl-SI/admin/categories/general.php similarity index 100% rename from resources/lang/sl/admin/categories/general.php rename to resources/lang/sl-SI/admin/categories/general.php diff --git a/resources/lang/sl/admin/categories/message.php b/resources/lang/sl-SI/admin/categories/message.php similarity index 100% rename from resources/lang/sl/admin/categories/message.php rename to resources/lang/sl-SI/admin/categories/message.php diff --git a/resources/lang/sl/admin/categories/table.php b/resources/lang/sl-SI/admin/categories/table.php similarity index 100% rename from resources/lang/sl/admin/categories/table.php rename to resources/lang/sl-SI/admin/categories/table.php diff --git a/resources/lang/sl/admin/companies/general.php b/resources/lang/sl-SI/admin/companies/general.php similarity index 87% rename from resources/lang/sl/admin/companies/general.php rename to resources/lang/sl-SI/admin/companies/general.php index 7176f99bf5..1bc0e436c3 100644 --- a/resources/lang/sl/admin/companies/general.php +++ b/resources/lang/sl-SI/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Izberite podjetje', - 'about_companies' => 'About Companies', + 'about_companies' => 'O podjetjih', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/sl/admin/companies/message.php b/resources/lang/sl-SI/admin/companies/message.php similarity index 100% rename from resources/lang/sl/admin/companies/message.php rename to resources/lang/sl-SI/admin/companies/message.php diff --git a/resources/lang/sl/admin/companies/table.php b/resources/lang/sl-SI/admin/companies/table.php similarity index 100% rename from resources/lang/sl/admin/companies/table.php rename to resources/lang/sl-SI/admin/companies/table.php diff --git a/resources/lang/sl/admin/components/general.php b/resources/lang/sl-SI/admin/components/general.php similarity index 100% rename from resources/lang/sl/admin/components/general.php rename to resources/lang/sl-SI/admin/components/general.php diff --git a/resources/lang/sl/admin/components/message.php b/resources/lang/sl-SI/admin/components/message.php similarity index 100% rename from resources/lang/sl/admin/components/message.php rename to resources/lang/sl-SI/admin/components/message.php diff --git a/resources/lang/sl/admin/components/table.php b/resources/lang/sl-SI/admin/components/table.php similarity index 100% rename from resources/lang/sl/admin/components/table.php rename to resources/lang/sl-SI/admin/components/table.php diff --git a/resources/lang/sl/admin/consumables/general.php b/resources/lang/sl-SI/admin/consumables/general.php similarity index 100% rename from resources/lang/sl/admin/consumables/general.php rename to resources/lang/sl-SI/admin/consumables/general.php diff --git a/resources/lang/sl/admin/consumables/message.php b/resources/lang/sl-SI/admin/consumables/message.php similarity index 100% rename from resources/lang/sl/admin/consumables/message.php rename to resources/lang/sl-SI/admin/consumables/message.php diff --git a/resources/lang/sl/admin/consumables/table.php b/resources/lang/sl-SI/admin/consumables/table.php similarity index 100% rename from resources/lang/sl/admin/consumables/table.php rename to resources/lang/sl-SI/admin/consumables/table.php diff --git a/resources/lang/sl/admin/custom_fields/general.php b/resources/lang/sl-SI/admin/custom_fields/general.php similarity index 96% rename from resources/lang/sl/admin/custom_fields/general.php rename to resources/lang/sl-SI/admin/custom_fields/general.php index d0d61e7d0b..6e6ecb074b 100644 --- a/resources/lang/sl/admin/custom_fields/general.php +++ b/resources/lang/sl-SI/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ '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' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + '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.', diff --git a/resources/lang/sl/admin/custom_fields/message.php b/resources/lang/sl-SI/admin/custom_fields/message.php similarity index 100% rename from resources/lang/sl/admin/custom_fields/message.php rename to resources/lang/sl-SI/admin/custom_fields/message.php diff --git a/resources/lang/sl/admin/departments/message.php b/resources/lang/sl-SI/admin/departments/message.php similarity index 100% rename from resources/lang/sl/admin/departments/message.php rename to resources/lang/sl-SI/admin/departments/message.php diff --git a/resources/lang/sl/admin/departments/table.php b/resources/lang/sl-SI/admin/departments/table.php similarity index 100% rename from resources/lang/sl/admin/departments/table.php rename to resources/lang/sl-SI/admin/departments/table.php diff --git a/resources/lang/sl/admin/depreciations/general.php b/resources/lang/sl-SI/admin/depreciations/general.php similarity index 100% rename from resources/lang/sl/admin/depreciations/general.php rename to resources/lang/sl-SI/admin/depreciations/general.php diff --git a/resources/lang/sl/admin/depreciations/message.php b/resources/lang/sl-SI/admin/depreciations/message.php similarity index 100% rename from resources/lang/sl/admin/depreciations/message.php rename to resources/lang/sl-SI/admin/depreciations/message.php diff --git a/resources/lang/sl/admin/depreciations/table.php b/resources/lang/sl-SI/admin/depreciations/table.php similarity index 100% rename from resources/lang/sl/admin/depreciations/table.php rename to resources/lang/sl-SI/admin/depreciations/table.php diff --git a/resources/lang/sl/admin/groups/message.php b/resources/lang/sl-SI/admin/groups/message.php similarity index 100% rename from resources/lang/sl/admin/groups/message.php rename to resources/lang/sl-SI/admin/groups/message.php diff --git a/resources/lang/sl/admin/groups/table.php b/resources/lang/sl-SI/admin/groups/table.php similarity index 100% rename from resources/lang/sl/admin/groups/table.php rename to resources/lang/sl-SI/admin/groups/table.php diff --git a/resources/lang/sl/admin/groups/titles.php b/resources/lang/sl-SI/admin/groups/titles.php similarity index 100% rename from resources/lang/sl/admin/groups/titles.php rename to resources/lang/sl-SI/admin/groups/titles.php diff --git a/resources/lang/sl/admin/hardware/form.php b/resources/lang/sl-SI/admin/hardware/form.php similarity index 100% rename from resources/lang/sl/admin/hardware/form.php rename to resources/lang/sl-SI/admin/hardware/form.php diff --git a/resources/lang/sl/admin/hardware/general.php b/resources/lang/sl-SI/admin/hardware/general.php similarity index 100% rename from resources/lang/sl/admin/hardware/general.php rename to resources/lang/sl-SI/admin/hardware/general.php diff --git a/resources/lang/sl/admin/hardware/message.php b/resources/lang/sl-SI/admin/hardware/message.php similarity index 98% rename from resources/lang/sl/admin/hardware/message.php rename to resources/lang/sl-SI/admin/hardware/message.php index f87f60c082..44f9ceb448 100644 --- a/resources/lang/sl/admin/hardware/message.php +++ b/resources/lang/sl-SI/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Sredstvo ni bilo obnovljeno, poskusite znova', 'success' => 'Sredstvo je bilo uspešno obnovljeno.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Sredstvo je bilo uspešno obnovljeno.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/sl/admin/hardware/table.php b/resources/lang/sl-SI/admin/hardware/table.php similarity index 96% rename from resources/lang/sl/admin/hardware/table.php rename to resources/lang/sl-SI/admin/hardware/table.php index 9226440e56..6994adefad 100644 --- a/resources/lang/sl/admin/hardware/table.php +++ b/resources/lang/sl-SI/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Slika naprave', 'days_without_acceptance' => 'Dnevi brez sprejema', 'monthly_depreciation' => 'Mesečna amortizacija', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Dodeljena', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/sl/admin/kits/general.php b/resources/lang/sl-SI/admin/kits/general.php similarity index 90% rename from resources/lang/sl/admin/kits/general.php rename to resources/lang/sl-SI/admin/kits/general.php index 0df983d87e..aeb6604b69 100644 --- a/resources/lang/sl/admin/kits/general.php +++ b/resources/lang/sl-SI/admin/kits/general.php @@ -24,13 +24,13 @@ return [ 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Licenca ne obstaja', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Potrošni material ne obstaja', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', @@ -41,10 +41,10 @@ return [ 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', + 'kit_created' => 'Komplet uspešno ustvarjen', + 'kit_updated' => 'Komplet uspešno posodobljen', 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', + 'kit_deleted' => 'Komplet uspešno izbrisan', 'kit_model_updated' => 'Model was successfully updated', 'kit_model_detached' => 'Model was successfully detached', ]; diff --git a/resources/lang/ro/admin/labels/message.php b/resources/lang/sl-SI/admin/labels/message.php similarity index 100% rename from resources/lang/ro/admin/labels/message.php rename to resources/lang/sl-SI/admin/labels/message.php diff --git a/resources/lang/sl-SI/admin/labels/table.php b/resources/lang/sl-SI/admin/labels/table.php new file mode 100644 index 0000000000..953feaba60 --- /dev/null +++ b/resources/lang/sl-SI/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Oznaka', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logotip', + 'support_title' => 'Naslov', + +]; \ No newline at end of file diff --git a/resources/lang/sl/admin/licenses/form.php b/resources/lang/sl-SI/admin/licenses/form.php similarity index 100% rename from resources/lang/sl/admin/licenses/form.php rename to resources/lang/sl-SI/admin/licenses/form.php diff --git a/resources/lang/sl/admin/licenses/general.php b/resources/lang/sl-SI/admin/licenses/general.php similarity index 100% rename from resources/lang/sl/admin/licenses/general.php rename to resources/lang/sl-SI/admin/licenses/general.php diff --git a/resources/lang/sl/admin/licenses/message.php b/resources/lang/sl-SI/admin/licenses/message.php similarity index 100% rename from resources/lang/sl/admin/licenses/message.php rename to resources/lang/sl-SI/admin/licenses/message.php diff --git a/resources/lang/sl/admin/licenses/table.php b/resources/lang/sl-SI/admin/licenses/table.php similarity index 100% rename from resources/lang/sl/admin/licenses/table.php rename to resources/lang/sl-SI/admin/licenses/table.php diff --git a/resources/lang/sl/admin/locations/message.php b/resources/lang/sl-SI/admin/locations/message.php similarity index 100% rename from resources/lang/sl/admin/locations/message.php rename to resources/lang/sl-SI/admin/locations/message.php diff --git a/resources/lang/sl/admin/locations/table.php b/resources/lang/sl-SI/admin/locations/table.php similarity index 79% rename from resources/lang/sl/admin/locations/table.php rename to resources/lang/sl-SI/admin/locations/table.php index 1818c2faa3..6ba1e95d28 100644 --- a/resources/lang/sl/admin/locations/table.php +++ b/resources/lang/sl-SI/admin/locations/table.php @@ -22,18 +22,18 @@ return [ 'currency' => 'Lokalna valuta', 'ldap_ou' => 'LDAP Search OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Oddelek', + 'location' => 'Lokacija', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', + 'asset_name' => 'Ime', + 'asset_category' => 'Kategorija', + 'asset_manufacturer' => 'Proizvajalec', 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_serial' => 'Serijska številka', + 'asset_location' => 'Lokacija', + 'asset_checked_out' => 'Izdano', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Datum:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/sl/admin/manufacturers/message.php b/resources/lang/sl-SI/admin/manufacturers/message.php similarity index 100% rename from resources/lang/sl/admin/manufacturers/message.php rename to resources/lang/sl-SI/admin/manufacturers/message.php diff --git a/resources/lang/sl/admin/manufacturers/table.php b/resources/lang/sl-SI/admin/manufacturers/table.php similarity index 100% rename from resources/lang/sl/admin/manufacturers/table.php rename to resources/lang/sl-SI/admin/manufacturers/table.php diff --git a/resources/lang/sl/admin/models/general.php b/resources/lang/sl-SI/admin/models/general.php similarity index 100% rename from resources/lang/sl/admin/models/general.php rename to resources/lang/sl-SI/admin/models/general.php diff --git a/resources/lang/sl/admin/models/message.php b/resources/lang/sl-SI/admin/models/message.php similarity index 100% rename from resources/lang/sl/admin/models/message.php rename to resources/lang/sl-SI/admin/models/message.php diff --git a/resources/lang/sl/admin/models/table.php b/resources/lang/sl-SI/admin/models/table.php similarity index 100% rename from resources/lang/sl/admin/models/table.php rename to resources/lang/sl-SI/admin/models/table.php diff --git a/resources/lang/sl/admin/reports/general.php b/resources/lang/sl-SI/admin/reports/general.php similarity index 100% rename from resources/lang/sl/admin/reports/general.php rename to resources/lang/sl-SI/admin/reports/general.php diff --git a/resources/lang/sl/admin/reports/message.php b/resources/lang/sl-SI/admin/reports/message.php similarity index 100% rename from resources/lang/sl/admin/reports/message.php rename to resources/lang/sl-SI/admin/reports/message.php diff --git a/resources/lang/sl/admin/settings/general.php b/resources/lang/sl-SI/admin/settings/general.php similarity index 99% rename from resources/lang/sl/admin/settings/general.php rename to resources/lang/sl-SI/admin/settings/general.php index 9268d839d7..22a519f483 100644 --- a/resources/lang/sl/admin/settings/general.php +++ b/resources/lang/sl-SI/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Uporabniku ni potrebno vnesti "uporabnisko-ime@domena.local", vnesejo lahko le "uporabnisko-ime".', 'admin_cc_email' => 'E-pošta v vednost', 'admin_cc_email_help' => 'V kolikor želite poslati kopijo sprejemne/izdajne e-pošte poslane uporabnikom tudi na dodaten e-poštni račun, ga vnesite tu. V nasprotnem primeru pustite polje prazno.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'To je strežnik Active Directory', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Minimalni znaki gesla', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Najmanjša dovoljena vrednost je 8', 'pwd_secure_uncommon' => 'Preprečevanje pogostega gesla', 'pwd_secure_uncommon_help' => 'S tem uporabniki ne bodo mogli uporabljati pogostih gesel izmed 10.000 gesel, prijavljenih v kršitvah.', 'qr_help' => 'Najprej omogočite QR kodo da nastavite to', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Počisti izbrisane zapise', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Naslov', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Tip 2D črtne kode', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/sl/admin/settings/message.php b/resources/lang/sl-SI/admin/settings/message.php similarity index 100% rename from resources/lang/sl/admin/settings/message.php rename to resources/lang/sl-SI/admin/settings/message.php diff --git a/resources/lang/sl-SI/admin/settings/table.php b/resources/lang/sl-SI/admin/settings/table.php new file mode 100644 index 0000000000..70192894cf --- /dev/null +++ b/resources/lang/sl-SI/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Ustvarjeno', + 'size' => 'Size', +); diff --git a/resources/lang/sl/admin/statuslabels/message.php b/resources/lang/sl-SI/admin/statuslabels/message.php similarity index 86% rename from resources/lang/sl/admin/statuslabels/message.php rename to resources/lang/sl-SI/admin/statuslabels/message.php index cc7c37b321..6a85dcd1b5 100644 --- a/resources/lang/sl/admin/statuslabels/message.php +++ b/resources/lang/sl-SI/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Oznaka statusa ne obstaja.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Ta oznaka statusa je trenutno povezana z vsaj enim sredstvom in je ni mogoče izbrisati. Posodobite svoja sredstva, da ne bodo več v tem stanju in poskusite znova. ', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Tega sredstva ni mogoče dodeliti nikomur.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Teh sredstev ni mogoče izdati. Ko bodo dodeljeni, bodo prevzeli meta status Razporejeno.', 'archived' => 'Teh sredstev ni mogoče izdati in se bodo prikazala samo v pogledu Arhivirano. To je koristno za ohranjanje informacij o sredstvih za računovodske namene / zgodovinske namene, vendar jih ni na seznamu uporabnih sredstev.', 'pending' => 'Teh sredstev trnutno ni mogoče dodeliti nikomur, pogosto se uporablja za sredstva, ki so ne popravilu, in se pričakuje, da se bodo vrnila v obtok.', ], diff --git a/resources/lang/sl/admin/statuslabels/table.php b/resources/lang/sl-SI/admin/statuslabels/table.php similarity index 100% rename from resources/lang/sl/admin/statuslabels/table.php rename to resources/lang/sl-SI/admin/statuslabels/table.php diff --git a/resources/lang/sl/admin/suppliers/message.php b/resources/lang/sl-SI/admin/suppliers/message.php similarity index 100% rename from resources/lang/sl/admin/suppliers/message.php rename to resources/lang/sl-SI/admin/suppliers/message.php diff --git a/resources/lang/sl/admin/suppliers/table.php b/resources/lang/sl-SI/admin/suppliers/table.php similarity index 100% rename from resources/lang/sl/admin/suppliers/table.php rename to resources/lang/sl-SI/admin/suppliers/table.php diff --git a/resources/lang/sl/admin/users/general.php b/resources/lang/sl-SI/admin/users/general.php similarity index 97% rename from resources/lang/sl/admin/users/general.php rename to resources/lang/sl-SI/admin/users/general.php index 6e4fa889d1..9a922d6bb9 100644 --- a/resources/lang/sl/admin/users/general.php +++ b/resources/lang/sl-SI/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Ogled uporabnika :name', 'usercsv' => 'Datoteko CSV', 'two_factor_admin_optin_help' => 'Vaše trenutne nastavitve skrbnika omogočajo selektivno uveljavljanje dvotaktne pristnosti. ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'Vgrajena naprava 2FA ', + 'two_factor_active' => '2FA aktivna ', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/sl/admin/users/message.php b/resources/lang/sl-SI/admin/users/message.php similarity index 98% rename from resources/lang/sl/admin/users/message.php rename to resources/lang/sl-SI/admin/users/message.php index 4982e87334..cabb4eb99c 100644 --- a/resources/lang/sl/admin/users/message.php +++ b/resources/lang/sl-SI/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'To sredstev ste uspešno zavrnili.', 'bulk_manager_warn' => 'Vaši uporabniki so bili uspešno posodobljeni, vendar vnos v upravitelju ni bil shranjen, ker je bil izbran upravitelj tudi na seznamu uporabnikov, ki ga je treba urediti, uporabniki pa morda niso njihovi lastniki. Prosimo, izberite svoje uporabnike, razen upravitelja.', 'user_exists' => 'Uporabnik že obstaja!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Uporabnik ne obstaja.', 'user_login_required' => 'Polje za prijavo je obvezno', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Geslo je obvezno.', diff --git a/resources/lang/sl/admin/users/table.php b/resources/lang/sl-SI/admin/users/table.php similarity index 95% rename from resources/lang/sl/admin/users/table.php rename to resources/lang/sl-SI/admin/users/table.php index 46fb21104d..1adaff45be 100644 --- a/resources/lang/sl/admin/users/table.php +++ b/resources/lang/sl-SI/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Vodja', 'managed_locations' => 'Upravljane lokacije', 'name' => 'Ime', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Opombe', 'password_confirm' => 'Potrdite geslo', 'password' => 'Geslo', diff --git a/resources/lang/sk/auth.php b/resources/lang/sl-SI/auth.php similarity index 100% rename from resources/lang/sk/auth.php rename to resources/lang/sl-SI/auth.php diff --git a/resources/lang/sl/auth/general.php b/resources/lang/sl-SI/auth/general.php similarity index 100% rename from resources/lang/sl/auth/general.php rename to resources/lang/sl-SI/auth/general.php diff --git a/resources/lang/sl/auth/message.php b/resources/lang/sl-SI/auth/message.php similarity index 100% rename from resources/lang/sl/auth/message.php rename to resources/lang/sl-SI/auth/message.php diff --git a/resources/lang/sl/button.php b/resources/lang/sl-SI/button.php similarity index 95% rename from resources/lang/sl/button.php rename to resources/lang/sl-SI/button.php index 828a1b172d..811a461bb6 100644 --- a/resources/lang/sl/button.php +++ b/resources/lang/sl-SI/button.php @@ -20,5 +20,5 @@ return [ 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Novo', ]; diff --git a/resources/lang/sl/general.php b/resources/lang/sl-SI/general.php similarity index 95% rename from resources/lang/sl/general.php rename to resources/lang/sl-SI/general.php index 71ca9da679..42ae9391b6 100644 --- a/resources/lang/sl/general.php +++ b/resources/lang/sl-SI/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Sprejemljivi tipi datotek so jpg, png, gif in svg. Dovoljena je največja velikost nalaganja :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Uvozi', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Uvažanje', 'importing_help' => 'Mogoč je uvoz sredstev, dodatkov, licenc, komponent, potrošnega materiala in uporabnikov preko datotek CSV.

Datoteka CSV mora bi ločena z vejico in oblikovana z glavami, ki se ujemajo tistim v vzorčni datoteki CSV in dokumentaciji.', @@ -225,7 +226,7 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Pripravljeni za uporabo', 'recent_activity' => 'Nedavne dejavnosti', - 'remaining' => 'Remaining', + 'remaining' => 'Preostanek', 'remove_company' => 'Odstrani povezavo do podjetja', 'reports' => 'Poročila', 'restored' => 'obnovljena', @@ -271,7 +272,7 @@ return [ 'supplier' => 'Dobavitelj', 'suppliers' => 'Dobavitelji', 'sure_to_delete' => 'Ali ste prepričani, da želite izbrisati', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Ali ste prepričani, da želite izbrisati :item?', 'delete_what' => 'Delete :item', 'submit' => 'Pošlji', 'target' => 'Cilj', @@ -284,7 +285,7 @@ return [ 'undeployable' => 'Nerazporejeno', 'unknown_admin' => 'Neznan skrbnik', 'username_format' => 'Format za uporabniško ime', - 'username' => 'Username', + 'username' => 'Uporabniško ime', 'update' => 'Posodobi', 'upload_filetypes_help' => 'Dovoljeni tipi datotek so png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf in rar. Dovoljena je največja velikost nalaganja :size.', 'uploaded' => 'Naloženo', @@ -320,7 +321,7 @@ return [ 'hide_help' => 'Skrij pomoč', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'E-pošta', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -333,7 +334,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Izdano', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -376,15 +377,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Opozorilo', + 'notification_info' => 'Informacije', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Ime sredstva', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Ime potrošnega materiala:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Ime Dodatka:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -487,10 +488,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% končano', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'uredi', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/sl/help.php b/resources/lang/sl-SI/help.php similarity index 100% rename from resources/lang/sl/help.php rename to resources/lang/sl-SI/help.php diff --git a/resources/lang/sl-SI/localizations.php b/resources/lang/sl-SI/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/sl-SI/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/sl/mail.php b/resources/lang/sl-SI/mail.php similarity index 97% rename from resources/lang/sl/mail.php rename to resources/lang/sl-SI/mail.php index 31848ef446..1515675063 100644 --- a/resources/lang/sl/mail.php +++ b/resources/lang/sl-SI/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Sredstvo:', 'asset_name' => 'Ime sredstva:', 'asset_requested' => 'Sredstev zahtevano', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Oznaka sredstva', 'assigned_to' => 'Dodeljena', 'best_regards' => 'Lep pozdrav,', 'canceled' => 'Preklicana:', @@ -55,7 +55,7 @@ return [ 'requested' => 'Zahtevano:', 'reset_link' => 'Povezava za ponastavitev gesla', 'reset_password' => 'Kliknite tukaj, če želite ponastaviti geslo:', - 'serial' => 'Serial', + 'serial' => 'Serijska številka', 'supplier' => 'Dobavitelj', 'tag' => 'Oznaka', 'test_email' => 'Testna e-pošta od Snipe-IT', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'Če želite ponastaviti svoje: spletno geslo, izpolnite ta obrazec:', 'type' => 'Tip', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'Uporabnik', + 'username' => 'Uporabniško ime', 'welcome' => 'Dobrodošli: ime', 'welcome_to' => 'Dobrodošli na :web!', 'your_credentials' => 'Vaše poverilnice Snipe-IT', diff --git a/resources/lang/sl/pagination.php b/resources/lang/sl-SI/pagination.php similarity index 100% rename from resources/lang/sl/pagination.php rename to resources/lang/sl-SI/pagination.php diff --git a/resources/lang/sk/passwords.php b/resources/lang/sl-SI/passwords.php similarity index 100% rename from resources/lang/sk/passwords.php rename to resources/lang/sl-SI/passwords.php diff --git a/resources/lang/sl/reminders.php b/resources/lang/sl-SI/reminders.php similarity index 100% rename from resources/lang/sl/reminders.php rename to resources/lang/sl-SI/reminders.php diff --git a/resources/lang/sl/table.php b/resources/lang/sl-SI/table.php similarity index 100% rename from resources/lang/sl/table.php rename to resources/lang/sl-SI/table.php diff --git a/resources/lang/sl/validation.php b/resources/lang/sl-SI/validation.php similarity index 99% rename from resources/lang/sl/validation.php rename to resources/lang/sl-SI/validation.php index 34288b8fa5..fcfa0c1fce 100644 --- a/resources/lang/sl/validation.php +++ b/resources/lang/sl-SI/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'Atribut mora biti edinstven.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/sl/admin/labels/table.php b/resources/lang/sl/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/sl/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/sl/admin/settings/table.php b/resources/lang/sl/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/sl/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/sl/localizations.php b/resources/lang/sl/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/sl/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/sl/account/general.php b/resources/lang/so-SO/account/general.php similarity index 100% rename from resources/lang/sl/account/general.php rename to resources/lang/so-SO/account/general.php diff --git a/resources/lang/so/admin/accessories/general.php b/resources/lang/so-SO/admin/accessories/general.php similarity index 100% rename from resources/lang/so/admin/accessories/general.php rename to resources/lang/so-SO/admin/accessories/general.php diff --git a/resources/lang/so/admin/accessories/message.php b/resources/lang/so-SO/admin/accessories/message.php similarity index 100% rename from resources/lang/so/admin/accessories/message.php rename to resources/lang/so-SO/admin/accessories/message.php diff --git a/resources/lang/sk/admin/accessories/table.php b/resources/lang/so-SO/admin/accessories/table.php similarity index 100% rename from resources/lang/sk/admin/accessories/table.php rename to resources/lang/so-SO/admin/accessories/table.php diff --git a/resources/lang/sk/admin/asset_maintenances/form.php b/resources/lang/so-SO/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/sk/admin/asset_maintenances/form.php rename to resources/lang/so-SO/admin/asset_maintenances/form.php diff --git a/resources/lang/iu/admin/asset_maintenances/general.php b/resources/lang/so-SO/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/iu/admin/asset_maintenances/general.php rename to resources/lang/so-SO/admin/asset_maintenances/general.php diff --git a/resources/lang/so/admin/asset_maintenances/message.php b/resources/lang/so-SO/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/so/admin/asset_maintenances/message.php rename to resources/lang/so-SO/admin/asset_maintenances/message.php diff --git a/resources/lang/iu/admin/asset_maintenances/table.php b/resources/lang/so-SO/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/iu/admin/asset_maintenances/table.php rename to resources/lang/so-SO/admin/asset_maintenances/table.php diff --git a/resources/lang/so/admin/categories/general.php b/resources/lang/so-SO/admin/categories/general.php similarity index 100% rename from resources/lang/so/admin/categories/general.php rename to resources/lang/so-SO/admin/categories/general.php diff --git a/resources/lang/so/admin/categories/message.php b/resources/lang/so-SO/admin/categories/message.php similarity index 100% rename from resources/lang/so/admin/categories/message.php rename to resources/lang/so-SO/admin/categories/message.php diff --git a/resources/lang/so/admin/categories/table.php b/resources/lang/so-SO/admin/categories/table.php similarity index 100% rename from resources/lang/so/admin/categories/table.php rename to resources/lang/so-SO/admin/categories/table.php diff --git a/resources/lang/so/admin/companies/general.php b/resources/lang/so-SO/admin/companies/general.php similarity index 100% rename from resources/lang/so/admin/companies/general.php rename to resources/lang/so-SO/admin/companies/general.php diff --git a/resources/lang/so/admin/companies/message.php b/resources/lang/so-SO/admin/companies/message.php similarity index 100% rename from resources/lang/so/admin/companies/message.php rename to resources/lang/so-SO/admin/companies/message.php diff --git a/resources/lang/sk/admin/companies/table.php b/resources/lang/so-SO/admin/companies/table.php similarity index 100% rename from resources/lang/sk/admin/companies/table.php rename to resources/lang/so-SO/admin/companies/table.php diff --git a/resources/lang/sk/admin/components/general.php b/resources/lang/so-SO/admin/components/general.php similarity index 100% rename from resources/lang/sk/admin/components/general.php rename to resources/lang/so-SO/admin/components/general.php diff --git a/resources/lang/iu/admin/components/message.php b/resources/lang/so-SO/admin/components/message.php similarity index 100% rename from resources/lang/iu/admin/components/message.php rename to resources/lang/so-SO/admin/components/message.php diff --git a/resources/lang/so/admin/components/table.php b/resources/lang/so-SO/admin/components/table.php similarity index 100% rename from resources/lang/so/admin/components/table.php rename to resources/lang/so-SO/admin/components/table.php diff --git a/resources/lang/sk/admin/consumables/general.php b/resources/lang/so-SO/admin/consumables/general.php similarity index 100% rename from resources/lang/sk/admin/consumables/general.php rename to resources/lang/so-SO/admin/consumables/general.php diff --git a/resources/lang/iu/admin/consumables/message.php b/resources/lang/so-SO/admin/consumables/message.php similarity index 100% rename from resources/lang/iu/admin/consumables/message.php rename to resources/lang/so-SO/admin/consumables/message.php diff --git a/resources/lang/so/admin/consumables/table.php b/resources/lang/so-SO/admin/consumables/table.php similarity index 100% rename from resources/lang/so/admin/consumables/table.php rename to resources/lang/so-SO/admin/consumables/table.php diff --git a/resources/lang/so/admin/custom_fields/general.php b/resources/lang/so-SO/admin/custom_fields/general.php similarity index 100% rename from resources/lang/so/admin/custom_fields/general.php rename to resources/lang/so-SO/admin/custom_fields/general.php diff --git a/resources/lang/so/admin/custom_fields/message.php b/resources/lang/so-SO/admin/custom_fields/message.php similarity index 100% rename from resources/lang/so/admin/custom_fields/message.php rename to resources/lang/so-SO/admin/custom_fields/message.php diff --git a/resources/lang/so/admin/departments/message.php b/resources/lang/so-SO/admin/departments/message.php similarity index 100% rename from resources/lang/so/admin/departments/message.php rename to resources/lang/so-SO/admin/departments/message.php diff --git a/resources/lang/sk/admin/departments/table.php b/resources/lang/so-SO/admin/departments/table.php similarity index 100% rename from resources/lang/sk/admin/departments/table.php rename to resources/lang/so-SO/admin/departments/table.php diff --git a/resources/lang/so/admin/depreciations/general.php b/resources/lang/so-SO/admin/depreciations/general.php similarity index 100% rename from resources/lang/so/admin/depreciations/general.php rename to resources/lang/so-SO/admin/depreciations/general.php diff --git a/resources/lang/so/admin/depreciations/message.php b/resources/lang/so-SO/admin/depreciations/message.php similarity index 100% rename from resources/lang/so/admin/depreciations/message.php rename to resources/lang/so-SO/admin/depreciations/message.php diff --git a/resources/lang/so/admin/depreciations/table.php b/resources/lang/so-SO/admin/depreciations/table.php similarity index 100% rename from resources/lang/so/admin/depreciations/table.php rename to resources/lang/so-SO/admin/depreciations/table.php diff --git a/resources/lang/so/admin/groups/message.php b/resources/lang/so-SO/admin/groups/message.php similarity index 100% rename from resources/lang/so/admin/groups/message.php rename to resources/lang/so-SO/admin/groups/message.php diff --git a/resources/lang/iu/admin/groups/table.php b/resources/lang/so-SO/admin/groups/table.php similarity index 100% rename from resources/lang/iu/admin/groups/table.php rename to resources/lang/so-SO/admin/groups/table.php diff --git a/resources/lang/so/admin/groups/titles.php b/resources/lang/so-SO/admin/groups/titles.php similarity index 100% rename from resources/lang/so/admin/groups/titles.php rename to resources/lang/so-SO/admin/groups/titles.php diff --git a/resources/lang/en/admin/hardware/form.php b/resources/lang/so-SO/admin/hardware/form.php similarity index 100% rename from resources/lang/en/admin/hardware/form.php rename to resources/lang/so-SO/admin/hardware/form.php diff --git a/resources/lang/en/admin/hardware/general.php b/resources/lang/so-SO/admin/hardware/general.php similarity index 100% rename from resources/lang/en/admin/hardware/general.php rename to resources/lang/so-SO/admin/hardware/general.php diff --git a/resources/lang/so/admin/hardware/message.php b/resources/lang/so-SO/admin/hardware/message.php similarity index 100% rename from resources/lang/so/admin/hardware/message.php rename to resources/lang/so-SO/admin/hardware/message.php diff --git a/resources/lang/en/admin/hardware/table.php b/resources/lang/so-SO/admin/hardware/table.php similarity index 100% rename from resources/lang/en/admin/hardware/table.php rename to resources/lang/so-SO/admin/hardware/table.php diff --git a/resources/lang/el/admin/kits/general.php b/resources/lang/so-SO/admin/kits/general.php similarity index 100% rename from resources/lang/el/admin/kits/general.php rename to resources/lang/so-SO/admin/kits/general.php diff --git a/resources/lang/sk/admin/labels/message.php b/resources/lang/so-SO/admin/labels/message.php similarity index 100% rename from resources/lang/sk/admin/labels/message.php rename to resources/lang/so-SO/admin/labels/message.php diff --git a/resources/lang/cs/admin/labels/table.php b/resources/lang/so-SO/admin/labels/table.php similarity index 100% rename from resources/lang/cs/admin/labels/table.php rename to resources/lang/so-SO/admin/labels/table.php diff --git a/resources/lang/en/admin/licenses/form.php b/resources/lang/so-SO/admin/licenses/form.php similarity index 100% rename from resources/lang/en/admin/licenses/form.php rename to resources/lang/so-SO/admin/licenses/form.php diff --git a/resources/lang/so/admin/licenses/general.php b/resources/lang/so-SO/admin/licenses/general.php similarity index 100% rename from resources/lang/so/admin/licenses/general.php rename to resources/lang/so-SO/admin/licenses/general.php diff --git a/resources/lang/so/admin/licenses/message.php b/resources/lang/so-SO/admin/licenses/message.php similarity index 100% rename from resources/lang/so/admin/licenses/message.php rename to resources/lang/so-SO/admin/licenses/message.php diff --git a/resources/lang/sk/admin/licenses/table.php b/resources/lang/so-SO/admin/licenses/table.php similarity index 100% rename from resources/lang/sk/admin/licenses/table.php rename to resources/lang/so-SO/admin/licenses/table.php diff --git a/resources/lang/so/admin/locations/message.php b/resources/lang/so-SO/admin/locations/message.php similarity index 100% rename from resources/lang/so/admin/locations/message.php rename to resources/lang/so-SO/admin/locations/message.php diff --git a/resources/lang/en/admin/locations/table.php b/resources/lang/so-SO/admin/locations/table.php similarity index 100% rename from resources/lang/en/admin/locations/table.php rename to resources/lang/so-SO/admin/locations/table.php diff --git a/resources/lang/so/admin/manufacturers/message.php b/resources/lang/so-SO/admin/manufacturers/message.php similarity index 100% rename from resources/lang/so/admin/manufacturers/message.php rename to resources/lang/so-SO/admin/manufacturers/message.php diff --git a/resources/lang/so/admin/manufacturers/table.php b/resources/lang/so-SO/admin/manufacturers/table.php similarity index 100% rename from resources/lang/so/admin/manufacturers/table.php rename to resources/lang/so-SO/admin/manufacturers/table.php diff --git a/resources/lang/sk/admin/models/general.php b/resources/lang/so-SO/admin/models/general.php similarity index 100% rename from resources/lang/sk/admin/models/general.php rename to resources/lang/so-SO/admin/models/general.php diff --git a/resources/lang/so/admin/models/message.php b/resources/lang/so-SO/admin/models/message.php similarity index 100% rename from resources/lang/so/admin/models/message.php rename to resources/lang/so-SO/admin/models/message.php diff --git a/resources/lang/en/admin/models/table.php b/resources/lang/so-SO/admin/models/table.php similarity index 100% rename from resources/lang/en/admin/models/table.php rename to resources/lang/so-SO/admin/models/table.php diff --git a/resources/lang/so/admin/reports/general.php b/resources/lang/so-SO/admin/reports/general.php similarity index 100% rename from resources/lang/so/admin/reports/general.php rename to resources/lang/so-SO/admin/reports/general.php diff --git a/resources/lang/so/admin/reports/message.php b/resources/lang/so-SO/admin/reports/message.php similarity index 100% rename from resources/lang/so/admin/reports/message.php rename to resources/lang/so-SO/admin/reports/message.php diff --git a/resources/lang/so/admin/settings/general.php b/resources/lang/so-SO/admin/settings/general.php similarity index 99% rename from resources/lang/so/admin/settings/general.php rename to resources/lang/so-SO/admin/settings/general.php index 64d0aef53e..c8d6306036 100644 --- a/resources/lang/so/admin/settings/general.php +++ b/resources/lang/so-SO/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/so/admin/settings/message.php b/resources/lang/so-SO/admin/settings/message.php similarity index 100% rename from resources/lang/so/admin/settings/message.php rename to resources/lang/so-SO/admin/settings/message.php diff --git a/resources/lang/cy/admin/settings/table.php b/resources/lang/so-SO/admin/settings/table.php similarity index 100% rename from resources/lang/cy/admin/settings/table.php rename to resources/lang/so-SO/admin/settings/table.php diff --git a/resources/lang/am/admin/statuslabels/message.php b/resources/lang/so-SO/admin/statuslabels/message.php similarity index 97% rename from resources/lang/am/admin/statuslabels/message.php rename to resources/lang/so-SO/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/am/admin/statuslabels/message.php +++ b/resources/lang/so-SO/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/en/admin/statuslabels/table.php b/resources/lang/so-SO/admin/statuslabels/table.php similarity index 100% rename from resources/lang/en/admin/statuslabels/table.php rename to resources/lang/so-SO/admin/statuslabels/table.php diff --git a/resources/lang/so/admin/suppliers/message.php b/resources/lang/so-SO/admin/suppliers/message.php similarity index 100% rename from resources/lang/so/admin/suppliers/message.php rename to resources/lang/so-SO/admin/suppliers/message.php diff --git a/resources/lang/en/admin/suppliers/table.php b/resources/lang/so-SO/admin/suppliers/table.php similarity index 100% rename from resources/lang/en/admin/suppliers/table.php rename to resources/lang/so-SO/admin/suppliers/table.php diff --git a/resources/lang/so/admin/users/general.php b/resources/lang/so-SO/admin/users/general.php similarity index 100% rename from resources/lang/so/admin/users/general.php rename to resources/lang/so-SO/admin/users/general.php diff --git a/resources/lang/so/admin/users/message.php b/resources/lang/so-SO/admin/users/message.php similarity index 100% rename from resources/lang/so/admin/users/message.php rename to resources/lang/so-SO/admin/users/message.php diff --git a/resources/lang/iu/admin/users/table.php b/resources/lang/so-SO/admin/users/table.php similarity index 94% rename from resources/lang/iu/admin/users/table.php rename to resources/lang/so-SO/admin/users/table.php index 21e2154280..b8b919bf28 100644 --- a/resources/lang/iu/admin/users/table.php +++ b/resources/lang/so-SO/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirm Password', 'password' => 'Password', diff --git a/resources/lang/sl/auth.php b/resources/lang/so-SO/auth.php similarity index 100% rename from resources/lang/sl/auth.php rename to resources/lang/so-SO/auth.php diff --git a/resources/lang/so/auth/general.php b/resources/lang/so-SO/auth/general.php similarity index 100% rename from resources/lang/so/auth/general.php rename to resources/lang/so-SO/auth/general.php diff --git a/resources/lang/so/auth/message.php b/resources/lang/so-SO/auth/message.php similarity index 100% rename from resources/lang/so/auth/message.php rename to resources/lang/so-SO/auth/message.php diff --git a/resources/lang/en/button.php b/resources/lang/so-SO/button.php similarity index 100% rename from resources/lang/en/button.php rename to resources/lang/so-SO/button.php diff --git a/resources/lang/iu/general.php b/resources/lang/so-SO/general.php similarity index 97% rename from resources/lang/iu/general.php rename to resources/lang/so-SO/general.php index a568e00436..5e1ad742e3 100644 --- a/resources/lang/iu/general.php +++ b/resources/lang/so-SO/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/en/help.php b/resources/lang/so-SO/help.php similarity index 100% rename from resources/lang/en/help.php rename to resources/lang/so-SO/help.php diff --git a/resources/lang/so-SO/localizations.php b/resources/lang/so-SO/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/so-SO/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/en/mail.php b/resources/lang/so-SO/mail.php similarity index 100% rename from resources/lang/en/mail.php rename to resources/lang/so-SO/mail.php diff --git a/resources/lang/so/pagination.php b/resources/lang/so-SO/pagination.php similarity index 100% rename from resources/lang/so/pagination.php rename to resources/lang/so-SO/pagination.php diff --git a/resources/lang/sl/passwords.php b/resources/lang/so-SO/passwords.php similarity index 100% rename from resources/lang/sl/passwords.php rename to resources/lang/so-SO/passwords.php diff --git a/resources/lang/so/reminders.php b/resources/lang/so-SO/reminders.php similarity index 100% rename from resources/lang/so/reminders.php rename to resources/lang/so-SO/reminders.php diff --git a/resources/lang/en/table.php b/resources/lang/so-SO/table.php similarity index 100% rename from resources/lang/en/table.php rename to resources/lang/so-SO/table.php diff --git a/resources/lang/iu/validation.php b/resources/lang/so-SO/validation.php similarity index 99% rename from resources/lang/iu/validation.php rename to resources/lang/so-SO/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/iu/validation.php +++ b/resources/lang/so-SO/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/so/admin/accessories/table.php b/resources/lang/so/admin/accessories/table.php deleted file mode 100644 index e02d9f22e4..0000000000 --- a/resources/lang/so/admin/accessories/table.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Download CSV', - 'eula_text' => 'EULA', - 'id' => 'ID', - 'require_acceptance' => 'Acceptance', - 'title' => 'Accessory Name', - - -); diff --git a/resources/lang/so/admin/kits/general.php b/resources/lang/so/admin/kits/general.php deleted file mode 100644 index f724ecbf07..0000000000 --- a/resources/lang/so/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Kit was successfully created.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/so/admin/labels/table.php b/resources/lang/so/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/so/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/so/admin/settings/table.php b/resources/lang/so/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/so/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/so/help.php b/resources/lang/so/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/so/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/so/localizations.php b/resources/lang/so/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/so/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/so/validation.php b/resources/lang/so/validation.php deleted file mode 100644 index 57e354f072..0000000000 --- a/resources/lang/so/validation.php +++ /dev/null @@ -1,155 +0,0 @@ - 'The :attribute must be accepted.', - 'active_url' => 'The :attribute is not a valid URL.', - 'after' => 'The :attribute must be a date after :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', - 'alpha' => 'The :attribute may only contain letters.', - 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', - 'alpha_num' => 'The :attribute may only contain letters and numbers.', - 'array' => 'The :attribute must be an array.', - 'before' => 'The :attribute must be a date before :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', - 'between' => [ - 'numeric' => 'The :attribute must be between :min - :max.', - 'file' => 'The :attribute must be between :min - :max kilobytes.', - 'string' => 'The :attribute must be between :min - :max characters.', - 'array' => 'The :attribute must have between :min and :max items.', - ], - 'boolean' => 'The :attribute must be true or false.', - 'confirmed' => 'The :attribute confirmation does not match.', - 'date' => 'The :attribute is not a valid date.', - 'date_format' => 'The :attribute does not match the format :format.', - 'different' => 'The :attribute and :other must be different.', - 'digits' => 'The :attribute must be :digits digits.', - 'digits_between' => 'The :attribute must be between :min and :max digits.', - 'dimensions' => 'The :attribute has invalid image dimensions.', - 'distinct' => 'The :attribute field has a duplicate value.', - 'email' => 'The :attribute format is invalid.', - 'exists' => 'The selected :attribute is invalid.', - 'file' => 'The :attribute must be a file.', - 'filled' => 'The :attribute field must have a value.', - 'image' => 'The :attribute must be an image.', - 'import_field_empty' => 'The value for :fieldname cannot be null.', - 'in' => 'The selected :attribute is invalid.', - 'in_array' => 'The :attribute field does not exist in :other.', - 'integer' => 'The :attribute must be an integer.', - 'ip' => 'The :attribute must be a valid IP address.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'is_unique_department' => 'The :attribute must be unique to this Company Location', - 'json' => 'The :attribute must be a valid JSON string.', - 'max' => [ - 'numeric' => 'The :attribute may not be greater than :max.', - 'file' => 'The :attribute may not be greater than :max kilobytes.', - 'string' => 'The :attribute may not be greater than :max characters.', - 'array' => 'The :attribute may not have more than :max items.', - ], - 'mimes' => 'The :attribute must be a file of type: :values.', - 'mimetypes' => 'The :attribute must be a file of type: :values.', - 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', - 'file' => 'The :attribute must be at least :min kilobytes.', - 'string' => 'The :attribute must be at least :min characters.', - 'array' => 'The :attribute must have at least :min items.', - ], - 'starts_with' => 'The :attribute must start with one of the following: :values.', - 'ends_with' => 'The :attribute must end with one of the following: :values.', - - 'not_in' => 'The selected :attribute is invalid.', - 'numeric' => 'The :attribute must be a number.', - 'present' => 'The :attribute field must be present.', - 'valid_regex' => 'That is not a valid regex. ', - 'regex' => 'The :attribute format is invalid.', - 'required' => 'The :attribute field is required.', - 'required_if' => 'The :attribute field is required when :other is :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', - 'required_with' => 'The :attribute field is required when :values is present.', - 'required_with_all' => 'The :attribute field is required when :values is present.', - 'required_without' => 'The :attribute field is required when :values is not present.', - 'required_without_all' => 'The :attribute field is required when none of :values are present.', - 'same' => 'The :attribute and :other must match.', - 'size' => [ - 'numeric' => 'The :attribute must be :size.', - 'file' => 'The :attribute must be :size kilobytes.', - 'string' => 'The :attribute must be :size characters.', - 'array' => 'The :attribute must contain :size items.', - ], - 'string' => 'The :attribute must be a string.', - 'timezone' => 'The :attribute must be a valid zone.', - 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', - 'unique' => 'The :attribute has already been taken.', - 'uploaded' => 'The :attribute failed to upload.', - 'url' => 'The :attribute format is invalid.', - 'unique_undeleted' => 'The :attribute must be unique.', - 'non_circular' => 'The :attribute must not create a circular reference.', - 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', - 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', - 'letters' => 'Password must contain at least one letter.', - 'numbers' => 'Password must contain at least one number.', - 'case_diff' => 'Password must use mixed case.', - 'symbols' => 'Password must contain symbols.', - 'gte' => [ - 'numeric' => 'Value cannot be negative' - ], - - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ - 'alpha_space' => 'The :attribute field contains a character that is not allowed.', - 'email_array' => 'One or more email addresses is invalid.', - 'hashed_pass' => 'Your current password is incorrect', - 'dumbpwd' => 'That password is too common.', - 'statuslabel_type' => 'You must select a valid status label type', - - // date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :( - // We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP - // people won't know how to format. - 'purchase_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'last_audit_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD hh:mm:ss format', - 'expiration_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'termination_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'expected_checkin.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'start_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'end_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - - ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [], - -]; diff --git a/resources/lang/sr-CS/admin/settings/general.php b/resources/lang/sr-CS/admin/settings/general.php index d9d38a8330..c2dae9811d 100644 --- a/resources/lang/sr-CS/admin/settings/general.php +++ b/resources/lang/sr-CS/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Od korisnika se ne traži da piše „korisničko ime@domain.local“, može samo da unese „korisničko ime“.', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'Ako želite da pošaljete kopiju mejlova za prijavu/odjavu koji se šalju korisnicima na dodatni nalog e-pošte, unesite je ovde. U suprotnom ostavite ovo polje praznim.', + 'admin_settings' => 'Administratorska podešavanja', 'is_ad' => 'Ovo je Active Directory server', 'alerts' => 'Upozorenja', 'alert_title' => 'Podešavanja obaveštenja o nadogradnji', diff --git a/resources/lang/sr-CS/admin/statuslabels/message.php b/resources/lang/sr-CS/admin/statuslabels/message.php index 396f81d2df..d6f4f42156 100644 --- a/resources/lang/sr-CS/admin/statuslabels/message.php +++ b/resources/lang/sr-CS/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Oznaka statusa ne postoji.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Oznaka statusa je trenutno povezana s barem jednim resursom i ne može se izbrisati. Ažurirajte resurs da se više ne referencira na tu oznaku statusa i pokušajte ponovno. ', 'create' => [ diff --git a/resources/lang/sr-CS/admin/users/table.php b/resources/lang/sr-CS/admin/users/table.php index 09177b2f8d..22038b1093 100644 --- a/resources/lang/sr-CS/admin/users/table.php +++ b/resources/lang/sr-CS/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Menadžer', 'managed_locations' => 'Managed Locations', 'name' => 'Ime', + 'nogroup' => 'Nijedna grupa još uvek nije napravljena. Da je dodate, posetite: ', 'notes' => 'Zabeleške', 'password_confirm' => 'Potvrdi lozinku', 'password' => 'Lozinka', diff --git a/resources/lang/sr-CS/general.php b/resources/lang/sr-CS/general.php index 7dd6c29329..0e9be65957 100644 --- a/resources/lang/sr-CS/general.php +++ b/resources/lang/sr-CS/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Prihvatljivi tipovi datoteka su jpg, webp, png, gif i svg. Maksimalna veličina datoteke je :size.', 'unaccepted_image_type' => 'Datoteka slike nije čitljiva. Prihvatljivi tipovi datoteka su jpg, webp, png, gif i svg. Mimetip ove datoteke je: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Mapiraj polja i obradi ovu datoteku', 'importing' => 'Uvoženje', 'importing_help' => 'Možete uvesti imovinu, opremu, licence, komponente, potrošnu robu i korisnike uz pomoć CSV datoteke.

Podaci u CSV datoteci trebaju biti odvojeni zarezom i formatirani sa zaglavljima koji se poklapaju sa primerima CSV-a u dokumentaciji.', 'import-history' => 'Import History', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Greška tokom slanja datoteke. Molim vas potvrdite da nema praznih redova i da nazivi kolona nisu duplirani.', 'copy_to_clipboard' => 'Kopiraj u beležnicu', 'copied' => 'Kopirano!', + 'status_compatibility' => 'Ako je imovina već zadužena, ne može biti promenjena u nezaduživi status i promena ove vrednosti će biti preskočena.', + 'rtd_location_help' => 'Ovo je lokacija imovine kada nije zadužena', + 'item_not_found' => ':item_type ID :id ne postoji ili je obrisan', + 'action_permission_denied' => 'Nemate ovlašćenje da :action :item_type ID :id', + 'action_permission_generic' => 'Nemate ovlašćenje da :action ovu :item_type', + 'edit' => 'uredi', + 'action_source' => 'Izvor aktivnosti', ]; diff --git a/resources/lang/sr-CS/localizations.php b/resources/lang/sr-CS/localizations.php index e99f22455f..c0bf3a428f 100644 --- a/resources/lang/sr-CS/localizations.php +++ b/resources/lang/sr-CS/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irski', 'it'=> 'Italijanski', 'ja'=> 'Japanski', - 'km' => 'Kmer', + 'km-KH'=>'Kmer', 'ko'=> 'Korejski', 'lv'=>'Letonski', 'lt'=> 'Litvanski', diff --git a/resources/lang/sr-CS/validation.php b/resources/lang/sr-CS/validation.php index de4c90aef4..f9d57c3f60 100644 --- a/resources/lang/sr-CS/validation.php +++ b/resources/lang/sr-CS/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute mora biti jedinstven.', 'non_circular' => ':attribute ne sme da kreira cirkularnu referencu.', 'not_array' => ':attribute polje ne može biti niz.', - 'unique_serial' => ':attribute mora biti jedinstven.', 'disallow_same_pwd_as_user_fields' => 'Lozinka ne može biti ista kao korisničko ime.', 'letters' => 'Lozinka mora da sadrži barem jedno slovo.', 'numbers' => 'Lozinka mora da sadrži barem jednu cifru.', diff --git a/resources/lang/sv-SE/admin/locations/table.php b/resources/lang/sv-SE/admin/locations/table.php index 2721ebae07..288d187215 100644 --- a/resources/lang/sv-SE/admin/locations/table.php +++ b/resources/lang/sv-SE/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => 'Skriv ut alla tilldelade', 'name' => 'Platsnamn', 'address' => 'Adress', - 'address2' => 'Address Line 2', + 'address2' => 'Adressrad 2', 'zip' => 'postnummer', 'locations' => 'platser', 'parent' => 'Förälder', diff --git a/resources/lang/sv-SE/admin/settings/general.php b/resources/lang/sv-SE/admin/settings/general.php index 82d5347bae..318677c454 100644 --- a/resources/lang/sv-SE/admin/settings/general.php +++ b/resources/lang/sv-SE/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Användaren behöver inte skriva "username@domain.local", det räcker att skriva "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'Om du vill skicka en kopia av checkin / checkout-e-postmeddelanden som skickas till användare till ett extra e-postkonto, skriv det här. Annars lämnar du fältet tomt.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Detta är en Active Directory-server', 'alerts' => 'Varningar', 'alert_title' => 'Uppdatera aviseringsinställningar', diff --git a/resources/lang/sv-SE/admin/statuslabels/message.php b/resources/lang/sv-SE/admin/statuslabels/message.php index d37d77cedd..61dc45ee75 100644 --- a/resources/lang/sv-SE/admin/statuslabels/message.php +++ b/resources/lang/sv-SE/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label existerar inte.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Denna statusetikett är för närvarande associerad med minst en tillgång och kan inte raderas. Uppdatera dina tillgångar för att inte längre referera till denna status och försök igen.', 'create' => [ diff --git a/resources/lang/sv-SE/admin/users/table.php b/resources/lang/sv-SE/admin/users/table.php index bac9288afa..6b7965ff1e 100644 --- a/resources/lang/sv-SE/admin/users/table.php +++ b/resources/lang/sv-SE/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Chef', 'managed_locations' => 'Hanterade platser', 'name' => 'namn', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'anteckningar', 'password_confirm' => 'Bekräfta lösenord', 'password' => 'Lösenord', diff --git a/resources/lang/sv-SE/general.php b/resources/lang/sv-SE/general.php index f7673657e7..81debc8abe 100644 --- a/resources/lang/sv-SE/general.php +++ b/resources/lang/sv-SE/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Godkända filtyper är jpg, webp, png, gif och svg. Max tillåten uppladdningsstorlek är :size.', 'unaccepted_image_type' => 'Denna bildfil kunde inte läsas. Godkända filtyper är jpg, webp, png, gif, och svg. Filens mimetyp är: :mimetype.', 'import' => 'Importera', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importerar', 'importing_help' => 'Du kan importera tillgångar, tillbehör, licenser, komponenter, förbrukningsvaror och användare via CSV-fil.

CSV bör vara komma-avgränsad och formaterad med rubriker som matchar de i ta prov CSVs i dokumentationen.', 'import-history' => 'Importera historik', @@ -371,7 +372,7 @@ return [ 'consumables_count' => 'Antal förbrukningsvaror', 'components_count' => 'Antal komponenter', 'licenses_count' => 'Antal licenser', - 'notification_error' => 'Error', + 'notification_error' => 'Fel', 'notification_error_hint' => 'Vänligen kontrollera formuläret nedan för fel', 'notification_bulk_error_hint' => 'Följande fält hade valideringsfel och redigerades inte:', 'notification_success' => 'Klart', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Kopiera till urklipp', 'copied' => 'Kopierad!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'ändra', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/sv-SE/localizations.php b/resources/lang/sv-SE/localizations.php index 494616851a..bd72e12fca 100644 --- a/resources/lang/sv-SE/localizations.php +++ b/resources/lang/sv-SE/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irländska', 'it'=> 'Italienska', 'ja'=> 'Japanska', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Koreanska', 'lv'=>'Lettiska', 'lt'=> 'Litauiska', diff --git a/resources/lang/sv-SE/validation.php b/resources/lang/sv-SE/validation.php index d7c8d1f99d..76194ead56 100644 --- a/resources/lang/sv-SE/validation.php +++ b/resources/lang/sv-SE/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute måste vara unikt.', 'non_circular' => ':attribute får inte skapa en cirkulär referens.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Lösenordet kan inte vara samma som användarnamnet.', 'letters' => 'Lösenord måste innehålla minst en bokstav.', 'numbers' => 'Lösenord måste innehålla minst en siffra.', diff --git a/resources/lang/so/account/general.php b/resources/lang/ta-IN/account/general.php similarity index 100% rename from resources/lang/so/account/general.php rename to resources/lang/ta-IN/account/general.php diff --git a/resources/lang/ta/admin/accessories/general.php b/resources/lang/ta-IN/admin/accessories/general.php similarity index 100% rename from resources/lang/ta/admin/accessories/general.php rename to resources/lang/ta-IN/admin/accessories/general.php diff --git a/resources/lang/ta/admin/accessories/message.php b/resources/lang/ta-IN/admin/accessories/message.php similarity index 100% rename from resources/lang/ta/admin/accessories/message.php rename to resources/lang/ta-IN/admin/accessories/message.php diff --git a/resources/lang/ta/admin/accessories/table.php b/resources/lang/ta-IN/admin/accessories/table.php similarity index 100% rename from resources/lang/ta/admin/accessories/table.php rename to resources/lang/ta-IN/admin/accessories/table.php diff --git a/resources/lang/ta/admin/asset_maintenances/form.php b/resources/lang/ta-IN/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/ta/admin/asset_maintenances/form.php rename to resources/lang/ta-IN/admin/asset_maintenances/form.php diff --git a/resources/lang/ta/admin/asset_maintenances/general.php b/resources/lang/ta-IN/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/ta/admin/asset_maintenances/general.php rename to resources/lang/ta-IN/admin/asset_maintenances/general.php diff --git a/resources/lang/ta/admin/asset_maintenances/message.php b/resources/lang/ta-IN/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/ta/admin/asset_maintenances/message.php rename to resources/lang/ta-IN/admin/asset_maintenances/message.php diff --git a/resources/lang/ta/admin/asset_maintenances/table.php b/resources/lang/ta-IN/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/ta/admin/asset_maintenances/table.php rename to resources/lang/ta-IN/admin/asset_maintenances/table.php diff --git a/resources/lang/ta/admin/categories/general.php b/resources/lang/ta-IN/admin/categories/general.php similarity index 100% rename from resources/lang/ta/admin/categories/general.php rename to resources/lang/ta-IN/admin/categories/general.php diff --git a/resources/lang/ta/admin/categories/message.php b/resources/lang/ta-IN/admin/categories/message.php similarity index 100% rename from resources/lang/ta/admin/categories/message.php rename to resources/lang/ta-IN/admin/categories/message.php diff --git a/resources/lang/ta/admin/categories/table.php b/resources/lang/ta-IN/admin/categories/table.php similarity index 100% rename from resources/lang/ta/admin/categories/table.php rename to resources/lang/ta-IN/admin/categories/table.php diff --git a/resources/lang/ta/admin/companies/general.php b/resources/lang/ta-IN/admin/companies/general.php similarity index 82% rename from resources/lang/ta/admin/companies/general.php rename to resources/lang/ta-IN/admin/companies/general.php index 90da6ecf11..af718ef327 100644 --- a/resources/lang/ta/admin/companies/general.php +++ b/resources/lang/ta-IN/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'நிறுவனம் தேர்ந்தெடு', - 'about_companies' => 'About Companies', + 'about_companies' => 'நிறுவனங்கள் பற்றி', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/ta/admin/companies/message.php b/resources/lang/ta-IN/admin/companies/message.php similarity index 100% rename from resources/lang/ta/admin/companies/message.php rename to resources/lang/ta-IN/admin/companies/message.php diff --git a/resources/lang/ta/admin/companies/table.php b/resources/lang/ta-IN/admin/companies/table.php similarity index 100% rename from resources/lang/ta/admin/companies/table.php rename to resources/lang/ta-IN/admin/companies/table.php diff --git a/resources/lang/ta/admin/components/general.php b/resources/lang/ta-IN/admin/components/general.php similarity index 100% rename from resources/lang/ta/admin/components/general.php rename to resources/lang/ta-IN/admin/components/general.php diff --git a/resources/lang/ta/admin/components/message.php b/resources/lang/ta-IN/admin/components/message.php similarity index 100% rename from resources/lang/ta/admin/components/message.php rename to resources/lang/ta-IN/admin/components/message.php diff --git a/resources/lang/ta/admin/components/table.php b/resources/lang/ta-IN/admin/components/table.php similarity index 100% rename from resources/lang/ta/admin/components/table.php rename to resources/lang/ta-IN/admin/components/table.php diff --git a/resources/lang/ta/admin/consumables/general.php b/resources/lang/ta-IN/admin/consumables/general.php similarity index 100% rename from resources/lang/ta/admin/consumables/general.php rename to resources/lang/ta-IN/admin/consumables/general.php diff --git a/resources/lang/ta/admin/consumables/message.php b/resources/lang/ta-IN/admin/consumables/message.php similarity index 100% rename from resources/lang/ta/admin/consumables/message.php rename to resources/lang/ta-IN/admin/consumables/message.php diff --git a/resources/lang/ta/admin/consumables/table.php b/resources/lang/ta-IN/admin/consumables/table.php similarity index 100% rename from resources/lang/ta/admin/consumables/table.php rename to resources/lang/ta-IN/admin/consumables/table.php diff --git a/resources/lang/ta/admin/custom_fields/general.php b/resources/lang/ta-IN/admin/custom_fields/general.php similarity index 100% rename from resources/lang/ta/admin/custom_fields/general.php rename to resources/lang/ta-IN/admin/custom_fields/general.php diff --git a/resources/lang/ta/admin/custom_fields/message.php b/resources/lang/ta-IN/admin/custom_fields/message.php similarity index 100% rename from resources/lang/ta/admin/custom_fields/message.php rename to resources/lang/ta-IN/admin/custom_fields/message.php diff --git a/resources/lang/ta/admin/departments/message.php b/resources/lang/ta-IN/admin/departments/message.php similarity index 100% rename from resources/lang/ta/admin/departments/message.php rename to resources/lang/ta-IN/admin/departments/message.php diff --git a/resources/lang/ta/admin/departments/table.php b/resources/lang/ta-IN/admin/departments/table.php similarity index 100% rename from resources/lang/ta/admin/departments/table.php rename to resources/lang/ta-IN/admin/departments/table.php diff --git a/resources/lang/ta/admin/depreciations/general.php b/resources/lang/ta-IN/admin/depreciations/general.php similarity index 100% rename from resources/lang/ta/admin/depreciations/general.php rename to resources/lang/ta-IN/admin/depreciations/general.php diff --git a/resources/lang/ta/admin/depreciations/message.php b/resources/lang/ta-IN/admin/depreciations/message.php similarity index 100% rename from resources/lang/ta/admin/depreciations/message.php rename to resources/lang/ta-IN/admin/depreciations/message.php diff --git a/resources/lang/ta/admin/depreciations/table.php b/resources/lang/ta-IN/admin/depreciations/table.php similarity index 100% rename from resources/lang/ta/admin/depreciations/table.php rename to resources/lang/ta-IN/admin/depreciations/table.php diff --git a/resources/lang/ta/admin/groups/message.php b/resources/lang/ta-IN/admin/groups/message.php similarity index 100% rename from resources/lang/ta/admin/groups/message.php rename to resources/lang/ta-IN/admin/groups/message.php diff --git a/resources/lang/ta/admin/groups/table.php b/resources/lang/ta-IN/admin/groups/table.php similarity index 100% rename from resources/lang/ta/admin/groups/table.php rename to resources/lang/ta-IN/admin/groups/table.php diff --git a/resources/lang/ta/admin/groups/titles.php b/resources/lang/ta-IN/admin/groups/titles.php similarity index 100% rename from resources/lang/ta/admin/groups/titles.php rename to resources/lang/ta-IN/admin/groups/titles.php diff --git a/resources/lang/ta/admin/hardware/form.php b/resources/lang/ta-IN/admin/hardware/form.php similarity index 100% rename from resources/lang/ta/admin/hardware/form.php rename to resources/lang/ta-IN/admin/hardware/form.php diff --git a/resources/lang/ta/admin/hardware/general.php b/resources/lang/ta-IN/admin/hardware/general.php similarity index 100% rename from resources/lang/ta/admin/hardware/general.php rename to resources/lang/ta-IN/admin/hardware/general.php diff --git a/resources/lang/ta/admin/hardware/message.php b/resources/lang/ta-IN/admin/hardware/message.php similarity index 98% rename from resources/lang/ta/admin/hardware/message.php rename to resources/lang/ta-IN/admin/hardware/message.php index d5d59e1e40..85d14a5b9e 100644 --- a/resources/lang/ta/admin/hardware/message.php +++ b/resources/lang/ta-IN/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'சொத்து மீட்டமைக்கப்படவில்லை, மீண்டும் முயற்சிக்கவும்', 'success' => 'சொத்து வெற்றிகரமாக மீட்டமைக்கப்பட்டது.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'சொத்து வெற்றிகரமாக மீட்டமைக்கப்பட்டது.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/ta/admin/hardware/table.php b/resources/lang/ta-IN/admin/hardware/table.php similarity index 95% rename from resources/lang/ta/admin/hardware/table.php rename to resources/lang/ta-IN/admin/hardware/table.php index d6908c6e52..0ee2083c5c 100644 --- a/resources/lang/ta/admin/hardware/table.php +++ b/resources/lang/ta-IN/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'சாதன படம்', 'days_without_acceptance' => 'ஏற்றுக்கொள்ளாத நாட்கள்', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'ஒதுக்கப்படும்', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/en/admin/kits/general.php b/resources/lang/ta-IN/admin/kits/general.php similarity index 100% rename from resources/lang/en/admin/kits/general.php rename to resources/lang/ta-IN/admin/kits/general.php diff --git a/resources/lang/sl/admin/labels/message.php b/resources/lang/ta-IN/admin/labels/message.php similarity index 100% rename from resources/lang/sl/admin/labels/message.php rename to resources/lang/ta-IN/admin/labels/message.php diff --git a/resources/lang/ta-IN/admin/labels/table.php b/resources/lang/ta-IN/admin/labels/table.php new file mode 100644 index 0000000000..f9dc635fe7 --- /dev/null +++ b/resources/lang/ta-IN/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'டேக்', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'சின்னம்', + 'support_title' => 'தலைப்பு', + +]; \ No newline at end of file diff --git a/resources/lang/ta/admin/licenses/form.php b/resources/lang/ta-IN/admin/licenses/form.php similarity index 100% rename from resources/lang/ta/admin/licenses/form.php rename to resources/lang/ta-IN/admin/licenses/form.php diff --git a/resources/lang/ta/admin/licenses/general.php b/resources/lang/ta-IN/admin/licenses/general.php similarity index 100% rename from resources/lang/ta/admin/licenses/general.php rename to resources/lang/ta-IN/admin/licenses/general.php diff --git a/resources/lang/ta/admin/licenses/message.php b/resources/lang/ta-IN/admin/licenses/message.php similarity index 100% rename from resources/lang/ta/admin/licenses/message.php rename to resources/lang/ta-IN/admin/licenses/message.php diff --git a/resources/lang/ta/admin/licenses/table.php b/resources/lang/ta-IN/admin/licenses/table.php similarity index 100% rename from resources/lang/ta/admin/licenses/table.php rename to resources/lang/ta-IN/admin/licenses/table.php diff --git a/resources/lang/ta/admin/locations/message.php b/resources/lang/ta-IN/admin/locations/message.php similarity index 100% rename from resources/lang/ta/admin/locations/message.php rename to resources/lang/ta-IN/admin/locations/message.php diff --git a/resources/lang/ta/admin/locations/table.php b/resources/lang/ta-IN/admin/locations/table.php similarity index 100% rename from resources/lang/ta/admin/locations/table.php rename to resources/lang/ta-IN/admin/locations/table.php diff --git a/resources/lang/ta/admin/manufacturers/message.php b/resources/lang/ta-IN/admin/manufacturers/message.php similarity index 100% rename from resources/lang/ta/admin/manufacturers/message.php rename to resources/lang/ta-IN/admin/manufacturers/message.php diff --git a/resources/lang/ta/admin/manufacturers/table.php b/resources/lang/ta-IN/admin/manufacturers/table.php similarity index 100% rename from resources/lang/ta/admin/manufacturers/table.php rename to resources/lang/ta-IN/admin/manufacturers/table.php diff --git a/resources/lang/ta/admin/models/general.php b/resources/lang/ta-IN/admin/models/general.php similarity index 100% rename from resources/lang/ta/admin/models/general.php rename to resources/lang/ta-IN/admin/models/general.php diff --git a/resources/lang/ta/admin/models/message.php b/resources/lang/ta-IN/admin/models/message.php similarity index 100% rename from resources/lang/ta/admin/models/message.php rename to resources/lang/ta-IN/admin/models/message.php diff --git a/resources/lang/ta/admin/models/table.php b/resources/lang/ta-IN/admin/models/table.php similarity index 100% rename from resources/lang/ta/admin/models/table.php rename to resources/lang/ta-IN/admin/models/table.php diff --git a/resources/lang/ta/admin/reports/general.php b/resources/lang/ta-IN/admin/reports/general.php similarity index 100% rename from resources/lang/ta/admin/reports/general.php rename to resources/lang/ta-IN/admin/reports/general.php diff --git a/resources/lang/ta/admin/reports/message.php b/resources/lang/ta-IN/admin/reports/message.php similarity index 100% rename from resources/lang/ta/admin/reports/message.php rename to resources/lang/ta-IN/admin/reports/message.php diff --git a/resources/lang/ta/admin/settings/general.php b/resources/lang/ta-IN/admin/settings/general.php similarity index 98% rename from resources/lang/ta/admin/settings/general.php rename to resources/lang/ta-IN/admin/settings/general.php index 3941ce4f2b..29322bc536 100644 --- a/resources/lang/ta/admin/settings/general.php +++ b/resources/lang/ta-IN/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'இது ஒரு Active Directory சேவையகம்', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'கடவுச்சொல் குறைந்தபட்ச எழுத்துகள்', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'குறைந்தபட்சம் அனுமதிக்கப்பட்ட மதிப்பு 8 ஆகும்', 'pwd_secure_uncommon' => 'பொதுவான கடவுச்சொற்களைத் தடுக்கவும்', 'pwd_secure_uncommon_help' => 'இது முரண்பாடுகளில் அறிவிக்கப்பட்ட மேல்மட்ட கடவுச்சொற்களைவிட பொதுவான கடவுச்சொற்களைப் பயன்படுத்துவதை அனுமதிக்காது.', 'qr_help' => 'முதலில் அமைக்க QR குறியீடுகள் இயக்கவும்', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'நீக்கப்பட்ட ரெகார்டுகளை அகற்றவும்', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'தலைப்பு', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '2 டி பார்கோடு வகை', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/ta/admin/settings/message.php b/resources/lang/ta-IN/admin/settings/message.php similarity index 100% rename from resources/lang/ta/admin/settings/message.php rename to resources/lang/ta-IN/admin/settings/message.php diff --git a/resources/lang/ta-IN/admin/settings/table.php b/resources/lang/ta-IN/admin/settings/table.php new file mode 100644 index 0000000000..14f89a1c98 --- /dev/null +++ b/resources/lang/ta-IN/admin/settings/table.php @@ -0,0 +1,6 @@ + 'உருவாக்கப்பட்டது', + 'size' => 'Size', +); diff --git a/resources/lang/ta/admin/statuslabels/message.php b/resources/lang/ta-IN/admin/statuslabels/message.php similarity index 88% rename from resources/lang/ta/admin/statuslabels/message.php rename to resources/lang/ta-IN/admin/statuslabels/message.php index 3cb2a5d991..d40a753229 100644 --- a/resources/lang/ta/admin/statuslabels/message.php +++ b/resources/lang/ta-IN/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'நிலை லேபிள் இல்லை.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'இந்த தகுதி லேபிள் தற்போது குறைந்தது ஒரு சொத்துடன் தொடர்புடையது மற்றும் நீக்கப்பட முடியாது. தயவு செய்து உங்கள் சொத்துக்களை இனி இந்த நிலையை குறிப்பிடாமல் புதுப்பிக்கவும்.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'இந்த சொத்துக்களை யாருக்கும் ஒதுக்க முடியாது.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'இந்த சொத்துகள் சோதிக்கப்படலாம். அவர்கள் நியமிக்கப்பட்டவுடன், அவர்கள் Deployed என்ற மெட்டா நிலைப்பாட்டை எடுப்பார்கள்.', 'archived' => 'இந்த சொத்துகள் சரிபார்க்கப்படாது, மேலும் காப்பகப்படுத்தப்பட்ட காட்சியில் மட்டுமே காண்பிக்கப்படும். இது வரவு செலவுத் திட்டத்திற்கான / வரலாற்று நோக்கங்களுக்காக சொத்துக்களைப் பற்றிய தகவலைத் தக்கவைத்துக்கொள்வதற்கும், தினசரி சொத்து பட்டியலில் இருந்து அவற்றைப் பாதுகாப்பதற்கும் பயனுள்ளதாக இருக்கும்.', 'pending' => 'இந்த சொத்துக்கள் இன்னும் யாருக்கும் ஒதுக்கப்பட முடியாது, பெரும்பாலும் பழுதுக்காக வெளியேற்றப்பட்ட பொருட்களுக்குப் பயன்படுத்தப்படுகின்றன, ஆனால் புழக்கத்திற்கு திரும்ப எதிர்பார்க்கப்படுகிறது.', ], diff --git a/resources/lang/ta/admin/statuslabels/table.php b/resources/lang/ta-IN/admin/statuslabels/table.php similarity index 100% rename from resources/lang/ta/admin/statuslabels/table.php rename to resources/lang/ta-IN/admin/statuslabels/table.php diff --git a/resources/lang/ta/admin/suppliers/message.php b/resources/lang/ta-IN/admin/suppliers/message.php similarity index 100% rename from resources/lang/ta/admin/suppliers/message.php rename to resources/lang/ta-IN/admin/suppliers/message.php diff --git a/resources/lang/ta/admin/suppliers/table.php b/resources/lang/ta-IN/admin/suppliers/table.php similarity index 100% rename from resources/lang/ta/admin/suppliers/table.php rename to resources/lang/ta-IN/admin/suppliers/table.php diff --git a/resources/lang/ta/admin/users/general.php b/resources/lang/ta-IN/admin/users/general.php similarity index 94% rename from resources/lang/ta/admin/users/general.php rename to resources/lang/ta-IN/admin/users/general.php index 5415880629..a61ec5bfc1 100644 --- a/resources/lang/ta/admin/users/general.php +++ b/resources/lang/ta-IN/admin/users/general.php @@ -16,7 +16,7 @@ return [ 'restore_user' => 'அவற்றை மீட்டெடுக்க இங்கு கிளிக் செய்க.', 'last_login' => 'கடைசி தேதி', 'ldap_config_text' => 'LDAP உள்ளமைவு அமைப்புகள் நிர்வாகம்> அமைப்புகள். இறக்குமதி செய்யப்பட்ட அனைத்து பயனர்களுக்கும் (விரும்பினால்) தேர்ந்தெடுக்கப்பட்ட இடம் அமைக்கப்படும்.', - 'print_assigned' => 'Print All Assigned', + 'print_assigned' => 'ஒப்படைக்கப்பட்ட அனைத்தையும் அச்சிடு', 'email_assigned' => 'Email List of All Assigned', 'user_notified' => 'User has been emailed a list of their currently assigned items.', 'auto_assign_label' => 'Include this user when auto-assigning eligible licenses', @@ -26,8 +26,8 @@ return [ 'view_user' => 'பயனர் காண்க: பெயர்', 'usercsv' => 'CSV கோப்பு', 'two_factor_admin_optin_help' => 'உங்கள் தற்போதைய நிர்வாக அமைப்புகள் இரண்டு காரணி அங்கீகரிப்பின் தேர்ந்தெடுக்கப்பட்ட செயல்பாட்டை அனுமதிக்கின்றன.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => '2FA சாதனம் பதிவுசெய்யப்பட்டது', + 'two_factor_active' => '2FA செயலில்', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/ta/admin/users/message.php b/resources/lang/ta-IN/admin/users/message.php similarity index 99% rename from resources/lang/ta/admin/users/message.php rename to resources/lang/ta-IN/admin/users/message.php index 6c453600c8..29b944e841 100644 --- a/resources/lang/ta/admin/users/message.php +++ b/resources/lang/ta-IN/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'இந்த சொத்து வெற்றிகரமாக நிராகரித்தது.', 'bulk_manager_warn' => 'உங்கள் பயனர் வெற்றிகரமாக புதுப்பிக்கப்பட்டிருந்தாலும், உங்கள் மேலாளர் நுழைவு சேமிக்கப்படவில்லை, ஏனெனில் நீங்கள் தேர்ந்தெடுத்த மேலாளர் பயனர் பட்டியலில் திருத்தப்பட வேண்டும், மேலும் பயனர்கள் தங்கள் மேலாளராக இருக்கலாம். மேலாளரைத் தவிர்த்து உங்கள் பயனர்களை மீண்டும் தேர்ந்தெடுக்கவும்.', 'user_exists' => 'பயனர் ஏற்கனவே உள்ளது!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'பயனர் இல்லை.', 'user_login_required' => 'உள்நுழைவுத் துறை தேவைப்படுகிறது', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'கடவுச்சொல் தேவை.', diff --git a/resources/lang/ta/admin/users/table.php b/resources/lang/ta-IN/admin/users/table.php similarity index 97% rename from resources/lang/ta/admin/users/table.php rename to resources/lang/ta-IN/admin/users/table.php index 93c556e4b3..034ad2f69f 100644 --- a/resources/lang/ta/admin/users/table.php +++ b/resources/lang/ta-IN/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'மேலாளர்', 'managed_locations' => 'நிர்வகிக்கப்பட்ட இடங்கள்', 'name' => 'பெயர்', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'குறிப்புக்கள்', 'password_confirm' => 'கடவுச்சொல்லை உறுதிப்படுத்துக', 'password' => 'கடவுச்சொல்', diff --git a/resources/lang/ta/auth.php b/resources/lang/ta-IN/auth.php similarity index 100% rename from resources/lang/ta/auth.php rename to resources/lang/ta-IN/auth.php diff --git a/resources/lang/ta/auth/general.php b/resources/lang/ta-IN/auth/general.php similarity index 100% rename from resources/lang/ta/auth/general.php rename to resources/lang/ta-IN/auth/general.php diff --git a/resources/lang/ta/auth/message.php b/resources/lang/ta-IN/auth/message.php similarity index 95% rename from resources/lang/ta/auth/message.php rename to resources/lang/ta-IN/auth/message.php index 56907b1ace..d61f08fc4f 100644 --- a/resources/lang/ta/auth/message.php +++ b/resources/lang/ta-IN/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'வெற்றிகரமாக உள்நுழைந்துள்ளீர்கள்.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/ta/button.php b/resources/lang/ta-IN/button.php similarity index 100% rename from resources/lang/ta/button.php rename to resources/lang/ta-IN/button.php diff --git a/resources/lang/ta/general.php b/resources/lang/ta-IN/general.php similarity index 96% rename from resources/lang/ta/general.php rename to resources/lang/ta-IN/general.php index 8f166bb60e..a28d6050ee 100644 --- a/resources/lang/ta/general.php +++ b/resources/lang/ta-IN/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'இறக்குமதி', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'வரலாற்றை இறக்குமதி செய்க', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'வரிசைப்படுத்த தயாராக உள்ளது', 'recent_activity' => 'சமீபத்திய நடவடிக்கை', - 'remaining' => 'Remaining', + 'remaining' => 'மீதமுள்ள', 'remove_company' => 'நிறுவன சங்கத்தை அகற்று', 'reports' => 'அறிக்கைகள்', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'மீட்டமை', 'requestable_models' => 'Requestable Models', 'requested' => 'கோரப்பட்டது', 'requested_date' => 'Requested Date', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'அன்-அணியப்படுத்தக்', 'unknown_admin' => 'அறியப்படாத நிர்வாகம்', 'username_format' => 'பயனர்பெயர் வடிவமைப்பு', - 'username' => 'Username', + 'username' => 'பயனர்பெயர்', 'update' => 'புதுப்பிக்கப்பட்டது', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Uploaded', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'மின்னஞ்சல்', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,12 +333,12 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'ஒப்படைக்கப்பட்டது', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', + 'expected_checkin' => 'திரும்பப் பெற்றுக்கொள்ள எதிர்பார்க்கப்படும் தேதி', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', 'changed' => 'Changed', 'to' => 'To', @@ -376,14 +377,14 @@ return [ 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_info' => 'தகவல்', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'சொத்து பெயர்', 'consumable_information' => 'Consumable Information:', 'consumable_name' => 'Consumable Name:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'துணை பெயர்:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% முழுமையான', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'தொகு', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ta-IN/help.php b/resources/lang/ta-IN/help.php new file mode 100644 index 0000000000..46bf090d4b --- /dev/null +++ b/resources/lang/ta-IN/help.php @@ -0,0 +1,35 @@ + 'மேலும் தகவல்', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'சொத்துகள் வரிசை எண் அல்லது சொத்து குறிச்சொல் மூலம் கண்காணிக்கப்படும் உருப்படிகளாக இருக்கின்றன. ஒரு குறிப்பிட்ட உருப்படி விஷயங்களை அடையாளம் காண்பிக்கும் அதிக மதிப்புள்ள பொருட்களாக அவை இருக்கும்.', + + 'categories' => 'வகைகள் உங்கள் பொருட்களை ஒழுங்கமைக்க உதவுகின்றன. சில எடுத்துக்காட்டு வகைகள் "Desktops", "Laptops", "Mobile Phones", "Tablets", மற்றும் பலவற்றில் இருக்கலாம், ஆனால் உங்களுக்கான அர்த்தங்களை வகைப்படுத்தலாம்.', + + 'accessories' => 'நீங்கள் பயனர்களுக்கு வழங்கக்கூடிய எந்தவொரு பாகங்கள் இருந்தாலும், தொடர் எண் இல்லை (அல்லது அவற்றை தனிப்பட்ட முறையில் கண்காணிப்பதில் நீங்கள் அக்கறை கொள்ளவில்லை). உதாரணமாக, கணினி எலிகள் அல்லது விசைப்பலகைகள்.', + + 'companies' => 'நிறுவனங்கள் ஒரு எளிய அடையாளங்காட்டி களமாகப் பயன்படுத்தப்படலாம் அல்லது உங்கள் நிர்வாக அமைப்புகளில் முழு நிறுவனம் ஆதரவு இயக்கப்பட்டிருந்தால், சொத்துக்களின் பார்வையையும், பயனர்களையும், பார்வையிடலாம்.', + + 'components' => 'கூறுகள் ஒரு சொத்தின் பகுதியாக இருக்கும், எடுத்துக்காட்டாக HDD, ரேம், போன்றவை.', + + 'consumables' => 'நுகர்வோர் காலப்போக்கில் பயன்படுத்தப்படும் என்று வாங்கிய எதையும் உள்ளன. உதாரணமாக, அச்சுப்பொறி மை அல்லது நகலி காகிதம்.', + + 'depreciations' => 'நேராக வரி தேய்மானத்தை அடிப்படையாகக் கொண்ட சொத்துக்களை அடமானம் செய்வதற்கு சொத்து இழப்புகளை நீங்கள் அமைக்கலாம்.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/ta-IN/localizations.php b/resources/lang/ta-IN/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/ta-IN/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/ta/mail.php b/resources/lang/ta-IN/mail.php similarity index 97% rename from resources/lang/ta/mail.php rename to resources/lang/ta-IN/mail.php index c8289267ad..f3ca51ff72 100644 --- a/resources/lang/ta/mail.php +++ b/resources/lang/ta-IN/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'சொத்து:', 'asset_name' => 'சொத்து பெயர்:', 'asset_requested' => 'சொத்து கோரப்பட்டது', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'சொத்து டேக்', 'assigned_to' => 'ஒதுக்கப்படும்', 'best_regards' => 'சிறந்த வாழ்த்துக்கள்,', 'canceled' => 'ரத்து செய்தவர்:', @@ -55,7 +55,7 @@ return [ 'requested' => 'கோரியவர்:', 'reset_link' => 'உங்கள் கடவுச்சொல்லை மீட்டமை இணைப்பு', 'reset_password' => 'உங்கள் கடவுச்சொல்லை மீட்டமைக்க இங்கே கிளிக் செய்க:', - 'serial' => 'Serial', + 'serial' => 'சீரியல்', 'supplier' => 'சப்ளையர்', 'tag' => 'டேக்', 'test_email' => 'ஸ்னாப்-டி இருந்து மின்னஞ்சல் சோதனை', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'உங்கள் கடவுச்சொல்லை மீட்டமைக்க, இந்த படிவத்தை பூர்த்தி செய்க:', 'type' => 'வகை', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'பயனர்', + 'username' => 'பயனர்பெயர்', 'welcome' => 'வரவேற்பு: பெயர்', 'welcome_to' => 'வரவேற்கிறோம்: வலை!', 'your_credentials' => 'உங்கள் கத்தரி-ஐடி சான்றுகள்', diff --git a/resources/lang/ta/pagination.php b/resources/lang/ta-IN/pagination.php similarity index 100% rename from resources/lang/ta/pagination.php rename to resources/lang/ta-IN/pagination.php diff --git a/resources/lang/so/passwords.php b/resources/lang/ta-IN/passwords.php similarity index 100% rename from resources/lang/so/passwords.php rename to resources/lang/ta-IN/passwords.php diff --git a/resources/lang/ta/reminders.php b/resources/lang/ta-IN/reminders.php similarity index 100% rename from resources/lang/ta/reminders.php rename to resources/lang/ta-IN/reminders.php diff --git a/resources/lang/ta/table.php b/resources/lang/ta-IN/table.php similarity index 100% rename from resources/lang/ta/table.php rename to resources/lang/ta-IN/table.php diff --git a/resources/lang/ta/validation.php b/resources/lang/ta-IN/validation.php similarity index 99% rename from resources/lang/ta/validation.php rename to resources/lang/ta-IN/validation.php index 9288edfee7..4e6fb64400 100644 --- a/resources/lang/ta/validation.php +++ b/resources/lang/ta-IN/validation.php @@ -94,10 +94,9 @@ return [ 'unique' => ': பண்பு ஏற்கனவே ஏற்கப்பட்டுள்ளது.', 'uploaded' => ': பண்புக்கூறு பதிவேற்றத் தவறியது.', 'url' => 'பண்புக்கூறு வடிவமைப்பு தவறானது.', - 'unique_undeleted' => 'The :attribute must be unique.', + 'unique_undeleted' => 'பண்பு: பண்பு தனித்துவமானது.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/ta/admin/kits/general.php b/resources/lang/ta/admin/kits/general.php deleted file mode 100644 index f724ecbf07..0000000000 --- a/resources/lang/ta/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Kit was successfully created.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/ta/admin/labels/table.php b/resources/lang/ta/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/ta/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/ta/admin/settings/table.php b/resources/lang/ta/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/ta/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/ta/help.php b/resources/lang/ta/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/ta/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/ta/localizations.php b/resources/lang/ta/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/ta/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/ta/account/general.php b/resources/lang/th-TH/account/general.php similarity index 100% rename from resources/lang/ta/account/general.php rename to resources/lang/th-TH/account/general.php diff --git a/resources/lang/th/admin/accessories/general.php b/resources/lang/th-TH/admin/accessories/general.php similarity index 100% rename from resources/lang/th/admin/accessories/general.php rename to resources/lang/th-TH/admin/accessories/general.php diff --git a/resources/lang/th/admin/accessories/message.php b/resources/lang/th-TH/admin/accessories/message.php similarity index 100% rename from resources/lang/th/admin/accessories/message.php rename to resources/lang/th-TH/admin/accessories/message.php diff --git a/resources/lang/th/admin/accessories/table.php b/resources/lang/th-TH/admin/accessories/table.php similarity index 100% rename from resources/lang/th/admin/accessories/table.php rename to resources/lang/th-TH/admin/accessories/table.php diff --git a/resources/lang/th-TH/admin/asset_maintenances/form.php b/resources/lang/th-TH/admin/asset_maintenances/form.php new file mode 100644 index 0000000000..1f896fc47a --- /dev/null +++ b/resources/lang/th-TH/admin/asset_maintenances/form.php @@ -0,0 +1,14 @@ + 'ประเภทการซ่อมบำรุงสินทรัพย์', + 'title' => 'ชื่อเรื่อง', + 'start_date' => 'วันที่เริ่มต้น', + 'completion_date' => 'วันที่แล้วเสร็จ', + 'cost' => 'ต้นทุน', + 'is_warranty' => 'การปรับปรุงการรับประกัน', + 'asset_maintenance_time' => 'ระยะเวลาการซ่อมบำรุงสินทรัพย์ (หน่วยเป็น วัน)', + 'notes' => 'หมายเหตุ', + 'update' => 'แก้ไขการซ่อมบำรุงสินทรัพย์', + 'create' => 'สร้างการซ่อมบำรุงสินทรัพย์' + ]; diff --git a/resources/lang/th/admin/asset_maintenances/general.php b/resources/lang/th-TH/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/th/admin/asset_maintenances/general.php rename to resources/lang/th-TH/admin/asset_maintenances/general.php diff --git a/resources/lang/th/admin/asset_maintenances/message.php b/resources/lang/th-TH/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/th/admin/asset_maintenances/message.php rename to resources/lang/th-TH/admin/asset_maintenances/message.php diff --git a/resources/lang/th/admin/asset_maintenances/table.php b/resources/lang/th-TH/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/th/admin/asset_maintenances/table.php rename to resources/lang/th-TH/admin/asset_maintenances/table.php diff --git a/resources/lang/th/admin/categories/general.php b/resources/lang/th-TH/admin/categories/general.php similarity index 100% rename from resources/lang/th/admin/categories/general.php rename to resources/lang/th-TH/admin/categories/general.php diff --git a/resources/lang/th/admin/categories/message.php b/resources/lang/th-TH/admin/categories/message.php similarity index 100% rename from resources/lang/th/admin/categories/message.php rename to resources/lang/th-TH/admin/categories/message.php diff --git a/resources/lang/th/admin/categories/table.php b/resources/lang/th-TH/admin/categories/table.php similarity index 100% rename from resources/lang/th/admin/categories/table.php rename to resources/lang/th-TH/admin/categories/table.php diff --git a/resources/lang/th/admin/companies/general.php b/resources/lang/th-TH/admin/companies/general.php similarity index 100% rename from resources/lang/th/admin/companies/general.php rename to resources/lang/th-TH/admin/companies/general.php diff --git a/resources/lang/th/admin/companies/message.php b/resources/lang/th-TH/admin/companies/message.php similarity index 100% rename from resources/lang/th/admin/companies/message.php rename to resources/lang/th-TH/admin/companies/message.php diff --git a/resources/lang/th/admin/companies/table.php b/resources/lang/th-TH/admin/companies/table.php similarity index 100% rename from resources/lang/th/admin/companies/table.php rename to resources/lang/th-TH/admin/companies/table.php diff --git a/resources/lang/th/admin/components/general.php b/resources/lang/th-TH/admin/components/general.php similarity index 100% rename from resources/lang/th/admin/components/general.php rename to resources/lang/th-TH/admin/components/general.php diff --git a/resources/lang/th/admin/components/message.php b/resources/lang/th-TH/admin/components/message.php similarity index 100% rename from resources/lang/th/admin/components/message.php rename to resources/lang/th-TH/admin/components/message.php diff --git a/resources/lang/th/admin/components/table.php b/resources/lang/th-TH/admin/components/table.php similarity index 100% rename from resources/lang/th/admin/components/table.php rename to resources/lang/th-TH/admin/components/table.php diff --git a/resources/lang/th/admin/consumables/general.php b/resources/lang/th-TH/admin/consumables/general.php similarity index 100% rename from resources/lang/th/admin/consumables/general.php rename to resources/lang/th-TH/admin/consumables/general.php diff --git a/resources/lang/th/admin/consumables/message.php b/resources/lang/th-TH/admin/consumables/message.php similarity index 100% rename from resources/lang/th/admin/consumables/message.php rename to resources/lang/th-TH/admin/consumables/message.php diff --git a/resources/lang/th/admin/consumables/table.php b/resources/lang/th-TH/admin/consumables/table.php similarity index 100% rename from resources/lang/th/admin/consumables/table.php rename to resources/lang/th-TH/admin/consumables/table.php diff --git a/resources/lang/th/admin/custom_fields/general.php b/resources/lang/th-TH/admin/custom_fields/general.php similarity index 100% rename from resources/lang/th/admin/custom_fields/general.php rename to resources/lang/th-TH/admin/custom_fields/general.php diff --git a/resources/lang/th/admin/custom_fields/message.php b/resources/lang/th-TH/admin/custom_fields/message.php similarity index 100% rename from resources/lang/th/admin/custom_fields/message.php rename to resources/lang/th-TH/admin/custom_fields/message.php diff --git a/resources/lang/th/admin/departments/message.php b/resources/lang/th-TH/admin/departments/message.php similarity index 100% rename from resources/lang/th/admin/departments/message.php rename to resources/lang/th-TH/admin/departments/message.php diff --git a/resources/lang/th/admin/departments/table.php b/resources/lang/th-TH/admin/departments/table.php similarity index 100% rename from resources/lang/th/admin/departments/table.php rename to resources/lang/th-TH/admin/departments/table.php diff --git a/resources/lang/th/admin/depreciations/general.php b/resources/lang/th-TH/admin/depreciations/general.php similarity index 100% rename from resources/lang/th/admin/depreciations/general.php rename to resources/lang/th-TH/admin/depreciations/general.php diff --git a/resources/lang/th/admin/depreciations/message.php b/resources/lang/th-TH/admin/depreciations/message.php similarity index 100% rename from resources/lang/th/admin/depreciations/message.php rename to resources/lang/th-TH/admin/depreciations/message.php diff --git a/resources/lang/th/admin/depreciations/table.php b/resources/lang/th-TH/admin/depreciations/table.php similarity index 100% rename from resources/lang/th/admin/depreciations/table.php rename to resources/lang/th-TH/admin/depreciations/table.php diff --git a/resources/lang/th/admin/groups/message.php b/resources/lang/th-TH/admin/groups/message.php similarity index 100% rename from resources/lang/th/admin/groups/message.php rename to resources/lang/th-TH/admin/groups/message.php diff --git a/resources/lang/th/admin/groups/table.php b/resources/lang/th-TH/admin/groups/table.php similarity index 100% rename from resources/lang/th/admin/groups/table.php rename to resources/lang/th-TH/admin/groups/table.php diff --git a/resources/lang/th/admin/groups/titles.php b/resources/lang/th-TH/admin/groups/titles.php similarity index 100% rename from resources/lang/th/admin/groups/titles.php rename to resources/lang/th-TH/admin/groups/titles.php diff --git a/resources/lang/th/admin/hardware/form.php b/resources/lang/th-TH/admin/hardware/form.php similarity index 100% rename from resources/lang/th/admin/hardware/form.php rename to resources/lang/th-TH/admin/hardware/form.php diff --git a/resources/lang/th/admin/hardware/general.php b/resources/lang/th-TH/admin/hardware/general.php similarity index 100% rename from resources/lang/th/admin/hardware/general.php rename to resources/lang/th-TH/admin/hardware/general.php diff --git a/resources/lang/th/admin/hardware/message.php b/resources/lang/th-TH/admin/hardware/message.php similarity index 98% rename from resources/lang/th/admin/hardware/message.php rename to resources/lang/th-TH/admin/hardware/message.php index 4310d76aab..fd25e8bc1a 100644 --- a/resources/lang/th/admin/hardware/message.php +++ b/resources/lang/th-TH/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'ไม่ได้กู้คืนเนื้อหาโปรดลองอีกครั้ง', 'success' => 'กู้คืนเนื้อหาเรียบร้อยแล้ว', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'กู้คืนเนื้อหาเรียบร้อยแล้ว', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/th/admin/hardware/table.php b/resources/lang/th-TH/admin/hardware/table.php similarity index 85% rename from resources/lang/th/admin/hardware/table.php rename to resources/lang/th-TH/admin/hardware/table.php index 1e6457e105..8819223085 100644 --- a/resources/lang/th/admin/hardware/table.php +++ b/resources/lang/th-TH/admin/hardware/table.php @@ -24,9 +24,9 @@ return [ 'image' => 'ภาพอุปกรณ์', 'days_without_acceptance' => 'วันโดยปราศจากการยอมรับ', 'monthly_depreciation' => 'ค่าเสื่อมราคารายเดือน', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'ได้รับมอบหมายให้', 'requesting_user' => 'Requesting User', - 'requested_date' => 'Requested Date', - 'changed' => 'Changed', + 'requested_date' => 'วันที่ขอ', + 'changed' => 'เปลี่ยนแปลงแล้ว', 'icon' => 'Icon', ]; diff --git a/resources/lang/fil/admin/kits/general.php b/resources/lang/th-TH/admin/kits/general.php similarity index 100% rename from resources/lang/fil/admin/kits/general.php rename to resources/lang/th-TH/admin/kits/general.php diff --git a/resources/lang/so/admin/labels/message.php b/resources/lang/th-TH/admin/labels/message.php similarity index 100% rename from resources/lang/so/admin/labels/message.php rename to resources/lang/th-TH/admin/labels/message.php diff --git a/resources/lang/th-TH/admin/labels/table.php b/resources/lang/th-TH/admin/labels/table.php new file mode 100644 index 0000000000..8b7efcefe6 --- /dev/null +++ b/resources/lang/th-TH/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'แท็ก', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'โลโก้', + 'support_title' => 'หัวเรื่อง', + +]; \ No newline at end of file diff --git a/resources/lang/th/admin/licenses/form.php b/resources/lang/th-TH/admin/licenses/form.php similarity index 100% rename from resources/lang/th/admin/licenses/form.php rename to resources/lang/th-TH/admin/licenses/form.php diff --git a/resources/lang/th/admin/licenses/general.php b/resources/lang/th-TH/admin/licenses/general.php similarity index 100% rename from resources/lang/th/admin/licenses/general.php rename to resources/lang/th-TH/admin/licenses/general.php diff --git a/resources/lang/th/admin/licenses/message.php b/resources/lang/th-TH/admin/licenses/message.php similarity index 100% rename from resources/lang/th/admin/licenses/message.php rename to resources/lang/th-TH/admin/licenses/message.php diff --git a/resources/lang/th/admin/licenses/table.php b/resources/lang/th-TH/admin/licenses/table.php similarity index 100% rename from resources/lang/th/admin/licenses/table.php rename to resources/lang/th-TH/admin/licenses/table.php diff --git a/resources/lang/th/admin/locations/message.php b/resources/lang/th-TH/admin/locations/message.php similarity index 100% rename from resources/lang/th/admin/locations/message.php rename to resources/lang/th-TH/admin/locations/message.php diff --git a/resources/lang/th/admin/locations/table.php b/resources/lang/th-TH/admin/locations/table.php similarity index 100% rename from resources/lang/th/admin/locations/table.php rename to resources/lang/th-TH/admin/locations/table.php diff --git a/resources/lang/th/admin/manufacturers/message.php b/resources/lang/th-TH/admin/manufacturers/message.php similarity index 100% rename from resources/lang/th/admin/manufacturers/message.php rename to resources/lang/th-TH/admin/manufacturers/message.php diff --git a/resources/lang/th/admin/manufacturers/table.php b/resources/lang/th-TH/admin/manufacturers/table.php similarity index 100% rename from resources/lang/th/admin/manufacturers/table.php rename to resources/lang/th-TH/admin/manufacturers/table.php diff --git a/resources/lang/th/admin/models/general.php b/resources/lang/th-TH/admin/models/general.php similarity index 100% rename from resources/lang/th/admin/models/general.php rename to resources/lang/th-TH/admin/models/general.php diff --git a/resources/lang/th/admin/models/message.php b/resources/lang/th-TH/admin/models/message.php similarity index 100% rename from resources/lang/th/admin/models/message.php rename to resources/lang/th-TH/admin/models/message.php diff --git a/resources/lang/th/admin/models/table.php b/resources/lang/th-TH/admin/models/table.php similarity index 100% rename from resources/lang/th/admin/models/table.php rename to resources/lang/th-TH/admin/models/table.php diff --git a/resources/lang/th/admin/reports/general.php b/resources/lang/th-TH/admin/reports/general.php similarity index 100% rename from resources/lang/th/admin/reports/general.php rename to resources/lang/th-TH/admin/reports/general.php diff --git a/resources/lang/th/admin/reports/message.php b/resources/lang/th-TH/admin/reports/message.php similarity index 100% rename from resources/lang/th/admin/reports/message.php rename to resources/lang/th-TH/admin/reports/message.php diff --git a/resources/lang/th/admin/settings/general.php b/resources/lang/th-TH/admin/settings/general.php similarity index 98% rename from resources/lang/th/admin/settings/general.php rename to resources/lang/th-TH/admin/settings/general.php index 65113934d5..43b3761206 100644 --- a/resources/lang/th/admin/settings/general.php +++ b/resources/lang/th-TH/admin/settings/general.php @@ -9,8 +9,9 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'อีเมล สำเนาถึง', 'admin_cc_email_help' => 'หากคุณต้องการส่งสำเนาเช็คอิน / เช็คเอาต์อีเมลที่ส่งถึงผู้ใช้ไปยังบัญชีอีเมลอื่นให้ป้อนได้ที่นี่ มิฉะนั้นปล่อยให้ฟิลด์นี้ว่างเปล่า', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'นี่คือเซิร์ฟเวอร์ Active Directory', - 'alerts' => 'Alerts', + 'alerts' => 'เตือน', 'alert_title' => 'Update Notification Settings', 'alert_email' => 'ส่งแจ้งเตือนไปยัง', 'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated', @@ -125,7 +126,7 @@ return [ 'login' => 'Login Attempts', 'login_attempt' => 'Login Attempt', 'login_ip' => 'IP Address', - 'login_success' => 'Success?', + 'login_success' => 'สำเร็จ?', 'login_user_agent' => 'User Agent', 'login_help' => 'List of attempted logins', 'login_note' => 'เข้าสู่ระบบหมายเหตุ', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'รหัสผ่านขั้นต่ำอักขระ', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'ค่าต่ำสุดที่อนุญาตคือ 8', 'pwd_secure_uncommon' => 'ป้องกันรหัสผ่านทั่วไป', 'pwd_secure_uncommon_help' => 'การดำเนินการนี้จะไม่อนุญาตให้ผู้ใช้ใช้รหัสผ่านทั่วไปจากรหัสผ่าน 10,000 อันดับแรกที่รายงานว่าละเมิด', 'qr_help' => 'เปิดใช้งาน QR Codes ก่อนการตั้งค่านี้', @@ -316,10 +317,10 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'ล้างข้อมูลที่ถูกลบ', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'หมายเลขพนักงาน', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'หัวเรื่อง', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'ประเภทบาร์โค้ด 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/th/admin/settings/message.php b/resources/lang/th-TH/admin/settings/message.php similarity index 100% rename from resources/lang/th/admin/settings/message.php rename to resources/lang/th-TH/admin/settings/message.php diff --git a/resources/lang/th-TH/admin/settings/table.php b/resources/lang/th-TH/admin/settings/table.php new file mode 100644 index 0000000000..a0b2f7bfaf --- /dev/null +++ b/resources/lang/th-TH/admin/settings/table.php @@ -0,0 +1,6 @@ + 'สร้างแล้ว', + 'size' => 'Size', +); diff --git a/resources/lang/th/admin/statuslabels/message.php b/resources/lang/th-TH/admin/statuslabels/message.php similarity index 87% rename from resources/lang/th/admin/statuslabels/message.php rename to resources/lang/th-TH/admin/statuslabels/message.php index 56f4975ceb..9000174c38 100644 --- a/resources/lang/th/admin/statuslabels/message.php +++ b/resources/lang/th-TH/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'ไม่มีป้ายสถานะ', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'ป้ายสถานะนี้เชื่อมโยงกับสินทรัพย์อย่างน้อยหนึ่งรายการและไม่สามารถลบได้ โปรดอัปเดตเนื้อหาของคุณเพื่อไม่ให้อ้างอิงสถานะนี้อีกแล้วลองอีกครั้ง', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'ไม่สามารถกำหนดเนื้อหาเหล่านี้ให้กับทุกคนได้', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'สามารถตรวจสอบสินทรัพย์เหล่านี้ได้ เมื่อได้รับมอบหมายแล้วพวกเขาจะถือว่าสถานะ meta ของ Deployed', 'archived' => 'ไม่สามารถตรวจสอบเนื้อหาเหล่านี้ได้และจะปรากฏเฉพาะในมุมมองที่เก็บถาวรเท่านั้น วิธีนี้มีประโยชน์สำหรับการเก็บรักษาข้อมูลเกี่ยวกับสินทรัพย์เพื่อการจัดทำงบประมาณ / วัตถุประสงค์ทางประวัติศาสตร์ แต่จะช่วยให้พวกเขาออกจากรายชื่อสินทรัพย์แบบวันต่อวัน', 'pending' => 'สินทรัพย์เหล่านี้ยังไม่สามารถกำหนดให้กับทุกคนซึ่งมักใช้สำหรับรายการที่ไม่ได้รับการซ่อม แต่คาดว่าจะกลับสู่การหมุนเวียน', ], diff --git a/resources/lang/th/admin/statuslabels/table.php b/resources/lang/th-TH/admin/statuslabels/table.php similarity index 100% rename from resources/lang/th/admin/statuslabels/table.php rename to resources/lang/th-TH/admin/statuslabels/table.php diff --git a/resources/lang/th/admin/suppliers/message.php b/resources/lang/th-TH/admin/suppliers/message.php similarity index 100% rename from resources/lang/th/admin/suppliers/message.php rename to resources/lang/th-TH/admin/suppliers/message.php diff --git a/resources/lang/th/admin/suppliers/table.php b/resources/lang/th-TH/admin/suppliers/table.php similarity index 100% rename from resources/lang/th/admin/suppliers/table.php rename to resources/lang/th-TH/admin/suppliers/table.php diff --git a/resources/lang/th/admin/users/general.php b/resources/lang/th-TH/admin/users/general.php similarity index 97% rename from resources/lang/th/admin/users/general.php rename to resources/lang/th-TH/admin/users/general.php index a1526b6405..37ed453286 100644 --- a/resources/lang/th/admin/users/general.php +++ b/resources/lang/th-TH/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'ดูผู้ใช้ :name', 'usercsv' => 'ไฟล์ CSV', 'two_factor_admin_optin_help' => 'การตั้งค่าผู้ดูแลระบบปัจจุบันช่วยให้สามารถใช้การตรวจสอบสิทธิ์แบบสองปัจจัยได้อย่างมีประสิทธิภาพ', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'อุปกรณ์ 2FA ที่ลงทะเบียนแล้ว', + 'two_factor_active' => '2FA Active', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/th/admin/users/message.php b/resources/lang/th-TH/admin/users/message.php similarity index 99% rename from resources/lang/th/admin/users/message.php rename to resources/lang/th-TH/admin/users/message.php index 03717fbb18..03bbe92fad 100644 --- a/resources/lang/th/admin/users/message.php +++ b/resources/lang/th-TH/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'คุณปฏิเสธสินทรัพย์นี้เรียบร้อยแล้ว', 'bulk_manager_warn' => 'ผู้ใช้ของคุณได้รับการอัปเดตแล้วแม้ว่ารายการผู้จัดการจะไม่ได้รับการบันทึกเนื่องจากผู้จัดการที่คุณเลือกอยู่ในรายชื่อผู้ใช้ที่จะแก้ไขและผู้ใช้ต้องไม่เป็นผู้จัดการของตัวเอง โปรดเลือกผู้ใช้ของคุณอีกครั้งโดยไม่รวมผู้จัดการ', 'user_exists' => 'มีผู้ใช้งานนี้แล้ว', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'ไม่มีผู้ใช้', 'user_login_required' => 'ต้องการชื่อผู้ใช้งาน', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'ต้องการรหัสผ่าน', diff --git a/resources/lang/th/admin/users/table.php b/resources/lang/th-TH/admin/users/table.php similarity index 96% rename from resources/lang/th/admin/users/table.php rename to resources/lang/th-TH/admin/users/table.php index a2cc0d804b..9282c58dcb 100644 --- a/resources/lang/th/admin/users/table.php +++ b/resources/lang/th-TH/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'ผู้จัดการ', 'managed_locations' => 'สถานที่ที่มีการจัดการ', 'name' => 'ชื่อ', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'หมายเหตุ', 'password_confirm' => 'ยืนยันรหัสผ่าน', 'password' => 'รหัสผ่าน', diff --git a/resources/lang/th/auth.php b/resources/lang/th-TH/auth.php similarity index 100% rename from resources/lang/th/auth.php rename to resources/lang/th-TH/auth.php diff --git a/resources/lang/th/auth/general.php b/resources/lang/th-TH/auth/general.php similarity index 100% rename from resources/lang/th/auth/general.php rename to resources/lang/th-TH/auth/general.php diff --git a/resources/lang/th/auth/message.php b/resources/lang/th-TH/auth/message.php similarity index 95% rename from resources/lang/th/auth/message.php rename to resources/lang/th-TH/auth/message.php index 278172f70c..9c1cc942f9 100644 --- a/resources/lang/th/auth/message.php +++ b/resources/lang/th-TH/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'คุณได้เข้าสู่ระบบเรียบร้อย', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/th/button.php b/resources/lang/th-TH/button.php similarity index 100% rename from resources/lang/th/button.php rename to resources/lang/th-TH/button.php diff --git a/resources/lang/th/general.php b/resources/lang/th-TH/general.php similarity index 97% rename from resources/lang/th/general.php rename to resources/lang/th-TH/general.php index f2120c1bdc..b704170741 100644 --- a/resources/lang/th/general.php +++ b/resources/lang/th-TH/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'ชนิดไฟล์ที่รองรับคือ jpg, webp, png, gif, และ svg. ขนาดไฟล์ใหญ่สุดที่ให้อัพโหลดได้ :size', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'นำเข้า', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'กำลังนำเข้า…', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'นำเข้าประวัติ', @@ -270,7 +271,7 @@ return [ 'supplier' => 'ผู้ผลิต', 'suppliers' => 'ตัวแทนจำหน่าย', 'sure_to_delete' => 'คุณแน่ใจหรือไม่ว่าต้องการลบ', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'คุณแน่ใจหรือไม่ว่าต้องการลบ?', 'delete_what' => 'ลบรายการ', 'submit' => 'เสนอ', 'target' => 'เป้า', @@ -337,7 +338,7 @@ return [ 'fields' => 'Fields', 'last_checkout' => 'รับมอบล่าสุด', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', + 'expected_checkin' => 'วันที่เช็คอินที่คาดหวังไว้', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', 'changed' => 'เปลี่ยนแปลงแล้ว', 'to' => 'ถึง', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'แก้ไข', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/th-TH/help.php b/resources/lang/th-TH/help.php new file mode 100644 index 0000000000..7e8e80b6a3 --- /dev/null +++ b/resources/lang/th-TH/help.php @@ -0,0 +1,35 @@ + 'ข้อมูลเพิ่มเติม', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'สินทรัพย์คือรายการที่ติดตามโดยใช้หมายเลขซีเรียลหรือแท็กเนื้อหา พวกเขามีแนวโน้มที่จะเป็นรายการมูลค่าที่สูงขึ้นซึ่งจะระบุรายการที่เฉพาะเจาะจง', + + 'categories' => 'หมวดหมู่ช่วยคุณจัดระเบียบรายการของคุณ หมวดหมู่ตัวอย่างบางประเภทอาจเป็น "Desktops", " แล็ปท็อป", " โทรศัพท์มือถือ", "Tablets" เป็นต้นและคุณสามารถใช้งานประเภทต่างๆที่เหมาะสมกับคุณได้', + + 'accessories' => 'อุปกรณ์เสริมใดๆ ที่มอบให้กับผู้ใช้แต่ไม่มีหมายเลขเครื่อง (หรือไม่จำเป็นสำหรับการค้นหาข้อมูลย้อนหลัง) ยกตัวอย่าง เช่น คอมพิวเตอร์ ไมค์ หรือแป้นพิมพ์ เป็นต้น', + + 'companies' => 'บริษัท สามารถใช้เป็นฟิลด์ระบุอย่างง่ายหรือสามารถใช้เพื่อ จำกัด การเปิดเผยข้อมูลของผู้ใช้ ฯลฯ หากมีการเปิดใช้งานการสนับสนุน บริษัท ทั้งหมดในการตั้งค่าผู้ดูแลระบบของคุณ', + + 'components' => 'คอมโพเนนต์เป็นรายการที่เป็นส่วนหนึ่งของเนื้อหาเช่นฮาร์ดดิสก์แรม ฯลฯ', + + 'consumables' => 'วัสดุสิ้นเปลืองคือสิ่งใดๆ ที่มีการซื้อและนำมาใช้ในช่วงเวลานั้น ยกตัวอย่างเช่น หมึกปริ้นเตอร์ หรือ กระดาษถ่ายสำเนา', + + 'depreciations' => 'คุณสามารถกำหนดการคิดค่าเสื่อมราคาเพื่อตัดค่าเสื่อมราคาโดยวิธีการคิดค่าเสื่อมราคาแบบเส้นตรง', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/th/localizations.php b/resources/lang/th-TH/localizations.php similarity index 99% rename from resources/lang/th/localizations.php rename to resources/lang/th-TH/localizations.php index bcb065cab6..5c4228b7f7 100644 --- a/resources/lang/th/localizations.php +++ b/resources/lang/th-TH/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/th/mail.php b/resources/lang/th-TH/mail.php similarity index 100% rename from resources/lang/th/mail.php rename to resources/lang/th-TH/mail.php diff --git a/resources/lang/th/pagination.php b/resources/lang/th-TH/pagination.php similarity index 100% rename from resources/lang/th/pagination.php rename to resources/lang/th-TH/pagination.php diff --git a/resources/lang/ta/passwords.php b/resources/lang/th-TH/passwords.php similarity index 100% rename from resources/lang/ta/passwords.php rename to resources/lang/th-TH/passwords.php diff --git a/resources/lang/th/reminders.php b/resources/lang/th-TH/reminders.php similarity index 100% rename from resources/lang/th/reminders.php rename to resources/lang/th-TH/reminders.php diff --git a/resources/lang/th/table.php b/resources/lang/th-TH/table.php similarity index 100% rename from resources/lang/th/table.php rename to resources/lang/th-TH/table.php diff --git a/resources/lang/th/validation.php b/resources/lang/th-TH/validation.php similarity index 99% rename from resources/lang/th/validation.php rename to resources/lang/th-TH/validation.php index 38c27d06d2..1ab5742749 100644 --- a/resources/lang/th/validation.php +++ b/resources/lang/th-TH/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'แอตทริบิวต์ต้องไม่ซ้ำกัน', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/th/admin/asset_maintenances/form.php b/resources/lang/th/admin/asset_maintenances/form.php deleted file mode 100644 index bcd2740236..0000000000 --- a/resources/lang/th/admin/asset_maintenances/form.php +++ /dev/null @@ -1,14 +0,0 @@ - 'Asset Maintenance Type', - 'title' => 'ชื่อเรื่อง', - 'start_date' => 'Start Date', - 'completion_date' => 'Completion Date', - 'cost' => 'ต้นทุน', - 'is_warranty' => 'การปรับปรุงการรับประกัน', - 'asset_maintenance_time' => 'Asset Maintenance Time (in days)', - 'notes' => 'หมายเหตุ', - 'update' => 'Update Asset Maintenance', - 'create' => 'Create Asset Maintenance' - ]; diff --git a/resources/lang/th/admin/kits/general.php b/resources/lang/th/admin/kits/general.php deleted file mode 100644 index f724ecbf07..0000000000 --- a/resources/lang/th/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Kit was successfully created.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/th/admin/labels/table.php b/resources/lang/th/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/th/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/th/admin/settings/table.php b/resources/lang/th/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/th/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/th/help.php b/resources/lang/th/help.php deleted file mode 100644 index 22847aa894..0000000000 --- a/resources/lang/th/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'ข้อมูลเพิ่มเติม', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/th/account/general.php b/resources/lang/tl-PH/account/general.php similarity index 100% rename from resources/lang/th/account/general.php rename to resources/lang/tl-PH/account/general.php diff --git a/resources/lang/tl/admin/accessories/general.php b/resources/lang/tl-PH/admin/accessories/general.php similarity index 100% rename from resources/lang/tl/admin/accessories/general.php rename to resources/lang/tl-PH/admin/accessories/general.php diff --git a/resources/lang/tl/admin/accessories/message.php b/resources/lang/tl-PH/admin/accessories/message.php similarity index 100% rename from resources/lang/tl/admin/accessories/message.php rename to resources/lang/tl-PH/admin/accessories/message.php diff --git a/resources/lang/tl/admin/accessories/table.php b/resources/lang/tl-PH/admin/accessories/table.php similarity index 100% rename from resources/lang/tl/admin/accessories/table.php rename to resources/lang/tl-PH/admin/accessories/table.php diff --git a/resources/lang/tl/admin/asset_maintenances/form.php b/resources/lang/tl-PH/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/tl/admin/asset_maintenances/form.php rename to resources/lang/tl-PH/admin/asset_maintenances/form.php diff --git a/resources/lang/tl/admin/asset_maintenances/general.php b/resources/lang/tl-PH/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/tl/admin/asset_maintenances/general.php rename to resources/lang/tl-PH/admin/asset_maintenances/general.php diff --git a/resources/lang/tl/admin/asset_maintenances/message.php b/resources/lang/tl-PH/admin/asset_maintenances/message.php similarity index 94% rename from resources/lang/tl/admin/asset_maintenances/message.php rename to resources/lang/tl-PH/admin/asset_maintenances/message.php index b44f618207..7fbd357238 100644 --- a/resources/lang/tl/admin/asset_maintenances/message.php +++ b/resources/lang/tl-PH/admin/asset_maintenances/message.php @@ -16,6 +16,6 @@ 'success' => 'Asset Maintenance edited successfully.', ], 'asset_maintenance_incomplete' => 'Not Completed Yet', - 'warranty' => 'Warranty', + 'warranty' => 'Garantiya', 'not_warranty' => 'Not Warranty', ]; diff --git a/resources/lang/tl/admin/asset_maintenances/table.php b/resources/lang/tl-PH/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/tl/admin/asset_maintenances/table.php rename to resources/lang/tl-PH/admin/asset_maintenances/table.php diff --git a/resources/lang/tl/admin/categories/general.php b/resources/lang/tl-PH/admin/categories/general.php similarity index 100% rename from resources/lang/tl/admin/categories/general.php rename to resources/lang/tl-PH/admin/categories/general.php diff --git a/resources/lang/tl/admin/categories/message.php b/resources/lang/tl-PH/admin/categories/message.php similarity index 100% rename from resources/lang/tl/admin/categories/message.php rename to resources/lang/tl-PH/admin/categories/message.php diff --git a/resources/lang/tl-PH/admin/categories/table.php b/resources/lang/tl-PH/admin/categories/table.php new file mode 100644 index 0000000000..4dab6e1d0a --- /dev/null +++ b/resources/lang/tl-PH/admin/categories/table.php @@ -0,0 +1,10 @@ + 'Ang EULA', + 'id' => 'Ang ID', + 'parent' => 'Parent', + 'require_acceptance' => 'Pagtanggap', + 'title' => 'Asset Category Name', + +); diff --git a/resources/lang/tl/admin/companies/general.php b/resources/lang/tl-PH/admin/companies/general.php similarity index 100% rename from resources/lang/tl/admin/companies/general.php rename to resources/lang/tl-PH/admin/companies/general.php diff --git a/resources/lang/tl/admin/companies/message.php b/resources/lang/tl-PH/admin/companies/message.php similarity index 100% rename from resources/lang/tl/admin/companies/message.php rename to resources/lang/tl-PH/admin/companies/message.php diff --git a/resources/lang/so/admin/companies/table.php b/resources/lang/tl-PH/admin/companies/table.php similarity index 86% rename from resources/lang/so/admin/companies/table.php rename to resources/lang/tl-PH/admin/companies/table.php index 2f86126ff2..2477129906 100644 --- a/resources/lang/so/admin/companies/table.php +++ b/resources/lang/tl-PH/admin/companies/table.php @@ -5,5 +5,5 @@ return array( 'title' => 'Company', 'update' => 'Update Company', 'name' => 'Company Name', - 'id' => 'ID', + 'id' => 'Ang ID', ); diff --git a/resources/lang/so/admin/components/general.php b/resources/lang/tl-PH/admin/components/general.php similarity index 100% rename from resources/lang/so/admin/components/general.php rename to resources/lang/tl-PH/admin/components/general.php diff --git a/resources/lang/sk/admin/components/message.php b/resources/lang/tl-PH/admin/components/message.php similarity index 100% rename from resources/lang/sk/admin/components/message.php rename to resources/lang/tl-PH/admin/components/message.php diff --git a/resources/lang/tl/admin/components/table.php b/resources/lang/tl-PH/admin/components/table.php similarity index 100% rename from resources/lang/tl/admin/components/table.php rename to resources/lang/tl-PH/admin/components/table.php diff --git a/resources/lang/so/admin/consumables/general.php b/resources/lang/tl-PH/admin/consumables/general.php similarity index 100% rename from resources/lang/so/admin/consumables/general.php rename to resources/lang/tl-PH/admin/consumables/general.php diff --git a/resources/lang/sk/admin/consumables/message.php b/resources/lang/tl-PH/admin/consumables/message.php similarity index 100% rename from resources/lang/sk/admin/consumables/message.php rename to resources/lang/tl-PH/admin/consumables/message.php diff --git a/resources/lang/tl/admin/consumables/table.php b/resources/lang/tl-PH/admin/consumables/table.php similarity index 100% rename from resources/lang/tl/admin/consumables/table.php rename to resources/lang/tl-PH/admin/consumables/table.php diff --git a/resources/lang/tl/admin/custom_fields/general.php b/resources/lang/tl-PH/admin/custom_fields/general.php similarity index 100% rename from resources/lang/tl/admin/custom_fields/general.php rename to resources/lang/tl-PH/admin/custom_fields/general.php diff --git a/resources/lang/tl/admin/custom_fields/message.php b/resources/lang/tl-PH/admin/custom_fields/message.php similarity index 100% rename from resources/lang/tl/admin/custom_fields/message.php rename to resources/lang/tl-PH/admin/custom_fields/message.php diff --git a/resources/lang/tl/admin/departments/message.php b/resources/lang/tl-PH/admin/departments/message.php similarity index 100% rename from resources/lang/tl/admin/departments/message.php rename to resources/lang/tl-PH/admin/departments/message.php diff --git a/resources/lang/tl/admin/departments/table.php b/resources/lang/tl-PH/admin/departments/table.php similarity index 86% rename from resources/lang/tl/admin/departments/table.php rename to resources/lang/tl-PH/admin/departments/table.php index 76494247be..7aba076094 100644 --- a/resources/lang/tl/admin/departments/table.php +++ b/resources/lang/tl-PH/admin/departments/table.php @@ -2,7 +2,7 @@ return array( - 'id' => 'ID', + 'id' => 'Ang ID', 'name' => 'Department Name', 'manager' => 'Manager', 'location' => 'Location', diff --git a/resources/lang/tl/admin/depreciations/general.php b/resources/lang/tl-PH/admin/depreciations/general.php similarity index 100% rename from resources/lang/tl/admin/depreciations/general.php rename to resources/lang/tl-PH/admin/depreciations/general.php diff --git a/resources/lang/tl/admin/depreciations/message.php b/resources/lang/tl-PH/admin/depreciations/message.php similarity index 100% rename from resources/lang/tl/admin/depreciations/message.php rename to resources/lang/tl-PH/admin/depreciations/message.php diff --git a/resources/lang/tl/admin/depreciations/table.php b/resources/lang/tl-PH/admin/depreciations/table.php similarity index 66% rename from resources/lang/tl/admin/depreciations/table.php rename to resources/lang/tl-PH/admin/depreciations/table.php index 256b10b92a..7be09e6c8a 100644 --- a/resources/lang/tl/admin/depreciations/table.php +++ b/resources/lang/tl-PH/admin/depreciations/table.php @@ -2,10 +2,10 @@ return [ - 'id' => 'ID', + 'id' => 'Ang ID', 'months' => 'Months', 'term' => 'Term', - 'title' => 'Name ', + 'title' => 'Ngalan ', 'depreciation_min' => 'Floor Value', ]; diff --git a/resources/lang/tl/admin/groups/message.php b/resources/lang/tl-PH/admin/groups/message.php similarity index 100% rename from resources/lang/tl/admin/groups/message.php rename to resources/lang/tl-PH/admin/groups/message.php diff --git a/resources/lang/tl/admin/groups/table.php b/resources/lang/tl-PH/admin/groups/table.php similarity index 100% rename from resources/lang/tl/admin/groups/table.php rename to resources/lang/tl-PH/admin/groups/table.php diff --git a/resources/lang/tl/admin/groups/titles.php b/resources/lang/tl-PH/admin/groups/titles.php similarity index 100% rename from resources/lang/tl/admin/groups/titles.php rename to resources/lang/tl-PH/admin/groups/titles.php diff --git a/resources/lang/iu/admin/hardware/form.php b/resources/lang/tl-PH/admin/hardware/form.php similarity index 96% rename from resources/lang/iu/admin/hardware/form.php rename to resources/lang/tl-PH/admin/hardware/form.php index ee3fa20fb0..eb7ee3d5ac 100644 --- a/resources/lang/iu/admin/hardware/form.php +++ b/resources/lang/tl-PH/admin/hardware/form.php @@ -33,8 +33,8 @@ return [ 'manufacturer' => 'Manufacturer', 'model' => 'Model', 'months' => 'months', - 'name' => 'Asset Name', - 'notes' => 'Notes', + 'name' => 'Sa Ngalan ng Propyedad', + 'notes' => 'Ang mga Palatandaan', 'order' => 'Order Number', 'qr' => 'QR Code', 'requestable' => 'Users may request this asset', @@ -43,7 +43,7 @@ return [ 'status' => 'Status', 'tag' => 'Asset Tag', 'update' => 'Asset Update', - 'warranty' => 'Warranty', + 'warranty' => 'Garantiya', 'warranty_expires' => 'Warranty Expires', 'years' => 'years', 'asset_location' => 'Update Asset Location', diff --git a/resources/lang/iu/admin/hardware/general.php b/resources/lang/tl-PH/admin/hardware/general.php similarity index 100% rename from resources/lang/iu/admin/hardware/general.php rename to resources/lang/tl-PH/admin/hardware/general.php diff --git a/resources/lang/tl/admin/hardware/message.php b/resources/lang/tl-PH/admin/hardware/message.php similarity index 100% rename from resources/lang/tl/admin/hardware/message.php rename to resources/lang/tl-PH/admin/hardware/message.php diff --git a/resources/lang/so/admin/hardware/table.php b/resources/lang/tl-PH/admin/hardware/table.php similarity index 89% rename from resources/lang/so/admin/hardware/table.php rename to resources/lang/tl-PH/admin/hardware/table.php index 06b60bfd83..b7bde2c978 100644 --- a/resources/lang/so/admin/hardware/table.php +++ b/resources/lang/tl-PH/admin/hardware/table.php @@ -11,12 +11,12 @@ return [ 'components_cost' => 'Total Components Cost', 'current_value' => 'Current Value', 'diff' => 'Diff', - 'dl_csv' => 'Download CSV', + 'dl_csv' => 'I-download sa CSV', 'eol' => 'EOL', - 'id' => 'ID', + 'id' => 'Ang ID', 'last_checkin_date' => 'Last Checkin Date', 'location' => 'Location', - 'purchase_cost' => 'Cost', + 'purchase_cost' => 'Ang Halaga', 'purchase_date' => 'Purchased', 'serial' => 'Serial', 'status' => 'Status', diff --git a/resources/lang/hr/admin/kits/general.php b/resources/lang/tl-PH/admin/kits/general.php similarity index 100% rename from resources/lang/hr/admin/kits/general.php rename to resources/lang/tl-PH/admin/kits/general.php diff --git a/resources/lang/ta/admin/labels/message.php b/resources/lang/tl-PH/admin/labels/message.php similarity index 100% rename from resources/lang/ta/admin/labels/message.php rename to resources/lang/tl-PH/admin/labels/message.php diff --git a/resources/lang/da/admin/labels/table.php b/resources/lang/tl-PH/admin/labels/table.php similarity index 84% rename from resources/lang/da/admin/labels/table.php rename to resources/lang/tl-PH/admin/labels/table.php index 87dee4bad0..437fda27ea 100644 --- a/resources/lang/da/admin/labels/table.php +++ b/resources/lang/tl-PH/admin/labels/table.php @@ -8,6 +8,6 @@ return [ 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => 'Ang Pamagat', ]; \ No newline at end of file diff --git a/resources/lang/iu/admin/licenses/form.php b/resources/lang/tl-PH/admin/licenses/form.php similarity index 100% rename from resources/lang/iu/admin/licenses/form.php rename to resources/lang/tl-PH/admin/licenses/form.php diff --git a/resources/lang/tl/admin/licenses/general.php b/resources/lang/tl-PH/admin/licenses/general.php similarity index 100% rename from resources/lang/tl/admin/licenses/general.php rename to resources/lang/tl-PH/admin/licenses/general.php diff --git a/resources/lang/tl/admin/licenses/message.php b/resources/lang/tl-PH/admin/licenses/message.php similarity index 100% rename from resources/lang/tl/admin/licenses/message.php rename to resources/lang/tl-PH/admin/licenses/message.php diff --git a/resources/lang/tl/admin/licenses/table.php b/resources/lang/tl-PH/admin/licenses/table.php similarity index 92% rename from resources/lang/tl/admin/licenses/table.php rename to resources/lang/tl-PH/admin/licenses/table.php index dfce4136cb..f9c0123bde 100644 --- a/resources/lang/tl/admin/licenses/table.php +++ b/resources/lang/tl-PH/admin/licenses/table.php @@ -4,7 +4,7 @@ return array( 'assigned_to' => 'Assigned To', 'checkout' => 'In/Out', - 'id' => 'ID', + 'id' => 'Ang ID', 'license_email' => 'License Email', 'license_name' => 'Licensed To', 'purchase_date' => 'Purchase Date', diff --git a/resources/lang/tl/admin/locations/message.php b/resources/lang/tl-PH/admin/locations/message.php similarity index 100% rename from resources/lang/tl/admin/locations/message.php rename to resources/lang/tl-PH/admin/locations/message.php diff --git a/resources/lang/iu/admin/locations/table.php b/resources/lang/tl-PH/admin/locations/table.php similarity index 95% rename from resources/lang/iu/admin/locations/table.php rename to resources/lang/tl-PH/admin/locations/table.php index 0cfaa4fdc3..d4a28841e6 100644 --- a/resources/lang/iu/admin/locations/table.php +++ b/resources/lang/tl-PH/admin/locations/table.php @@ -5,7 +5,7 @@ return [ 'about_locations' => 'Locations are used to track location information for users, assets, and other items', 'assets_rtd' => 'Assets', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted. 'assets_checkedout' => 'Assets Assigned', - 'id' => 'ID', + 'id' => 'Ang ID', 'city' => 'City', 'state' => 'State', 'country' => 'Country', @@ -25,7 +25,7 @@ return [ 'department' => 'Department', 'location' => 'Location', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', + 'asset_name' => 'Ngalan', 'asset_category' => 'Category', 'asset_manufacturer' => 'Manufacturer', 'asset_model' => 'Model', diff --git a/resources/lang/tl/admin/manufacturers/message.php b/resources/lang/tl-PH/admin/manufacturers/message.php similarity index 100% rename from resources/lang/tl/admin/manufacturers/message.php rename to resources/lang/tl-PH/admin/manufacturers/message.php diff --git a/resources/lang/tl/admin/manufacturers/table.php b/resources/lang/tl-PH/admin/manufacturers/table.php similarity index 91% rename from resources/lang/tl/admin/manufacturers/table.php rename to resources/lang/tl-PH/admin/manufacturers/table.php index 38cab6fd91..08cf9651a4 100644 --- a/resources/lang/tl/admin/manufacturers/table.php +++ b/resources/lang/tl-PH/admin/manufacturers/table.php @@ -5,8 +5,8 @@ return array( 'about_manufacturers_text' => 'Manufacturers are the companies that create your assets. You can store important support contact information about them here, which will be displayed on your asset detail pages.', 'asset_manufacturers' => 'Asset Manufacturers', 'create' => 'Create Manufacturer', - 'id' => 'ID', - 'name' => 'Name', + 'id' => 'Ang ID', + 'name' => 'Ngalan', 'support_email' => 'Support Email', 'support_phone' => 'Support Phone', 'support_url' => 'Support URL', diff --git a/resources/lang/so/admin/models/general.php b/resources/lang/tl-PH/admin/models/general.php similarity index 100% rename from resources/lang/so/admin/models/general.php rename to resources/lang/tl-PH/admin/models/general.php diff --git a/resources/lang/tl/admin/models/message.php b/resources/lang/tl-PH/admin/models/message.php similarity index 100% rename from resources/lang/tl/admin/models/message.php rename to resources/lang/tl-PH/admin/models/message.php diff --git a/resources/lang/iu/admin/models/table.php b/resources/lang/tl-PH/admin/models/table.php similarity index 100% rename from resources/lang/iu/admin/models/table.php rename to resources/lang/tl-PH/admin/models/table.php diff --git a/resources/lang/tl/admin/reports/general.php b/resources/lang/tl-PH/admin/reports/general.php similarity index 100% rename from resources/lang/tl/admin/reports/general.php rename to resources/lang/tl-PH/admin/reports/general.php diff --git a/resources/lang/tl/admin/reports/message.php b/resources/lang/tl-PH/admin/reports/message.php similarity index 100% rename from resources/lang/tl/admin/reports/message.php rename to resources/lang/tl-PH/admin/reports/message.php diff --git a/resources/lang/tl/admin/settings/general.php b/resources/lang/tl-PH/admin/settings/general.php similarity index 99% rename from resources/lang/tl/admin/settings/general.php rename to resources/lang/tl-PH/admin/settings/general.php index 7d777d722d..92575d6982 100644 --- a/resources/lang/tl/admin/settings/general.php +++ b/resources/lang/tl-PH/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Ito ay isang Aktibong serber ng Direktorya', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -334,7 +335,7 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Ang Pamagat', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', diff --git a/resources/lang/tl/admin/settings/message.php b/resources/lang/tl-PH/admin/settings/message.php similarity index 100% rename from resources/lang/tl/admin/settings/message.php rename to resources/lang/tl-PH/admin/settings/message.php diff --git a/resources/lang/el/admin/settings/table.php b/resources/lang/tl-PH/admin/settings/table.php similarity index 100% rename from resources/lang/el/admin/settings/table.php rename to resources/lang/tl-PH/admin/settings/table.php diff --git a/resources/lang/tl-PH/admin/statuslabels/message.php b/resources/lang/tl-PH/admin/statuslabels/message.php new file mode 100644 index 0000000000..b1b4034d0d --- /dev/null +++ b/resources/lang/tl-PH/admin/statuslabels/message.php @@ -0,0 +1,32 @@ + 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', + 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', + + 'create' => [ + 'error' => 'Status Label was not created, please try again.', + 'success' => 'Status Label created successfully.', + ], + + 'update' => [ + 'error' => 'Status Label was not updated, please try again', + 'success' => 'Status Label updated successfully.', + ], + + 'delete' => [ + 'confirm' => 'Are you sure you wish to delete this Status Label?', + 'error' => 'There was an issue deleting the Status Label. Please try again.', + 'success' => 'The Status Label was deleted successfully.', + ], + + 'help' => [ + 'undeployable' => 'These assets cannot be assigned to anyone.', + 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'archived' => 'These assets cannot be checked out, and will only show up in the Archived view. This is useful for retaining information about assets for budgeting/historic purposes but keeping them out of the day-to-day asset list.', + 'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.', + ], + +]; diff --git a/resources/lang/iu/admin/statuslabels/table.php b/resources/lang/tl-PH/admin/statuslabels/table.php similarity index 100% rename from resources/lang/iu/admin/statuslabels/table.php rename to resources/lang/tl-PH/admin/statuslabels/table.php diff --git a/resources/lang/tl/admin/suppliers/message.php b/resources/lang/tl-PH/admin/suppliers/message.php similarity index 100% rename from resources/lang/tl/admin/suppliers/message.php rename to resources/lang/tl-PH/admin/suppliers/message.php diff --git a/resources/lang/so/admin/suppliers/table.php b/resources/lang/tl-PH/admin/suppliers/table.php similarity index 90% rename from resources/lang/so/admin/suppliers/table.php rename to resources/lang/tl-PH/admin/suppliers/table.php index 2a7b07ca93..8a93dd47dc 100644 --- a/resources/lang/so/admin/suppliers/table.php +++ b/resources/lang/tl-PH/admin/suppliers/table.php @@ -11,10 +11,10 @@ return array( 'create' => 'Create Supplier', 'email' => 'Email', 'fax' => 'Fax', - 'id' => 'ID', + 'id' => 'Ang ID', 'licenses' => 'Licenses', 'name' => 'Supplier Name', - 'notes' => 'Notes', + 'notes' => 'Ang mga Palatandaan', 'phone' => 'Phone', 'state' => 'State', 'suppliers' => 'Suppliers', diff --git a/resources/lang/tl/admin/users/general.php b/resources/lang/tl-PH/admin/users/general.php similarity index 100% rename from resources/lang/tl/admin/users/general.php rename to resources/lang/tl-PH/admin/users/general.php diff --git a/resources/lang/tl/admin/users/message.php b/resources/lang/tl-PH/admin/users/message.php similarity index 100% rename from resources/lang/tl/admin/users/message.php rename to resources/lang/tl-PH/admin/users/message.php diff --git a/resources/lang/tl-PH/admin/users/table.php b/resources/lang/tl-PH/admin/users/table.php new file mode 100644 index 0000000000..79bfbd6419 --- /dev/null +++ b/resources/lang/tl-PH/admin/users/table.php @@ -0,0 +1,40 @@ + 'Active', + 'allow' => 'Allow', + 'checkedout' => 'Assets', + 'created_at' => 'Created', + 'createuser' => 'Create User', + 'deny' => 'Deny', + 'email' => 'Email', + 'employee_num' => 'Employee No.', + 'first_name' => 'First Name', + 'groupnotes' => 'Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned. Use ctrl+click (or cmd+click on MacOS) to deselect groups.', + 'id' => 'Id', + 'inherit' => 'Inherit', + 'job' => 'Job Title', + 'last_login' => 'Last Login', + 'last_name' => 'Last Name', + 'location' => 'Location', + 'lock_passwords' => 'Login details cannot be changed on this installation.', + 'manager' => 'Manager', + 'managed_locations' => 'Managed Locations', + 'name' => 'Ngalan', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', + 'notes' => 'Ang mga Palatandaan', + 'password_confirm' => 'Confirm Password', + 'password' => 'Password', + 'phone' => 'Phone', + 'show_current' => 'Show Current Users', + 'show_deleted' => 'Show Deleted Users', + 'title' => 'Ang Pamagat', + 'to_restore_them' => 'to restore them.', + 'total_assets_cost' => "Total Assets Cost", + 'updateuser' => 'Update User', + 'username' => 'Username', + 'user_deleted_text' => 'This user has been marked as deleted.', + 'username_note' => '(This is used for Active Directory binding only, not for login.)', + 'cloneuser' => 'Clone User', + 'viewusers' => 'View Users', +); diff --git a/resources/lang/so/auth.php b/resources/lang/tl-PH/auth.php similarity index 100% rename from resources/lang/so/auth.php rename to resources/lang/tl-PH/auth.php diff --git a/resources/lang/tl/auth/general.php b/resources/lang/tl-PH/auth/general.php similarity index 100% rename from resources/lang/tl/auth/general.php rename to resources/lang/tl-PH/auth/general.php diff --git a/resources/lang/tl/auth/message.php b/resources/lang/tl-PH/auth/message.php similarity index 100% rename from resources/lang/tl/auth/message.php rename to resources/lang/tl-PH/auth/message.php diff --git a/resources/lang/tl/button.php b/resources/lang/tl-PH/button.php similarity index 95% rename from resources/lang/tl/button.php rename to resources/lang/tl-PH/button.php index 22821b8157..fb8ea31b10 100644 --- a/resources/lang/tl/button.php +++ b/resources/lang/tl-PH/button.php @@ -1,7 +1,7 @@ 'Actions', + 'actions' => 'Mga kilos', 'add' => 'Add New', 'cancel' => 'Cancel', 'checkin_and_delete' => 'Checkin All / Delete User', diff --git a/resources/lang/so/general.php b/resources/lang/tl-PH/general.php similarity index 96% rename from resources/lang/so/general.php rename to resources/lang/tl-PH/general.php index a568e00436..63a7256752 100644 --- a/resources/lang/so/general.php +++ b/resources/lang/tl-PH/general.php @@ -6,7 +6,7 @@ return [ 'accepted_date' => 'Date Accepted', 'accessory' => 'Accessory', 'accessory_report' => 'Accessory Report', - 'action' => 'Action', + 'action' => 'Kilos', 'activity_report' => 'Activity Report', 'address' => 'Address', 'admin' => 'Admin', @@ -87,7 +87,7 @@ return [ 'customize_report' => 'Customize Report', 'custom_report' => 'Custom Asset Report', 'dashboard' => 'Dashboard', - 'days' => 'days', + 'days' => 'ang mga araw', 'days_to_next_audit' => 'Days to Next Audit', 'date' => 'Date', 'debug_warning' => 'Warning!', @@ -146,7 +146,7 @@ return [ 'gravatar_url' => 'Change your avatar at Gravatar.com.', 'history' => 'History', 'history_for' => 'History for', - 'id' => 'ID', + 'id' => 'Ang ID', 'image' => 'Image', 'image_delete' => 'Delete Image', 'include_deleted' => 'Include Deleted Assets', @@ -156,13 +156,14 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', - 'asset_maintenance' => 'Asset Maintenance', + 'asset_maintenance' => 'Propyedad sa Kinabubuhay', 'asset_maintenance_report' => 'Asset Maintenance Report', - 'asset_maintenances' => 'Asset Maintenances', - 'item' => 'Item', + 'asset_maintenances' => 'Bagay na may halaga sa Kabuhayan', + 'item' => 'Aytem', 'item_name' => 'Item Name', 'import_file' => 'import CSV file', 'import_type' => 'CSV import type', @@ -195,7 +196,7 @@ return [ 'model_no' => 'Model No.', 'months' => 'months', 'moreinfo' => 'More Info', - 'name' => 'Name', + 'name' => 'Ngalan', 'new_password' => 'New Password', 'next' => 'Next', 'next_audit_date' => 'Next Audit Date', @@ -204,7 +205,7 @@ return [ 'no_depreciation' => 'No Depreciation', 'no_results' => 'No Results.', 'no' => 'No', - 'notes' => 'Notes', + 'notes' => 'Ang mga Palatandaan', 'order_number' => 'Order Number', 'only_deleted' => 'Only Deleted Assets', 'page_menu' => 'Showing _MENU_ items', @@ -284,7 +285,7 @@ return [ 'unknown_admin' => 'Unknown Admin', 'username_format' => 'Username Format', 'username' => 'Username', - 'update' => 'Update', + 'update' => 'I-update', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Uploaded', 'user' => 'User', @@ -379,11 +380,11 @@ return [ 'notification_info' => 'Info', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Sa Ngalan ng Propyedad', 'consumable_information' => 'Consumable Information:', 'consumable_name' => 'Consumable Name:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Pangalan ng accessory:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/lv/help.php b/resources/lang/tl-PH/help.php similarity index 89% rename from resources/lang/lv/help.php rename to resources/lang/tl-PH/help.php index a59e0056be..39fe54a34b 100644 --- a/resources/lang/lv/help.php +++ b/resources/lang/tl-PH/help.php @@ -21,7 +21,7 @@ return [ 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', + 'accessories' => 'Ang mga accessory na kahit ano pang ini-issue mo sa mga user ngunit walang numero na serial (o wala Kang pakialam tungkol sa pag-track sakanila bilang kakaiba). Halimbawa, kompyuter mice o keyboards.', 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', diff --git a/resources/lang/tl-PH/localizations.php b/resources/lang/tl-PH/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/tl-PH/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/tl/mail.php b/resources/lang/tl-PH/mail.php similarity index 95% rename from resources/lang/tl/mail.php rename to resources/lang/tl-PH/mail.php index 7dd8d6181c..0a72d514bc 100644 --- a/resources/lang/tl/mail.php +++ b/resources/lang/tl-PH/mail.php @@ -5,11 +5,11 @@ return [ 'acceptance_asset_declined' => 'A user has declined an item', 'a_user_canceled' => 'A user has canceled an item request on the website', 'a_user_requested' => 'A user has requested an item on the website', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Pangalan ng accessory:', 'additional_notes' => 'Additional Notes:', 'admin_has_created' => 'An administrator has created an account for you on the :web website.', 'asset' => 'Asset:', - 'asset_name' => 'Asset Name:', + 'asset_name' => 'Sa Ngalan ng Propyedad:', 'asset_requested' => 'Asset requested', 'asset_tag' => 'Asset Tag', 'assigned_to' => 'Assigned To', @@ -27,8 +27,8 @@ return [ 'Confirm_asset_delivery' => 'Asset delivery confirmation', 'Confirm_consumable_delivery' => 'Consumable delivery confirmation', 'current_QTY' => 'Current QTY', - 'Days' => 'Days', - 'days' => 'Days', + 'Days' => 'Ang mga araw', + 'days' => 'Ang mga araw', 'expecting_checkin_date' => 'Expected Checkin Date:', 'expires' => 'Expires', 'Expiring_Assets_Report' => 'Expiring Assets Report.', @@ -36,7 +36,7 @@ return [ 'hello' => 'Hello', 'hi' => 'Hi', 'i_have_read' => 'I have read and agree to the terms of use, and have received this item.', - 'item' => 'Item:', + 'item' => 'Aytem:', 'Item_Request_Canceled' => 'Item Request Canceled', 'Item_Requested' => 'Item Requested', 'link_to_update_password' => 'Please click on the following link to update your :web password:', @@ -45,7 +45,7 @@ return [ 'Low_Inventory_Report' => 'Low Inventory Report', 'inventory_report' => 'Inventory Report', 'min_QTY' => 'Min QTY', - 'name' => 'Name', + 'name' => 'Ngalan', 'new_item_checked' => 'A new item has been checked out under your name, details are below.', 'password' => 'Password:', 'password_reset' => 'Password Reset', diff --git a/resources/lang/tl/pagination.php b/resources/lang/tl-PH/pagination.php similarity index 100% rename from resources/lang/tl/pagination.php rename to resources/lang/tl-PH/pagination.php diff --git a/resources/lang/th/passwords.php b/resources/lang/tl-PH/passwords.php similarity index 100% rename from resources/lang/th/passwords.php rename to resources/lang/tl-PH/passwords.php diff --git a/resources/lang/tl/reminders.php b/resources/lang/tl-PH/reminders.php similarity index 100% rename from resources/lang/tl/reminders.php rename to resources/lang/tl-PH/reminders.php diff --git a/resources/lang/tl/table.php b/resources/lang/tl-PH/table.php similarity index 100% rename from resources/lang/tl/table.php rename to resources/lang/tl-PH/table.php diff --git a/resources/lang/tl-PH/validation.php b/resources/lang/tl-PH/validation.php new file mode 100644 index 0000000000..247cfc47d7 --- /dev/null +++ b/resources/lang/tl-PH/validation.php @@ -0,0 +1,154 @@ + 'The :attribute must be accepted.', + 'active_url' => 'The :attribute is not a valid URL.', + 'after' => 'The :attribute must be a date after :date.', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + 'alpha' => 'The :attribute may only contain letters.', + 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', + 'alpha_num' => 'The :attribute may only contain letters and numbers.', + 'array' => 'The :attribute must be an array.', + 'before' => 'The :attribute must be a date before :date.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'between' => [ + 'numeric' => 'The :attribute must be between :min - :max.', + 'file' => 'The :attribute must be between :min - :max kilobytes.', + 'string' => 'The :attribute must be between :min - :max characters.', + 'array' => 'The :attribute must have between :min and :max items.', + ], + 'boolean' => 'The :attribute must be true or false.', + 'confirmed' => 'The :attribute confirmation does not match.', + 'date' => 'The :attribute is not a valid date.', + 'date_format' => 'The :attribute does not match the format :format.', + 'different' => 'The :attribute and :other must be different.', + 'digits' => 'The :attribute must be :digits digits.', + 'digits_between' => 'The :attribute must be between :min and :max digits.', + 'dimensions' => 'The :attribute has invalid image dimensions.', + 'distinct' => 'The :attribute field has a duplicate value.', + 'email' => 'The :attribute format is invalid.', + 'exists' => 'The selected :attribute is invalid.', + 'file' => 'The :attribute must be a file.', + 'filled' => 'The :attribute field must have a value.', + 'image' => 'The :attribute must be an image.', + 'import_field_empty' => 'The value for :fieldname cannot be null.', + 'in' => 'The selected :attribute is invalid.', + 'in_array' => 'The :attribute field does not exist in :other.', + 'integer' => 'The :attribute must be an integer.', + 'ip' => 'The :attribute must be a valid IP address.', + 'ipv4' => 'The :attribute must be a valid IPv4 address.', + 'ipv6' => 'The :attribute must be a valid IPv6 address.', + 'is_unique_department' => 'The :attribute must be unique to this Company Location', + 'json' => 'The :attribute must be a valid JSON string.', + 'max' => [ + 'numeric' => 'The :attribute may not be greater than :max.', + 'file' => 'The :attribute may not be greater than :max kilobytes.', + 'string' => 'The :attribute may not be greater than :max characters.', + 'array' => 'The :attribute may not have more than :max items.', + ], + 'mimes' => 'The :attribute must be a file of type: :values.', + 'mimetypes' => 'The :attribute must be a file of type: :values.', + 'min' => [ + 'numeric' => 'The :attribute must be at least :min.', + 'file' => 'The :attribute must be at least :min kilobytes.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', + ], + 'starts_with' => 'The :attribute must start with one of the following: :values.', + 'ends_with' => 'The :attribute must end with one of the following: :values.', + + 'not_in' => 'The selected :attribute is invalid.', + 'numeric' => 'The :attribute must be a number.', + 'present' => 'The :attribute field must be present.', + 'valid_regex' => 'That is not a valid regex. ', + 'regex' => 'The :attribute format is invalid.', + 'required' => 'The :attribute field is required.', + 'required_if' => 'The :attribute field is required when :other is :value.', + 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_with' => 'The :attribute field is required when :values is present.', + 'required_with_all' => 'The :attribute field is required when :values is present.', + 'required_without' => 'The :attribute field is required when :values is not present.', + 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'same' => 'The :attribute and :other must match.', + 'size' => [ + 'numeric' => 'The :attribute must be :size.', + 'file' => 'The :attribute must be :size kilobytes.', + 'string' => 'The :attribute must be :size characters.', + 'array' => 'The :attribute must contain :size items.', + ], + 'string' => 'The :attribute must be a string.', + 'timezone' => 'The :attribute must be a valid zone.', + 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', + 'unique' => 'The :attribute has already been taken.', + 'uploaded' => 'The :attribute failed to upload.', + 'url' => 'The :attribute format is invalid.', + 'unique_undeleted' => 'The :attribute must be unique.', + 'non_circular' => 'The :attribute must not create a circular reference.', + 'not_array' => 'The :attribute field cannot be an array.', + 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', + 'letters' => 'Password must contain at least one letter.', + 'numbers' => 'Password must contain at least one number.', + 'case_diff' => 'Password must use mixed case.', + 'symbols' => 'Password must contain symbols.', + 'gte' => [ + 'numeric' => 'Value cannot be negative' + ], + + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'alpha_space' => 'The :attribute field contains a character that is not allowed.', + 'email_array' => 'One or more email addresses is invalid.', + 'hashed_pass' => 'Your current password is incorrect', + 'dumbpwd' => 'That password is too common.', + 'statuslabel_type' => 'You must select a valid status label type', + + // date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :( + // We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP + // people won't know how to format. + 'purchase_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'last_audit_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD hh:mm:ss format', + 'expiration_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'termination_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'expected_checkin.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'start_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + 'end_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', + + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [], + +]; diff --git a/resources/lang/tl/admin/categories/table.php b/resources/lang/tl/admin/categories/table.php deleted file mode 100644 index a3ee96ae7f..0000000000 --- a/resources/lang/tl/admin/categories/table.php +++ /dev/null @@ -1,10 +0,0 @@ - 'EULA', - 'id' => 'ID', - 'parent' => 'Parent', - 'require_acceptance' => 'Acceptance', - 'title' => 'Asset Category Name', - -); diff --git a/resources/lang/tl/admin/kits/general.php b/resources/lang/tl/admin/kits/general.php deleted file mode 100644 index f724ecbf07..0000000000 --- a/resources/lang/tl/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Kit was successfully created.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/tl/admin/labels/table.php b/resources/lang/tl/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/tl/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/tl/admin/settings/table.php b/resources/lang/tl/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/tl/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/tl/admin/statuslabels/message.php b/resources/lang/tl/admin/statuslabels/message.php deleted file mode 100644 index fe9adbf928..0000000000 --- a/resources/lang/tl/admin/statuslabels/message.php +++ /dev/null @@ -1,31 +0,0 @@ - 'Status Label does not exist.', - 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', - - 'create' => [ - 'error' => 'Status Label was not created, please try again.', - 'success' => 'Status Label created successfully.', - ], - - 'update' => [ - 'error' => 'Status Label was not updated, please try again', - 'success' => 'Status Label updated successfully.', - ], - - 'delete' => [ - 'confirm' => 'Are you sure you wish to delete this Status Label?', - 'error' => 'There was an issue deleting the Status Label. Please try again.', - 'success' => 'The Status Label was deleted successfully.', - ], - - 'help' => [ - 'undeployable' => 'These assets cannot be assigned to anyone.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', - 'archived' => 'These assets cannot be checked out, and will only show up in the Archived view. This is useful for retaining information about assets for budgeting/historic purposes but keeping them out of the day-to-day asset list.', - 'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.', - ], - -]; diff --git a/resources/lang/tl/admin/users/table.php b/resources/lang/tl/admin/users/table.php deleted file mode 100644 index 21e2154280..0000000000 --- a/resources/lang/tl/admin/users/table.php +++ /dev/null @@ -1,39 +0,0 @@ - 'Active', - 'allow' => 'Allow', - 'checkedout' => 'Assets', - 'created_at' => 'Created', - 'createuser' => 'Create User', - 'deny' => 'Deny', - 'email' => 'Email', - 'employee_num' => 'Employee No.', - 'first_name' => 'First Name', - 'groupnotes' => 'Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned. Use ctrl+click (or cmd+click on MacOS) to deselect groups.', - 'id' => 'Id', - 'inherit' => 'Inherit', - 'job' => 'Job Title', - 'last_login' => 'Last Login', - 'last_name' => 'Last Name', - 'location' => 'Location', - 'lock_passwords' => 'Login details cannot be changed on this installation.', - 'manager' => 'Manager', - 'managed_locations' => 'Managed Locations', - 'name' => 'Name', - 'notes' => 'Notes', - 'password_confirm' => 'Confirm Password', - 'password' => 'Password', - 'phone' => 'Phone', - 'show_current' => 'Show Current Users', - 'show_deleted' => 'Show Deleted Users', - 'title' => 'Title', - 'to_restore_them' => 'to restore them.', - 'total_assets_cost' => "Total Assets Cost", - 'updateuser' => 'Update User', - 'username' => 'Username', - 'user_deleted_text' => 'This user has been marked as deleted.', - 'username_note' => '(This is used for Active Directory binding only, not for login.)', - 'cloneuser' => 'Clone User', - 'viewusers' => 'View Users', -); diff --git a/resources/lang/tl/help.php b/resources/lang/tl/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/tl/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/tl/localizations.php b/resources/lang/tl/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/tl/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/tl/validation.php b/resources/lang/tl/validation.php deleted file mode 100644 index 57e354f072..0000000000 --- a/resources/lang/tl/validation.php +++ /dev/null @@ -1,155 +0,0 @@ - 'The :attribute must be accepted.', - 'active_url' => 'The :attribute is not a valid URL.', - 'after' => 'The :attribute must be a date after :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', - 'alpha' => 'The :attribute may only contain letters.', - 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', - 'alpha_num' => 'The :attribute may only contain letters and numbers.', - 'array' => 'The :attribute must be an array.', - 'before' => 'The :attribute must be a date before :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', - 'between' => [ - 'numeric' => 'The :attribute must be between :min - :max.', - 'file' => 'The :attribute must be between :min - :max kilobytes.', - 'string' => 'The :attribute must be between :min - :max characters.', - 'array' => 'The :attribute must have between :min and :max items.', - ], - 'boolean' => 'The :attribute must be true or false.', - 'confirmed' => 'The :attribute confirmation does not match.', - 'date' => 'The :attribute is not a valid date.', - 'date_format' => 'The :attribute does not match the format :format.', - 'different' => 'The :attribute and :other must be different.', - 'digits' => 'The :attribute must be :digits digits.', - 'digits_between' => 'The :attribute must be between :min and :max digits.', - 'dimensions' => 'The :attribute has invalid image dimensions.', - 'distinct' => 'The :attribute field has a duplicate value.', - 'email' => 'The :attribute format is invalid.', - 'exists' => 'The selected :attribute is invalid.', - 'file' => 'The :attribute must be a file.', - 'filled' => 'The :attribute field must have a value.', - 'image' => 'The :attribute must be an image.', - 'import_field_empty' => 'The value for :fieldname cannot be null.', - 'in' => 'The selected :attribute is invalid.', - 'in_array' => 'The :attribute field does not exist in :other.', - 'integer' => 'The :attribute must be an integer.', - 'ip' => 'The :attribute must be a valid IP address.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'is_unique_department' => 'The :attribute must be unique to this Company Location', - 'json' => 'The :attribute must be a valid JSON string.', - 'max' => [ - 'numeric' => 'The :attribute may not be greater than :max.', - 'file' => 'The :attribute may not be greater than :max kilobytes.', - 'string' => 'The :attribute may not be greater than :max characters.', - 'array' => 'The :attribute may not have more than :max items.', - ], - 'mimes' => 'The :attribute must be a file of type: :values.', - 'mimetypes' => 'The :attribute must be a file of type: :values.', - 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', - 'file' => 'The :attribute must be at least :min kilobytes.', - 'string' => 'The :attribute must be at least :min characters.', - 'array' => 'The :attribute must have at least :min items.', - ], - 'starts_with' => 'The :attribute must start with one of the following: :values.', - 'ends_with' => 'The :attribute must end with one of the following: :values.', - - 'not_in' => 'The selected :attribute is invalid.', - 'numeric' => 'The :attribute must be a number.', - 'present' => 'The :attribute field must be present.', - 'valid_regex' => 'That is not a valid regex. ', - 'regex' => 'The :attribute format is invalid.', - 'required' => 'The :attribute field is required.', - 'required_if' => 'The :attribute field is required when :other is :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', - 'required_with' => 'The :attribute field is required when :values is present.', - 'required_with_all' => 'The :attribute field is required when :values is present.', - 'required_without' => 'The :attribute field is required when :values is not present.', - 'required_without_all' => 'The :attribute field is required when none of :values are present.', - 'same' => 'The :attribute and :other must match.', - 'size' => [ - 'numeric' => 'The :attribute must be :size.', - 'file' => 'The :attribute must be :size kilobytes.', - 'string' => 'The :attribute must be :size characters.', - 'array' => 'The :attribute must contain :size items.', - ], - 'string' => 'The :attribute must be a string.', - 'timezone' => 'The :attribute must be a valid zone.', - 'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ', - 'unique' => 'The :attribute has already been taken.', - 'uploaded' => 'The :attribute failed to upload.', - 'url' => 'The :attribute format is invalid.', - 'unique_undeleted' => 'The :attribute must be unique.', - 'non_circular' => 'The :attribute must not create a circular reference.', - 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', - 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', - 'letters' => 'Password must contain at least one letter.', - 'numbers' => 'Password must contain at least one number.', - 'case_diff' => 'Password must use mixed case.', - 'symbols' => 'Password must contain symbols.', - 'gte' => [ - 'numeric' => 'Value cannot be negative' - ], - - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ - 'alpha_space' => 'The :attribute field contains a character that is not allowed.', - 'email_array' => 'One or more email addresses is invalid.', - 'hashed_pass' => 'Your current password is incorrect', - 'dumbpwd' => 'That password is too common.', - 'statuslabel_type' => 'You must select a valid status label type', - - // date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :( - // We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP - // people won't know how to format. - 'purchase_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'last_audit_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD hh:mm:ss format', - 'expiration_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'termination_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'expected_checkin.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'start_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - 'end_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format', - - ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [], - -]; diff --git a/resources/lang/tr/account/general.php b/resources/lang/tr-TR/account/general.php similarity index 100% rename from resources/lang/tr/account/general.php rename to resources/lang/tr-TR/account/general.php diff --git a/resources/lang/tr/admin/accessories/general.php b/resources/lang/tr-TR/admin/accessories/general.php similarity index 100% rename from resources/lang/tr/admin/accessories/general.php rename to resources/lang/tr-TR/admin/accessories/general.php diff --git a/resources/lang/tr/admin/accessories/message.php b/resources/lang/tr-TR/admin/accessories/message.php similarity index 100% rename from resources/lang/tr/admin/accessories/message.php rename to resources/lang/tr-TR/admin/accessories/message.php diff --git a/resources/lang/tr/admin/accessories/table.php b/resources/lang/tr-TR/admin/accessories/table.php similarity index 100% rename from resources/lang/tr/admin/accessories/table.php rename to resources/lang/tr-TR/admin/accessories/table.php diff --git a/resources/lang/tr/admin/asset_maintenances/form.php b/resources/lang/tr-TR/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/tr/admin/asset_maintenances/form.php rename to resources/lang/tr-TR/admin/asset_maintenances/form.php diff --git a/resources/lang/tr/admin/asset_maintenances/general.php b/resources/lang/tr-TR/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/tr/admin/asset_maintenances/general.php rename to resources/lang/tr-TR/admin/asset_maintenances/general.php diff --git a/resources/lang/tr/admin/asset_maintenances/message.php b/resources/lang/tr-TR/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/tr/admin/asset_maintenances/message.php rename to resources/lang/tr-TR/admin/asset_maintenances/message.php diff --git a/resources/lang/tr/admin/asset_maintenances/table.php b/resources/lang/tr-TR/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/tr/admin/asset_maintenances/table.php rename to resources/lang/tr-TR/admin/asset_maintenances/table.php diff --git a/resources/lang/tr/admin/categories/general.php b/resources/lang/tr-TR/admin/categories/general.php similarity index 100% rename from resources/lang/tr/admin/categories/general.php rename to resources/lang/tr-TR/admin/categories/general.php diff --git a/resources/lang/tr/admin/categories/message.php b/resources/lang/tr-TR/admin/categories/message.php similarity index 100% rename from resources/lang/tr/admin/categories/message.php rename to resources/lang/tr-TR/admin/categories/message.php diff --git a/resources/lang/tr/admin/categories/table.php b/resources/lang/tr-TR/admin/categories/table.php similarity index 100% rename from resources/lang/tr/admin/categories/table.php rename to resources/lang/tr-TR/admin/categories/table.php diff --git a/resources/lang/tr/admin/companies/general.php b/resources/lang/tr-TR/admin/companies/general.php similarity index 100% rename from resources/lang/tr/admin/companies/general.php rename to resources/lang/tr-TR/admin/companies/general.php diff --git a/resources/lang/tr/admin/companies/message.php b/resources/lang/tr-TR/admin/companies/message.php similarity index 100% rename from resources/lang/tr/admin/companies/message.php rename to resources/lang/tr-TR/admin/companies/message.php diff --git a/resources/lang/tr/admin/companies/table.php b/resources/lang/tr-TR/admin/companies/table.php similarity index 100% rename from resources/lang/tr/admin/companies/table.php rename to resources/lang/tr-TR/admin/companies/table.php diff --git a/resources/lang/tr/admin/components/general.php b/resources/lang/tr-TR/admin/components/general.php similarity index 100% rename from resources/lang/tr/admin/components/general.php rename to resources/lang/tr-TR/admin/components/general.php diff --git a/resources/lang/tr/admin/components/message.php b/resources/lang/tr-TR/admin/components/message.php similarity index 100% rename from resources/lang/tr/admin/components/message.php rename to resources/lang/tr-TR/admin/components/message.php diff --git a/resources/lang/tr/admin/components/table.php b/resources/lang/tr-TR/admin/components/table.php similarity index 100% rename from resources/lang/tr/admin/components/table.php rename to resources/lang/tr-TR/admin/components/table.php diff --git a/resources/lang/tr/admin/consumables/general.php b/resources/lang/tr-TR/admin/consumables/general.php similarity index 100% rename from resources/lang/tr/admin/consumables/general.php rename to resources/lang/tr-TR/admin/consumables/general.php diff --git a/resources/lang/tr/admin/consumables/message.php b/resources/lang/tr-TR/admin/consumables/message.php similarity index 100% rename from resources/lang/tr/admin/consumables/message.php rename to resources/lang/tr-TR/admin/consumables/message.php diff --git a/resources/lang/tr/admin/consumables/table.php b/resources/lang/tr-TR/admin/consumables/table.php similarity index 100% rename from resources/lang/tr/admin/consumables/table.php rename to resources/lang/tr-TR/admin/consumables/table.php diff --git a/resources/lang/tr/admin/custom_fields/general.php b/resources/lang/tr-TR/admin/custom_fields/general.php similarity index 100% rename from resources/lang/tr/admin/custom_fields/general.php rename to resources/lang/tr-TR/admin/custom_fields/general.php diff --git a/resources/lang/tr/admin/custom_fields/message.php b/resources/lang/tr-TR/admin/custom_fields/message.php similarity index 100% rename from resources/lang/tr/admin/custom_fields/message.php rename to resources/lang/tr-TR/admin/custom_fields/message.php diff --git a/resources/lang/tr/admin/departments/message.php b/resources/lang/tr-TR/admin/departments/message.php similarity index 100% rename from resources/lang/tr/admin/departments/message.php rename to resources/lang/tr-TR/admin/departments/message.php diff --git a/resources/lang/tr/admin/departments/table.php b/resources/lang/tr-TR/admin/departments/table.php similarity index 100% rename from resources/lang/tr/admin/departments/table.php rename to resources/lang/tr-TR/admin/departments/table.php diff --git a/resources/lang/tr/admin/depreciations/general.php b/resources/lang/tr-TR/admin/depreciations/general.php similarity index 100% rename from resources/lang/tr/admin/depreciations/general.php rename to resources/lang/tr-TR/admin/depreciations/general.php diff --git a/resources/lang/tr/admin/depreciations/message.php b/resources/lang/tr-TR/admin/depreciations/message.php similarity index 100% rename from resources/lang/tr/admin/depreciations/message.php rename to resources/lang/tr-TR/admin/depreciations/message.php diff --git a/resources/lang/tr/admin/depreciations/table.php b/resources/lang/tr-TR/admin/depreciations/table.php similarity index 100% rename from resources/lang/tr/admin/depreciations/table.php rename to resources/lang/tr-TR/admin/depreciations/table.php diff --git a/resources/lang/tr/admin/groups/message.php b/resources/lang/tr-TR/admin/groups/message.php similarity index 100% rename from resources/lang/tr/admin/groups/message.php rename to resources/lang/tr-TR/admin/groups/message.php diff --git a/resources/lang/tr/admin/groups/table.php b/resources/lang/tr-TR/admin/groups/table.php similarity index 100% rename from resources/lang/tr/admin/groups/table.php rename to resources/lang/tr-TR/admin/groups/table.php diff --git a/resources/lang/tr/admin/groups/titles.php b/resources/lang/tr-TR/admin/groups/titles.php similarity index 100% rename from resources/lang/tr/admin/groups/titles.php rename to resources/lang/tr-TR/admin/groups/titles.php diff --git a/resources/lang/tr/admin/hardware/form.php b/resources/lang/tr-TR/admin/hardware/form.php similarity index 100% rename from resources/lang/tr/admin/hardware/form.php rename to resources/lang/tr-TR/admin/hardware/form.php diff --git a/resources/lang/tr/admin/hardware/general.php b/resources/lang/tr-TR/admin/hardware/general.php similarity index 100% rename from resources/lang/tr/admin/hardware/general.php rename to resources/lang/tr-TR/admin/hardware/general.php diff --git a/resources/lang/tr/admin/hardware/message.php b/resources/lang/tr-TR/admin/hardware/message.php similarity index 100% rename from resources/lang/tr/admin/hardware/message.php rename to resources/lang/tr-TR/admin/hardware/message.php diff --git a/resources/lang/tr/admin/hardware/table.php b/resources/lang/tr-TR/admin/hardware/table.php similarity index 100% rename from resources/lang/tr/admin/hardware/table.php rename to resources/lang/tr-TR/admin/hardware/table.php diff --git a/resources/lang/tr/admin/kits/general.php b/resources/lang/tr-TR/admin/kits/general.php similarity index 100% rename from resources/lang/tr/admin/kits/general.php rename to resources/lang/tr-TR/admin/kits/general.php diff --git a/resources/lang/tr/admin/labels/message.php b/resources/lang/tr-TR/admin/labels/message.php similarity index 100% rename from resources/lang/tr/admin/labels/message.php rename to resources/lang/tr-TR/admin/labels/message.php diff --git a/resources/lang/tr/admin/labels/table.php b/resources/lang/tr-TR/admin/labels/table.php similarity index 100% rename from resources/lang/tr/admin/labels/table.php rename to resources/lang/tr-TR/admin/labels/table.php diff --git a/resources/lang/tr/admin/licenses/form.php b/resources/lang/tr-TR/admin/licenses/form.php similarity index 100% rename from resources/lang/tr/admin/licenses/form.php rename to resources/lang/tr-TR/admin/licenses/form.php diff --git a/resources/lang/tr/admin/licenses/general.php b/resources/lang/tr-TR/admin/licenses/general.php similarity index 100% rename from resources/lang/tr/admin/licenses/general.php rename to resources/lang/tr-TR/admin/licenses/general.php diff --git a/resources/lang/tr/admin/licenses/message.php b/resources/lang/tr-TR/admin/licenses/message.php similarity index 100% rename from resources/lang/tr/admin/licenses/message.php rename to resources/lang/tr-TR/admin/licenses/message.php diff --git a/resources/lang/tr/admin/licenses/table.php b/resources/lang/tr-TR/admin/licenses/table.php similarity index 100% rename from resources/lang/tr/admin/licenses/table.php rename to resources/lang/tr-TR/admin/licenses/table.php diff --git a/resources/lang/tr/admin/locations/message.php b/resources/lang/tr-TR/admin/locations/message.php similarity index 100% rename from resources/lang/tr/admin/locations/message.php rename to resources/lang/tr-TR/admin/locations/message.php diff --git a/resources/lang/tr/admin/locations/table.php b/resources/lang/tr-TR/admin/locations/table.php similarity index 100% rename from resources/lang/tr/admin/locations/table.php rename to resources/lang/tr-TR/admin/locations/table.php diff --git a/resources/lang/tr/admin/manufacturers/message.php b/resources/lang/tr-TR/admin/manufacturers/message.php similarity index 100% rename from resources/lang/tr/admin/manufacturers/message.php rename to resources/lang/tr-TR/admin/manufacturers/message.php diff --git a/resources/lang/tr/admin/manufacturers/table.php b/resources/lang/tr-TR/admin/manufacturers/table.php similarity index 100% rename from resources/lang/tr/admin/manufacturers/table.php rename to resources/lang/tr-TR/admin/manufacturers/table.php diff --git a/resources/lang/tr/admin/models/general.php b/resources/lang/tr-TR/admin/models/general.php similarity index 100% rename from resources/lang/tr/admin/models/general.php rename to resources/lang/tr-TR/admin/models/general.php diff --git a/resources/lang/tr/admin/models/message.php b/resources/lang/tr-TR/admin/models/message.php similarity index 100% rename from resources/lang/tr/admin/models/message.php rename to resources/lang/tr-TR/admin/models/message.php diff --git a/resources/lang/tr/admin/models/table.php b/resources/lang/tr-TR/admin/models/table.php similarity index 100% rename from resources/lang/tr/admin/models/table.php rename to resources/lang/tr-TR/admin/models/table.php diff --git a/resources/lang/tr/admin/reports/general.php b/resources/lang/tr-TR/admin/reports/general.php similarity index 100% rename from resources/lang/tr/admin/reports/general.php rename to resources/lang/tr-TR/admin/reports/general.php diff --git a/resources/lang/tr/admin/reports/message.php b/resources/lang/tr-TR/admin/reports/message.php similarity index 100% rename from resources/lang/tr/admin/reports/message.php rename to resources/lang/tr-TR/admin/reports/message.php diff --git a/resources/lang/tr/admin/settings/general.php b/resources/lang/tr-TR/admin/settings/general.php similarity index 99% rename from resources/lang/tr/admin/settings/general.php rename to resources/lang/tr-TR/admin/settings/general.php index adedce7fea..e2fe57756b 100644 --- a/resources/lang/tr/admin/settings/general.php +++ b/resources/lang/tr-TR/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Kullanıcı "kullanıcıadı@alan.adı" yazmak zorunda değil, bunun yerine "kullanıcıadı" yazabilir.', 'admin_cc_email' => 'CC e-Posta', 'admin_cc_email_help' => 'Kullanıcılar bir ek e-posta hesabına gönderilen iade etme/kullanıma alma e-posta bir kopyasını göndermek isterseniz, buraya girin. Aksi takdirde bu alanı boş bırakın.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Active Directory sunucusudur', 'alerts' => 'Uyarı', 'alert_title' => 'Günceleme Uyarı Ayarları', diff --git a/resources/lang/tr/admin/settings/message.php b/resources/lang/tr-TR/admin/settings/message.php similarity index 100% rename from resources/lang/tr/admin/settings/message.php rename to resources/lang/tr-TR/admin/settings/message.php diff --git a/resources/lang/tr/admin/settings/table.php b/resources/lang/tr-TR/admin/settings/table.php similarity index 100% rename from resources/lang/tr/admin/settings/table.php rename to resources/lang/tr-TR/admin/settings/table.php diff --git a/resources/lang/tr/admin/statuslabels/message.php b/resources/lang/tr-TR/admin/statuslabels/message.php similarity index 97% rename from resources/lang/tr/admin/statuslabels/message.php rename to resources/lang/tr-TR/admin/statuslabels/message.php index adb37a1d59..4b96b9333f 100644 --- a/resources/lang/tr/admin/statuslabels/message.php +++ b/resources/lang/tr-TR/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Durum etiket yok.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Bu durum etiketi şu anda en az bir varlık ile ilişkili ve silinemez. Lütfen artık bu durum başvuru ve yeniden denemek için sabit kıymetleri güncelleştirin. ', 'create' => [ diff --git a/resources/lang/tr/admin/statuslabels/table.php b/resources/lang/tr-TR/admin/statuslabels/table.php similarity index 100% rename from resources/lang/tr/admin/statuslabels/table.php rename to resources/lang/tr-TR/admin/statuslabels/table.php diff --git a/resources/lang/tr/admin/suppliers/message.php b/resources/lang/tr-TR/admin/suppliers/message.php similarity index 100% rename from resources/lang/tr/admin/suppliers/message.php rename to resources/lang/tr-TR/admin/suppliers/message.php diff --git a/resources/lang/tr/admin/suppliers/table.php b/resources/lang/tr-TR/admin/suppliers/table.php similarity index 100% rename from resources/lang/tr/admin/suppliers/table.php rename to resources/lang/tr-TR/admin/suppliers/table.php diff --git a/resources/lang/tr/admin/users/general.php b/resources/lang/tr-TR/admin/users/general.php similarity index 100% rename from resources/lang/tr/admin/users/general.php rename to resources/lang/tr-TR/admin/users/general.php diff --git a/resources/lang/tr/admin/users/message.php b/resources/lang/tr-TR/admin/users/message.php similarity index 100% rename from resources/lang/tr/admin/users/message.php rename to resources/lang/tr-TR/admin/users/message.php diff --git a/resources/lang/tr/admin/users/table.php b/resources/lang/tr-TR/admin/users/table.php similarity index 95% rename from resources/lang/tr/admin/users/table.php rename to resources/lang/tr-TR/admin/users/table.php index 57bddd29f7..e1550cea92 100644 --- a/resources/lang/tr/admin/users/table.php +++ b/resources/lang/tr-TR/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Yönetici', 'managed_locations' => 'Yönetilen Mekanlar', 'name' => 'Adı', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notlar', 'password_confirm' => 'Şifreyi Doğrula', 'password' => 'Şifre', diff --git a/resources/lang/tr/auth.php b/resources/lang/tr-TR/auth.php similarity index 100% rename from resources/lang/tr/auth.php rename to resources/lang/tr-TR/auth.php diff --git a/resources/lang/tr/auth/general.php b/resources/lang/tr-TR/auth/general.php similarity index 100% rename from resources/lang/tr/auth/general.php rename to resources/lang/tr-TR/auth/general.php diff --git a/resources/lang/tr/auth/message.php b/resources/lang/tr-TR/auth/message.php similarity index 100% rename from resources/lang/tr/auth/message.php rename to resources/lang/tr-TR/auth/message.php diff --git a/resources/lang/tr/button.php b/resources/lang/tr-TR/button.php similarity index 100% rename from resources/lang/tr/button.php rename to resources/lang/tr-TR/button.php diff --git a/resources/lang/tr/general.php b/resources/lang/tr-TR/general.php similarity index 97% rename from resources/lang/tr/general.php rename to resources/lang/tr-TR/general.php index c165008044..e7ad25088f 100644 --- a/resources/lang/tr/general.php +++ b/resources/lang/tr-TR/general.php @@ -159,6 +159,7 @@ Context | Request Context 'image_filetypes_help' => 'Kabul edilen dosya türleri jpg, webp, png, gif ve svg\'dir. İzin verilen maksimum yükleme boyutu :size \'dir.', 'unaccepted_image_type' => 'Bu dosya okunamadı. Kabul edilen dosya türleri jpg, webp, png, gif ve svg\'dir. Bu dosyanın mime tipi: :mimetype.', 'import' => 'İçeri aktar', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'İçeri Aktarma', 'importing_help' => 'Demirbaşları, aksesuarları, lisansları, bileşenleri, sarf malzemelerini ve kullanıcıları CSV dosyası ile içeri aktarabilirsiniz.

CSV, virgülle ayrılmış olmalı ve dökümandaki örnek CSV\'lerdekilerle eşleşen başlıklarla hazırlanmalıdır..', 'import-history' => 'İçeri aktarma geçmişi', @@ -494,5 +495,12 @@ Context | Request Context 'upload_error' => 'Dosya yüklenirken hata oluştu. Lütfen boş satır olmadığından ve hiçbir sütun adının kopyalanmadığından emin olun.', 'copy_to_clipboard' => 'Panoya kopyala', 'copied' => 'Kopyalandı!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID : kayıt bulunamadı. Belki birisi silmiştir', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'düzenle', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/tr/help.php b/resources/lang/tr-TR/help.php similarity index 100% rename from resources/lang/tr/help.php rename to resources/lang/tr-TR/help.php diff --git a/resources/lang/tr/localizations.php b/resources/lang/tr-TR/localizations.php similarity index 99% rename from resources/lang/tr/localizations.php rename to resources/lang/tr-TR/localizations.php index b4d8d35f87..aaaf6111dc 100644 --- a/resources/lang/tr/localizations.php +++ b/resources/lang/tr-TR/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'İrlandaca', 'it'=> 'İtalyanca', 'ja'=> 'Japonca', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korece', 'lv'=>'Letonca', 'lt'=> 'Litvanyaca', diff --git a/resources/lang/tr/mail.php b/resources/lang/tr-TR/mail.php similarity index 100% rename from resources/lang/tr/mail.php rename to resources/lang/tr-TR/mail.php diff --git a/resources/lang/tr/pagination.php b/resources/lang/tr-TR/pagination.php similarity index 100% rename from resources/lang/tr/pagination.php rename to resources/lang/tr-TR/pagination.php diff --git a/resources/lang/tr/passwords.php b/resources/lang/tr-TR/passwords.php similarity index 100% rename from resources/lang/tr/passwords.php rename to resources/lang/tr-TR/passwords.php diff --git a/resources/lang/tr/reminders.php b/resources/lang/tr-TR/reminders.php similarity index 100% rename from resources/lang/tr/reminders.php rename to resources/lang/tr-TR/reminders.php diff --git a/resources/lang/tr/table.php b/resources/lang/tr-TR/table.php similarity index 100% rename from resources/lang/tr/table.php rename to resources/lang/tr-TR/table.php diff --git a/resources/lang/tr/validation.php b/resources/lang/tr-TR/validation.php similarity index 99% rename from resources/lang/tr/validation.php rename to resources/lang/tr-TR/validation.php index eefb95d742..73167aea16 100644 --- a/resources/lang/tr/validation.php +++ b/resources/lang/tr-TR/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute benzersiz olmalıdır.', 'non_circular' => ':attribute döngüsel bir başvuru oluşturmamalıdır.', 'not_array' => ':attribute alanı bir dizi olamaz.', - 'unique_serial' => ':attribute benzersiz olmalıdır.', 'disallow_same_pwd_as_user_fields' => 'Şifre kullanıcı adı ile aynı olamaz.', 'letters' => 'Şifre en az bir harf içermelidir.', 'numbers' => 'Şifre en az bir rakam içermelidir.', diff --git a/resources/lang/uk/account/general.php b/resources/lang/uk-UA/account/general.php similarity index 100% rename from resources/lang/uk/account/general.php rename to resources/lang/uk-UA/account/general.php diff --git a/resources/lang/uk/admin/accessories/general.php b/resources/lang/uk-UA/admin/accessories/general.php similarity index 72% rename from resources/lang/uk/admin/accessories/general.php rename to resources/lang/uk-UA/admin/accessories/general.php index 38d34a155e..4cc7612b39 100644 --- a/resources/lang/uk/admin/accessories/general.php +++ b/resources/lang/uk-UA/admin/accessories/general.php @@ -9,12 +9,12 @@ return array( 'edit' => 'Редагувати аксесуар', 'eula_text' => 'EULA категорії', 'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.', - 'require_acceptance' => 'Require users to confirm acceptance of assets in this category.', - 'no_default_eula' => 'No primary default EULA found. Add one in Settings.', + 'require_acceptance' => 'Вимагати, щоб користувачі підверджували прийняття активів в цій категорії.', + 'no_default_eula' => 'Основна EULA не знайдена. Додайте одненьку в налаштуваннях.', 'total' => 'Разом', 'remaining' => 'Є', 'update' => 'Оновити аксесуар', - 'use_default_eula' => 'Use the primary default EULA instead.', + 'use_default_eula' => 'Використовувати основну EULA.', 'use_default_eula_disabled' => 'Use the primary default EULA instead. No primary default EULA is set. Please add one in Settings.', 'clone' => 'Клонувати аксесуар', 'delete_disabled' => 'Цей аксесуар ще не можна видалити, оскільки деякі елементи все ще перевіряються.', diff --git a/resources/lang/uk/admin/accessories/message.php b/resources/lang/uk-UA/admin/accessories/message.php similarity index 85% rename from resources/lang/uk/admin/accessories/message.php rename to resources/lang/uk-UA/admin/accessories/message.php index 439ee82f9b..95204a289f 100644 --- a/resources/lang/uk/admin/accessories/message.php +++ b/resources/lang/uk-UA/admin/accessories/message.php @@ -26,13 +26,13 @@ return array( 'error' => 'Accessory was not checked out, please try again', 'success' => 'Аксесуар успішно видано.', 'unavailable' => 'Accessory is not available for checkout. Check quantity available', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'Невірний користувач. Спробуйте ще раз.' ), 'checkin' => array( 'error' => 'Accessory was not checked in, please try again', 'success' => 'Accessory checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.' + 'user_does_not_exist' => 'Вказаного користувача не існує. Спробуйте ще раз.' ) diff --git a/resources/lang/uk/admin/accessories/table.php b/resources/lang/uk-UA/admin/accessories/table.php similarity index 100% rename from resources/lang/uk/admin/accessories/table.php rename to resources/lang/uk-UA/admin/accessories/table.php diff --git a/resources/lang/uk/admin/asset_maintenances/form.php b/resources/lang/uk-UA/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/uk/admin/asset_maintenances/form.php rename to resources/lang/uk-UA/admin/asset_maintenances/form.php diff --git a/resources/lang/uk/admin/asset_maintenances/general.php b/resources/lang/uk-UA/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/uk/admin/asset_maintenances/general.php rename to resources/lang/uk-UA/admin/asset_maintenances/general.php diff --git a/resources/lang/uk/admin/asset_maintenances/message.php b/resources/lang/uk-UA/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/uk/admin/asset_maintenances/message.php rename to resources/lang/uk-UA/admin/asset_maintenances/message.php diff --git a/resources/lang/uk/admin/asset_maintenances/table.php b/resources/lang/uk-UA/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/uk/admin/asset_maintenances/table.php rename to resources/lang/uk-UA/admin/asset_maintenances/table.php diff --git a/resources/lang/uk/admin/categories/general.php b/resources/lang/uk-UA/admin/categories/general.php similarity index 100% rename from resources/lang/uk/admin/categories/general.php rename to resources/lang/uk-UA/admin/categories/general.php diff --git a/resources/lang/uk/admin/categories/message.php b/resources/lang/uk-UA/admin/categories/message.php similarity index 100% rename from resources/lang/uk/admin/categories/message.php rename to resources/lang/uk-UA/admin/categories/message.php diff --git a/resources/lang/uk/admin/categories/table.php b/resources/lang/uk-UA/admin/categories/table.php similarity index 100% rename from resources/lang/uk/admin/categories/table.php rename to resources/lang/uk-UA/admin/categories/table.php diff --git a/resources/lang/uk/admin/companies/general.php b/resources/lang/uk-UA/admin/companies/general.php similarity index 86% rename from resources/lang/uk/admin/companies/general.php rename to resources/lang/uk-UA/admin/companies/general.php index 2b60a63e3b..8075648732 100644 --- a/resources/lang/uk/admin/companies/general.php +++ b/resources/lang/uk-UA/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Оберіть компанію', - 'about_companies' => 'About Companies', + 'about_companies' => 'Про компанії', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/uk/admin/companies/message.php b/resources/lang/uk-UA/admin/companies/message.php similarity index 100% rename from resources/lang/uk/admin/companies/message.php rename to resources/lang/uk-UA/admin/companies/message.php diff --git a/resources/lang/uk/admin/companies/table.php b/resources/lang/uk-UA/admin/companies/table.php similarity index 100% rename from resources/lang/uk/admin/companies/table.php rename to resources/lang/uk-UA/admin/companies/table.php diff --git a/resources/lang/uk/admin/components/general.php b/resources/lang/uk-UA/admin/components/general.php similarity index 100% rename from resources/lang/uk/admin/components/general.php rename to resources/lang/uk-UA/admin/components/general.php diff --git a/resources/lang/uk/admin/components/message.php b/resources/lang/uk-UA/admin/components/message.php similarity index 100% rename from resources/lang/uk/admin/components/message.php rename to resources/lang/uk-UA/admin/components/message.php diff --git a/resources/lang/uk/admin/components/table.php b/resources/lang/uk-UA/admin/components/table.php similarity index 100% rename from resources/lang/uk/admin/components/table.php rename to resources/lang/uk-UA/admin/components/table.php diff --git a/resources/lang/uk/admin/consumables/general.php b/resources/lang/uk-UA/admin/consumables/general.php similarity index 100% rename from resources/lang/uk/admin/consumables/general.php rename to resources/lang/uk-UA/admin/consumables/general.php diff --git a/resources/lang/uk/admin/consumables/message.php b/resources/lang/uk-UA/admin/consumables/message.php similarity index 93% rename from resources/lang/uk/admin/consumables/message.php rename to resources/lang/uk-UA/admin/consumables/message.php index 16e4ec2044..4f34027095 100644 --- a/resources/lang/uk/admin/consumables/message.php +++ b/resources/lang/uk-UA/admin/consumables/message.php @@ -23,7 +23,7 @@ return array( 'checkout' => array( 'error' => 'Consumable was not checked out, please try again', 'success' => 'Consumable checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Невірний користувач. Спробуйте ще раз.', 'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ', ), diff --git a/resources/lang/uk/admin/consumables/table.php b/resources/lang/uk-UA/admin/consumables/table.php similarity index 100% rename from resources/lang/uk/admin/consumables/table.php rename to resources/lang/uk-UA/admin/consumables/table.php diff --git a/resources/lang/uk/admin/custom_fields/general.php b/resources/lang/uk-UA/admin/custom_fields/general.php similarity index 100% rename from resources/lang/uk/admin/custom_fields/general.php rename to resources/lang/uk-UA/admin/custom_fields/general.php diff --git a/resources/lang/uk/admin/custom_fields/message.php b/resources/lang/uk-UA/admin/custom_fields/message.php similarity index 100% rename from resources/lang/uk/admin/custom_fields/message.php rename to resources/lang/uk-UA/admin/custom_fields/message.php diff --git a/resources/lang/uk/admin/departments/message.php b/resources/lang/uk-UA/admin/departments/message.php similarity index 100% rename from resources/lang/uk/admin/departments/message.php rename to resources/lang/uk-UA/admin/departments/message.php diff --git a/resources/lang/uk/admin/departments/table.php b/resources/lang/uk-UA/admin/departments/table.php similarity index 100% rename from resources/lang/uk/admin/departments/table.php rename to resources/lang/uk-UA/admin/departments/table.php diff --git a/resources/lang/uk/admin/depreciations/general.php b/resources/lang/uk-UA/admin/depreciations/general.php similarity index 100% rename from resources/lang/uk/admin/depreciations/general.php rename to resources/lang/uk-UA/admin/depreciations/general.php diff --git a/resources/lang/uk/admin/depreciations/message.php b/resources/lang/uk-UA/admin/depreciations/message.php similarity index 100% rename from resources/lang/uk/admin/depreciations/message.php rename to resources/lang/uk-UA/admin/depreciations/message.php diff --git a/resources/lang/uk/admin/depreciations/table.php b/resources/lang/uk-UA/admin/depreciations/table.php similarity index 79% rename from resources/lang/uk/admin/depreciations/table.php rename to resources/lang/uk-UA/admin/depreciations/table.php index d86511496e..a207eddb39 100644 --- a/resources/lang/uk/admin/depreciations/table.php +++ b/resources/lang/uk-UA/admin/depreciations/table.php @@ -5,7 +5,7 @@ return [ 'id' => 'ID', 'months' => 'міс.', 'term' => 'Term', - 'title' => 'Name ', + 'title' => 'Назва ', 'depreciation_min' => 'Floor Value', ]; diff --git a/resources/lang/uk/admin/groups/message.php b/resources/lang/uk-UA/admin/groups/message.php similarity index 100% rename from resources/lang/uk/admin/groups/message.php rename to resources/lang/uk-UA/admin/groups/message.php diff --git a/resources/lang/uk/admin/groups/table.php b/resources/lang/uk-UA/admin/groups/table.php similarity index 100% rename from resources/lang/uk/admin/groups/table.php rename to resources/lang/uk-UA/admin/groups/table.php diff --git a/resources/lang/uk/admin/groups/titles.php b/resources/lang/uk-UA/admin/groups/titles.php similarity index 100% rename from resources/lang/uk/admin/groups/titles.php rename to resources/lang/uk-UA/admin/groups/titles.php diff --git a/resources/lang/uk/admin/hardware/form.php b/resources/lang/uk-UA/admin/hardware/form.php similarity index 97% rename from resources/lang/uk/admin/hardware/form.php rename to resources/lang/uk-UA/admin/hardware/form.php index 6649ac889f..5dcbd024a3 100644 --- a/resources/lang/uk/admin/hardware/form.php +++ b/resources/lang/uk-UA/admin/hardware/form.php @@ -20,7 +20,7 @@ return [ 'cost' => 'Вартість покупки', 'create' => 'Створити актив', 'date' => 'Дата покупки', - 'depreciation' => 'Depreciation', + 'depreciation' => 'Амортизація', 'depreciates_on' => 'Depreciates On', 'default_location' => 'Default Location', 'eol_date' => 'Дата EOL', @@ -41,7 +41,7 @@ return [ 'select_statustype' => 'Select Status Type', 'serial' => 'Серійник', 'status' => 'Статус', - 'tag' => 'Asset Tag', + 'tag' => 'Тег активу', 'update' => 'Оновити актив', 'warranty' => 'Гарантія', 'warranty_expires' => 'Warranty Expires', diff --git a/resources/lang/uk/admin/hardware/general.php b/resources/lang/uk-UA/admin/hardware/general.php similarity index 96% rename from resources/lang/uk/admin/hardware/general.php rename to resources/lang/uk-UA/admin/hardware/general.php index aec998f1a0..eba8f7d606 100644 --- a/resources/lang/uk/admin/hardware/general.php +++ b/resources/lang/uk-UA/admin/hardware/general.php @@ -18,11 +18,11 @@ return [ 'model_invalid' => 'The Model of this Asset is invalid.', 'model_invalid_fix' => 'The Asset should be edited to correct this before attempting to check it in or out.', 'requestable' => 'Requestable', - 'requested' => 'Requested', + 'requested' => 'Запрошено користувачем', 'not_requestable' => 'Not Requestable', 'requestable_status_warning' => 'Do not change requestable status', 'restore' => 'Restore Asset', - 'pending' => 'Pending', + 'pending' => 'Очікуєтся', 'undeployable' => 'Undeployable', 'undeployable_tooltip' => 'This asset has a status label that is undeployable and cannot be checked out at this time.', 'view' => 'Переглянути актив', diff --git a/resources/lang/uk/admin/hardware/message.php b/resources/lang/uk-UA/admin/hardware/message.php similarity index 92% rename from resources/lang/uk/admin/hardware/message.php rename to resources/lang/uk-UA/admin/hardware/message.php index 056692998e..534afdb440 100644 --- a/resources/lang/uk/admin/hardware/message.php +++ b/resources/lang/uk-UA/admin/hardware/message.php @@ -36,7 +36,7 @@ return [ 'deletefile' => [ 'error' => 'File not deleted. Please try again.', - 'success' => 'File successfully deleted.', + 'success' => 'Файл успішно видалено.', ], 'upload' => [ @@ -68,7 +68,7 @@ return [ 'checkout' => [ 'error' => 'Asset was not checked out, please try again', 'success' => 'Asset checked out successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Невірний користувач. Спробуйте ще раз.', 'not_available' => 'That asset is not available for checkout!', 'no_assets_selected' => 'You must select at least one asset from the list', ], @@ -76,7 +76,7 @@ return [ 'checkin' => [ 'error' => 'Asset was not checked in, please try again', 'success' => 'Asset checked in successfully.', - 'user_does_not_exist' => 'That user is invalid. Please try again.', + 'user_does_not_exist' => 'Вказаного користувача не існує. Спробуйте ще раз.', 'already_checked_in' => 'That asset is already checked in.', ], diff --git a/resources/lang/uk/admin/hardware/table.php b/resources/lang/uk-UA/admin/hardware/table.php similarity index 93% rename from resources/lang/uk/admin/hardware/table.php rename to resources/lang/uk-UA/admin/hardware/table.php index 0c2461cc34..8f6b32de17 100644 --- a/resources/lang/uk/admin/hardware/table.php +++ b/resources/lang/uk-UA/admin/hardware/table.php @@ -5,7 +5,7 @@ return [ 'asset_tag' => 'Тег активу', 'asset_model' => 'Модель', 'book_value' => 'Current Value', - 'change' => 'In/Out', + 'change' => 'В/З', 'checkout_date' => 'Дата видачі', 'checkoutto' => 'Видано', 'components_cost' => 'Total Components Cost', @@ -24,7 +24,7 @@ return [ 'image' => 'Зображення пристрою', 'days_without_acceptance' => 'Days Without Acceptance', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Призначено', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Змінено', diff --git a/resources/lang/iu/admin/kits/general.php b/resources/lang/uk-UA/admin/kits/general.php similarity index 97% rename from resources/lang/iu/admin/kits/general.php rename to resources/lang/uk-UA/admin/kits/general.php index f724ecbf07..4d73fca20f 100644 --- a/resources/lang/iu/admin/kits/general.php +++ b/resources/lang/uk-UA/admin/kits/general.php @@ -30,7 +30,7 @@ return [ 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Витратний матеріал не існує', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', diff --git a/resources/lang/th/admin/labels/message.php b/resources/lang/uk-UA/admin/labels/message.php similarity index 100% rename from resources/lang/th/admin/labels/message.php rename to resources/lang/uk-UA/admin/labels/message.php diff --git a/resources/lang/uk-UA/admin/labels/table.php b/resources/lang/uk-UA/admin/labels/table.php new file mode 100644 index 0000000000..b991b5fc8b --- /dev/null +++ b/resources/lang/uk-UA/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Тег', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Логотип', + 'support_title' => 'Назва', + +]; \ No newline at end of file diff --git a/resources/lang/uk/admin/licenses/form.php b/resources/lang/uk-UA/admin/licenses/form.php similarity index 89% rename from resources/lang/uk/admin/licenses/form.php rename to resources/lang/uk-UA/admin/licenses/form.php index dadbef4684..e3c87a303d 100644 --- a/resources/lang/uk/admin/licenses/form.php +++ b/resources/lang/uk-UA/admin/licenses/form.php @@ -3,7 +3,7 @@ return array( 'asset' => 'Актив', - 'checkin' => 'Checkin', + 'checkin' => 'Прийняти', 'create' => 'Створити ліцензію', 'expiration' => 'Expiration Date', 'license_key' => 'Ключ продукту', @@ -13,7 +13,7 @@ return array( 'purchase_order' => 'Purchase Order Number', 'reassignable' => 'Reassignable', 'remaining_seats' => 'Remaining Seats', - 'seats' => 'Seats', + 'seats' => 'Кількість місць', 'termination_date' => 'Termination Date', 'to_email' => 'Licensed to Email', 'to_name' => 'Licensed to Name', diff --git a/resources/lang/uk/admin/licenses/general.php b/resources/lang/uk-UA/admin/licenses/general.php similarity index 97% rename from resources/lang/uk/admin/licenses/general.php rename to resources/lang/uk-UA/admin/licenses/general.php index 3906c286b3..7b6173688f 100644 --- a/resources/lang/uk/admin/licenses/general.php +++ b/resources/lang/uk-UA/admin/licenses/general.php @@ -10,11 +10,11 @@ return array( 'filetype_info' => 'Дозволені типи файлів - png, gif, jpg, jpeg, doc, docx, pdf, txt, zip і rar.', 'clone' => 'Клонувати ліцензію', 'history_for' => 'Історія для ', - 'in_out' => 'In/Out', + 'in_out' => 'В/З', 'info' => 'Інформація про ліцензію', 'license_seats' => 'License Seats', 'seat' => 'Seat', - 'seats' => 'Seats', + 'seats' => 'Кількість місць', 'software_licenses' => 'Ліцензії на програмне забезпечення', 'user' => 'Користувач', 'view' => 'Переглянути ліцензію', diff --git a/resources/lang/uk/admin/licenses/message.php b/resources/lang/uk-UA/admin/licenses/message.php similarity index 97% rename from resources/lang/uk/admin/licenses/message.php rename to resources/lang/uk-UA/admin/licenses/message.php index c79f631680..3a2c54e1db 100644 --- a/resources/lang/uk/admin/licenses/message.php +++ b/resources/lang/uk-UA/admin/licenses/message.php @@ -19,7 +19,7 @@ return array( 'deletefile' => array( 'error' => 'File not deleted. Please try again.', - 'success' => 'File successfully deleted.', + 'success' => 'Файл успішно видалено.', ), 'upload' => array( diff --git a/resources/lang/uk/admin/licenses/table.php b/resources/lang/uk-UA/admin/licenses/table.php similarity index 93% rename from resources/lang/uk/admin/licenses/table.php rename to resources/lang/uk-UA/admin/licenses/table.php index 55bb028d8b..00b33f5d6b 100644 --- a/resources/lang/uk/admin/licenses/table.php +++ b/resources/lang/uk-UA/admin/licenses/table.php @@ -3,7 +3,7 @@ return array( 'assigned_to' => 'Призначено', - 'checkout' => 'In/Out', + 'checkout' => 'В/З', 'id' => 'ID', 'license_email' => 'Email ліцензії', 'license_name' => 'Зареєстровано на', diff --git a/resources/lang/uk/admin/locations/message.php b/resources/lang/uk-UA/admin/locations/message.php similarity index 100% rename from resources/lang/uk/admin/locations/message.php rename to resources/lang/uk-UA/admin/locations/message.php diff --git a/resources/lang/uk/admin/locations/table.php b/resources/lang/uk-UA/admin/locations/table.php similarity index 81% rename from resources/lang/uk/admin/locations/table.php rename to resources/lang/uk-UA/admin/locations/table.php index 3a78c69f50..a23e2abcdb 100644 --- a/resources/lang/uk/admin/locations/table.php +++ b/resources/lang/uk-UA/admin/locations/table.php @@ -7,7 +7,7 @@ return [ 'assets_checkedout' => 'Призначені активи', 'id' => 'ID', 'city' => 'Місто', - 'state' => 'State', + 'state' => 'Штат', 'country' => 'Країна', 'create' => 'Створити розташування', 'update' => 'Оновити розташування', @@ -22,16 +22,16 @@ return [ 'currency' => 'Валюта розташування', 'ldap_ou' => 'Пошук OU в LDAP', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'Відділ', + 'location' => 'Розташування', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', + 'asset_name' => 'Назва', + 'asset_category' => 'Категорія', 'asset_manufacturer' => 'Виробник', 'asset_model' => 'Модель', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_serial' => 'Серійний номер', + 'asset_location' => 'Розташування', + 'asset_checked_out' => 'Видано', 'asset_expected_checkin' => 'Expected Checkin', 'date' => 'Дата:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', diff --git a/resources/lang/uk/admin/manufacturers/message.php b/resources/lang/uk-UA/admin/manufacturers/message.php similarity index 100% rename from resources/lang/uk/admin/manufacturers/message.php rename to resources/lang/uk-UA/admin/manufacturers/message.php diff --git a/resources/lang/uk/admin/manufacturers/table.php b/resources/lang/uk-UA/admin/manufacturers/table.php similarity index 100% rename from resources/lang/uk/admin/manufacturers/table.php rename to resources/lang/uk-UA/admin/manufacturers/table.php diff --git a/resources/lang/uk/admin/models/general.php b/resources/lang/uk-UA/admin/models/general.php similarity index 100% rename from resources/lang/uk/admin/models/general.php rename to resources/lang/uk-UA/admin/models/general.php diff --git a/resources/lang/uk/admin/models/message.php b/resources/lang/uk-UA/admin/models/message.php similarity index 100% rename from resources/lang/uk/admin/models/message.php rename to resources/lang/uk-UA/admin/models/message.php diff --git a/resources/lang/uk/admin/models/table.php b/resources/lang/uk-UA/admin/models/table.php similarity index 100% rename from resources/lang/uk/admin/models/table.php rename to resources/lang/uk-UA/admin/models/table.php diff --git a/resources/lang/uk/admin/reports/general.php b/resources/lang/uk-UA/admin/reports/general.php similarity index 100% rename from resources/lang/uk/admin/reports/general.php rename to resources/lang/uk-UA/admin/reports/general.php diff --git a/resources/lang/uk/admin/reports/message.php b/resources/lang/uk-UA/admin/reports/message.php similarity index 100% rename from resources/lang/uk/admin/reports/message.php rename to resources/lang/uk-UA/admin/reports/message.php diff --git a/resources/lang/uk/admin/settings/general.php b/resources/lang/uk-UA/admin/settings/general.php similarity index 99% rename from resources/lang/uk/admin/settings/general.php rename to resources/lang/uk-UA/admin/settings/general.php index ade508649e..ff4f49e28a 100644 --- a/resources/lang/uk/admin/settings/general.php +++ b/resources/lang/uk-UA/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Це сервер Active Directory', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -146,7 +147,7 @@ return [ 'full_multiple_companies_support_text' => 'Full Multiple Companies Support', 'show_in_model_list' => 'Show in Model Dropdowns', 'optional' => 'optional', - 'per_page' => 'Results Per Page', + 'per_page' => 'Результатів на стор', 'php' => 'Версія PHP', 'php_info' => 'PHP Info', 'php_overview' => 'PHP', @@ -319,7 +320,7 @@ return [ 'purge_help' => 'Purge Deleted Records', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Номер співробітника', 'create_admin_user' => 'Create a User ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,7 +335,7 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Назва', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', diff --git a/resources/lang/uk/admin/settings/message.php b/resources/lang/uk-UA/admin/settings/message.php similarity index 100% rename from resources/lang/uk/admin/settings/message.php rename to resources/lang/uk-UA/admin/settings/message.php diff --git a/resources/lang/uk-UA/admin/settings/table.php b/resources/lang/uk-UA/admin/settings/table.php new file mode 100644 index 0000000000..26dfd50784 --- /dev/null +++ b/resources/lang/uk-UA/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Створено', + 'size' => 'Size', +); diff --git a/resources/lang/uk-UA/admin/statuslabels/message.php b/resources/lang/uk-UA/admin/statuslabels/message.php new file mode 100644 index 0000000000..b1b4034d0d --- /dev/null +++ b/resources/lang/uk-UA/admin/statuslabels/message.php @@ -0,0 +1,32 @@ + 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', + 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', + + 'create' => [ + 'error' => 'Status Label was not created, please try again.', + 'success' => 'Status Label created successfully.', + ], + + 'update' => [ + 'error' => 'Status Label was not updated, please try again', + 'success' => 'Status Label updated successfully.', + ], + + 'delete' => [ + 'confirm' => 'Are you sure you wish to delete this Status Label?', + 'error' => 'There was an issue deleting the Status Label. Please try again.', + 'success' => 'The Status Label was deleted successfully.', + ], + + 'help' => [ + 'undeployable' => 'These assets cannot be assigned to anyone.', + 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'archived' => 'These assets cannot be checked out, and will only show up in the Archived view. This is useful for retaining information about assets for budgeting/historic purposes but keeping them out of the day-to-day asset list.', + 'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.', + ], + +]; diff --git a/resources/lang/uk/admin/statuslabels/table.php b/resources/lang/uk-UA/admin/statuslabels/table.php similarity index 91% rename from resources/lang/uk/admin/statuslabels/table.php rename to resources/lang/uk-UA/admin/statuslabels/table.php index 125371adff..b519d3532c 100644 --- a/resources/lang/uk/admin/statuslabels/table.php +++ b/resources/lang/uk-UA/admin/statuslabels/table.php @@ -2,7 +2,7 @@ return array( 'about' => 'About Status Labels', - 'archived' => 'Archived', + 'archived' => 'Архівний', 'create' => 'Create Status Label', 'color' => 'Колір діаграми', 'default_label' => 'Default Label', @@ -10,7 +10,7 @@ return array( 'deployable' => 'Deployable', 'info' => 'Status labels are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for deployable, pending and archived assets.', 'name' => 'Status Name', - 'pending' => 'Pending', + 'pending' => 'Очікуєтся', 'status_type' => 'Status Type', 'show_in_nav' => 'Show in side nav', 'title' => 'Статуси активів', diff --git a/resources/lang/uk/admin/suppliers/message.php b/resources/lang/uk-UA/admin/suppliers/message.php similarity index 100% rename from resources/lang/uk/admin/suppliers/message.php rename to resources/lang/uk-UA/admin/suppliers/message.php diff --git a/resources/lang/uk/admin/suppliers/table.php b/resources/lang/uk-UA/admin/suppliers/table.php similarity index 100% rename from resources/lang/uk/admin/suppliers/table.php rename to resources/lang/uk-UA/admin/suppliers/table.php diff --git a/resources/lang/uk/admin/users/general.php b/resources/lang/uk-UA/admin/users/general.php similarity index 96% rename from resources/lang/uk/admin/users/general.php rename to resources/lang/uk-UA/admin/users/general.php index 5f3a164d6e..d459b2ff3a 100644 --- a/resources/lang/uk/admin/users/general.php +++ b/resources/lang/uk-UA/admin/users/general.php @@ -10,7 +10,7 @@ return [ 'clone' => 'Клонувати користувача', 'contact_user' => 'Contact :name', 'edit' => 'Редагувати користувача', - 'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.', + 'filetype_info' => 'Дозволені типи файлів - png, gif, jpg, jpeg, doc, docx, pdf, txt, zip і rar.', 'history_user' => 'History for :name', 'info' => 'Інфо', 'restore_user' => 'Click here to restore them.', diff --git a/resources/lang/uk/admin/users/message.php b/resources/lang/uk-UA/admin/users/message.php similarity index 100% rename from resources/lang/uk/admin/users/message.php rename to resources/lang/uk-UA/admin/users/message.php diff --git a/resources/lang/uk/admin/users/table.php b/resources/lang/uk-UA/admin/users/table.php similarity index 96% rename from resources/lang/uk/admin/users/table.php rename to resources/lang/uk-UA/admin/users/table.php index 5d5184679b..3b0aed5b5e 100644 --- a/resources/lang/uk/admin/users/table.php +++ b/resources/lang/uk-UA/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Керівник', 'managed_locations' => 'Managed Locations', 'name' => 'Назва', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Нотатки', 'password_confirm' => 'Підтвердьте пароль', 'password' => 'Пароль', diff --git a/resources/lang/uk/auth.php b/resources/lang/uk-UA/auth.php similarity index 100% rename from resources/lang/uk/auth.php rename to resources/lang/uk-UA/auth.php diff --git a/resources/lang/uk/auth/general.php b/resources/lang/uk-UA/auth/general.php similarity index 100% rename from resources/lang/uk/auth/general.php rename to resources/lang/uk-UA/auth/general.php diff --git a/resources/lang/uk/auth/message.php b/resources/lang/uk-UA/auth/message.php similarity index 100% rename from resources/lang/uk/auth/message.php rename to resources/lang/uk-UA/auth/message.php diff --git a/resources/lang/uk/button.php b/resources/lang/uk-UA/button.php similarity index 95% rename from resources/lang/uk/button.php rename to resources/lang/uk-UA/button.php index 63368e9a4a..1ee22d1007 100644 --- a/resources/lang/uk/button.php +++ b/resources/lang/uk-UA/button.php @@ -20,5 +20,5 @@ return [ 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Нове', ]; diff --git a/resources/lang/uk/general.php b/resources/lang/uk-UA/general.php similarity index 94% rename from resources/lang/uk/general.php rename to resources/lang/uk-UA/general.php index ad85eba433..466da5de23 100644 --- a/resources/lang/uk/general.php +++ b/resources/lang/uk-UA/general.php @@ -3,16 +3,16 @@ return [ 'accessories' => 'Аксесуари', 'activated' => 'Активоване', - 'accepted_date' => 'Date Accepted', + 'accepted_date' => 'Дата прийняття', 'accessory' => 'Аксесуари', 'accessory_report' => 'Звіт про аксесуари', 'action' => 'Дія', 'activity_report' => 'Звіт про діяльність', 'address' => 'Адреса', 'admin' => 'Адміністратор', - 'administrator' => 'Administrator', + 'administrator' => 'Адміністратор', 'add_seats' => 'Додано місць', - 'age' => "Age", + 'age' => "Вік", 'all_assets' => 'Всі активи', 'all' => 'Всі', 'archived' => 'Архівні', @@ -22,7 +22,7 @@ return [ 'asset_report' => 'Звіт по активам', 'asset_tag' => 'Тег активу', 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', + 'assets_available' => 'Активів доступно', 'accept_assets' => 'Accept Assets :name', 'accept_assets_menu' => 'Accept Assets', 'audit' => 'Аудит', @@ -97,26 +97,26 @@ return [ 'delete_confirm_no_undo' => 'Are you sure you wish to delete :item? This can not be undone.', 'deleted' => 'Видалено', 'delete_seats' => 'Deleted Seats', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => 'Помилка видалення', 'departments' => 'Відділи', 'department' => 'Відділ', 'deployed' => 'Встановлено', 'depreciation' => 'Амортизація', 'depreciations' => 'Depreciations', 'depreciation_report' => 'Звіт про амортизацію', - 'details' => 'Details', + 'details' => 'Подробиці', 'download' => 'Завантажити', - 'download_all' => 'Download All', + 'download_all' => 'Завантажити все', 'editprofile' => 'Редагувати профіль', 'eol' => 'EOL', 'email_domain' => 'Домен електронної пошти', 'email_format' => 'Формат електронної пошти', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Номер співробітника', 'email_domain_help' => 'Це використовується для генерації адрес електронної пошти під час імпортування', - 'error' => 'Error', + 'error' => 'Помилка', 'exclude_archived' => 'Exclude Archived Assets', 'exclude_deleted' => 'Exclude Deleted Assets', - 'example' => 'Example: ', + 'example' => 'Наприклад: ', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', 'firstname_lastname_format' => 'First Name Last Name (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'First Name Last Name (jane_smith@example.com)', @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Допустимі типи файлів - jpg, webp, png, gif і svg. Максимальний дозволений розмір файлу :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Імпорт', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Історія імпорту', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Готовий до видачі', 'recent_activity' => 'Останні дії', - 'remaining' => 'Remaining', + 'remaining' => 'Залишилось', 'remove_company' => 'Remove Company Association', 'reports' => 'Звіти', 'restored' => 'відновлено', - 'restore' => 'Restore', + 'restore' => 'Відновити', 'requestable_models' => 'Requestable Models', 'requested' => 'Запрошено користувачем', 'requested_date' => 'Requested Date', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'Не доступний для встановлення', 'unknown_admin' => 'Невідомий адміністратор', 'username_format' => 'Формат імені користувача', - 'username' => 'Username', + 'username' => 'Ім\'я кристувача', 'update' => 'Оновлення', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Завантажено', @@ -332,14 +333,14 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Видано', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', 'expected_checkin' => 'Expected Checkin', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', + 'changed' => 'Змінено', 'to' => 'To', 'report_fields_info' => '

Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.

If you would like to export only certain assets, use the options below to fine-tune your results.

', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error', + 'notification_error' => 'Помилка', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Попередження', + 'notification_info' => 'Інфо', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Назва активу', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Назва витратного матеріалу:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Назва аксесуара:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% завершити', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'редагувати', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/uk/help.php b/resources/lang/uk-UA/help.php similarity index 72% rename from resources/lang/uk/help.php rename to resources/lang/uk-UA/help.php index ad355b975c..dd449ef295 100644 --- a/resources/lang/uk/help.php +++ b/resources/lang/uk-UA/help.php @@ -23,11 +23,11 @@ return [ 'accessories' => 'Аксесуари - це периферійне обладнання, яке видається користувачам, але не має серійного номера (або вам не потрібно враховувати його індивідуально). Наприклад, комп\'ютерна миша чи клавіатура.', - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', + 'companies' => 'Компанії можна використати як просте поле ідентифікації, або для обмеження видимості активів, користувачів, і т. п., якщо повна підтримка компаній увімкнена в ваших адміністративних налаштуваннях.', - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', + 'components' => 'Компоненти це складові активу, наприклад HDD, RAM, тощо.', - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', + 'consumables' => 'Витратні матеріали це будь-що, що буде споживано на протязі певного часу. Наприклад, чорнила для принтера або папір.', 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', diff --git a/resources/lang/uk/localizations.php b/resources/lang/uk-UA/localizations.php similarity index 99% rename from resources/lang/uk/localizations.php rename to resources/lang/uk-UA/localizations.php index 925fe168a4..4d96d63148 100644 --- a/resources/lang/uk/localizations.php +++ b/resources/lang/uk-UA/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Ірландська', 'it'=> 'Італійська', 'ja'=> 'Японська', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Корейська', 'lv'=>'Латвійська', 'lt'=> 'Литовська', @@ -56,7 +56,7 @@ return [ 'ta'=> 'Тамільська', 'th'=> 'Thai', 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', + 'uk'=> 'Українська', 'vi'=> 'Vietnamese', 'cy'=> 'Welsh', 'zu'=> 'Zulu', diff --git a/resources/lang/uk/mail.php b/resources/lang/uk-UA/mail.php similarity index 100% rename from resources/lang/uk/mail.php rename to resources/lang/uk-UA/mail.php diff --git a/resources/lang/uk/pagination.php b/resources/lang/uk-UA/pagination.php similarity index 100% rename from resources/lang/uk/pagination.php rename to resources/lang/uk-UA/pagination.php diff --git a/resources/lang/uk/passwords.php b/resources/lang/uk-UA/passwords.php similarity index 100% rename from resources/lang/uk/passwords.php rename to resources/lang/uk-UA/passwords.php diff --git a/resources/lang/uk/reminders.php b/resources/lang/uk-UA/reminders.php similarity index 100% rename from resources/lang/uk/reminders.php rename to resources/lang/uk-UA/reminders.php diff --git a/resources/lang/uk/table.php b/resources/lang/uk-UA/table.php similarity index 100% rename from resources/lang/uk/table.php rename to resources/lang/uk-UA/table.php diff --git a/resources/lang/uk/validation.php b/resources/lang/uk-UA/validation.php similarity index 99% rename from resources/lang/uk/validation.php rename to resources/lang/uk-UA/validation.php index ea6b6a7bee..ebf59ee344 100644 --- a/resources/lang/uk/validation.php +++ b/resources/lang/uk-UA/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/uk/admin/kits/general.php b/resources/lang/uk/admin/kits/general.php deleted file mode 100644 index f724ecbf07..0000000000 --- a/resources/lang/uk/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Kit was successfully created.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/uk/admin/labels/table.php b/resources/lang/uk/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/uk/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/uk/admin/settings/table.php b/resources/lang/uk/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/uk/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/uk/admin/statuslabels/message.php b/resources/lang/uk/admin/statuslabels/message.php deleted file mode 100644 index fe9adbf928..0000000000 --- a/resources/lang/uk/admin/statuslabels/message.php +++ /dev/null @@ -1,31 +0,0 @@ - 'Status Label does not exist.', - 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', - - 'create' => [ - 'error' => 'Status Label was not created, please try again.', - 'success' => 'Status Label created successfully.', - ], - - 'update' => [ - 'error' => 'Status Label was not updated, please try again', - 'success' => 'Status Label updated successfully.', - ], - - 'delete' => [ - 'confirm' => 'Are you sure you wish to delete this Status Label?', - 'error' => 'There was an issue deleting the Status Label. Please try again.', - 'success' => 'The Status Label was deleted successfully.', - ], - - 'help' => [ - 'undeployable' => 'These assets cannot be assigned to anyone.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', - 'archived' => 'These assets cannot be checked out, and will only show up in the Archived view. This is useful for retaining information about assets for budgeting/historic purposes but keeping them out of the day-to-day asset list.', - 'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.', - ], - -]; diff --git a/resources/lang/ur-PK/admin/settings/general.php b/resources/lang/ur-PK/admin/settings/general.php index 64d0aef53e..c8d6306036 100644 --- a/resources/lang/ur-PK/admin/settings/general.php +++ b/resources/lang/ur-PK/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/ur-PK/admin/statuslabels/message.php b/resources/lang/ur-PK/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/ur-PK/admin/statuslabels/message.php +++ b/resources/lang/ur-PK/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/ur-PK/admin/users/table.php b/resources/lang/ur-PK/admin/users/table.php index 21e2154280..b8b919bf28 100644 --- a/resources/lang/ur-PK/admin/users/table.php +++ b/resources/lang/ur-PK/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirm Password', 'password' => 'Password', diff --git a/resources/lang/ur-PK/general.php b/resources/lang/ur-PK/general.php index a568e00436..5e1ad742e3 100644 --- a/resources/lang/ur-PK/general.php +++ b/resources/lang/ur-PK/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Import History', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/ur-PK/localizations.php b/resources/lang/ur-PK/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/ur-PK/localizations.php +++ b/resources/lang/ur-PK/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/ur-PK/validation.php b/resources/lang/ur-PK/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/ur-PK/validation.php +++ b/resources/lang/ur-PK/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/vendor/backup/ar/notifications.php b/resources/lang/vendor/backup/ar-SA/notifications.php similarity index 100% rename from resources/lang/vendor/backup/ar/notifications.php rename to resources/lang/vendor/backup/ar-SA/notifications.php diff --git a/resources/lang/vendor/backup/da/notifications.php b/resources/lang/vendor/backup/da-DK/notifications.php similarity index 100% rename from resources/lang/vendor/backup/da/notifications.php rename to resources/lang/vendor/backup/da-DK/notifications.php diff --git a/resources/lang/vendor/backup/de/notifications.php b/resources/lang/vendor/backup/de-DE/notifications.php similarity index 100% rename from resources/lang/vendor/backup/de/notifications.php rename to resources/lang/vendor/backup/de-DE/notifications.php diff --git a/resources/lang/vendor/backup/en/notifications.php b/resources/lang/vendor/backup/en-US/notifications.php similarity index 100% rename from resources/lang/vendor/backup/en/notifications.php rename to resources/lang/vendor/backup/en-US/notifications.php diff --git a/resources/lang/vendor/backup/es/notifications.php b/resources/lang/vendor/backup/es-ES/notifications.php similarity index 100% rename from resources/lang/vendor/backup/es/notifications.php rename to resources/lang/vendor/backup/es-ES/notifications.php diff --git a/resources/lang/vendor/backup/fa/notifications.php b/resources/lang/vendor/backup/fa-IR/notifications.php similarity index 100% rename from resources/lang/vendor/backup/fa/notifications.php rename to resources/lang/vendor/backup/fa-IR/notifications.php diff --git a/resources/lang/vendor/backup/fr/notifications.php b/resources/lang/vendor/backup/fr-FR/notifications.php similarity index 100% rename from resources/lang/vendor/backup/fr/notifications.php rename to resources/lang/vendor/backup/fr-FR/notifications.php diff --git a/resources/lang/vendor/backup/hi/notifications.php b/resources/lang/vendor/backup/hi/notifications.php deleted file mode 100644 index 74a188d3de..0000000000 --- a/resources/lang/vendor/backup/hi/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'गलती संदेश: :message', - 'exception_trace' => 'गलती निशान: :trace', - 'exception_message_title' => 'गलती संदेश', - 'exception_trace_title' => 'गलती निशान', - - 'backup_failed_subject' => ':application_name का बैकअप असफल रहा', - 'backup_failed_body' => 'जरूरी सुचना: :application_name का बैकअप लेते समय असफल रहे', - - 'backup_successful_subject' => ':application_name का बैकअप सफल रहा', - 'backup_successful_subject_title' => 'बैकअप सफल रहा!', - 'backup_successful_body' => 'खुशखबरी, :application_name का बैकअप :disk_name पर संग्रहित करने मे सफल रहे.', - - 'cleanup_failed_subject' => ':application_name के बैकअप की सफाई असफल रही.', - 'cleanup_failed_body' => ':application_name के बैकअप की सफाई करते समय कुछ बाधा आयी है.', - - 'cleanup_successful_subject' => ':application_name के बैकअप की सफाई सफल रही', - 'cleanup_successful_subject_title' => 'बैकअप की सफाई सफल रही!', - 'cleanup_successful_body' => ':application_name का बैकअप जो :disk_name नाम की डिस्क पर संग्रहित है, उसकी सफाई सफल रही.', - - 'healthy_backup_found_subject' => ':disk_name नाम की डिस्क पर संग्रहित :application_name के बैकअप स्वस्थ है', - 'healthy_backup_found_subject_title' => ':application_name के सभी बैकअप स्वस्थ है', - 'healthy_backup_found_body' => 'बहुत बढ़िया! :application_name के सभी बैकअप स्वस्थ है.', - - 'unhealthy_backup_found_subject' => 'जरूरी सुचना : :application_name के बैकअप अस्वस्थ है', - 'unhealthy_backup_found_subject_title' => 'जरूरी सुचना : :application_name के बैकअप :problem के बजेसे अस्वस्थ है', - 'unhealthy_backup_found_body' => ':disk_name नाम की डिस्क पर संग्रहित :application_name के बैकअप अस्वस्थ है', - 'unhealthy_backup_found_not_reachable' => ':error के बजेसे बैकअप की मंजिल तक पोहोच नहीं सकते.', - 'unhealthy_backup_found_empty' => 'इस एप्लीकेशन का कोई भी बैकअप नहीं है.', - 'unhealthy_backup_found_old' => 'हालहीमें :date को लिया हुआ बैकअप बहुत पुराना है.', - 'unhealthy_backup_found_unknown' => 'माफ़ कीजिये, सही कारण निर्धारित नहीं कर सकते.', - 'unhealthy_backup_found_full' => 'सभी बैकअप बहुत ज्यादा जगह का उपयोग कर रहे है. फ़िलहाल सभी बैकअप :disk_usage जगह का उपयोग कर रहे है, जो की :disk_limit अनुमति सीमा से अधिक का है.', -]; diff --git a/resources/lang/vendor/backup/id/notifications.php b/resources/lang/vendor/backup/id/notifications.php deleted file mode 100644 index 971322a029..0000000000 --- a/resources/lang/vendor/backup/id/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Pesan pengecualian: :message', - 'exception_trace' => 'Jejak pengecualian: :trace', - 'exception_message_title' => 'Pesan pengecualian', - 'exception_trace_title' => 'Jejak pengecualian', - - 'backup_failed_subject' => 'Gagal backup :application_name', - 'backup_failed_body' => 'Penting: Sebuah error terjadi ketika membackup :application_name', - - 'backup_successful_subject' => 'Backup baru sukses dari :application_name', - 'backup_successful_subject_title' => 'Backup baru sukses!', - 'backup_successful_body' => 'Kabar baik, sebuah backup baru dari :application_name sukses dibuat pada disk bernama :disk_name.', - - 'cleanup_failed_subject' => 'Membersihkan backup dari :application_name yang gagal.', - 'cleanup_failed_body' => 'Sebuah error teradi ketika membersihkan backup dari :application_name', - - 'cleanup_successful_subject' => 'Sukses membersihkan backup :application_name', - 'cleanup_successful_subject_title' => 'Sukses membersihkan backup!', - 'cleanup_successful_body' => 'Pembersihan backup :application_name pada disk bernama :disk_name telah sukses.', - - 'healthy_backup_found_subject' => 'Backup untuk :application_name pada disk :disk_name sehat', - 'healthy_backup_found_subject_title' => 'Backup untuk :application_name sehat', - 'healthy_backup_found_body' => 'Backup untuk :application_name dipertimbangkan sehat. Kerja bagus!', - - 'unhealthy_backup_found_subject' => 'Penting: Backup untuk :application_name tidak sehat', - 'unhealthy_backup_found_subject_title' => 'Penting: Backup untuk :application_name tidak sehat. :problem', - 'unhealthy_backup_found_body' => 'Backup untuk :application_name pada disk :disk_name tidak sehat.', - 'unhealthy_backup_found_not_reachable' => 'Tujuan backup tidak dapat terjangkau. :error', - 'unhealthy_backup_found_empty' => 'Tidak ada backup pada aplikasi ini sama sekali.', - 'unhealthy_backup_found_old' => 'Backup terakhir dibuat pada :date dimana dipertimbahkan sudah sangat lama.', - 'unhealthy_backup_found_unknown' => 'Maaf, sebuah alasan persisnya tidak dapat ditentukan.', - 'unhealthy_backup_found_full' => 'Backup menggunakan terlalu banyak kapasitas penyimpanan. Penggunaan terkini adalah :disk_usage dimana lebih besar dari batas yang diperbolehkan yaitu :disk_limit.', -]; diff --git a/resources/lang/vendor/backup/it/notifications.php b/resources/lang/vendor/backup/it/notifications.php deleted file mode 100644 index 43ad38e48d..0000000000 --- a/resources/lang/vendor/backup/it/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Messaggio dell\'eccezione: :message', - 'exception_trace' => 'Traccia dell\'eccezione: :trace', - 'exception_message_title' => 'Messaggio dell\'eccezione', - 'exception_trace_title' => 'Traccia dell\'eccezione', - - 'backup_failed_subject' => 'Fallito il backup di :application_name', - 'backup_failed_body' => 'Importante: Si è verificato un errore durante il backup di :application_name', - - 'backup_successful_subject' => 'Creato nuovo backup di :application_name', - 'backup_successful_subject_title' => 'Nuovo backup creato!', - 'backup_successful_body' => 'Grande notizia, un nuovo backup di :application_name è stato creato con successo sul disco :disk_name.', - - 'cleanup_failed_subject' => 'Pulizia dei backup di :application_name fallita.', - 'cleanup_failed_body' => 'Si è verificato un errore durante la pulizia dei backup di :application_name', - - 'cleanup_successful_subject' => 'Pulizia dei backup di :application_name avvenuta con successo', - 'cleanup_successful_subject_title' => 'Pulizia dei backup avvenuta con successo!', - 'cleanup_successful_body' => 'La pulizia dei backup di :application_name sul disco :disk_name è avvenuta con successo.', - - 'healthy_backup_found_subject' => 'I backup per :application_name sul disco :disk_name sono sani', - 'healthy_backup_found_subject_title' => 'I backup per :application_name sono sani', - 'healthy_backup_found_body' => 'I backup per :application_name sono considerati sani. Bel Lavoro!', - - 'unhealthy_backup_found_subject' => 'Importante: i backup per :application_name sono corrotti', - 'unhealthy_backup_found_subject_title' => 'Importante: i backup per :application_name sono corrotti. :problem', - 'unhealthy_backup_found_body' => 'I backup per :application_name sul disco :disk_name sono corrotti.', - 'unhealthy_backup_found_not_reachable' => 'Impossibile raggiungere la destinazione di backup. :error', - 'unhealthy_backup_found_empty' => 'Non esiste alcun backup di questa applicazione.', - 'unhealthy_backup_found_old' => 'L\'ultimo backup fatto il :date è considerato troppo vecchio.', - 'unhealthy_backup_found_unknown' => 'Spiacenti, non è possibile determinare una ragione esatta.', - 'unhealthy_backup_found_full' => 'I backup utilizzano troppa memoria. L\'utilizzo corrente è :disk_usage che è superiore al limite consentito di :disk_limit.', -]; diff --git a/resources/lang/vendor/backup/pl/notifications.php b/resources/lang/vendor/backup/pl/notifications.php deleted file mode 100644 index 86f553939a..0000000000 --- a/resources/lang/vendor/backup/pl/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Błąd: :message', - 'exception_trace' => 'Zrzut błędu: :trace', - 'exception_message_title' => 'Błąd', - 'exception_trace_title' => 'Zrzut błędu', - - 'backup_failed_subject' => 'Tworzenie kopii zapasowej aplikacji :application_name nie powiodło się', - 'backup_failed_body' => 'Ważne: Wystąpił błąd podczas tworzenia kopii zapasowej aplikacji :application_name', - - 'backup_successful_subject' => 'Pomyślnie utworzono kopię zapasową aplikacji :application_name', - 'backup_successful_subject_title' => 'Nowa kopia zapasowa!', - 'backup_successful_body' => 'Wspaniała wiadomość, nowa kopia zapasowa aplikacji :application_name została pomyślnie utworzona na dysku o nazwie :disk_name.', - - 'cleanup_failed_subject' => 'Czyszczenie kopii zapasowych aplikacji :application_name nie powiodło się.', - 'cleanup_failed_body' => 'Wystąpił błąd podczas czyszczenia kopii zapasowej aplikacji :application_name', - - 'cleanup_successful_subject' => 'Kopie zapasowe aplikacji :application_name zostały pomyślnie wyczyszczone', - 'cleanup_successful_subject_title' => 'Kopie zapasowe zostały pomyślnie wyczyszczone!', - 'cleanup_successful_body' => 'Czyszczenie kopii zapasowych aplikacji :application_name na dysku :disk_name zakończone sukcecem.', - - 'healthy_backup_found_subject' => 'Kopie zapasowe aplikacji :application_name na dysku :disk_name są poprawne', - 'healthy_backup_found_subject_title' => 'Kopie zapasowe aplikacji :application_name są poprawne', - 'healthy_backup_found_body' => 'Kopie zapasowe aplikacji :application_name są poprawne. Dobra robota!', - - 'unhealthy_backup_found_subject' => 'Ważne: Kopie zapasowe aplikacji :application_name są niepoprawne', - 'unhealthy_backup_found_subject_title' => 'Ważne: Kopie zapasowe aplikacji :application_name są niepoprawne. :problem', - 'unhealthy_backup_found_body' => 'Kopie zapasowe aplikacji :application_name na dysku :disk_name są niepoprawne.', - 'unhealthy_backup_found_not_reachable' => 'Miejsce docelowe kopii zapasowej nie jest osiągalne. :error', - 'unhealthy_backup_found_empty' => 'W aplikacji nie ma żadnej kopii zapasowych tej aplikacji.', - 'unhealthy_backup_found_old' => 'Ostatnia kopia zapasowa wykonania dnia :date jest zbyt stara.', - 'unhealthy_backup_found_unknown' => 'Niestety, nie można ustalić dokładnego błędu.', - 'unhealthy_backup_found_full' => 'Kopie zapasowe zajmują zbyt dużo miejsca. Obecne użycie dysku :disk_usage jest większe od ustalonego limitu :disk_limit.', -]; diff --git a/resources/lang/vendor/backup/pt-BR/notifications.php b/resources/lang/vendor/backup/pt-BR/notifications.php deleted file mode 100644 index d22ebf4d4f..0000000000 --- a/resources/lang/vendor/backup/pt-BR/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Exception message: :message', - 'exception_trace' => 'Exception trace: :trace', - 'exception_message_title' => 'Exception message', - 'exception_trace_title' => 'Exception trace', - - 'backup_failed_subject' => 'Falha no backup da aplicação :application_name', - 'backup_failed_body' => 'Importante: Ocorreu um erro ao fazer o backup da aplicação :application_name', - - 'backup_successful_subject' => 'Backup realizado com sucesso: :application_name', - 'backup_successful_subject_title' => 'Backup Realizado com sucesso!', - 'backup_successful_body' => 'Boas notícias, um novo backup da aplicação :application_name foi criado no disco :disk_name.', - - 'cleanup_failed_subject' => 'Falha na limpeza dos backups da aplicação :application_name.', - 'cleanup_failed_body' => 'Um erro ocorreu ao fazer a limpeza dos backups da aplicação :application_name', - - 'cleanup_successful_subject' => 'Limpeza dos backups da aplicação :application_name concluída!', - 'cleanup_successful_subject_title' => 'Limpeza dos backups concluída!', - 'cleanup_successful_body' => 'A limpeza dos backups da aplicação :application_name no disco :disk_name foi concluída.', - - 'healthy_backup_found_subject' => 'Os backups da aplicação :application_name no disco :disk_name estão em dia', - 'healthy_backup_found_subject_title' => 'Os backups da aplicação :application_name estão em dia', - 'healthy_backup_found_body' => 'Os backups da aplicação :application_name estão em dia. Bom trabalho!', - - 'unhealthy_backup_found_subject' => 'Importante: Os backups da aplicação :application_name não estão em dia', - 'unhealthy_backup_found_subject_title' => 'Importante: Os backups da aplicação :application_name não estão em dia. :problem', - 'unhealthy_backup_found_body' => 'Os backups da aplicação :application_name no disco :disk_name não estão em dia.', - 'unhealthy_backup_found_not_reachable' => 'O destino dos backups não pode ser alcançado. :error', - 'unhealthy_backup_found_empty' => 'Não existem backups para essa aplicação.', - 'unhealthy_backup_found_old' => 'O último backup realizado em :date é considerado muito antigo.', - 'unhealthy_backup_found_unknown' => 'Desculpe, a exata razão não pode ser encontrada.', - 'unhealthy_backup_found_full' => 'Os backups estão usando muito espaço de armazenamento. A utilização atual é de :disk_usage, o que é maior que o limite permitido de :disk_limit.', -]; diff --git a/resources/lang/vendor/backup/ro/notifications.php b/resources/lang/vendor/backup/ro/notifications.php deleted file mode 100644 index cc0322db99..0000000000 --- a/resources/lang/vendor/backup/ro/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Cu excepția mesajului: :message', - 'exception_trace' => 'Urmă excepţie: :trace', - 'exception_message_title' => 'Mesaj de excepție', - 'exception_trace_title' => 'Urmă excepţie', - - 'backup_failed_subject' => 'Nu s-a putut face copie de rezervă pentru :application_name', - 'backup_failed_body' => 'Important: A apărut o eroare în timpul generării copiei de rezervă pentru :application_name', - - 'backup_successful_subject' => 'Copie de rezervă efectuată cu succes pentru :application_name', - 'backup_successful_subject_title' => 'O nouă copie de rezervă a fost efectuată cu succes!', - 'backup_successful_body' => 'Vești bune, o nouă copie de rezervă pentru :application_name a fost creată cu succes pe discul cu numele :disk_name.', - - 'cleanup_failed_subject' => 'Curățarea copiilor de rezervă pentru :application_name nu a reușit.', - 'cleanup_failed_body' => 'A apărut o eroare în timpul curățirii copiilor de rezervă pentru :application_name', - - 'cleanup_successful_subject' => 'Curățarea copiilor de rezervă pentru :application_name a fost făcută cu succes', - 'cleanup_successful_subject_title' => 'Curățarea copiilor de rezervă a fost făcută cu succes!', - 'cleanup_successful_body' => 'Curățarea copiilor de rezervă pentru :application_name de pe discul cu numele :disk_name a fost făcută cu succes.', - - 'healthy_backup_found_subject' => 'Copiile de rezervă pentru :application_name de pe discul :disk_name sunt în regulă', - 'healthy_backup_found_subject_title' => 'Copiile de rezervă pentru :application_name sunt în regulă', - 'healthy_backup_found_body' => 'Copiile de rezervă pentru :application_name sunt considerate în regulă. Bună treabă!', - - 'unhealthy_backup_found_subject' => 'Important: Copiile de rezervă pentru :application_name nu sunt în regulă', - 'unhealthy_backup_found_subject_title' => 'Important: Copiile de rezervă pentru :application_name nu sunt în regulă. :problem', - 'unhealthy_backup_found_body' => 'Copiile de rezervă pentru :application_name de pe discul :disk_name nu sunt în regulă.', - 'unhealthy_backup_found_not_reachable' => 'Nu se poate ajunge la destinația copiilor de rezervă. :error', - 'unhealthy_backup_found_empty' => 'Nu există copii de rezervă ale acestei aplicații.', - 'unhealthy_backup_found_old' => 'Cea mai recentă copie de rezervă făcută la :date este considerată prea veche.', - 'unhealthy_backup_found_unknown' => 'Ne pare rău, un motiv exact nu poate fi determinat.', - 'unhealthy_backup_found_full' => 'Copiile de rezervă folosesc prea mult spațiu de stocare. Utilizarea curentă este de :disk_usage care este mai mare decât limita permisă de :disk_limit.', -]; diff --git a/resources/lang/vendor/backup/ru/notifications.php b/resources/lang/vendor/backup/ru/notifications.php deleted file mode 100644 index 875633c38d..0000000000 --- a/resources/lang/vendor/backup/ru/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Сообщение об ошибке: :message', - 'exception_trace' => 'Сведения об ошибке: :trace', - 'exception_message_title' => 'Сообщение об ошибке', - 'exception_trace_title' => 'Сведения об ошибке', - - 'backup_failed_subject' => 'Не удалось сделать резервную копию :application_name', - 'backup_failed_body' => 'Внимание: Произошла ошибка во время резервного копирования :application_name', - - 'backup_successful_subject' => 'Успешно создана новая резервная копия :application_name', - 'backup_successful_subject_title' => 'Успешно создана новая резервная копия!', - 'backup_successful_body' => 'Отличная новость, новая резервная копия :application_name успешно создана и сохранена на диск :disk_name.', - - 'cleanup_failed_subject' => 'Не удалось очистить резервные копии :application_name', - 'cleanup_failed_body' => 'Произошла ошибка при очистке резервных копий :application_name', - - 'cleanup_successful_subject' => 'Очистка от резервных копий :application_name прошла успешно', - 'cleanup_successful_subject_title' => 'Очистка резервных копий прошла удачно!', - 'cleanup_successful_body' => 'Очистка от старых резервных копий :application_name на диске :disk_name прошла удачно.', - - 'healthy_backup_found_subject' => 'Резервная копия :application_name с диска :disk_name установлена', - 'healthy_backup_found_subject_title' => 'Резервная копия :application_name установлена', - 'healthy_backup_found_body' => 'Резервная копия :application_name успешно установлена. Хорошая работа!', - - 'unhealthy_backup_found_subject' => 'Внимание: резервная копия :application_name не установилась', - 'unhealthy_backup_found_subject_title' => 'Внимание: резервная копия для :application_name не установилась. :problem', - 'unhealthy_backup_found_body' => 'Резервная копия для :application_name на диске :disk_name не установилась.', - 'unhealthy_backup_found_not_reachable' => 'Резервная копия не смогла установиться. :error', - 'unhealthy_backup_found_empty' => 'Резервные копии для этого приложения отсутствуют.', - 'unhealthy_backup_found_old' => 'Последнее резервное копирование создано :date является устаревшим.', - 'unhealthy_backup_found_unknown' => 'Извините, точная причина не может быть определена.', - 'unhealthy_backup_found_full' => 'Резервные копии используют слишком много памяти. Используется :disk_usage что выше допустимого предела: :disk_limit.', -]; diff --git a/resources/lang/vendor/backup/tr/notifications.php b/resources/lang/vendor/backup/tr/notifications.php deleted file mode 100644 index 298b0ec4d7..0000000000 --- a/resources/lang/vendor/backup/tr/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Hata mesajı: :message', - 'exception_trace' => 'Hata izleri: :trace', - 'exception_message_title' => 'Hata mesajı', - 'exception_trace_title' => 'Hata izleri', - - 'backup_failed_subject' => 'Yedeklenemedi :application_name', - 'backup_failed_body' => 'Önemli: Yedeklenirken bir hata oluştu :application_name', - - 'backup_successful_subject' => 'Başarılı :application_name yeni yedeklemesi', - 'backup_successful_subject_title' => 'Başarılı bir yeni yedekleme!', - 'backup_successful_body' => 'Harika bir haber, :application_name âit yeni bir yedekleme :disk_name adlı diskte başarıyla oluşturuldu.', - - 'cleanup_failed_subject' => ':application_name yedeklemeleri temizlenmesi başarısız.', - 'cleanup_failed_body' => ':application_name yedeklerini temizlerken bir hata oluştu ', - - 'cleanup_successful_subject' => ':application_name yedeklemeleri temizlenmesi başarılı.', - 'cleanup_successful_subject_title' => 'Yedeklerin temizlenmesi başarılı!', - 'cleanup_successful_body' => ':application_name yedeklemeleri temizlenmesi ,:disk_name diskinden silindi', - - 'healthy_backup_found_subject' => ':application_name yedeklenmesi ,:disk_name adlı diskte sağlıklı', - 'healthy_backup_found_subject_title' => ':application_name yedeklenmesi sağlıklı', - 'healthy_backup_found_body' => ':application_name için yapılan yedeklemeler sağlıklı sayılır. Aferin!', - - 'unhealthy_backup_found_subject' => 'Önemli: :application_name için yedeklemeler sağlıksız', - 'unhealthy_backup_found_subject_title' => 'Önemli: :application_name için yedeklemeler sağlıksız. :problem', - 'unhealthy_backup_found_body' => 'Yedeklemeler: :application_name disk: :disk_name sağlıksız.', - 'unhealthy_backup_found_not_reachable' => 'Yedekleme hedefine ulaşılamıyor. :error', - 'unhealthy_backup_found_empty' => 'Bu uygulamanın yedekleri yok.', - 'unhealthy_backup_found_old' => ':date tarihinde yapılan en son yedekleme çok eski kabul ediliyor.', - 'unhealthy_backup_found_unknown' => 'Üzgünüm, kesin bir sebep belirlenemiyor.', - 'unhealthy_backup_found_full' => 'Yedeklemeler çok fazla depolama alanı kullanıyor. Şu anki kullanım: :disk_usage, izin verilen sınırdan yüksek: :disk_limit.', -]; diff --git a/resources/lang/vendor/backup/uk/notifications.php b/resources/lang/vendor/backup/uk/notifications.php deleted file mode 100644 index a39c90a253..0000000000 --- a/resources/lang/vendor/backup/uk/notifications.php +++ /dev/null @@ -1,35 +0,0 @@ - 'Повідомлення про помилку: :message', - 'exception_trace' => 'Деталі помилки: :trace', - 'exception_message_title' => 'Повідомлення помилки', - 'exception_trace_title' => 'Деталі помилки', - - 'backup_failed_subject' => 'Не вдалось зробити резервну копію :application_name', - 'backup_failed_body' => 'Увага: Трапилась помилка під час резервного копіювання :application_name', - - 'backup_successful_subject' => 'Успішне резервне копіювання :application_name', - 'backup_successful_subject_title' => 'Успішно створена резервна копія!', - 'backup_successful_body' => 'Чудова новина, нова резервна копія :application_name успішно створена і збережена на диск :disk_name.', - - 'cleanup_failed_subject' => 'Не вдалось очистити резервні копії :application_name', - 'cleanup_failed_body' => 'Сталася помилка під час очищення резервних копій :application_name', - - 'cleanup_successful_subject' => 'Успішне очищення від резервних копій :application_name', - 'cleanup_successful_subject_title' => 'Очищення резервних копій пройшло вдало!', - 'cleanup_successful_body' => 'Очищенно від старих резервних копій :application_name на диску :disk_name пойшло успішно.', - - 'healthy_backup_found_subject' => 'Резервна копія :application_name з диску :disk_name установлена', - 'healthy_backup_found_subject_title' => 'Резервна копія :application_name установлена', - 'healthy_backup_found_body' => 'Резервна копія :application_name успішно установлена. Хороша робота!', - - 'unhealthy_backup_found_subject' => 'Увага: резервна копія :application_name не установилась', - 'unhealthy_backup_found_subject_title' => 'Увага: резервна копія для :application_name не установилась. :problem', - 'unhealthy_backup_found_body' => 'Резервна копія для :application_name на диску :disk_name не установилась.', - 'unhealthy_backup_found_not_reachable' => 'Резервна копія не змогла установитись. :error', - 'unhealthy_backup_found_empty' => 'Резервні копії для цього додатку відсутні.', - 'unhealthy_backup_found_old' => 'Останнє резервне копіювання створено :date є застарілим.', - 'unhealthy_backup_found_unknown' => 'Вибачте, але ми не змогли визначити точну причину.', - 'unhealthy_backup_found_full' => 'Резервні копії використовують занадто багато пам`яті. Використовується :disk_usage що вище за допустиму межу :disk_limit.', -]; diff --git a/resources/lang/vi/account/general.php b/resources/lang/vi-VN/account/general.php similarity index 100% rename from resources/lang/vi/account/general.php rename to resources/lang/vi-VN/account/general.php diff --git a/resources/lang/vi/admin/accessories/general.php b/resources/lang/vi-VN/admin/accessories/general.php similarity index 100% rename from resources/lang/vi/admin/accessories/general.php rename to resources/lang/vi-VN/admin/accessories/general.php diff --git a/resources/lang/vi/admin/accessories/message.php b/resources/lang/vi-VN/admin/accessories/message.php similarity index 100% rename from resources/lang/vi/admin/accessories/message.php rename to resources/lang/vi-VN/admin/accessories/message.php diff --git a/resources/lang/vi/admin/accessories/table.php b/resources/lang/vi-VN/admin/accessories/table.php similarity index 100% rename from resources/lang/vi/admin/accessories/table.php rename to resources/lang/vi-VN/admin/accessories/table.php diff --git a/resources/lang/vi-VN/admin/asset_maintenances/form.php b/resources/lang/vi-VN/admin/asset_maintenances/form.php new file mode 100644 index 0000000000..d46a95678e --- /dev/null +++ b/resources/lang/vi-VN/admin/asset_maintenances/form.php @@ -0,0 +1,14 @@ + 'Lại duy trì tài sản', + 'title' => 'Tiêu đề', + 'start_date' => 'Ngày Bắt Đầu', + 'completion_date' => 'Ngày hoàn thành', + 'cost' => 'Chi phí', + 'is_warranty' => 'Tăng bảo hành', + 'asset_maintenance_time' => 'Thời gian bảo trì tài sản (ngày)', + 'notes' => 'Ghi chú', + 'update' => 'Cập nhật tài sản đang bảo trì', + 'create' => 'Tạo Bảo hành Tài sản' + ]; diff --git a/resources/lang/vi/admin/asset_maintenances/general.php b/resources/lang/vi-VN/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/vi/admin/asset_maintenances/general.php rename to resources/lang/vi-VN/admin/asset_maintenances/general.php diff --git a/resources/lang/vi/admin/asset_maintenances/message.php b/resources/lang/vi-VN/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/vi/admin/asset_maintenances/message.php rename to resources/lang/vi-VN/admin/asset_maintenances/message.php diff --git a/resources/lang/vi/admin/asset_maintenances/table.php b/resources/lang/vi-VN/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/vi/admin/asset_maintenances/table.php rename to resources/lang/vi-VN/admin/asset_maintenances/table.php diff --git a/resources/lang/vi/admin/categories/general.php b/resources/lang/vi-VN/admin/categories/general.php similarity index 100% rename from resources/lang/vi/admin/categories/general.php rename to resources/lang/vi-VN/admin/categories/general.php diff --git a/resources/lang/vi/admin/categories/message.php b/resources/lang/vi-VN/admin/categories/message.php similarity index 100% rename from resources/lang/vi/admin/categories/message.php rename to resources/lang/vi-VN/admin/categories/message.php diff --git a/resources/lang/vi/admin/categories/table.php b/resources/lang/vi-VN/admin/categories/table.php similarity index 100% rename from resources/lang/vi/admin/categories/table.php rename to resources/lang/vi-VN/admin/categories/table.php diff --git a/resources/lang/vi/admin/companies/general.php b/resources/lang/vi-VN/admin/companies/general.php similarity index 100% rename from resources/lang/vi/admin/companies/general.php rename to resources/lang/vi-VN/admin/companies/general.php diff --git a/resources/lang/vi/admin/companies/message.php b/resources/lang/vi-VN/admin/companies/message.php similarity index 100% rename from resources/lang/vi/admin/companies/message.php rename to resources/lang/vi-VN/admin/companies/message.php diff --git a/resources/lang/vi/admin/companies/table.php b/resources/lang/vi-VN/admin/companies/table.php similarity index 100% rename from resources/lang/vi/admin/companies/table.php rename to resources/lang/vi-VN/admin/companies/table.php diff --git a/resources/lang/vi/admin/components/general.php b/resources/lang/vi-VN/admin/components/general.php similarity index 100% rename from resources/lang/vi/admin/components/general.php rename to resources/lang/vi-VN/admin/components/general.php diff --git a/resources/lang/vi/admin/components/message.php b/resources/lang/vi-VN/admin/components/message.php similarity index 100% rename from resources/lang/vi/admin/components/message.php rename to resources/lang/vi-VN/admin/components/message.php diff --git a/resources/lang/vi/admin/components/table.php b/resources/lang/vi-VN/admin/components/table.php similarity index 100% rename from resources/lang/vi/admin/components/table.php rename to resources/lang/vi-VN/admin/components/table.php diff --git a/resources/lang/vi/admin/consumables/general.php b/resources/lang/vi-VN/admin/consumables/general.php similarity index 100% rename from resources/lang/vi/admin/consumables/general.php rename to resources/lang/vi-VN/admin/consumables/general.php diff --git a/resources/lang/vi/admin/consumables/message.php b/resources/lang/vi-VN/admin/consumables/message.php similarity index 100% rename from resources/lang/vi/admin/consumables/message.php rename to resources/lang/vi-VN/admin/consumables/message.php diff --git a/resources/lang/vi/admin/consumables/table.php b/resources/lang/vi-VN/admin/consumables/table.php similarity index 100% rename from resources/lang/vi/admin/consumables/table.php rename to resources/lang/vi-VN/admin/consumables/table.php diff --git a/resources/lang/vi/admin/custom_fields/general.php b/resources/lang/vi-VN/admin/custom_fields/general.php similarity index 95% rename from resources/lang/vi/admin/custom_fields/general.php rename to resources/lang/vi-VN/admin/custom_fields/general.php index a9f317a150..2cd9be8a88 100644 --- a/resources/lang/vi/admin/custom_fields/general.php +++ b/resources/lang/vi-VN/admin/custom_fields/general.php @@ -34,7 +34,7 @@ return [ 'create_field' => 'Trường tùy chỉnh mới', 'create_field_title' => 'Create a new custom field', 'value_encrypted' => 'Giá trị của trường này được mã hóa trong cơ sở dữ liệu. Chỉ những người dùng quản trị mới có thể xem được giá trị được giải mã', - 'show_in_email' => 'Include the value of this field in checkout emails sent to the user? Encrypted fields cannot be included in emails', + 'show_in_email' => 'Bao gồm giá trị của trường này trong email thanh toán được gửi tới người dùng? Các trường được mã hóa không thể được bao gồm trong email', '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.', diff --git a/resources/lang/vi/admin/custom_fields/message.php b/resources/lang/vi-VN/admin/custom_fields/message.php similarity index 100% rename from resources/lang/vi/admin/custom_fields/message.php rename to resources/lang/vi-VN/admin/custom_fields/message.php diff --git a/resources/lang/vi/admin/departments/message.php b/resources/lang/vi-VN/admin/departments/message.php similarity index 100% rename from resources/lang/vi/admin/departments/message.php rename to resources/lang/vi-VN/admin/departments/message.php diff --git a/resources/lang/vi/admin/departments/table.php b/resources/lang/vi-VN/admin/departments/table.php similarity index 100% rename from resources/lang/vi/admin/departments/table.php rename to resources/lang/vi-VN/admin/departments/table.php diff --git a/resources/lang/vi/admin/depreciations/general.php b/resources/lang/vi-VN/admin/depreciations/general.php similarity index 100% rename from resources/lang/vi/admin/depreciations/general.php rename to resources/lang/vi-VN/admin/depreciations/general.php diff --git a/resources/lang/vi/admin/depreciations/message.php b/resources/lang/vi-VN/admin/depreciations/message.php similarity index 100% rename from resources/lang/vi/admin/depreciations/message.php rename to resources/lang/vi-VN/admin/depreciations/message.php diff --git a/resources/lang/vi/admin/depreciations/table.php b/resources/lang/vi-VN/admin/depreciations/table.php similarity index 100% rename from resources/lang/vi/admin/depreciations/table.php rename to resources/lang/vi-VN/admin/depreciations/table.php diff --git a/resources/lang/vi/admin/groups/message.php b/resources/lang/vi-VN/admin/groups/message.php similarity index 100% rename from resources/lang/vi/admin/groups/message.php rename to resources/lang/vi-VN/admin/groups/message.php diff --git a/resources/lang/vi/admin/groups/table.php b/resources/lang/vi-VN/admin/groups/table.php similarity index 100% rename from resources/lang/vi/admin/groups/table.php rename to resources/lang/vi-VN/admin/groups/table.php diff --git a/resources/lang/vi/admin/groups/titles.php b/resources/lang/vi-VN/admin/groups/titles.php similarity index 100% rename from resources/lang/vi/admin/groups/titles.php rename to resources/lang/vi-VN/admin/groups/titles.php diff --git a/resources/lang/vi/admin/hardware/form.php b/resources/lang/vi-VN/admin/hardware/form.php similarity index 100% rename from resources/lang/vi/admin/hardware/form.php rename to resources/lang/vi-VN/admin/hardware/form.php diff --git a/resources/lang/vi/admin/hardware/general.php b/resources/lang/vi-VN/admin/hardware/general.php similarity index 100% rename from resources/lang/vi/admin/hardware/general.php rename to resources/lang/vi-VN/admin/hardware/general.php diff --git a/resources/lang/vi/admin/hardware/message.php b/resources/lang/vi-VN/admin/hardware/message.php similarity index 100% rename from resources/lang/vi/admin/hardware/message.php rename to resources/lang/vi-VN/admin/hardware/message.php diff --git a/resources/lang/vi/admin/hardware/table.php b/resources/lang/vi-VN/admin/hardware/table.php similarity index 100% rename from resources/lang/vi/admin/hardware/table.php rename to resources/lang/vi-VN/admin/hardware/table.php diff --git a/resources/lang/vi/admin/kits/general.php b/resources/lang/vi-VN/admin/kits/general.php similarity index 89% rename from resources/lang/vi/admin/kits/general.php rename to resources/lang/vi-VN/admin/kits/general.php index 2414406cd8..381e7e7f7c 100644 --- a/resources/lang/vi/admin/kits/general.php +++ b/resources/lang/vi-VN/admin/kits/general.php @@ -30,21 +30,21 @@ return [ 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_none' => 'Vật tư phụ không tồn tại', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', 'accessory_detached' => 'Accessory was successfully detached', 'accessory_error' => 'Accessory already attached to kit', 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', + 'accessory_none' => 'Phụ kiện này hiện không có sẵn', 'checkout_success' => 'Checkout was successful', 'checkout_error' => 'Checkout error', 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', + 'kit_created' => 'Bộ kit đã được tạo thành công', + 'kit_updated' => 'Bộ kit đã cập nhật thành công', 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', + 'kit_deleted' => 'Bộ kit đã xóa thành công', 'kit_model_updated' => 'Model was successfully updated', 'kit_model_detached' => 'Model was successfully detached', ]; diff --git a/resources/lang/tl/admin/labels/message.php b/resources/lang/vi-VN/admin/labels/message.php similarity index 100% rename from resources/lang/tl/admin/labels/message.php rename to resources/lang/vi-VN/admin/labels/message.php diff --git a/resources/lang/vi-VN/admin/labels/table.php b/resources/lang/vi-VN/admin/labels/table.php new file mode 100644 index 0000000000..e2dc27473c --- /dev/null +++ b/resources/lang/vi-VN/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Nhãn', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Nhãn', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Logo', + 'support_title' => 'Tiêu đề', + +]; \ No newline at end of file diff --git a/resources/lang/vi/admin/licenses/form.php b/resources/lang/vi-VN/admin/licenses/form.php similarity index 100% rename from resources/lang/vi/admin/licenses/form.php rename to resources/lang/vi-VN/admin/licenses/form.php diff --git a/resources/lang/vi/admin/licenses/general.php b/resources/lang/vi-VN/admin/licenses/general.php similarity index 100% rename from resources/lang/vi/admin/licenses/general.php rename to resources/lang/vi-VN/admin/licenses/general.php diff --git a/resources/lang/vi/admin/licenses/message.php b/resources/lang/vi-VN/admin/licenses/message.php similarity index 100% rename from resources/lang/vi/admin/licenses/message.php rename to resources/lang/vi-VN/admin/licenses/message.php diff --git a/resources/lang/vi/admin/licenses/table.php b/resources/lang/vi-VN/admin/licenses/table.php similarity index 100% rename from resources/lang/vi/admin/licenses/table.php rename to resources/lang/vi-VN/admin/licenses/table.php diff --git a/resources/lang/vi/admin/locations/message.php b/resources/lang/vi-VN/admin/locations/message.php similarity index 100% rename from resources/lang/vi/admin/locations/message.php rename to resources/lang/vi-VN/admin/locations/message.php diff --git a/resources/lang/vi/admin/locations/table.php b/resources/lang/vi-VN/admin/locations/table.php similarity index 100% rename from resources/lang/vi/admin/locations/table.php rename to resources/lang/vi-VN/admin/locations/table.php diff --git a/resources/lang/vi/admin/manufacturers/message.php b/resources/lang/vi-VN/admin/manufacturers/message.php similarity index 100% rename from resources/lang/vi/admin/manufacturers/message.php rename to resources/lang/vi-VN/admin/manufacturers/message.php diff --git a/resources/lang/vi/admin/manufacturers/table.php b/resources/lang/vi-VN/admin/manufacturers/table.php similarity index 100% rename from resources/lang/vi/admin/manufacturers/table.php rename to resources/lang/vi-VN/admin/manufacturers/table.php diff --git a/resources/lang/vi/admin/models/general.php b/resources/lang/vi-VN/admin/models/general.php similarity index 100% rename from resources/lang/vi/admin/models/general.php rename to resources/lang/vi-VN/admin/models/general.php diff --git a/resources/lang/vi/admin/models/message.php b/resources/lang/vi-VN/admin/models/message.php similarity index 100% rename from resources/lang/vi/admin/models/message.php rename to resources/lang/vi-VN/admin/models/message.php diff --git a/resources/lang/vi/admin/models/table.php b/resources/lang/vi-VN/admin/models/table.php similarity index 100% rename from resources/lang/vi/admin/models/table.php rename to resources/lang/vi-VN/admin/models/table.php diff --git a/resources/lang/vi/admin/reports/general.php b/resources/lang/vi-VN/admin/reports/general.php similarity index 100% rename from resources/lang/vi/admin/reports/general.php rename to resources/lang/vi-VN/admin/reports/general.php diff --git a/resources/lang/vi/admin/reports/message.php b/resources/lang/vi-VN/admin/reports/message.php similarity index 100% rename from resources/lang/vi/admin/reports/message.php rename to resources/lang/vi-VN/admin/reports/message.php diff --git a/resources/lang/vi/admin/settings/general.php b/resources/lang/vi-VN/admin/settings/general.php similarity index 99% rename from resources/lang/vi/admin/settings/general.php rename to resources/lang/vi-VN/admin/settings/general.php index 18d8b667ee..87153de503 100644 --- a/resources/lang/vi/admin/settings/general.php +++ b/resources/lang/vi-VN/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'Người dùng không bắt buộc phải viết "username@domain.local", họ chỉ cần nhập "tên người dùng".', 'admin_cc_email' => 'Gửi thêm 1 bản email đến người khác', 'admin_cc_email_help' => 'Nếu bạn muốn gửi email nhận/trả tài sản đến người dùng vào tài khoản email bổ sung, nhập nó ở đây. Nếu không thì để trống trường này.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Đây là một máy chủ Active Directory', 'alerts' => 'Cảnh báo', 'alert_title' => 'Update Notification Settings', @@ -316,10 +317,10 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'xóa vĩnh viễn', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Xóa các bản ghi đã xóa', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', + 'employee_number' => 'Mã số nhân viên', 'create_admin_user' => 'Tạo người dùng ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Tiêu đề', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Loại mã vạch 2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/vi/admin/settings/message.php b/resources/lang/vi-VN/admin/settings/message.php similarity index 95% rename from resources/lang/vi/admin/settings/message.php rename to resources/lang/vi-VN/admin/settings/message.php index bf978cdff9..4bfae166fe 100644 --- a/resources/lang/vi/admin/settings/message.php +++ b/resources/lang/vi-VN/admin/settings/message.php @@ -36,11 +36,11 @@ return [ 'webhook' => [ 'sending' => 'Sending :app test message...', 'success' => 'Your :webhook_name Integration works!', - 'success_pt1' => 'Success! Check the ', + 'success_pt1' => 'Thành công! Kiểm tra tại ', 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', '500' => '500 Server Error.', 'error' => 'Something went wrong. :app responded with: :error_message', 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.', - 'error_misc' => 'Something went wrong. :( ', + 'error_misc' => 'Đã xảy ra lỗi. :( ', ] ]; diff --git a/resources/lang/vi/admin/settings/table.php b/resources/lang/vi-VN/admin/settings/table.php similarity index 100% rename from resources/lang/vi/admin/settings/table.php rename to resources/lang/vi-VN/admin/settings/table.php diff --git a/resources/lang/vi/admin/statuslabels/message.php b/resources/lang/vi-VN/admin/statuslabels/message.php similarity index 97% rename from resources/lang/vi/admin/statuslabels/message.php rename to resources/lang/vi-VN/admin/statuslabels/message.php index 4ab3812277..4e62df9429 100644 --- a/resources/lang/vi/admin/statuslabels/message.php +++ b/resources/lang/vi-VN/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Nhãn Trạng thái không tồn tại.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Nhãn Trạng thái này hiện được liên kết với ít nhất một Tài sản và không thể bị xóa. Vui lòng cập nhật nội dung của bạn để không tham khảo trạng thái này nữa và thử lại.', 'create' => [ diff --git a/resources/lang/vi/admin/statuslabels/table.php b/resources/lang/vi-VN/admin/statuslabels/table.php similarity index 100% rename from resources/lang/vi/admin/statuslabels/table.php rename to resources/lang/vi-VN/admin/statuslabels/table.php diff --git a/resources/lang/vi/admin/suppliers/message.php b/resources/lang/vi-VN/admin/suppliers/message.php similarity index 100% rename from resources/lang/vi/admin/suppliers/message.php rename to resources/lang/vi-VN/admin/suppliers/message.php diff --git a/resources/lang/vi/admin/suppliers/table.php b/resources/lang/vi-VN/admin/suppliers/table.php similarity index 100% rename from resources/lang/vi/admin/suppliers/table.php rename to resources/lang/vi-VN/admin/suppliers/table.php diff --git a/resources/lang/vi/admin/users/general.php b/resources/lang/vi-VN/admin/users/general.php similarity index 100% rename from resources/lang/vi/admin/users/general.php rename to resources/lang/vi-VN/admin/users/general.php diff --git a/resources/lang/vi/admin/users/message.php b/resources/lang/vi-VN/admin/users/message.php similarity index 100% rename from resources/lang/vi/admin/users/message.php rename to resources/lang/vi-VN/admin/users/message.php diff --git a/resources/lang/vi/admin/users/table.php b/resources/lang/vi-VN/admin/users/table.php similarity index 95% rename from resources/lang/vi/admin/users/table.php rename to resources/lang/vi-VN/admin/users/table.php index 3684291493..73355db721 100644 --- a/resources/lang/vi/admin/users/table.php +++ b/resources/lang/vi-VN/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Người quản lý', 'managed_locations' => 'Vị trí Quản lý', 'name' => 'Tên', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Ghi chú', 'password_confirm' => 'Xác nhận mật khẩu', 'password' => 'Mật khẩu', diff --git a/resources/lang/vi/auth.php b/resources/lang/vi-VN/auth.php similarity index 100% rename from resources/lang/vi/auth.php rename to resources/lang/vi-VN/auth.php diff --git a/resources/lang/vi/auth/general.php b/resources/lang/vi-VN/auth/general.php similarity index 100% rename from resources/lang/vi/auth/general.php rename to resources/lang/vi-VN/auth/general.php diff --git a/resources/lang/vi/auth/message.php b/resources/lang/vi-VN/auth/message.php similarity index 100% rename from resources/lang/vi/auth/message.php rename to resources/lang/vi-VN/auth/message.php diff --git a/resources/lang/vi/button.php b/resources/lang/vi-VN/button.php similarity index 93% rename from resources/lang/vi/button.php rename to resources/lang/vi-VN/button.php index df7ac0c0c8..2a86c6b240 100644 --- a/resources/lang/vi/button.php +++ b/resources/lang/vi-VN/button.php @@ -17,7 +17,7 @@ return [ 'generate_labels' => '{1} Nhãn Chung|[2,*] Nhiều Nhãn Chung', 'send_password_link' => 'Gửi Liên kết Đặt lại Mật khẩu', 'go' => 'Thực hiện', - 'bulk_actions' => 'Bulk Actions', + 'bulk_actions' => 'Hàng loạt hành động', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', 'new' => 'Mới', diff --git a/resources/lang/vi/general.php b/resources/lang/vi-VN/general.php similarity index 96% rename from resources/lang/vi/general.php rename to resources/lang/vi-VN/general.php index f80dbfece2..30e411d755 100644 --- a/resources/lang/vi/general.php +++ b/resources/lang/vi-VN/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Các loại tệp được chấp nhận là jpg, webp, png, gif và svg. Kích thước tải lên tối đa được cho phép là :size.', 'unaccepted_image_type' => 'Tập tin hình ảnh không thể đọc được. Chỉ chấp nhận các kiểu tập tin là jpg, webp, png, gif, và svg.', 'import' => 'Nhập', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Đang nhập', 'importing_help' => 'Bạn có thể nhập nội dung, phụ kiện, giấy phép, linh kiện, vật tư tiêu hao và người dùng qua tệp CSV.

CSV phải được phân cách bằng dấu phẩy và được định dạng với các tiêu đề khớp với các tiêu đề trong CSV trong tài liệu mẫu .', 'import-history' => 'Lịch sử Nhập khẩu', @@ -270,7 +271,7 @@ return [ 'supplier' => 'Nhà cung cấp', 'suppliers' => 'Nhà cung cấp', 'sure_to_delete' => 'Bạn có chắc chắn muốn xoá', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => 'Bạn có chắc chắn muốn xoá trường này không?', 'delete_what' => 'Delete :item', 'submit' => 'Đệ trình', 'target' => 'Mục tiêu', @@ -332,12 +333,12 @@ return [ 'setup_create_admin' => 'Tạo tài khoản quản trị', 'setup_done' => 'Hoàn tất!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Bàn giao', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', + 'expected_checkin' => 'Ngày mong muốn Thu hồi', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', 'changed' => 'Đã thay đổi', 'to' => 'To', @@ -371,19 +372,19 @@ return [ 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error', + 'notification_error' => 'Lỗi', 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Cảnh báo', + 'notification_info' => 'Thông tin', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Tên tài sản', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Tên vật tư phụ:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Tên Phụ Kiện:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Cấp phát tài sản', 'checkin_tooltip' => 'Check this item in', @@ -416,7 +417,7 @@ return [ 'pre_flight' => 'Pre-Flight', 'skip_to_main_content' => 'Skip to main content', 'toggle_navigation' => 'Toggle navigation', - 'alerts' => 'Alerts', + 'alerts' => 'Cảnh báo', 'tasks_view_all' => 'View all tasks', 'true' => 'True', 'false' => 'False', @@ -461,7 +462,7 @@ return [ 'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.', 'serial_number' => 'Serial Number', 'item_notes' => ':item Notes', - 'item_name_var' => ':item Name', + 'item_name_var' => ':tên thiết bị', 'error_user_company' => 'Checkout target company and asset company do not match', 'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager', 'importer' => [ @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% hoàn thành', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'sửa', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/vi/help.php b/resources/lang/vi-VN/help.php similarity index 100% rename from resources/lang/vi/help.php rename to resources/lang/vi-VN/help.php diff --git a/resources/lang/vi-VN/localizations.php b/resources/lang/vi-VN/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/vi-VN/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/vi/mail.php b/resources/lang/vi-VN/mail.php similarity index 100% rename from resources/lang/vi/mail.php rename to resources/lang/vi-VN/mail.php diff --git a/resources/lang/vi/pagination.php b/resources/lang/vi-VN/pagination.php similarity index 100% rename from resources/lang/vi/pagination.php rename to resources/lang/vi-VN/pagination.php diff --git a/resources/lang/vi/passwords.php b/resources/lang/vi-VN/passwords.php similarity index 100% rename from resources/lang/vi/passwords.php rename to resources/lang/vi-VN/passwords.php diff --git a/resources/lang/vi/reminders.php b/resources/lang/vi-VN/reminders.php similarity index 100% rename from resources/lang/vi/reminders.php rename to resources/lang/vi-VN/reminders.php diff --git a/resources/lang/vi/table.php b/resources/lang/vi-VN/table.php similarity index 100% rename from resources/lang/vi/table.php rename to resources/lang/vi-VN/table.php diff --git a/resources/lang/vi/validation.php b/resources/lang/vi-VN/validation.php similarity index 99% rename from resources/lang/vi/validation.php rename to resources/lang/vi-VN/validation.php index f095c45844..0e03d8fb0a 100644 --- a/resources/lang/vi/validation.php +++ b/resources/lang/vi-VN/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'Thuộc tính: phải là duy nhất.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Mật khẩu không thể giống với tên người dùng.', 'letters' => 'Mật khẩu phải chứa ít nhất một chữ cái.', 'numbers' => 'Mật khẩu phải chứa ít nhất một chữ số.', diff --git a/resources/lang/vi/admin/asset_maintenances/form.php b/resources/lang/vi/admin/asset_maintenances/form.php deleted file mode 100644 index 7700759a6a..0000000000 --- a/resources/lang/vi/admin/asset_maintenances/form.php +++ /dev/null @@ -1,14 +0,0 @@ - 'Asset Maintenance Type', - 'title' => 'Tiêu đề', - 'start_date' => 'Start Date', - 'completion_date' => 'Completion Date', - 'cost' => 'Chi phí', - 'is_warranty' => 'Tăng bảo hành', - 'asset_maintenance_time' => 'Asset Maintenance Time (in days)', - 'notes' => 'Ghi chú', - 'update' => 'Update Asset Maintenance', - 'create' => 'Create Asset Maintenance' - ]; diff --git a/resources/lang/vi/admin/labels/table.php b/resources/lang/vi/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/vi/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/vi/localizations.php b/resources/lang/vi/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/vi/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/zh-CN/admin/settings/general.php b/resources/lang/zh-CN/admin/settings/general.php index 052b162a04..6a0ccabc00 100644 --- a/resources/lang/zh-CN/admin/settings/general.php +++ b/resources/lang/zh-CN/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => '不要求用户输入“"username@domain.local",他们只需输入“username”。', 'admin_cc_email' => '邮件抄送', 'admin_cc_email_help' => '如果你想给用户额外的邮件账户发送签入/签出副本,请在此输入邮箱地址,否则请留空。', + 'admin_settings' => '管理员设置', 'is_ad' => '这是AD域服务器', 'alerts' => '警报', 'alert_title' => '更新通知设置', diff --git a/resources/lang/zh-CN/admin/statuslabels/message.php b/resources/lang/zh-CN/admin/statuslabels/message.php index dafe713a14..69ef854124 100644 --- a/resources/lang/zh-CN/admin/statuslabels/message.php +++ b/resources/lang/zh-CN/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => '状态标签不存在', + 'deleted_label' => '已删除的状态标签', 'assoc_assets' => '删除失败,该状态标签已与其它资产关联。请先更新资产以取消关联,然后重试。 ', 'create' => [ diff --git a/resources/lang/zh-CN/admin/users/table.php b/resources/lang/zh-CN/admin/users/table.php index 34c9d0bec6..b763a940be 100644 --- a/resources/lang/zh-CN/admin/users/table.php +++ b/resources/lang/zh-CN/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => '领导', 'managed_locations' => '管理位置', 'name' => '名字', + 'nogroup' => '尚未创建组。要添加一个组,请访问: ', 'notes' => '笔记', 'password_confirm' => '确认密码', 'password' => '密码', diff --git a/resources/lang/zh-CN/general.php b/resources/lang/zh-CN/general.php index 89e7564aa3..d32336a898 100644 --- a/resources/lang/zh-CN/general.php +++ b/resources/lang/zh-CN/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => '接受jpg,png,gif和svg类型的文件。文件大小应小于 :size。', 'unaccepted_image_type' => '此图像文件不可读。可接受的文件类型为jpg、webp、png、gif和svg。此文件的 mimetype 类型为::mimetype。', 'import' => '导入', + 'import_this_file' => '映射字段并处理此文件', 'importing' => '正在导入…', 'importing_help' => '您可以通过CSV文件导入资产、配件、许可证、组件、消耗品和用户。

CSV 应以逗号分隔和格式化,并且在文档 中与 样本CSV中的标头匹配。', 'import-history' => '导入历史记录', @@ -491,5 +492,12 @@ return [ 'upload_error' => '上传文件时出错。请检查是否没有空行,并且没有重复的列名。', 'copy_to_clipboard' => '复制到剪贴板', 'copied' => '已复制!', + 'status_compatibility' => '如果资产已经分配,它们不能被更改为不可部署的状态类型,并且这个值的变化将被跳过。', + 'rtd_location_help' => '这是当资产未被借出时的位置', + 'item_not_found' => ':item_type ID :id 不存在或已被删除', + 'action_permission_denied' => '您没有 :action :item_type ID :id 的权限', + 'action_permission_generic' => '您没有 :action 此 :item_type 的权限', + 'edit' => '编辑', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/zh-CN/localizations.php b/resources/lang/zh-CN/localizations.php index f7bf22946c..70b0dcfd2c 100644 --- a/resources/lang/zh-CN/localizations.php +++ b/resources/lang/zh-CN/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/zh-CN/validation.php b/resources/lang/zh-CN/validation.php index 466cce9724..aa7f7999dc 100644 --- a/resources/lang/zh-CN/validation.php +++ b/resources/lang/zh-CN/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute 属性必须唯一。', 'non_circular' => ':attribute 不能创建循环引用。', 'not_array' => ':attribute 不能是一个数组。', - 'unique_serial' => ':attribute 必须唯一。', 'disallow_same_pwd_as_user_fields' => '密码不能和用户名相同。', 'letters' => '密码必须包含至少一个字母。', 'numbers' => '密码必须包含至少一个数字。', diff --git a/resources/lang/zh-HK/admin/accessories/table.php b/resources/lang/zh-HK/admin/accessories/table.php index be80f30ab8..e02d9f22e4 100644 --- a/resources/lang/zh-HK/admin/accessories/table.php +++ b/resources/lang/zh-HK/admin/accessories/table.php @@ -1,11 +1,11 @@ '下載CSV檔', + 'dl_csv' => 'Download CSV', 'eula_text' => 'EULA', 'id' => 'ID', - 'require_acceptance' => '接收', - 'title' => '配件名稱', + 'require_acceptance' => 'Acceptance', + 'title' => 'Accessory Name', ); diff --git a/resources/lang/zh-HK/admin/categories/table.php b/resources/lang/zh-HK/admin/categories/table.php index 53b76c4dd3..a3ee96ae7f 100644 --- a/resources/lang/zh-HK/admin/categories/table.php +++ b/resources/lang/zh-HK/admin/categories/table.php @@ -3,8 +3,8 @@ return array( 'eula_text' => 'EULA', 'id' => 'ID', - 'parent' => '父類', - 'require_acceptance' => '接受', - 'title' => '資產類別名稱', + 'parent' => 'Parent', + 'require_acceptance' => 'Acceptance', + 'title' => 'Asset Category Name', ); diff --git a/resources/lang/zh-HK/admin/companies/table.php b/resources/lang/zh-HK/admin/companies/table.php index a7a4604912..2f86126ff2 100644 --- a/resources/lang/zh-HK/admin/companies/table.php +++ b/resources/lang/zh-HK/admin/companies/table.php @@ -1,9 +1,9 @@ '公司', - 'create' => '新增公司', - 'title' => '公司', - 'update' => '更新公司', - 'name' => '公司名稱', + 'companies' => 'Companies', + 'create' => 'Create Company', + 'title' => 'Company', + 'update' => 'Update Company', + 'name' => 'Company Name', 'id' => 'ID', ); diff --git a/resources/lang/zh-HK/admin/components/table.php b/resources/lang/zh-HK/admin/components/table.php index 8916991dbb..3d4fed6a7f 100644 --- a/resources/lang/zh-HK/admin/components/table.php +++ b/resources/lang/zh-HK/admin/components/table.php @@ -1,5 +1,5 @@ '組件名稱', + 'title' => 'Component Name', ); diff --git a/resources/lang/zh-HK/admin/consumables/table.php b/resources/lang/zh-HK/admin/consumables/table.php index b08ddc4471..bb76721f17 100644 --- a/resources/lang/zh-HK/admin/consumables/table.php +++ b/resources/lang/zh-HK/admin/consumables/table.php @@ -1,5 +1,5 @@ '耗材名稱', + 'title' => 'Consumable Name', ); diff --git a/resources/lang/zh-HK/admin/departments/table.php b/resources/lang/zh-HK/admin/departments/table.php index c8479f122e..76494247be 100644 --- a/resources/lang/zh-HK/admin/departments/table.php +++ b/resources/lang/zh-HK/admin/departments/table.php @@ -3,9 +3,9 @@ return array( 'id' => 'ID', - 'name' => '部門名稱', - 'manager' => '主管', - 'location' => '位置', - 'create' => '新增部門', - 'update' => '更新部門', + 'name' => 'Department Name', + 'manager' => 'Manager', + 'location' => 'Location', + 'create' => 'Create Department', + 'update' => 'Update Department', ); diff --git a/resources/lang/zh-HK/admin/depreciations/message.php b/resources/lang/zh-HK/admin/depreciations/message.php index 73ddbc409f..c20e52c13c 100644 --- a/resources/lang/zh-HK/admin/depreciations/message.php +++ b/resources/lang/zh-HK/admin/depreciations/message.php @@ -2,24 +2,24 @@ return array( - 'does_not_exist' => '折舊類別不存在', - 'assoc_users' => '至少還有一個資產與此折舊關聯,請檢查後重試。 ', + 'does_not_exist' => 'Depreciation class does not exist.', + 'assoc_users' => 'This depreciation is currently associated with one or more models and cannot be deleted. Please delete the models, and then try deleting again. ', 'create' => array( - 'error' => '新增折舊類別失敗,請重試。', - 'success' => '新增折舊類別成功。' + 'error' => 'Depreciation class was not created, please try again. :(', + 'success' => 'Depreciation class created successfully. :)' ), 'update' => array( - 'error' => '更新折舊類別失敗,請重試。', - 'success' => '更新折舊類別成功。' + 'error' => 'Depreciation class was not updated, please try again', + 'success' => 'Depreciation class updated successfully.' ), 'delete' => array( - 'confirm' => '您確定要刪除此折舊類別嗎?', - 'error' => '刪除折舊類別時發生問題。請再試一次。', - 'success' => '刪除折舊類別成功。' + 'confirm' => 'Are you sure you wish to delete this depreciation class?', + 'error' => 'There was an issue deleting the depreciation class. Please try again.', + 'success' => 'The depreciation class was deleted successfully.' ) ); diff --git a/resources/lang/zh-HK/admin/groups/table.php b/resources/lang/zh-HK/admin/groups/table.php index c89b24b672..61f060a116 100644 --- a/resources/lang/zh-HK/admin/groups/table.php +++ b/resources/lang/zh-HK/admin/groups/table.php @@ -2,8 +2,8 @@ return array( - 'id' => 'ID', - 'name' => '名稱', - 'users' => '成員數', + 'id' => 'Id', + 'name' => 'Name', + 'users' => '# of Users', ); diff --git a/resources/lang/zh-HK/admin/licenses/form.php b/resources/lang/zh-HK/admin/licenses/form.php index ce61cf563d..ce29167874 100644 --- a/resources/lang/zh-HK/admin/licenses/form.php +++ b/resources/lang/zh-HK/admin/licenses/form.php @@ -2,21 +2,21 @@ return array( - 'asset' => '資產', - 'checkin' => '繳回', - 'create' => '新增授權', - 'expiration' => '到期日期', - 'license_key' => '產品序號', - 'maintained' => '保持', - 'name' => '軟體名稱', - 'no_depreciation' => '永久', - 'purchase_order' => '採購單號', - 'reassignable' => '可重新授權', - 'remaining_seats' => '剩餘數量', - 'seats' => '數量', - 'termination_date' => '終止日期', - 'to_email' => '授權信箱', - 'to_name' => '授權給', - 'update' => '更新授權', - 'checkout_help' => '請檢查這個授權是否已經分配給某個人或某個設備。你可以複選,但資產歸屬人必須是相同的。' + 'asset' => 'Asset', + 'checkin' => 'Checkin', + 'create' => 'Create License', + 'expiration' => 'Expiration Date', + 'license_key' => 'Product Key', + 'maintained' => 'Maintained', + 'name' => 'Software Name', + 'no_depreciation' => 'Do Not Depreciate', + 'purchase_order' => 'Purchase Order Number', + 'reassignable' => 'Reassignable', + 'remaining_seats' => 'Remaining Seats', + 'seats' => 'Seats', + 'termination_date' => 'Termination Date', + 'to_email' => 'Licensed to Email', + 'to_name' => 'Licensed to Name', + 'update' => 'Update License', + 'checkout_help' => 'You must check a license out to a hardware asset or a person. You can select both, but the owner of the asset must match the person you\'re checking the asset out to.' ); diff --git a/resources/lang/zh-HK/admin/licenses/table.php b/resources/lang/zh-HK/admin/licenses/table.php index 99dabc61ee..dfce4136cb 100644 --- a/resources/lang/zh-HK/admin/licenses/table.php +++ b/resources/lang/zh-HK/admin/licenses/table.php @@ -2,16 +2,16 @@ return array( - 'assigned_to' => '分配給', - 'checkout' => '進/出', + 'assigned_to' => 'Assigned To', + 'checkout' => 'In/Out', 'id' => 'ID', - 'license_email' => '授權信箱', - 'license_name' => '授權給', - 'purchase_date' => '採購日期', - 'purchased' => '已採購', - 'seats' => '數量', - 'hardware' => '硬體', - 'serial' => '序號', - 'title' => '授權', + 'license_email' => 'License Email', + 'license_name' => 'Licensed To', + 'purchase_date' => 'Purchase Date', + 'purchased' => 'Purchased', + 'seats' => 'Seats', + 'hardware' => 'Hardware', + 'serial' => 'Serial', + 'title' => 'License', ); diff --git a/resources/lang/zh-HK/admin/models/table.php b/resources/lang/zh-HK/admin/models/table.php index 11b0300a26..11a512b3d3 100644 --- a/resources/lang/zh-HK/admin/models/table.php +++ b/resources/lang/zh-HK/admin/models/table.php @@ -2,16 +2,16 @@ return array( - 'create' => '新增資產樣板', - 'created_at' => '新增於', + 'create' => 'Create Asset Model', + 'created_at' => 'Created at', 'eol' => 'EOL', - 'modelnumber' => '型號', - 'name' => '資產樣板名稱', - 'numassets' => '資產', - 'title' => '資產樣板', - 'update' => '更新資產樣板', - 'view' => '檢視資產樣板', - 'update' => '更新資產樣板', - 'clone' => '複製樣板', - 'edit' => '編輯樣板', + 'modelnumber' => 'Model No.', + 'name' => 'Asset Model Name', + 'numassets' => 'Assets', + 'title' => 'Asset Models', + 'update' => 'Update Asset Model', + 'view' => 'View Asset Model', + 'update' => 'Update Asset Model', + 'clone' => 'Clone Model', + 'edit' => 'Edit Model', ); diff --git a/resources/lang/zh-HK/admin/reports/message.php b/resources/lang/zh-HK/admin/reports/message.php index 4c7eedb612..d4c8f8198f 100644 --- a/resources/lang/zh-HK/admin/reports/message.php +++ b/resources/lang/zh-HK/admin/reports/message.php @@ -1,5 +1,5 @@ '您至少要選擇一個選項。' + 'error' => 'You must select at least ONE option.' ); diff --git a/resources/lang/zh-HK/admin/settings/general.php b/resources/lang/zh-HK/admin/settings/general.php index 64d0aef53e..c8d6306036 100644 --- a/resources/lang/zh-HK/admin/settings/general.php +++ b/resources/lang/zh-HK/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'This is an Active Directory server', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', diff --git a/resources/lang/zh-HK/admin/statuslabels/message.php b/resources/lang/zh-HK/admin/statuslabels/message.php index fe9adbf928..b1b4034d0d 100644 --- a/resources/lang/zh-HK/admin/statuslabels/message.php +++ b/resources/lang/zh-HK/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Status Label does not exist.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ', 'create' => [ diff --git a/resources/lang/zh-HK/admin/statuslabels/table.php b/resources/lang/zh-HK/admin/statuslabels/table.php index 591a25a544..27befb5ef7 100644 --- a/resources/lang/zh-HK/admin/statuslabels/table.php +++ b/resources/lang/zh-HK/admin/statuslabels/table.php @@ -1,19 +1,19 @@ '關於狀態標籤', - 'archived' => '已封存', - 'create' => '新增狀態標籤', - 'color' => '圖標顏色', - 'default_label' => '預設標籤', - 'default_label_help' => '這用於確保在創建/編輯資產時, 最常用的狀態標籤出現在 "選擇" 框的頂部。', - 'deployable' => '可部署', - 'info' => '狀態標籤用於描述資產的各種狀態(例如送外維修、遺失、被竊)。你可以為處於可部署、待處理或已封存的資產新增新的狀態標籤。', - 'name' => '狀態名稱', - 'pending' => '待處理', - 'status_type' => '狀態類型', - 'show_in_nav' => '在側邊導航欄中顯示', - 'title' => '狀態標籤', - 'undeployable' => '無法部署', - 'update' => '更新狀態標籤', + 'about' => 'About Status Labels', + 'archived' => 'Archived', + 'create' => 'Create Status Label', + 'color' => 'Chart Color', + 'default_label' => 'Default Label', + 'default_label_help' => 'This is used to ensure your most commonly used status labels appear at the top of the select box when creating/editing assets.', + 'deployable' => 'Deployable', + 'info' => 'Status labels are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for deployable, pending and archived assets.', + 'name' => 'Status Name', + 'pending' => 'Pending', + 'status_type' => 'Status Type', + 'show_in_nav' => 'Show in side nav', + 'title' => 'Status Labels', + 'undeployable' => 'Undeployable', + 'update' => 'Update Status Label', ); diff --git a/resources/lang/zh-HK/admin/suppliers/table.php b/resources/lang/zh-HK/admin/suppliers/table.php index 3dbb05aee6..2a7b07ca93 100644 --- a/resources/lang/zh-HK/admin/suppliers/table.php +++ b/resources/lang/zh-HK/admin/suppliers/table.php @@ -1,27 +1,27 @@ '關於供應商', - 'about_suppliers_text' => '供應商用來追踪物品的來源', - 'address' => '供應商地址', - 'assets' => '資產', - 'city' => '城市', - 'contact' => '連絡人姓名', - 'country' => '國家', - 'create' => '新增供應商', + 'about_suppliers_title' => 'About Suppliers', + 'about_suppliers_text' => 'Suppliers are used to track the source of items', + 'address' => 'Supplier Address', + 'assets' => 'Assets', + 'city' => 'City', + 'contact' => 'Contact Name', + 'country' => 'Country', + 'create' => 'Create Supplier', 'email' => 'Email', - 'fax' => '傳真', + 'fax' => 'Fax', 'id' => 'ID', - 'licenses' => '授權', - 'name' => '供應商名稱', - 'notes' => '備註', - 'phone' => '電話', - 'state' => '省份', - 'suppliers' => '供應商', - 'update' => '更新供應商', + 'licenses' => 'Licenses', + 'name' => 'Supplier Name', + 'notes' => 'Notes', + 'phone' => 'Phone', + 'state' => 'State', + 'suppliers' => 'Suppliers', + 'update' => 'Update Supplier', 'url' => 'URL', - 'view' => '檢視供應商', - 'view_assets_for' => '檢視資產關於', - 'zip' => '郵遞區號', + 'view' => 'View Supplier', + 'view_assets_for' => 'View Assets for', + 'zip' => 'Postal Code', ); diff --git a/resources/lang/zh-HK/admin/users/table.php b/resources/lang/zh-HK/admin/users/table.php index 21e2154280..b8b919bf28 100644 --- a/resources/lang/zh-HK/admin/users/table.php +++ b/resources/lang/zh-HK/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Manager', 'managed_locations' => 'Managed Locations', 'name' => 'Name', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Notes', 'password_confirm' => 'Confirm Password', 'password' => 'Password', diff --git a/resources/lang/zh-HK/button.php b/resources/lang/zh-HK/button.php index 22821b8157..5037d00640 100644 --- a/resources/lang/zh-HK/button.php +++ b/resources/lang/zh-HK/button.php @@ -1,7 +1,7 @@ 'Actions', + 'actions' => '操作', 'add' => 'Add New', 'cancel' => 'Cancel', 'checkin_and_delete' => 'Checkin All / Delete User', diff --git a/resources/lang/zh-HK/general.php b/resources/lang/zh-HK/general.php index a568e00436..9534d15cf6 100644 --- a/resources/lang/zh-HK/general.php +++ b/resources/lang/zh-HK/general.php @@ -6,7 +6,7 @@ return [ 'accepted_date' => 'Date Accepted', 'accessory' => 'Accessory', 'accessory_report' => 'Accessory Report', - 'action' => 'Action', + 'action' => '操作', 'activity_report' => 'Activity Report', 'address' => 'Address', 'admin' => 'Admin', @@ -156,13 +156,14 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the
sample CSVs in the documentation.', 'import-history' => 'Import History', 'asset_maintenance' => 'Asset Maintenance', 'asset_maintenance_report' => 'Asset Maintenance Report', 'asset_maintenances' => 'Asset Maintenances', - 'item' => 'Item', + 'item' => '項目', 'item_name' => 'Item Name', 'import_file' => 'import CSV file', 'import_type' => 'CSV import type', @@ -491,5 +492,12 @@ return [ 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'edit', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/zh-HK/localizations.php b/resources/lang/zh-HK/localizations.php index f735573c2e..d10e23c1bc 100644 --- a/resources/lang/zh-HK/localizations.php +++ b/resources/lang/zh-HK/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> 'Irish', 'it'=> 'Italian', 'ja'=> 'Japanese', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> 'Korean', 'lv'=>'Latvian', 'lt'=> 'Lithuanian', diff --git a/resources/lang/zh-HK/mail.php b/resources/lang/zh-HK/mail.php index 7dd8d6181c..295d4f43a1 100644 --- a/resources/lang/zh-HK/mail.php +++ b/resources/lang/zh-HK/mail.php @@ -36,7 +36,7 @@ return [ 'hello' => 'Hello', 'hi' => 'Hi', 'i_have_read' => 'I have read and agree to the terms of use, and have received this item.', - 'item' => 'Item:', + 'item' => '項目:', 'Item_Request_Canceled' => 'Item Request Canceled', 'Item_Requested' => 'Item Requested', 'link_to_update_password' => 'Please click on the following link to update your :web password:', diff --git a/resources/lang/zh-HK/reminders.php b/resources/lang/zh-HK/reminders.php index 8a197467df..f0719dabd5 100644 --- a/resources/lang/zh-HK/reminders.php +++ b/resources/lang/zh-HK/reminders.php @@ -13,8 +13,8 @@ return array( | */ - "password" => "Passwords must be six characters and match the confirmation.", - "user" => "Username or email address is incorrect", + "password" => "密碼至少需要六個字符,並且與確認欄位相符", + "user" => "使用者名稱或電子郵件地址不正確", "token" => 'This password reset token is invalid or expired, or does not match the username provided.', 'sent' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.', diff --git a/resources/lang/zh-HK/validation.php b/resources/lang/zh-HK/validation.php index 57e354f072..247cfc47d7 100644 --- a/resources/lang/zh-HK/validation.php +++ b/resources/lang/zh-HK/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => 'The :attribute must be unique.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/zh-TW/admin/labels/table.php b/resources/lang/zh-TW/admin/labels/table.php index 87dee4bad0..eda74e8299 100644 --- a/resources/lang/zh-TW/admin/labels/table.php +++ b/resources/lang/zh-TW/admin/labels/table.php @@ -2,12 +2,12 @@ return [ - 'labels_per_page' => 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', + 'labels_per_page' => '標籤', + 'support_fields' => '欄位', + 'support_asset_tag' => '標籤', 'support_1d_barcode' => '1D', 'support_2d_barcode' => '2D', 'support_logo' => 'Logo', - 'support_title' => 'Title', + 'support_title' => '職稱', ]; \ No newline at end of file diff --git a/resources/lang/zh-TW/admin/locations/table.php b/resources/lang/zh-TW/admin/locations/table.php index 74e4605361..daf3039573 100644 --- a/resources/lang/zh-TW/admin/locations/table.php +++ b/resources/lang/zh-TW/admin/locations/table.php @@ -15,7 +15,7 @@ return [ 'print_all_assigned' => '列印所有已分配的', 'name' => '位置名稱', 'address' => '地址', - 'address2' => 'Address Line 2', + 'address2' => '地址第二行', 'zip' => '郵遞區號', 'locations' => '位置', 'parent' => '父項目', diff --git a/resources/lang/zh-TW/admin/settings/general.php b/resources/lang/zh-TW/admin/settings/general.php index d6cc1df9ab..1c782b2642 100644 --- a/resources/lang/zh-TW/admin/settings/general.php +++ b/resources/lang/zh-TW/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => '使用者不需要輸入 "username@domain.local",他們只需要輸入 "username"。', 'admin_cc_email' => '電子郵件副本', 'admin_cc_email_help' => '如果您想將發送給用戶的繳回/借出電子郵件的副本發送到其他電子郵件帳戶,請在此處輸入。否則,請將此字段留空。', + 'admin_settings' => 'Admin Settings', 'is_ad' => '這是AD域伺服器', 'alerts' => '警告', 'alert_title' => '更新通知設定', @@ -342,7 +343,7 @@ return [ 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => '二維條碼類型', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/zh-TW/admin/statuslabels/message.php b/resources/lang/zh-TW/admin/statuslabels/message.php index 93db3f3ac1..1faa041ad5 100644 --- a/resources/lang/zh-TW/admin/statuslabels/message.php +++ b/resources/lang/zh-TW/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => '狀態標籤不存在', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => '至少還有一個資產與此狀態標籤關聯,目前不能被删除,請確認後重試。 ', 'create' => [ diff --git a/resources/lang/zh-TW/admin/users/table.php b/resources/lang/zh-TW/admin/users/table.php index ab7fa18375..bdf7cbf2c3 100644 --- a/resources/lang/zh-TW/admin/users/table.php +++ b/resources/lang/zh-TW/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => '主管', 'managed_locations' => '管理位置', 'name' => '名字', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => '備註', 'password_confirm' => '確認密碼', 'password' => '密碼', diff --git a/resources/lang/zh-TW/general.php b/resources/lang/zh-TW/general.php index 9a5559bb8e..3cc2c49fe6 100644 --- a/resources/lang/zh-TW/general.php +++ b/resources/lang/zh-TW/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => '接受的檔案類型有 jpg、webp, png、gif 和 svg。允許的最大上傳大小為 :size。', 'unaccepted_image_type' => '此影像無法被讀取。可接受的檔案格式為 jpg, webp, png, gif 以及 svg。此影像的 mimetype 為 :mimetype。', 'import' => '匯入', + 'import_this_file' => 'Map fields and process this file', 'importing' => '匯入中', 'importing_help' => '您可透過 CSV 格式檔案匯入資產、授權、配件、耗材以及使用者。

CSV檔案必須以逗號分格,並依照說明文件中的CSV範例保留首部及格式。', 'import-history' => '匯入歷史記錄', @@ -270,7 +271,7 @@ return [ 'supplier' => '供應商', 'suppliers' => '供應商', 'sure_to_delete' => '您確定要刪除嗎?', - 'sure_to_delete_var' => 'Are you sure you wish to delete :item?', + 'sure_to_delete_var' => '您確定要刪除 :item 嗎?', 'delete_what' => 'Delete :item', 'submit' => '送出', 'target' => '目標', @@ -371,12 +372,12 @@ return [ 'consumables_count' => '耗材數量', 'components_count' => '組件數量', 'licenses_count' => '授權數量', - 'notification_error' => 'Error', + 'notification_error' => '錯誤', 'notification_error_hint' => '請檢查以下表格是否有錯誤', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', - 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_success' => '成功', + 'notification_warning' => '警告', + 'notification_info' => '資訊', 'asset_information' => '資產資訊', 'model_name' => '型號名稱', 'asset_name' => '資產名稱', @@ -486,10 +487,17 @@ return [ 'address2' => '地址第二行', 'import_note' => '使用 csv 匯入器匯入', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% 完成', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => '編輯', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/zh-TW/localizations.php b/resources/lang/zh-TW/localizations.php index 7e61dd7a3b..aecf9e86a4 100644 --- a/resources/lang/zh-TW/localizations.php +++ b/resources/lang/zh-TW/localizations.php @@ -30,7 +30,7 @@ return [ 'ga-IE'=> '愛爾蘭語', 'it'=> '義大利語', 'ja'=> '日語', - 'km' => 'Khmer', + 'km-KH'=>'Khmer', 'ko'=> '韓語', 'lv'=>'拉脫維亞語', 'lt'=> '立陶宛語', diff --git a/resources/lang/zh-TW/validation.php b/resources/lang/zh-TW/validation.php index 8e5cefbf3c..3d970bd89c 100644 --- a/resources/lang/zh-TW/validation.php +++ b/resources/lang/zh-TW/validation.php @@ -97,7 +97,6 @@ return [ 'unique_undeleted' => ':attribute 必須是唯一值', 'non_circular' => ':attribule 屬性不能建立一個循環參考', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => '密碼不可以和使用者名稱相同', 'letters' => '密碼至少必須包含 1 個字母。', 'numbers' => '密碼至少必須包含 1 個數字。', diff --git a/resources/lang/tl/account/general.php b/resources/lang/zu-ZA/account/general.php similarity index 100% rename from resources/lang/tl/account/general.php rename to resources/lang/zu-ZA/account/general.php diff --git a/resources/lang/zu/admin/accessories/general.php b/resources/lang/zu-ZA/admin/accessories/general.php similarity index 100% rename from resources/lang/zu/admin/accessories/general.php rename to resources/lang/zu-ZA/admin/accessories/general.php diff --git a/resources/lang/zu/admin/accessories/message.php b/resources/lang/zu-ZA/admin/accessories/message.php similarity index 100% rename from resources/lang/zu/admin/accessories/message.php rename to resources/lang/zu-ZA/admin/accessories/message.php diff --git a/resources/lang/zu/admin/accessories/table.php b/resources/lang/zu-ZA/admin/accessories/table.php similarity index 100% rename from resources/lang/zu/admin/accessories/table.php rename to resources/lang/zu-ZA/admin/accessories/table.php diff --git a/resources/lang/zu/admin/asset_maintenances/form.php b/resources/lang/zu-ZA/admin/asset_maintenances/form.php similarity index 100% rename from resources/lang/zu/admin/asset_maintenances/form.php rename to resources/lang/zu-ZA/admin/asset_maintenances/form.php diff --git a/resources/lang/zu/admin/asset_maintenances/general.php b/resources/lang/zu-ZA/admin/asset_maintenances/general.php similarity index 100% rename from resources/lang/zu/admin/asset_maintenances/general.php rename to resources/lang/zu-ZA/admin/asset_maintenances/general.php diff --git a/resources/lang/zu/admin/asset_maintenances/message.php b/resources/lang/zu-ZA/admin/asset_maintenances/message.php similarity index 100% rename from resources/lang/zu/admin/asset_maintenances/message.php rename to resources/lang/zu-ZA/admin/asset_maintenances/message.php diff --git a/resources/lang/zu/admin/asset_maintenances/table.php b/resources/lang/zu-ZA/admin/asset_maintenances/table.php similarity index 100% rename from resources/lang/zu/admin/asset_maintenances/table.php rename to resources/lang/zu-ZA/admin/asset_maintenances/table.php diff --git a/resources/lang/zu/admin/categories/general.php b/resources/lang/zu-ZA/admin/categories/general.php similarity index 100% rename from resources/lang/zu/admin/categories/general.php rename to resources/lang/zu-ZA/admin/categories/general.php diff --git a/resources/lang/zu/admin/categories/message.php b/resources/lang/zu-ZA/admin/categories/message.php similarity index 100% rename from resources/lang/zu/admin/categories/message.php rename to resources/lang/zu-ZA/admin/categories/message.php diff --git a/resources/lang/zu/admin/categories/table.php b/resources/lang/zu-ZA/admin/categories/table.php similarity index 100% rename from resources/lang/zu/admin/categories/table.php rename to resources/lang/zu-ZA/admin/categories/table.php diff --git a/resources/lang/zu/admin/companies/general.php b/resources/lang/zu-ZA/admin/companies/general.php similarity index 86% rename from resources/lang/zu/admin/companies/general.php rename to resources/lang/zu-ZA/admin/companies/general.php index e544869ec6..35d25b139a 100644 --- a/resources/lang/zu/admin/companies/general.php +++ b/resources/lang/zu-ZA/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Khetha inkampani', - 'about_companies' => 'About Companies', + 'about_companies' => 'Mayelana nezinkampani', 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', ]; diff --git a/resources/lang/zu/admin/companies/message.php b/resources/lang/zu-ZA/admin/companies/message.php similarity index 100% rename from resources/lang/zu/admin/companies/message.php rename to resources/lang/zu-ZA/admin/companies/message.php diff --git a/resources/lang/zu/admin/companies/table.php b/resources/lang/zu-ZA/admin/companies/table.php similarity index 100% rename from resources/lang/zu/admin/companies/table.php rename to resources/lang/zu-ZA/admin/companies/table.php diff --git a/resources/lang/zu/admin/components/general.php b/resources/lang/zu-ZA/admin/components/general.php similarity index 100% rename from resources/lang/zu/admin/components/general.php rename to resources/lang/zu-ZA/admin/components/general.php diff --git a/resources/lang/zu/admin/components/message.php b/resources/lang/zu-ZA/admin/components/message.php similarity index 100% rename from resources/lang/zu/admin/components/message.php rename to resources/lang/zu-ZA/admin/components/message.php diff --git a/resources/lang/zu/admin/components/table.php b/resources/lang/zu-ZA/admin/components/table.php similarity index 100% rename from resources/lang/zu/admin/components/table.php rename to resources/lang/zu-ZA/admin/components/table.php diff --git a/resources/lang/zu/admin/consumables/general.php b/resources/lang/zu-ZA/admin/consumables/general.php similarity index 100% rename from resources/lang/zu/admin/consumables/general.php rename to resources/lang/zu-ZA/admin/consumables/general.php diff --git a/resources/lang/zu/admin/consumables/message.php b/resources/lang/zu-ZA/admin/consumables/message.php similarity index 100% rename from resources/lang/zu/admin/consumables/message.php rename to resources/lang/zu-ZA/admin/consumables/message.php diff --git a/resources/lang/zu/admin/consumables/table.php b/resources/lang/zu-ZA/admin/consumables/table.php similarity index 100% rename from resources/lang/zu/admin/consumables/table.php rename to resources/lang/zu-ZA/admin/consumables/table.php diff --git a/resources/lang/zu/admin/custom_fields/general.php b/resources/lang/zu-ZA/admin/custom_fields/general.php similarity index 100% rename from resources/lang/zu/admin/custom_fields/general.php rename to resources/lang/zu-ZA/admin/custom_fields/general.php diff --git a/resources/lang/zu/admin/custom_fields/message.php b/resources/lang/zu-ZA/admin/custom_fields/message.php similarity index 100% rename from resources/lang/zu/admin/custom_fields/message.php rename to resources/lang/zu-ZA/admin/custom_fields/message.php diff --git a/resources/lang/zu/admin/departments/message.php b/resources/lang/zu-ZA/admin/departments/message.php similarity index 100% rename from resources/lang/zu/admin/departments/message.php rename to resources/lang/zu-ZA/admin/departments/message.php diff --git a/resources/lang/zu/admin/departments/table.php b/resources/lang/zu-ZA/admin/departments/table.php similarity index 100% rename from resources/lang/zu/admin/departments/table.php rename to resources/lang/zu-ZA/admin/departments/table.php diff --git a/resources/lang/zu/admin/depreciations/general.php b/resources/lang/zu-ZA/admin/depreciations/general.php similarity index 100% rename from resources/lang/zu/admin/depreciations/general.php rename to resources/lang/zu-ZA/admin/depreciations/general.php diff --git a/resources/lang/zu/admin/depreciations/message.php b/resources/lang/zu-ZA/admin/depreciations/message.php similarity index 100% rename from resources/lang/zu/admin/depreciations/message.php rename to resources/lang/zu-ZA/admin/depreciations/message.php diff --git a/resources/lang/zu/admin/depreciations/table.php b/resources/lang/zu-ZA/admin/depreciations/table.php similarity index 100% rename from resources/lang/zu/admin/depreciations/table.php rename to resources/lang/zu-ZA/admin/depreciations/table.php diff --git a/resources/lang/zu/admin/groups/message.php b/resources/lang/zu-ZA/admin/groups/message.php similarity index 100% rename from resources/lang/zu/admin/groups/message.php rename to resources/lang/zu-ZA/admin/groups/message.php diff --git a/resources/lang/zu/admin/groups/table.php b/resources/lang/zu-ZA/admin/groups/table.php similarity index 100% rename from resources/lang/zu/admin/groups/table.php rename to resources/lang/zu-ZA/admin/groups/table.php diff --git a/resources/lang/zu/admin/groups/titles.php b/resources/lang/zu-ZA/admin/groups/titles.php similarity index 100% rename from resources/lang/zu/admin/groups/titles.php rename to resources/lang/zu-ZA/admin/groups/titles.php diff --git a/resources/lang/zu/admin/hardware/form.php b/resources/lang/zu-ZA/admin/hardware/form.php similarity index 100% rename from resources/lang/zu/admin/hardware/form.php rename to resources/lang/zu-ZA/admin/hardware/form.php diff --git a/resources/lang/zu/admin/hardware/general.php b/resources/lang/zu-ZA/admin/hardware/general.php similarity index 100% rename from resources/lang/zu/admin/hardware/general.php rename to resources/lang/zu-ZA/admin/hardware/general.php diff --git a/resources/lang/zu/admin/hardware/message.php b/resources/lang/zu-ZA/admin/hardware/message.php similarity index 98% rename from resources/lang/zu/admin/hardware/message.php rename to resources/lang/zu-ZA/admin/hardware/message.php index 93babd8d3e..a622d95074 100644 --- a/resources/lang/zu/admin/hardware/message.php +++ b/resources/lang/zu-ZA/admin/hardware/message.php @@ -23,7 +23,7 @@ return [ 'restore' => [ 'error' => 'Ifa alizange libuyiselwe, sicela uzame futhi', 'success' => 'Ifa libuyiselwe ngempumelelo.', - 'bulk_success' => 'Asset restored successfully.', + 'bulk_success' => 'Ifa libuyiselwe ngempumelelo.', 'nothing_updated' => 'No assets were selected, so nothing was restored.', ], diff --git a/resources/lang/zu/admin/hardware/table.php b/resources/lang/zu-ZA/admin/hardware/table.php similarity index 96% rename from resources/lang/zu/admin/hardware/table.php rename to resources/lang/zu-ZA/admin/hardware/table.php index 34d86208b3..ade64759b9 100644 --- a/resources/lang/zu/admin/hardware/table.php +++ b/resources/lang/zu-ZA/admin/hardware/table.php @@ -24,7 +24,7 @@ return [ 'image' => 'Isithombe sedivayisi', 'days_without_acceptance' => 'Izinsuku Ngaphandle Kwemukelwa', 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Kwabiwa Ku', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/zu-ZA/admin/kits/general.php b/resources/lang/zu-ZA/admin/kits/general.php new file mode 100644 index 0000000000..7df0a709a6 --- /dev/null +++ b/resources/lang/zu-ZA/admin/kits/general.php @@ -0,0 +1,50 @@ + 'About Predefined Kits', + 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', + 'checkout' => 'Checkout Kit ', + 'create_success' => 'Kit was successfully created.', + 'create' => 'Create Predefined Kit', + 'update' => 'Update Predefined Kit', + 'delete_success' => 'Kit was successfully deleted.', + 'update_success' => 'Kit was successfully updated.', + 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', + 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', + 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', + 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', + 'append_accessory' => 'Append Accessory', + 'update_appended_accessory' => 'Update appended Accessory', + 'append_consumable' => 'Append Consumable', + 'update_appended_consumable' => 'Update appended Consumable', + 'append_license' => 'Append license', + 'update_appended_license' => 'Update appended license', + 'append_model' => 'Append model', + 'update_appended_model' => 'Update appended model', + 'license_error' => 'License already attached to kit', + 'license_added_success' => 'License added successfully', + 'license_updated' => 'License was successfully updated', + 'license_none' => 'Ilayisense ayikho', + 'license_detached' => 'License was successfully detached', + 'consumable_added_success' => 'Consumable added successfully', + 'consumable_updated' => 'Consumable was successfully updated', + 'consumable_error' => 'Consumable already attached to kit', + 'consumable_deleted' => 'Delete was successful', + 'consumable_none' => 'Ukuthengwa akukho', + 'consumable_detached' => 'Consumable was successfully detached', + 'accessory_added_success' => 'Accessory added successfully', + 'accessory_updated' => 'Accessory was successfully updated', + 'accessory_detached' => 'Accessory was successfully detached', + 'accessory_error' => 'Accessory already attached to kit', + 'accessory_deleted' => 'Delete was successful', + 'accessory_none' => 'Accessory does not exist', + 'checkout_success' => 'Checkout was successful', + 'checkout_error' => 'Checkout error', + 'kit_none' => 'Kit does not exist', + 'kit_created' => 'Kit was successfully created', + 'kit_updated' => 'Kit was successfully updated', + 'kit_not_found' => 'Kit not found', + 'kit_deleted' => 'Kit was successfully deleted', + 'kit_model_updated' => 'Model was successfully updated', + 'kit_model_detached' => 'Model was successfully detached', +]; diff --git a/resources/lang/uk/admin/labels/message.php b/resources/lang/zu-ZA/admin/labels/message.php similarity index 100% rename from resources/lang/uk/admin/labels/message.php rename to resources/lang/zu-ZA/admin/labels/message.php diff --git a/resources/lang/zu-ZA/admin/labels/table.php b/resources/lang/zu-ZA/admin/labels/table.php new file mode 100644 index 0000000000..dda9fe05fb --- /dev/null +++ b/resources/lang/zu-ZA/admin/labels/table.php @@ -0,0 +1,13 @@ + 'Labels', + 'support_fields' => 'Fields', + 'support_asset_tag' => 'Maka', + 'support_1d_barcode' => '1D', + 'support_2d_barcode' => '2D', + 'support_logo' => 'Ilogo', + 'support_title' => 'Isihloko', + +]; \ No newline at end of file diff --git a/resources/lang/zu/admin/licenses/form.php b/resources/lang/zu-ZA/admin/licenses/form.php similarity index 100% rename from resources/lang/zu/admin/licenses/form.php rename to resources/lang/zu-ZA/admin/licenses/form.php diff --git a/resources/lang/zu/admin/licenses/general.php b/resources/lang/zu-ZA/admin/licenses/general.php similarity index 100% rename from resources/lang/zu/admin/licenses/general.php rename to resources/lang/zu-ZA/admin/licenses/general.php diff --git a/resources/lang/zu/admin/licenses/message.php b/resources/lang/zu-ZA/admin/licenses/message.php similarity index 100% rename from resources/lang/zu/admin/licenses/message.php rename to resources/lang/zu-ZA/admin/licenses/message.php diff --git a/resources/lang/zu/admin/licenses/table.php b/resources/lang/zu-ZA/admin/licenses/table.php similarity index 100% rename from resources/lang/zu/admin/licenses/table.php rename to resources/lang/zu-ZA/admin/licenses/table.php diff --git a/resources/lang/zu/admin/locations/message.php b/resources/lang/zu-ZA/admin/locations/message.php similarity index 100% rename from resources/lang/zu/admin/locations/message.php rename to resources/lang/zu-ZA/admin/locations/message.php diff --git a/resources/lang/zu/admin/locations/table.php b/resources/lang/zu-ZA/admin/locations/table.php similarity index 79% rename from resources/lang/zu/admin/locations/table.php rename to resources/lang/zu-ZA/admin/locations/table.php index 4a877dbbad..eeeaedaae5 100644 --- a/resources/lang/zu/admin/locations/table.php +++ b/resources/lang/zu-ZA/admin/locations/table.php @@ -22,18 +22,18 @@ return [ 'currency' => 'Imali Yendawo', 'ldap_ou' => 'Usesho lwe-LDAP OU', 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', + 'department' => 'UMnyango', + 'location' => 'Indawo', 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', + 'asset_name' => 'Igama', + 'asset_category' => 'Isigaba', + 'asset_manufacturer' => 'Umkhiqizi', + 'asset_model' => 'Isibonelo', 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_location' => 'Indawo', + 'asset_checked_out' => 'Ikhishiwe', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Usuku:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/zu/admin/manufacturers/message.php b/resources/lang/zu-ZA/admin/manufacturers/message.php similarity index 100% rename from resources/lang/zu/admin/manufacturers/message.php rename to resources/lang/zu-ZA/admin/manufacturers/message.php diff --git a/resources/lang/zu/admin/manufacturers/table.php b/resources/lang/zu-ZA/admin/manufacturers/table.php similarity index 100% rename from resources/lang/zu/admin/manufacturers/table.php rename to resources/lang/zu-ZA/admin/manufacturers/table.php diff --git a/resources/lang/zu/admin/models/general.php b/resources/lang/zu-ZA/admin/models/general.php similarity index 100% rename from resources/lang/zu/admin/models/general.php rename to resources/lang/zu-ZA/admin/models/general.php diff --git a/resources/lang/zu/admin/models/message.php b/resources/lang/zu-ZA/admin/models/message.php similarity index 100% rename from resources/lang/zu/admin/models/message.php rename to resources/lang/zu-ZA/admin/models/message.php diff --git a/resources/lang/zu/admin/models/table.php b/resources/lang/zu-ZA/admin/models/table.php similarity index 100% rename from resources/lang/zu/admin/models/table.php rename to resources/lang/zu-ZA/admin/models/table.php diff --git a/resources/lang/zu/admin/reports/general.php b/resources/lang/zu-ZA/admin/reports/general.php similarity index 100% rename from resources/lang/zu/admin/reports/general.php rename to resources/lang/zu-ZA/admin/reports/general.php diff --git a/resources/lang/zu/admin/reports/message.php b/resources/lang/zu-ZA/admin/reports/message.php similarity index 100% rename from resources/lang/zu/admin/reports/message.php rename to resources/lang/zu-ZA/admin/reports/message.php diff --git a/resources/lang/zu/admin/settings/general.php b/resources/lang/zu-ZA/admin/settings/general.php similarity index 99% rename from resources/lang/zu/admin/settings/general.php rename to resources/lang/zu-ZA/admin/settings/general.php index 1d79294727..6191ccc4c9 100644 --- a/resources/lang/zu/admin/settings/general.php +++ b/resources/lang/zu-ZA/admin/settings/general.php @@ -9,6 +9,7 @@ return [ 'ad_append_domain_help' => 'User isn\'t required to write "username@domain.local", they can just type "username".', 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'If you would like to send a copy of checkin/checkout emails that are sent to users to an additional email account, enter it here. Otherwise leave this field blank.', + 'admin_settings' => 'Admin Settings', 'is_ad' => 'Lena iseva ye-Active Directory', 'alerts' => 'Alerts', 'alert_title' => 'Update Notification Settings', @@ -162,7 +163,7 @@ return [ 'pwd_secure_complexity_symbols' => 'Require at least one symbol', 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', 'pwd_secure_min' => 'Izinhlamvu ezincane zephasiwedi', - 'pwd_secure_min_help' => 'Minimum permitted value is 8', + 'pwd_secure_min_help' => 'Inani elincane elivumelekile lingu-8', 'pwd_secure_uncommon' => 'Vimbela amaphasiwedi avamile', 'pwd_secure_uncommon_help' => 'Lokhu ngeke kuvumele abasebenzisi ukuthi basebenzise amaphasiwedi avamile kusuka amaphasiwedi aphezulu angama-10,000 abikwa ngokuphulwa.', 'qr_help' => 'Vumela Amakhodi we-QR kuqala ukusetha lokhu', @@ -316,7 +317,7 @@ return [ 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', + 'purge_help' => 'Phenya Amarekhodi Asusiwe', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', @@ -334,14 +335,14 @@ return [ 'label2_enable_help' => 'Switch to the new label engine. Note: You will need to save this setting before setting others.', 'label2_template' => 'Template', 'label2_template_help' => 'Select which template to use for label generation', - 'label2_title' => 'Title', + 'label2_title' => 'Isihloko', 'label2_title_help' => 'The title to show on labels that support it', 'label2_title_help_phold' => 'The placeholder {COMPANY} will be replaced with the asset's company name', 'label2_asset_logo' => 'Use Asset Logo', 'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at :setting_name', 'label2_1d_type' => '1D Barcode Type', 'label2_1d_type_help' => 'Format for 1D barcodes', - 'label2_2d_type' => '2D Barcode Type', + 'label2_2d_type' => 'Uhlobo lwe-Barcode ye-2D', 'label2_2d_type_help' => 'Format for 2D barcodes', 'label2_2d_target' => '2D Barcode Target', 'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned', diff --git a/resources/lang/zu/admin/settings/message.php b/resources/lang/zu-ZA/admin/settings/message.php similarity index 100% rename from resources/lang/zu/admin/settings/message.php rename to resources/lang/zu-ZA/admin/settings/message.php diff --git a/resources/lang/zu-ZA/admin/settings/table.php b/resources/lang/zu-ZA/admin/settings/table.php new file mode 100644 index 0000000000..1b2b44426a --- /dev/null +++ b/resources/lang/zu-ZA/admin/settings/table.php @@ -0,0 +1,6 @@ + 'Kudalwe', + 'size' => 'Size', +); diff --git a/resources/lang/zu/admin/statuslabels/message.php b/resources/lang/zu-ZA/admin/statuslabels/message.php similarity index 86% rename from resources/lang/zu/admin/statuslabels/message.php rename to resources/lang/zu-ZA/admin/statuslabels/message.php index 57614cc3ac..518431c933 100644 --- a/resources/lang/zu/admin/statuslabels/message.php +++ b/resources/lang/zu-ZA/admin/statuslabels/message.php @@ -3,6 +3,7 @@ return [ 'does_not_exist' => 'Ilebula Label asikho.', + 'deleted_label' => 'Deleted Status Label', 'assoc_assets' => 'Le Label Yesimo okwamanje ihlotshaniswa okungenani neAfa eyodwa futhi ayikwazi ukususwa. Sicela ubuyekeze izimpahla zakho ukuze ungasabonakali lesi simo futhi uzame futhi.', 'create' => [ @@ -23,7 +24,7 @@ return [ 'help' => [ 'undeployable' => 'Lezi zimpahla azikwazi ukwabiwa kunoma ubani.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Lezi zimpahla zingahlolwa. Uma sebebelwe, bazobheka isimo se-meta sika Ihlisiwe.', 'archived' => 'Lezi zimpahla azikwazi ukuhlolwa, futhi zizovela kuphela ku-Archived view. Lokhu kuyasiza ukugcina ulwazi mayelana nempahla yezinhloso zebhajethi / zomlando kodwa ukuwagcina ohlwini lwamafaji wosuku nosuku.', 'pending' => 'Lezi zimpahla azikwazi ukunikezwa kunoma ubani, ngokuvamile okusetshenziselwa izinto ezingaphandle kokulungisa, kodwa kulindeleke ukuthi zibuyele ekusakazweni.', ], diff --git a/resources/lang/zu/admin/statuslabels/table.php b/resources/lang/zu-ZA/admin/statuslabels/table.php similarity index 100% rename from resources/lang/zu/admin/statuslabels/table.php rename to resources/lang/zu-ZA/admin/statuslabels/table.php diff --git a/resources/lang/zu/admin/suppliers/message.php b/resources/lang/zu-ZA/admin/suppliers/message.php similarity index 100% rename from resources/lang/zu/admin/suppliers/message.php rename to resources/lang/zu-ZA/admin/suppliers/message.php diff --git a/resources/lang/zu/admin/suppliers/table.php b/resources/lang/zu-ZA/admin/suppliers/table.php similarity index 100% rename from resources/lang/zu/admin/suppliers/table.php rename to resources/lang/zu-ZA/admin/suppliers/table.php diff --git a/resources/lang/zu/admin/users/general.php b/resources/lang/zu-ZA/admin/users/general.php similarity index 97% rename from resources/lang/zu/admin/users/general.php rename to resources/lang/zu-ZA/admin/users/general.php index fab80c228c..de2090723a 100644 --- a/resources/lang/zu/admin/users/general.php +++ b/resources/lang/zu-ZA/admin/users/general.php @@ -26,8 +26,8 @@ return [ 'view_user' => 'Buka umsebenzisi: igama', 'usercsv' => 'Ifayela le-CSV', 'two_factor_admin_optin_help' => 'Izilungiselelo zakho zamanje zomlawuli zivumela ukusethwa okukhethiwe kokuqinisekiswa kwezinto ezimbili.', - 'two_factor_enrolled' => '2FA Device Enrolled ', - 'two_factor_active' => '2FA Active ', + 'two_factor_enrolled' => 'I-2FA Idivayisi ibhalisiwe', + 'two_factor_active' => 'I-2FA isebenza', 'user_deactivated' => 'User cannot login', 'user_activated' => 'User can login', 'activation_status_warning' => 'Do not change activation status', diff --git a/resources/lang/zu/admin/users/message.php b/resources/lang/zu-ZA/admin/users/message.php similarity index 98% rename from resources/lang/zu/admin/users/message.php rename to resources/lang/zu-ZA/admin/users/message.php index bb6ade18dd..c3961321fe 100644 --- a/resources/lang/zu/admin/users/message.php +++ b/resources/lang/zu-ZA/admin/users/message.php @@ -6,7 +6,7 @@ return array( 'declined' => 'Uye wenqaba ngempumelelo le mali.', 'bulk_manager_warn' => 'Abasebenzisi bakho babuyekezwe ngempumelelo, kodwa ukungena kwakho kwemenenja akulondoloziwe ngoba umphathi oyikhethile naye ohlwini lomsebenzisi oluzohlelwa, futhi abasebenzisi bangase bangabi umphathi wabo. Sicela ukhethe abasebenzisi bakho futhi, ngaphandle kwamenenja.', 'user_exists' => 'Umsebenzisi usuvele ukhona!', - 'user_not_found' => 'User does not exist.', + 'user_not_found' => 'Umsebenzisi akakho.', 'user_login_required' => 'Insimu yokungena ngemvume iyadingeka', 'user_has_no_assets_assigned' => 'No assets currently assigned to user.', 'user_password_required' => 'Iphasiwedi iyadingeka.', diff --git a/resources/lang/zu/admin/users/table.php b/resources/lang/zu-ZA/admin/users/table.php similarity index 95% rename from resources/lang/zu/admin/users/table.php rename to resources/lang/zu-ZA/admin/users/table.php index 930b3ade92..034e334a5b 100644 --- a/resources/lang/zu/admin/users/table.php +++ b/resources/lang/zu-ZA/admin/users/table.php @@ -21,6 +21,7 @@ return array( 'manager' => 'Umphathi', 'managed_locations' => 'Izindawo eziphethwe', 'name' => 'Igama', + 'nogroup' => 'No groups have been created yet. To add one, visit: ', 'notes' => 'Amanothi', 'password_confirm' => 'Qinisekisa Iphasiwedi', 'password' => 'Iphasiwedi', diff --git a/resources/lang/tl/auth.php b/resources/lang/zu-ZA/auth.php similarity index 100% rename from resources/lang/tl/auth.php rename to resources/lang/zu-ZA/auth.php diff --git a/resources/lang/zu/auth/general.php b/resources/lang/zu-ZA/auth/general.php similarity index 100% rename from resources/lang/zu/auth/general.php rename to resources/lang/zu-ZA/auth/general.php diff --git a/resources/lang/zu/auth/message.php b/resources/lang/zu-ZA/auth/message.php similarity index 96% rename from resources/lang/zu/auth/message.php rename to resources/lang/zu-ZA/auth/message.php index c4034b2f4a..360c5c2c84 100644 --- a/resources/lang/zu/auth/message.php +++ b/resources/lang/zu-ZA/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => 'Ungene ngemvume ngempumelelo.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/zu/button.php b/resources/lang/zu-ZA/button.php similarity index 87% rename from resources/lang/zu/button.php rename to resources/lang/zu-ZA/button.php index 7e122ff722..f040bfda03 100644 --- a/resources/lang/zu/button.php +++ b/resources/lang/zu-ZA/button.php @@ -15,10 +15,10 @@ return [ 'select_file' => 'Khetha Ifayela ...', 'select_files' => 'Select Files...', 'generate_labels' => '{1} Generate Label|[2,*] Generate Labels', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Thumela iphasiwedi Hlaziya kabusha isixhumanisi', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Okusha', ]; diff --git a/resources/lang/zu/general.php b/resources/lang/zu-ZA/general.php similarity index 96% rename from resources/lang/zu/general.php rename to resources/lang/zu-ZA/general.php index 8c3a9aedc2..ba76e9f57a 100644 --- a/resources/lang/zu/general.php +++ b/resources/lang/zu-ZA/general.php @@ -156,6 +156,7 @@ return [ 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Ngenisa', + 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Ngenisa Umlando', @@ -224,11 +225,11 @@ return [ 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ukulungele Ukusebenzisa', 'recent_activity' => 'Umsebenzi wakamuva', - 'remaining' => 'Remaining', + 'remaining' => 'Ukuhlala', 'remove_company' => 'Susa Inkampani Yenkampani', 'reports' => 'Imibiko', 'restored' => 'restored', - 'restore' => 'Restore', + 'restore' => 'Buyisela', 'requestable_models' => 'Requestable Models', 'requested' => 'Kuceliwe', 'requested_date' => 'Requested Date', @@ -283,7 +284,7 @@ return [ 'undeployable' => 'I-non-deployable', 'unknown_admin' => 'Isilawuli esingaziwa', 'username_format' => 'Igama lomsebenzisi Ifomethi', - 'username' => 'Username', + 'username' => 'Igama lomsebenzisi', 'update' => 'Ukubuyekeza', 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', 'uploaded' => 'Ilayishiwe', @@ -319,7 +320,7 @@ return [ 'hide_help' => 'Hide help', 'view_all' => 'view all', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => 'I-imeyili', 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', @@ -332,7 +333,7 @@ return [ 'setup_create_admin' => 'Create Admin User', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', + 'checked_out' => 'Ikhishiwe', 'checked_out_to' => 'Checked out to', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', @@ -375,15 +376,15 @@ return [ 'notification_error_hint' => 'Please check the form below for errors', 'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:', 'notification_success' => 'Success', - 'notification_warning' => 'Warning', - 'notification_info' => 'Info', + 'notification_warning' => 'Isexwayiso', + 'notification_info' => 'Ulwazi', 'asset_information' => 'Asset Information', 'model_name' => 'Model Name', - 'asset_name' => 'Asset Name', + 'asset_name' => 'Igama lefa', 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', + 'consumable_name' => 'Igama elihlekayo:', 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', + 'accessory_name' => 'Igama lokufinyelela:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', @@ -486,10 +487,17 @@ return [ 'address2' => 'Address Line 2', 'import_note' => 'Imported using csv importer', ], - 'percent_complete' => '% complete', + 'percent_complete' => '% qedela', 'uploading' => 'Uploading... ', 'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.', 'copy_to_clipboard' => 'Copy to Clipboard', 'copied' => 'Copied!', + 'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.', + 'rtd_location_help' => 'This is the location of the asset when it is not checked out', + 'item_not_found' => ':item_type ID :id does not exist or has been deleted', + 'action_permission_denied' => 'You do not have permission to :action :item_type ID :id', + 'action_permission_generic' => 'You do not have permission to :action this :item_type', + 'edit' => 'hlela', + 'action_source' => 'Action Source', ]; diff --git a/resources/lang/zu-ZA/help.php b/resources/lang/zu-ZA/help.php new file mode 100644 index 0000000000..72c37d39c9 --- /dev/null +++ b/resources/lang/zu-ZA/help.php @@ -0,0 +1,35 @@ + 'Ulwazi oluningi', + + 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', + + 'assets' => 'Amafa yizinto ezilandelwa inombolo ye-série noma i-tag tag. Bavame ukuba izinto eziphakeme kakhulu lapho behlonza izinto ezithile.', + + 'categories' => 'Izigaba zikusiza ukuthi uhlele izinto zakho. Ezinye izigaba zesibonelo zingase zibe "Izinkinobho", "Izinketho", "Amafoni omakhalekhukhwini", "Amakhodi", njalonjalo, kodwa ungasebenzisa izigaba noma iyiphi indlela enengqondo kuwe.', + + 'accessories' => 'Izesekeli yilokho okukhipha kubasebenzisi kodwa ezingenayo inombolo ye-serial (noma awunandaba nokulandelela ngokuhlukile). Isibonelo, amagundane wekhompiyutha noma amakhibhodi.', + + 'companies' => 'Izinkampani zingasetshenziswa njengensimu yokuhlonza elula, noma ingasetshenziselwa ukunciphisa ukubonakala kwamafa, abasebenzisi, njll uma ukusekelwa okugcwele kwenkampani kunikwe amandla kuzilungiselelo zakho zoMlawuli.', + + 'components' => 'Izingxenye kukhona izinto eziyingxenye yefa, isibonelo i-HDD, i-RAM, njll.', + + 'consumables' => 'Amakhomikhali ayithengiwe azosetshenziswa ngaphezulu kwesikhathi. Isibonelo, iphepha lephrinta noma iphepha lokukopisha.', + + 'depreciations' => 'Ungasetha ukwehla kwefa ukuze wehlise izimpahla ezisuselwe ekunciphiseni komugqa oqondile.', + + 'empty_file' => 'The importer detects that this file is empty.' +]; diff --git a/resources/lang/zu-ZA/localizations.php b/resources/lang/zu-ZA/localizations.php new file mode 100644 index 0000000000..d10e23c1bc --- /dev/null +++ b/resources/lang/zu-ZA/localizations.php @@ -0,0 +1,317 @@ + 'Select a language', + 'languages' => [ + 'en'=> 'English, US', + 'en-GB'=> 'English, UK', + 'af'=> 'Afrikaans', + 'ar'=> 'Arabic', + 'bg'=> 'Bulgarian', + 'zh-CN'=> 'Chinese Simplified', + 'zh-TW'=> 'Chinese Traditional', + 'hr'=> 'Croatian', + 'cs'=> 'Czech', + 'da'=> 'Danish', + 'nl'=> 'Dutch', + 'en-ID'=> 'English, Indonesia', + 'et'=> 'Estonian', + 'fil'=> 'Filipino', + 'fi'=> 'Finnish', + 'fr'=> 'French', + 'de'=> 'German', + 'de-i'=> 'German (Informal)', + 'el'=> 'Greek', + 'he'=> 'Hebrew', + 'hu'=> 'Hungarian', + 'is' => 'Icelandic', + 'id'=> 'Indonesian', + 'ga-IE'=> 'Irish', + 'it'=> 'Italian', + 'ja'=> 'Japanese', + 'km-KH'=>'Khmer', + 'ko'=> 'Korean', + 'lv'=>'Latvian', + 'lt'=> 'Lithuanian', + 'mk'=> 'Macedonian', + 'ms'=> 'Malay', + 'mi'=> 'Maori', + 'mn'=> 'Mongolian', + 'no'=> 'Norwegian', + 'fa'=> 'Persian', + 'pl'=> 'Polish', + 'pt-PT'=> 'Portuguese', + 'pt-BR'=> 'Portuguese, Brazilian', + 'ro'=> 'Romanian', + 'ru'=> 'Russian', + 'sr-CS' => 'Serbian (Latin)', + 'sl'=> 'Slovenian', + 'es-ES'=> 'Spanish', + 'es-CO'=> 'Spanish, Colombia', + 'es-MX'=> 'Spanish, Mexico', + 'es-VE'=> 'Spanish, Venezuela', + 'sv-SE'=> 'Swedish', + 'tl'=> 'Tagalog', + 'ta'=> 'Tamil', + 'th'=> 'Thai', + 'tr'=> 'Turkish', + 'uk'=> 'Ukranian', + 'vi'=> 'Vietnamese', + 'cy'=> 'Welsh', + 'zu'=> 'Zulu', + ], + + 'select_country' => 'Select a country', + + 'countries' => [ + 'AC'=>'Ascension Island', + 'AD'=>'Andorra', + 'AE'=>'United Arab Emirates', + 'AF'=>'Afghanistan', + 'AG'=>'Antigua And Barbuda', + 'AI'=>'Anguilla', + 'AL'=>'Albania', + 'AM'=>'Armenia', + 'AN'=>'Netherlands Antilles', + 'AO'=>'Angola', + 'AQ'=>'Antarctica', + 'AR'=>'Argentina', + 'AS'=>'American Samoa', + 'AT'=>'Austria', + 'AU'=>'Australia', + 'AW'=>'Aruba', + 'AX'=>'Ã…land', + 'AZ'=>'Azerbaijan', + 'BA'=>'Bosnia And Herzegovina', + 'BB'=>'Barbados', + 'BE'=>'Belgium', + 'BD'=>'Bangladesh', + 'BF'=>'Burkina Faso', + 'BG'=>'Bulgaria', + 'BH'=>'Bahrain', + 'BI'=>'Burundi', + 'BJ'=>'Benin', + 'BM'=>'Bermuda', + 'BN'=>'Brunei Darussalam', + 'BO'=>'Bolivia', + 'BR'=>'Brazil', + 'BS'=>'Bahamas', + 'BT'=>'Bhutan', + 'BV'=>'Bouvet Island', + 'BW'=>'Botswana', + 'BY'=>'Belarus', + 'BZ'=>'Belize', + 'CA'=>'Canada', + 'CC'=>'Cocos (Keeling) Islands', + 'CD'=>'Congo (Democratic Republic)', + 'CF'=>'Central African Republic', + 'CG'=>'Congo (Republic)', + 'CH'=>'Switzerland', + 'CI'=>'Côte d\'Ivoire', + 'CK'=>'Cook Islands', + 'CL'=>'Chile', + 'CM'=>'Cameroon', + 'CN'=>'People\'s Republic of China', + 'CO'=>'Colombia', + 'CR'=>'Costa Rica', + 'CU'=>'Cuba', + 'CV'=>'Cape Verde', + 'CX'=>'Christmas Island', + 'CY'=>'Cyprus', + 'CZ'=>'Czech Republic', + 'DE'=>'Germany', + 'DJ'=>'Djibouti', + 'DK'=>'Denmark', + 'DM'=>'Dominica', + 'DO'=>'Dominican Republic', + 'DZ'=>'Algeria', + 'EC'=>'Ecuador', + 'EE'=>'Estonia', + 'EG'=>'Egypt', + 'ER'=>'Eritrea', + 'ES'=>'Spain', + 'ET'=>'Ethiopia', + 'EU'=>'European Union', + 'FI'=>'Finland', + 'FJ'=>'Fiji', + 'FK'=>'Falkland Islands (Malvinas)', + 'FM'=>'Micronesia, Federated States Of', + 'FO'=>'Faroe Islands', + 'FR'=>'France', + 'GA'=>'Gabon', + 'GD'=>'Grenada', + 'GE'=>'Georgia', + 'GF'=>'French Guiana', + 'GG'=>'Guernsey', + 'GH'=>'Ghana', + 'GI'=>'Gibraltar', + 'GL'=>'Greenland', + 'GM'=>'Gambia', + 'GN'=>'Guinea', + 'GP'=>'Guadeloupe', + 'GQ'=>'Equatorial Guinea', + 'GR'=>'Greece', + 'GS'=>'South Georgia And The South Sandwich Islands', + 'GT'=>'Guatemala', + 'GU'=>'Guam', + 'GW'=>'Guinea-Bissau', + 'GY'=>'Guyana', + 'HK'=>'Hong Kong', + 'HM'=>'Heard And Mc Donald Islands', + 'HN'=>'Honduras', + 'HR'=>'Croatia (local name: Hrvatska)', + 'HT'=>'Haiti', + 'HU'=>'Hungary', + 'ID'=>'Indonesia', + 'IE'=>'Ireland', + 'IL'=>'Israel', + 'IM'=>'Isle of Man', + 'IN'=>'India', + 'IO'=>'British Indian Ocean Territory', + 'IQ'=>'Iraq', + 'IR'=>'Iran, Islamic Republic Of', + 'IS'=>'Iceland', + 'IT'=>'Italy', + 'JE'=>'Jersey', + 'JM'=>'Jamaica', + 'JO'=>'Jordan', + 'JP'=>'Japan', + 'KE'=>'Kenya', + 'KG'=>'Kyrgyzstan', + 'KH'=>'Cambodia', + 'KI'=>'Kiribati', + 'KM'=>'Comoros', + 'KN'=>'Saint Kitts And Nevis', + 'KR'=>'Korea, Republic Of', + 'KW'=>'Kuwait', + 'KY'=>'Cayman Islands', + 'KZ'=>'Kazakhstan', + 'LA'=>'Lao People\'s Democratic Republic', + 'LB'=>'Lebanon', + 'LC'=>'Saint Lucia', + 'LI'=>'Liechtenstein', + 'LK'=>'Sri Lanka', + 'LR'=>'Liberia', + 'LS'=>'Lesotho', + 'LT'=>'Lithuania', + 'LU'=>'Luxembourg', + 'LV'=>'Latvia', + 'LY'=>'Libyan Arab Jamahiriya', + 'MA'=>'Morocco', + 'MC'=>'Monaco', + 'MD'=>'Moldova, Republic Of', + 'ME'=>'Montenegro', + 'MG'=>'Madagascar', + 'MH'=>'Marshall Islands', + 'MK'=>'Macedonia, The Former Yugoslav Republic Of', + 'ML'=>'Mali', + 'MM'=>'Myanmar', + 'MN'=>'Mongolia', + 'MO'=>'Macau', + 'MP'=>'Northern Mariana Islands', + 'MQ'=>'Martinique', + 'MR'=>'Mauritania', + 'MS'=>'Montserrat', + 'MT'=>'Malta', + 'MU'=>'Mauritius', + 'MV'=>'Maldives', + 'MW'=>'Malawi', + 'MX'=>'Mexico', + 'MY'=>'Malaysia', + 'MZ'=>'Mozambique', + 'NA'=>'Namibia', + 'NC'=>'New Caledonia', + 'NE'=>'Niger', + 'NF'=>'Norfolk Island', + 'NG'=>'Nigeria', + 'NI'=>'Nicaragua', + 'NL'=>'Netherlands', + 'NO'=>'Norway', + 'NP'=>'Nepal', + 'NR'=>'Nauru', + 'NU'=>'Niue', + 'NZ'=>'New Zealand', + 'OM'=>'Oman', + 'PA'=>'Panama', + 'PE'=>'Peru', + 'PF'=>'French Polynesia', + 'PG'=>'Papua New Guinea', + 'PH'=>'Philippines, Republic of the', + 'PK'=>'Pakistan', + 'PL'=>'Poland', + 'PM'=>'St. Pierre And Miquelon', + 'PN'=>'Pitcairn', + 'PR'=>'Puerto Rico', + 'PS'=>'Palestine', + 'PT'=>'Portugal', + 'PW'=>'Palau', + 'PY'=>'Paraguay', + 'QA'=>'Qatar', + 'RE'=>'Reunion', + 'RO'=>'Romania', + 'RS'=>'Serbia', + 'RU'=>'Russian Federation', + 'RW'=>'Rwanda', + 'SA'=>'Saudi Arabia', + 'UK'=>'Scotland', + 'SB'=>'Solomon Islands', + 'SC'=>'Seychelles', + 'SS'=>'South Sudan', + 'SD'=>'Sudan', + 'SE'=>'Sweden', + 'SG'=>'Singapore', + 'SH'=>'St. Helena', + 'SI'=>'Slovenia', + 'SJ'=>'Svalbard And Jan Mayen Islands', + 'SK'=>'Slovakia (Slovak Republic)', + 'SL'=>'Sierra Leone', + 'SM'=>'San Marino', + 'SN'=>'Senegal', + 'SO'=>'Somalia', + 'SR'=>'Suriname', + 'ST'=>'Sao Tome And Principe', + 'SU'=>'Soviet Union', + 'SV'=>'El Salvador', + 'SY'=>'Syrian Arab Republic', + 'SZ'=>'Swaziland', + 'TC'=>'Turks And Caicos Islands', + 'TD'=>'Chad', + 'TF'=>'French Southern Territories', + 'TG'=>'Togo', + 'TH'=>'Thailand', + 'TJ'=>'Tajikistan', + 'TK'=>'Tokelau', + 'TI'=>'East Timor', + 'TM'=>'Turkmenistan', + 'TN'=>'Tunisia', + 'TO'=>'Tonga', + 'TP'=>'East Timor (old code)', + 'TR'=>'Turkey', + 'TT'=>'Trinidad And Tobago', + 'TV'=>'Tuvalu', + 'TW'=>'Taiwan', + 'TZ'=>'Tanzania, United Republic Of', + 'UA'=>'Ukraine', + 'UG'=>'Uganda', + 'UK'=>'United Kingdom', + 'US'=>'United States', + 'UM'=>'United States Minor Outlying Islands', + 'UY'=>'Uruguay', + 'UZ'=>'Uzbekistan', + 'VA'=>'Vatican City State (Holy See)', + 'VC'=>'Saint Vincent And The Grenadines', + 'VE'=>'Venezuela', + 'VG'=>'Virgin Islands (British)', + 'VI'=>'Virgin Islands (U.S.)', + 'VN'=>'Viet Nam', + 'VU'=>'Vanuatu', + 'WF'=>'Wallis And Futuna Islands', + 'WS'=>'Samoa', + 'YE'=>'Yemen', + 'YT'=>'Mayotte', + 'ZA'=>'South Africa', + 'ZM'=>'Zambia', + 'ZW'=>'Zimbabwe', + ], +]; \ No newline at end of file diff --git a/resources/lang/zu/mail.php b/resources/lang/zu-ZA/mail.php similarity index 98% rename from resources/lang/zu/mail.php rename to resources/lang/zu-ZA/mail.php index 402de90290..bf4ec9c24b 100644 --- a/resources/lang/zu/mail.php +++ b/resources/lang/zu-ZA/mail.php @@ -11,7 +11,7 @@ return [ 'asset' => 'Impahla:', 'asset_name' => 'Igama lomhlaba:', 'asset_requested' => 'Ifa liceliwe', - 'asset_tag' => 'Asset Tag', + 'asset_tag' => 'Ithegi lefa', 'assigned_to' => 'Kwabiwa Ku', 'best_regards' => 'Ozithobayo,', 'canceled' => 'Ikhanseliwe:', @@ -67,8 +67,8 @@ return [ 'to_reset' => 'Ukuze usethe kabusha: iphasiwedi yewebhu, ugcwalise leli fomu:', 'type' => 'Thayipha', 'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.', - 'user' => 'User', - 'username' => 'Username', + 'user' => 'Umsebenzisi', + 'username' => 'Igama lomsebenzisi', 'welcome' => 'Siyakwamukela: igama', 'welcome_to' => 'Siyakwamukela ku: iwebhu!', 'your_credentials' => 'Izimpawu zakho ze-Snipe-IT', diff --git a/resources/lang/zu/pagination.php b/resources/lang/zu-ZA/pagination.php similarity index 100% rename from resources/lang/zu/pagination.php rename to resources/lang/zu-ZA/pagination.php diff --git a/resources/lang/tl/passwords.php b/resources/lang/zu-ZA/passwords.php similarity index 100% rename from resources/lang/tl/passwords.php rename to resources/lang/zu-ZA/passwords.php diff --git a/resources/lang/zu/reminders.php b/resources/lang/zu-ZA/reminders.php similarity index 100% rename from resources/lang/zu/reminders.php rename to resources/lang/zu-ZA/reminders.php diff --git a/resources/lang/zu/table.php b/resources/lang/zu-ZA/table.php similarity index 100% rename from resources/lang/zu/table.php rename to resources/lang/zu-ZA/table.php diff --git a/resources/lang/zu/validation.php b/resources/lang/zu-ZA/validation.php similarity index 98% rename from resources/lang/zu/validation.php rename to resources/lang/zu-ZA/validation.php index 313bb8bc9a..c993fbad0a 100644 --- a/resources/lang/zu/validation.php +++ b/resources/lang/zu-ZA/validation.php @@ -94,10 +94,9 @@ return [ 'unique' => 'I: imfanelo isivele ithathwe.', 'uploaded' => 'I: imfanelo ayihlulekile ukulayisha.', 'url' => 'I: ifomethi yokwaziswa ayivumelekile.', - 'unique_undeleted' => 'The :attribute must be unique.', + 'unique_undeleted' => 'I: imfanelo kufanele ibe eyingqayizivele.', 'non_circular' => 'The :attribute must not create a circular reference.', 'not_array' => 'The :attribute field cannot be an array.', - 'unique_serial' => 'The :attribute must be unique.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'letters' => 'Password must contain at least one letter.', 'numbers' => 'Password must contain at least one number.', diff --git a/resources/lang/zu/account/general.php b/resources/lang/zu/account/general.php deleted file mode 100644 index 7fc060a849..0000000000 --- a/resources/lang/zu/account/general.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Personal API Keys', - 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they - will not be visible to you again.', - 'api_base_url' => 'Your API base url is located at:', - 'api_base_url_endpoint' => '/<endpoint>', - 'api_token_expiration_time' => 'API tokens are set to expire in:', - 'api_reference' => 'Please check the API reference to - find specific API endpoints and additional API documentation.', -); diff --git a/resources/lang/zu/admin/kits/general.php b/resources/lang/zu/admin/kits/general.php deleted file mode 100644 index f724ecbf07..0000000000 --- a/resources/lang/zu/admin/kits/general.php +++ /dev/null @@ -1,50 +0,0 @@ - 'About Predefined Kits', - 'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.', - 'checkout' => 'Checkout Kit ', - 'create_success' => 'Kit was successfully created.', - 'create' => 'Create Predefined Kit', - 'update' => 'Update Predefined Kit', - 'delete_success' => 'Kit was successfully deleted.', - 'update_success' => 'Kit was successfully updated.', - 'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ', - 'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ', - 'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ', - 'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', -]; diff --git a/resources/lang/zu/admin/labels/message.php b/resources/lang/zu/admin/labels/message.php deleted file mode 100644 index 96785f0754..0000000000 --- a/resources/lang/zu/admin/labels/message.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Invalid count returned from :name. Expected :expected, got :actual.', - 'invalid_return_type' => 'Invalid type returned from :name. Expected :expected, got :actual.', - 'invalid_return_value' => 'Invalid value returned from :name. Expected :expected, got :actual.', - - 'does_not_exist' => 'Label does not exist', - -]; diff --git a/resources/lang/zu/admin/labels/table.php b/resources/lang/zu/admin/labels/table.php deleted file mode 100644 index 87dee4bad0..0000000000 --- a/resources/lang/zu/admin/labels/table.php +++ /dev/null @@ -1,13 +0,0 @@ - 'Labels', - 'support_fields' => 'Fields', - 'support_asset_tag' => 'Tag', - 'support_1d_barcode' => '1D', - 'support_2d_barcode' => '2D', - 'support_logo' => 'Logo', - 'support_title' => 'Title', - -]; \ No newline at end of file diff --git a/resources/lang/zu/admin/settings/table.php b/resources/lang/zu/admin/settings/table.php deleted file mode 100644 index 22db5c84ed..0000000000 --- a/resources/lang/zu/admin/settings/table.php +++ /dev/null @@ -1,6 +0,0 @@ - 'Created', - 'size' => 'Size', -); diff --git a/resources/lang/zu/help.php b/resources/lang/zu/help.php deleted file mode 100644 index a59e0056be..0000000000 --- a/resources/lang/zu/help.php +++ /dev/null @@ -1,35 +0,0 @@ - 'More Info', - - 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', - - 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.', - - 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.', - - 'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.', - - 'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.', - - 'components' => 'Components are items that are part of an asset, for example HDD, RAM, etc.', - - 'consumables' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - - 'depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.', - - 'empty_file' => 'The importer detects that this file is empty.' -]; diff --git a/resources/lang/zu/localizations.php b/resources/lang/zu/localizations.php deleted file mode 100644 index f735573c2e..0000000000 --- a/resources/lang/zu/localizations.php +++ /dev/null @@ -1,317 +0,0 @@ - 'Select a language', - 'languages' => [ - 'en'=> 'English, US', - 'en-GB'=> 'English, UK', - 'af'=> 'Afrikaans', - 'ar'=> 'Arabic', - 'bg'=> 'Bulgarian', - 'zh-CN'=> 'Chinese Simplified', - 'zh-TW'=> 'Chinese Traditional', - 'hr'=> 'Croatian', - 'cs'=> 'Czech', - 'da'=> 'Danish', - 'nl'=> 'Dutch', - 'en-ID'=> 'English, Indonesia', - 'et'=> 'Estonian', - 'fil'=> 'Filipino', - 'fi'=> 'Finnish', - 'fr'=> 'French', - 'de'=> 'German', - 'de-i'=> 'German (Informal)', - 'el'=> 'Greek', - 'he'=> 'Hebrew', - 'hu'=> 'Hungarian', - 'is' => 'Icelandic', - 'id'=> 'Indonesian', - 'ga-IE'=> 'Irish', - 'it'=> 'Italian', - 'ja'=> 'Japanese', - 'km' => 'Khmer', - 'ko'=> 'Korean', - 'lv'=>'Latvian', - 'lt'=> 'Lithuanian', - 'mk'=> 'Macedonian', - 'ms'=> 'Malay', - 'mi'=> 'Maori', - 'mn'=> 'Mongolian', - 'no'=> 'Norwegian', - 'fa'=> 'Persian', - 'pl'=> 'Polish', - 'pt-PT'=> 'Portuguese', - 'pt-BR'=> 'Portuguese, Brazilian', - 'ro'=> 'Romanian', - 'ru'=> 'Russian', - 'sr-CS' => 'Serbian (Latin)', - 'sl'=> 'Slovenian', - 'es-ES'=> 'Spanish', - 'es-CO'=> 'Spanish, Colombia', - 'es-MX'=> 'Spanish, Mexico', - 'es-VE'=> 'Spanish, Venezuela', - 'sv-SE'=> 'Swedish', - 'tl'=> 'Tagalog', - 'ta'=> 'Tamil', - 'th'=> 'Thai', - 'tr'=> 'Turkish', - 'uk'=> 'Ukranian', - 'vi'=> 'Vietnamese', - 'cy'=> 'Welsh', - 'zu'=> 'Zulu', - ], - - 'select_country' => 'Select a country', - - 'countries' => [ - 'AC'=>'Ascension Island', - 'AD'=>'Andorra', - 'AE'=>'United Arab Emirates', - 'AF'=>'Afghanistan', - 'AG'=>'Antigua And Barbuda', - 'AI'=>'Anguilla', - 'AL'=>'Albania', - 'AM'=>'Armenia', - 'AN'=>'Netherlands Antilles', - 'AO'=>'Angola', - 'AQ'=>'Antarctica', - 'AR'=>'Argentina', - 'AS'=>'American Samoa', - 'AT'=>'Austria', - 'AU'=>'Australia', - 'AW'=>'Aruba', - 'AX'=>'Ã…land', - 'AZ'=>'Azerbaijan', - 'BA'=>'Bosnia And Herzegovina', - 'BB'=>'Barbados', - 'BE'=>'Belgium', - 'BD'=>'Bangladesh', - 'BF'=>'Burkina Faso', - 'BG'=>'Bulgaria', - 'BH'=>'Bahrain', - 'BI'=>'Burundi', - 'BJ'=>'Benin', - 'BM'=>'Bermuda', - 'BN'=>'Brunei Darussalam', - 'BO'=>'Bolivia', - 'BR'=>'Brazil', - 'BS'=>'Bahamas', - 'BT'=>'Bhutan', - 'BV'=>'Bouvet Island', - 'BW'=>'Botswana', - 'BY'=>'Belarus', - 'BZ'=>'Belize', - 'CA'=>'Canada', - 'CC'=>'Cocos (Keeling) Islands', - 'CD'=>'Congo (Democratic Republic)', - 'CF'=>'Central African Republic', - 'CG'=>'Congo (Republic)', - 'CH'=>'Switzerland', - 'CI'=>'Côte d\'Ivoire', - 'CK'=>'Cook Islands', - 'CL'=>'Chile', - 'CM'=>'Cameroon', - 'CN'=>'People\'s Republic of China', - 'CO'=>'Colombia', - 'CR'=>'Costa Rica', - 'CU'=>'Cuba', - 'CV'=>'Cape Verde', - 'CX'=>'Christmas Island', - 'CY'=>'Cyprus', - 'CZ'=>'Czech Republic', - 'DE'=>'Germany', - 'DJ'=>'Djibouti', - 'DK'=>'Denmark', - 'DM'=>'Dominica', - 'DO'=>'Dominican Republic', - 'DZ'=>'Algeria', - 'EC'=>'Ecuador', - 'EE'=>'Estonia', - 'EG'=>'Egypt', - 'ER'=>'Eritrea', - 'ES'=>'Spain', - 'ET'=>'Ethiopia', - 'EU'=>'European Union', - 'FI'=>'Finland', - 'FJ'=>'Fiji', - 'FK'=>'Falkland Islands (Malvinas)', - 'FM'=>'Micronesia, Federated States Of', - 'FO'=>'Faroe Islands', - 'FR'=>'France', - 'GA'=>'Gabon', - 'GD'=>'Grenada', - 'GE'=>'Georgia', - 'GF'=>'French Guiana', - 'GG'=>'Guernsey', - 'GH'=>'Ghana', - 'GI'=>'Gibraltar', - 'GL'=>'Greenland', - 'GM'=>'Gambia', - 'GN'=>'Guinea', - 'GP'=>'Guadeloupe', - 'GQ'=>'Equatorial Guinea', - 'GR'=>'Greece', - 'GS'=>'South Georgia And The South Sandwich Islands', - 'GT'=>'Guatemala', - 'GU'=>'Guam', - 'GW'=>'Guinea-Bissau', - 'GY'=>'Guyana', - 'HK'=>'Hong Kong', - 'HM'=>'Heard And Mc Donald Islands', - 'HN'=>'Honduras', - 'HR'=>'Croatia (local name: Hrvatska)', - 'HT'=>'Haiti', - 'HU'=>'Hungary', - 'ID'=>'Indonesia', - 'IE'=>'Ireland', - 'IL'=>'Israel', - 'IM'=>'Isle of Man', - 'IN'=>'India', - 'IO'=>'British Indian Ocean Territory', - 'IQ'=>'Iraq', - 'IR'=>'Iran, Islamic Republic Of', - 'IS'=>'Iceland', - 'IT'=>'Italy', - 'JE'=>'Jersey', - 'JM'=>'Jamaica', - 'JO'=>'Jordan', - 'JP'=>'Japan', - 'KE'=>'Kenya', - 'KG'=>'Kyrgyzstan', - 'KH'=>'Cambodia', - 'KI'=>'Kiribati', - 'KM'=>'Comoros', - 'KN'=>'Saint Kitts And Nevis', - 'KR'=>'Korea, Republic Of', - 'KW'=>'Kuwait', - 'KY'=>'Cayman Islands', - 'KZ'=>'Kazakhstan', - 'LA'=>'Lao People\'s Democratic Republic', - 'LB'=>'Lebanon', - 'LC'=>'Saint Lucia', - 'LI'=>'Liechtenstein', - 'LK'=>'Sri Lanka', - 'LR'=>'Liberia', - 'LS'=>'Lesotho', - 'LT'=>'Lithuania', - 'LU'=>'Luxembourg', - 'LV'=>'Latvia', - 'LY'=>'Libyan Arab Jamahiriya', - 'MA'=>'Morocco', - 'MC'=>'Monaco', - 'MD'=>'Moldova, Republic Of', - 'ME'=>'Montenegro', - 'MG'=>'Madagascar', - 'MH'=>'Marshall Islands', - 'MK'=>'Macedonia, The Former Yugoslav Republic Of', - 'ML'=>'Mali', - 'MM'=>'Myanmar', - 'MN'=>'Mongolia', - 'MO'=>'Macau', - 'MP'=>'Northern Mariana Islands', - 'MQ'=>'Martinique', - 'MR'=>'Mauritania', - 'MS'=>'Montserrat', - 'MT'=>'Malta', - 'MU'=>'Mauritius', - 'MV'=>'Maldives', - 'MW'=>'Malawi', - 'MX'=>'Mexico', - 'MY'=>'Malaysia', - 'MZ'=>'Mozambique', - 'NA'=>'Namibia', - 'NC'=>'New Caledonia', - 'NE'=>'Niger', - 'NF'=>'Norfolk Island', - 'NG'=>'Nigeria', - 'NI'=>'Nicaragua', - 'NL'=>'Netherlands', - 'NO'=>'Norway', - 'NP'=>'Nepal', - 'NR'=>'Nauru', - 'NU'=>'Niue', - 'NZ'=>'New Zealand', - 'OM'=>'Oman', - 'PA'=>'Panama', - 'PE'=>'Peru', - 'PF'=>'French Polynesia', - 'PG'=>'Papua New Guinea', - 'PH'=>'Philippines, Republic of the', - 'PK'=>'Pakistan', - 'PL'=>'Poland', - 'PM'=>'St. Pierre And Miquelon', - 'PN'=>'Pitcairn', - 'PR'=>'Puerto Rico', - 'PS'=>'Palestine', - 'PT'=>'Portugal', - 'PW'=>'Palau', - 'PY'=>'Paraguay', - 'QA'=>'Qatar', - 'RE'=>'Reunion', - 'RO'=>'Romania', - 'RS'=>'Serbia', - 'RU'=>'Russian Federation', - 'RW'=>'Rwanda', - 'SA'=>'Saudi Arabia', - 'UK'=>'Scotland', - 'SB'=>'Solomon Islands', - 'SC'=>'Seychelles', - 'SS'=>'South Sudan', - 'SD'=>'Sudan', - 'SE'=>'Sweden', - 'SG'=>'Singapore', - 'SH'=>'St. Helena', - 'SI'=>'Slovenia', - 'SJ'=>'Svalbard And Jan Mayen Islands', - 'SK'=>'Slovakia (Slovak Republic)', - 'SL'=>'Sierra Leone', - 'SM'=>'San Marino', - 'SN'=>'Senegal', - 'SO'=>'Somalia', - 'SR'=>'Suriname', - 'ST'=>'Sao Tome And Principe', - 'SU'=>'Soviet Union', - 'SV'=>'El Salvador', - 'SY'=>'Syrian Arab Republic', - 'SZ'=>'Swaziland', - 'TC'=>'Turks And Caicos Islands', - 'TD'=>'Chad', - 'TF'=>'French Southern Territories', - 'TG'=>'Togo', - 'TH'=>'Thailand', - 'TJ'=>'Tajikistan', - 'TK'=>'Tokelau', - 'TI'=>'East Timor', - 'TM'=>'Turkmenistan', - 'TN'=>'Tunisia', - 'TO'=>'Tonga', - 'TP'=>'East Timor (old code)', - 'TR'=>'Turkey', - 'TT'=>'Trinidad And Tobago', - 'TV'=>'Tuvalu', - 'TW'=>'Taiwan', - 'TZ'=>'Tanzania, United Republic Of', - 'UA'=>'Ukraine', - 'UG'=>'Uganda', - 'UK'=>'United Kingdom', - 'US'=>'United States', - 'UM'=>'United States Minor Outlying Islands', - 'UY'=>'Uruguay', - 'UZ'=>'Uzbekistan', - 'VA'=>'Vatican City State (Holy See)', - 'VC'=>'Saint Vincent And The Grenadines', - 'VE'=>'Venezuela', - 'VG'=>'Virgin Islands (British)', - 'VI'=>'Virgin Islands (U.S.)', - 'VN'=>'Viet Nam', - 'VU'=>'Vanuatu', - 'WF'=>'Wallis And Futuna Islands', - 'WS'=>'Samoa', - 'YE'=>'Yemen', - 'YT'=>'Mayotte', - 'ZA'=>'South Africa', - 'ZM'=>'Zambia', - 'ZW'=>'Zimbabwe', - ], -]; \ No newline at end of file diff --git a/resources/lang/zu/passwords.php b/resources/lang/zu/passwords.php deleted file mode 100644 index 41a87f98ed..0000000000 --- a/resources/lang/zu/passwords.php +++ /dev/null @@ -1,9 +0,0 @@ - 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.', - 'user' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.', - 'token' => 'This password reset token is invalid or expired, or does not match the username provided.', - 'reset' => 'Your password has been reset!', - 'password_change' => 'Your password has been updated!', -]; diff --git a/resources/views/setup/user.blade.php b/resources/views/setup/user.blade.php index 88d692aca3..d9634478b4 100644 --- a/resources/views/setup/user.blade.php +++ b/resources/views/setup/user.blade.php @@ -30,7 +30,7 @@
{{ Form::label('locale', trans('admin/settings/general.default_language')) }} - {!! Form::locales('locale', Request::old('locale', "en"), 'select2') !!} + {!! Form::locales('locale', Request::old('locale', "en-US"), 'select2') !!} {!! $errors->first('locale', '') !!}