├── src ├── Providers │ └── LaravelNovaLangServiceProvider.php └── Commands │ ├── AbstractCommand.php │ └── NovaLangPublish.php ├── psalm.xml.dist ├── resources └── lang │ ├── ja │ └── validation.php │ ├── zh-CN │ └── validation.php │ ├── zh-TW │ └── validation.php │ ├── lt │ └── validation.php │ ├── sl │ └── validation.php │ ├── bg │ └── validations.php │ ├── lv │ └── validation.php │ ├── ar │ └── validation.php │ ├── fil │ └── validation.php │ ├── tr │ └── validation.php │ ├── ur │ └── validation.php │ ├── bs │ └── validation.php │ ├── fi │ └── validation.php │ ├── hi │ └── validation.php │ ├── hr │ └── validation.php │ ├── nb │ └── validation.php │ ├── nl │ └── validation.php │ ├── pl │ └── validation.php │ ├── sk │ └── validation.php │ ├── sr │ └── validation.php │ ├── az │ └── validation.php │ ├── fa │ └── validation.php │ ├── fr │ └── validation.php │ ├── id │ └── validation.php │ ├── km │ └── validation.php │ ├── pt-BR │ └── validation.php │ ├── pt │ └── validation.php │ ├── sr-Latn │ └── validation.php │ ├── tl │ └── validation.php │ ├── uk │ └── validation.php │ ├── de │ └── validation.php │ ├── en │ └── validation.php │ ├── ka │ └── validation.php │ ├── ro │ └── validation.php │ ├── sv │ └── validation.php │ ├── tk │ └── validation.php │ ├── da │ └── validation.php │ ├── es │ └── validation.php │ ├── it │ └── validation.php │ ├── eu │ └── validation.php │ ├── hu │ └── validation.php │ ├── af │ └── validation.php │ ├── ca │ └── validation.php │ ├── cs │ └── validation.php │ ├── uz-Latn │ └── validation.php │ ├── ru │ └── validation.php │ ├── tl.json │ ├── sk.json │ ├── sl.json │ ├── fi.json │ ├── eu.json │ ├── hi.json │ ├── sr.json │ ├── da.json │ ├── hr.json │ ├── sr-Latn.json │ ├── lt.json │ └── ja.json ├── LICENSE.md ├── composer.json ├── .php-cs-fixer.dist.php └── CONTRIBUTING.md /src/Providers/LaravelNovaLangServiceProvider.php: -------------------------------------------------------------------------------- 1 | commands(NovaLangPublish::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /psalm.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /resources/lang/ja/validation.php: -------------------------------------------------------------------------------- 1 | 'この :attribute はすでにアタッチされています.', 17 | 'relatable' => 'この :attribute このリソースに関連付けられていないようです.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/zh-CN/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute已存在。', 17 | 'relatable' => ':attribute可能与此资源无关。', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/zh-TW/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute已存在。', 17 | 'relatable' => ':attribute可能與此資源無關。', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/lt/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute jau yra pridėtas.', 17 | 'relatable' => ':attribute negali būti priskirtas.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/sl/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute je že pripet.', 17 | 'relatable' => ':attribute ni mogoče združiti s tem virom.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/bg/validations.php: -------------------------------------------------------------------------------- 1 | 'Полето :attribute вече е прикпрепено.', 14 | 'relatable' => 'Полето :attribute не може да бъде асоциирано с този ресурс.', 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/lv/validation.php: -------------------------------------------------------------------------------- 1 | 'Šis :attribute jau ir pievienots.', 17 | 'relatable' => ':attribute nevar sasaistīt ar šo resursu.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/ar/validation.php: -------------------------------------------------------------------------------- 1 | 'الحقل :attribute تم ربطه مسبقاً', 17 | 'relatable' => 'لايمكن ربط الحقل :attribute مع المصدر المحدد', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/fil/validation.php: -------------------------------------------------------------------------------- 1 | 'Ang :attribute na attribute ay nakakabit na.', 14 | 'relatable' => 'Ang :attribute ay hindi maaaring ikabit sa pinagkukunan.', 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/tr/validation.php: -------------------------------------------------------------------------------- 1 | 'Bu :attribute zaten eklenmiş.', 17 | 'relatable' => 'Bu :attribute bu kaynak ile ilişkili olmayabilir.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/ur/validation.php: -------------------------------------------------------------------------------- 1 | 'یہ :attribute پہلے ہی منسلک ہے۔', 17 | 'relatable' => 'یہ :attribute اس وسائل سے وابستہ نہیں ہوسکتا ہے۔', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/bs/validation.php: -------------------------------------------------------------------------------- 1 | 'Ovaj :attribute je vec zakacen.', 17 | 'relatable' => 'Ovaj :attribute mozda nije povezan sa ovim resursom.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/fi/validation.php: -------------------------------------------------------------------------------- 1 | 'Tämä :attribute on jo liitetty.', 17 | 'relatable' => 'Tätä :attribute ei voida liittää tähän resurssiin.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/hi/validation.php: -------------------------------------------------------------------------------- 1 | 'यह :attribute पहले ही संलग्न है।', 17 | 'relatable' => 'यह :attribute इस संसाधन से जुड़ा नहीं हो सकता है।', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/hr/validation.php: -------------------------------------------------------------------------------- 1 | 'Ovaj :attribute je već zakačen.', 17 | 'relatable' => 'Ovaj :attribute možda nije povezan sa ovim resursom.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/nb/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute er allerede tilknyttet.', 17 | 'relatable' => ':attribute kan ikke kobles til denne ressursen.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/nl/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute is al gekoppeld.', 17 | 'relatable' => ':attribute kan niet geassocieerd worden met deze bron.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/pl/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute jest już dołączony.', 17 | 'relatable' => ':attribute nie może zostać powiązany z tym zasobem.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/sk/validation.php: -------------------------------------------------------------------------------- 1 | 'Tento :attribute je už priložený.', 17 | 'relatable' => 'Tento :attribute sa nemusí viazať k tomuto zdroju.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/sr/validation.php: -------------------------------------------------------------------------------- 1 | 'Овај :attribute је већ прикачен.', 17 | 'relatable' => 'Овај :attribute можда није повезан са овим ресурсом.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/az/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute xanası artıq əlavə olunub.', 17 | 'relatable' => ':attribute xanası bu resursla əlaqələndirilə bilməz.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/fa/validation.php: -------------------------------------------------------------------------------- 1 | 'این :attribute در حال حاضر پیوست شده است.', 17 | 'relatable' => 'این :attribute ممکن است با این منبع مرتبط نباشد.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/fr/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute est déjà attaché.', 17 | 'relatable' => ':attribute ne peut pas être associé avec cette ressource.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/id/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute ini telah dilampirkan..', 17 | 'relatable' => ':attribute ini mungkin tidak terkait dengan sumber ini.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/km/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute នេះត្រូវបានភ្ជាប់រួចហើយ។', 17 | 'relatable' => ':attribute នេះប្រហែលជាមិនមានទំនាក់ទំនងជាមួយធនធាននេះទេ។', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/validation.php: -------------------------------------------------------------------------------- 1 | 'O :attribute já está anexado.', 17 | 'relatable' => 'O :attribute pode não estar associado a este recurso.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/pt/validation.php: -------------------------------------------------------------------------------- 1 | 'Este :attribute já foi anexado.', 17 | 'relatable' => 'Este :attribute não pode ser associado com este recurso.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/sr-Latn/validation.php: -------------------------------------------------------------------------------- 1 | 'Ovaj :attribute je već prikačen.', 17 | 'relatable' => 'Ovaj :attribute možda nije povezan sa ovim resursom.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/tl/validation.php: -------------------------------------------------------------------------------- 1 | 'Itong :attribute ay nakakabit na.', 17 | 'relatable' => 'Itong :attribute ay hindi tumutukoy sa bagay na ito.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/uk/validation.php: -------------------------------------------------------------------------------- 1 | 'Поле :attribute вже прикріплено.', 17 | 'relatable' => 'Поле :attribute не може бути повязано із цим ресурсом.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/de/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute ist bereits verknüpft.', 17 | 'relatable' => ':attribute kann nicht mit dieser Ressource assoziiert werden.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- 1 | 'This :attribute is already attached.', 17 | 'relatable' => 'This :attribute may not be associated with this resource.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/ka/validation.php: -------------------------------------------------------------------------------- 1 | 'ველი :attribute უკვე მიმაგრებულია.', 17 | 'relatable' => 'ველი :attribute არ შეიძლება იყოს დაკავშირებული ამ რესურსთან.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/ro/validation.php: -------------------------------------------------------------------------------- 1 | 'Acest :attribute este deja atașat.', 17 | 'relatable' => 'Acest :attribute nu poate fi asociat cu această resursă.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/sv/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute är redan tillagd.', 17 | 'relatable' => ':attribute kanske inte kan bli associerad med den här resursen.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/tk/validation.php: -------------------------------------------------------------------------------- 1 | 'Bu :attribute eýýäm baglanan.', 17 | 'relatable' => 'Bu :attribute häzirki maglumat bilen baglanşykly bolman biler.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/da/validation.php: -------------------------------------------------------------------------------- 1 | 'Denne :attribute er allerede forbundet.', 17 | 'relatable' => 'Denne :attribute kan ikke være forbundet med denne resource.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/es/validation.php: -------------------------------------------------------------------------------- 1 | 'Este :attribute ya ha sido adjuntado.', 17 | 'relatable' => 'Este :attribute puede que no este asociado a este recurso.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/it/validation.php: -------------------------------------------------------------------------------- 1 | 'Questo :attribute è già collegato.', 17 | 'relatable' => 'Questo :attribute non può essere collegato con questa risorsa.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/eu/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute hau atxikitua izan da dagoeneko.', 17 | 'relatable' => 'Baliteke :attribute baliabide honi erlazionatuta ez egotea.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/hu/validation.php: -------------------------------------------------------------------------------- 1 | 'Az alábbi elem már be lett csatolva: :attribute.', 17 | 'relatable' => 'Az alábbi elem nem csatolható az eszközhöz: :attribute.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/af/validation.php: -------------------------------------------------------------------------------- 1 | 'Hierdie :attribute is reeds aangeheg.', 18 | 'relatable' => 'Hierdie :attribute mag nie met hierdie hulpbron geassosieer word nie.', 19 | 20 | ]; -------------------------------------------------------------------------------- /resources/lang/ca/validation.php: -------------------------------------------------------------------------------- 1 | 'Aquest :attribute ja ha estat adjuntat.', 17 | 'relatable' => 'Aquest :attribute pot ser que no estigui associat a aquest recurs.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/cs/validation.php: -------------------------------------------------------------------------------- 1 | 'Atribut :attribute je už připojen.', 17 | 'relatable' => 'Atribut :attribute nemůže být připojen k tomuto zdroji.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/uz-Latn/validation.php: -------------------------------------------------------------------------------- 1 | ':attribute maydoni allaqachon biriktirilgan.', 16 | 'relatable' => 'Bu :attribute maydonini ushbu resurs bilan bogʻlab boʻlmaydi.', 17 | 18 | ]; 19 | -------------------------------------------------------------------------------- /resources/lang/ru/validation.php: -------------------------------------------------------------------------------- 1 | 'Поле :attribute уже прикреплено.', 18 | 'relatable' => 'Поле :attribute не может быть связано с этим ресурсом.', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Coderello 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "coderello/laravel-nova-lang", 3 | "description": "Language support for Laravel Nova.", 4 | "keywords": ["laravel", "nova", "language", "lang", "support"], 5 | "type": "library", 6 | "license": "MIT", 7 | "require": { 8 | "php": "^7.1|^8.0" 9 | }, 10 | "require-dev": { 11 | "php": "^8.0", 12 | "ext-curl": "*", 13 | "laravel/nova": "~4.0", 14 | "illuminate/console": "^8.0", 15 | "illuminate/filesystem": "^8.0", 16 | "illuminate/events": "^8.0" 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Coderello\\LaravelNovaLang\\": "src/" 21 | } 22 | }, 23 | "autoload-dev": { 24 | "psr-4": { 25 | "Coderello\\LaravelNovaLang\\": "dev/" 26 | } 27 | }, 28 | "repositories": [ 29 | { 30 | "type": "composer", 31 | "url": "https://nova.laravel.com" 32 | } 33 | ], 34 | "extra": { 35 | "laravel": { 36 | "providers": [ 37 | "Coderello\\LaravelNovaLang\\Providers\\LaravelNovaLangServiceProvider" 38 | ] 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | in([ 5 | __DIR__ . '/src', 6 | __DIR__ . '/dev', 7 | ]) 8 | ->name('*.php') 9 | ->notName('*.blade.php') 10 | ->ignoreDotFiles(true) 11 | ->ignoreVCS(true); 12 | 13 | return (new PhpCsFixer\Config()) 14 | ->setRules([ 15 | '@PSR12' => true, 16 | 'array_syntax' => ['syntax' => 'short'], 17 | 'ordered_imports' => ['sort_algorithm' => 'alpha'], 18 | 'no_unused_imports' => true, 19 | 'not_operator_with_successor_space' => true, 20 | 'trailing_comma_in_multiline' => true, 21 | 'phpdoc_scalar' => true, 22 | 'unary_operator_spaces' => true, 23 | 'binary_operator_spaces' => true, 24 | 'blank_line_before_statement' => [ 25 | 'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'], 26 | ], 27 | 'phpdoc_single_line_var_spacing' => true, 28 | 'phpdoc_var_without_name' => true, 29 | 'class_attributes_separation' => [ 30 | 'elements' => [ 31 | 'method' => 'one', 32 | ], 33 | ], 34 | 'method_argument_space' => [ 35 | 'on_multiline' => 'ensure_fully_multiline', 36 | 'keep_multiple_spaces_after_comma' => true, 37 | ], 38 | 'single_trait_insert_per_statement' => true, 39 | ]) 40 | ->setFinder($finder); 41 | -------------------------------------------------------------------------------- /src/Commands/AbstractCommand.php: -------------------------------------------------------------------------------- 1 | filesystem = $filesystem; 32 | 33 | parent::__construct(); 34 | } 35 | 36 | protected function getRequestedLocales(): Collection 37 | { 38 | if ($this->isAll()) { 39 | $locales = $this->getAvailableLocales(); 40 | } elseif ($this->argument('locales')) { 41 | /** @var string $locales */ 42 | $locales = $this->argument('locales'); 43 | $locales = $this->fixSeparators($locales); 44 | $locales = collect(explode(',', $locales))->filter(); 45 | } else { 46 | $locales = collect(); 47 | } 48 | 49 | if (! $locales->count()) { 50 | $this->error('You must either specify one or more locales, or use the --all option.'); 51 | 52 | exit; 53 | } 54 | 55 | return $locales; 56 | } 57 | 58 | protected function getAvailableLocales(): Collection 59 | { 60 | $localesByDirectories = collect($this->filesystem->directories($this->directoryFrom())) 61 | ->map(function (string $path) { 62 | return $this->filesystem->name($path); 63 | }); 64 | 65 | $localesByFiles = collect($this->filesystem->files($this->directoryFrom())) 66 | ->map(function (SplFileInfo $splFileInfo) { 67 | return str_replace('.' . $splFileInfo->getExtension(), '', $splFileInfo->getFilename()); 68 | }); 69 | 70 | return $localesByDirectories->merge($localesByFiles)->unique()->values(); 71 | } 72 | 73 | protected function fixSeparators(?string $locale, string $separator = '-'): string 74 | { 75 | return preg_replace('/[' . static::SEPARATORS . ']+/', $separator, $locale ?? ''); 76 | } 77 | 78 | protected function isForce(): bool 79 | { 80 | return (bool) $this->option('force'); 81 | } 82 | 83 | protected function isAll(): bool 84 | { 85 | return (bool) $this->option('all'); 86 | } 87 | 88 | protected function directoryFrom(): string 89 | { 90 | if (function_exists('base_path')) { 91 | return base_path('vendor/coderello/laravel-nova-lang/resources/lang'); 92 | } 93 | 94 | throw new Exception('Command cannot be run outside Laravel'); 95 | } 96 | 97 | protected function directoryNovaSource(): string 98 | { 99 | if (function_exists('base_path')) { 100 | return base_path('vendor/laravel/nova/resources/lang'); 101 | } 102 | 103 | throw new Exception('Command cannot be run outside Laravel'); 104 | } 105 | 106 | protected function directoryTo(): string 107 | { 108 | if (function_exists('resource_path')) { 109 | return resource_path('lang/vendor/nova'); 110 | } 111 | 112 | throw new Exception('Command cannot be run outside Laravel'); 113 | } 114 | 115 | public function noLocalesRequested(Collection $requestedLocales): void 116 | { 117 | if (! $requestedLocales->count()) { 118 | $this->error('You must either specify one or more locales, or use the --all option.'); 119 | 120 | exit; 121 | } 122 | } 123 | } 124 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Thank you for taking the time to contribute your language to this package! It is amazing to have a community of developers and translators from around the world helping out. Contributions are **welcome** and will be fully **credited**. 4 | 5 | Please read and understand the contribution guide before creating an issue or pull request. 6 | 7 | ## Contributing Translations 8 | 9 | Before you commit any changes, please consider the following guidelines: 10 | * Contributions are made by submitting a **pull request** including new language files or updates to existing files. 11 | * If you raise an **issue** about a particular language but do not raise a PR with the suggested changes, it may not be accepted unless you clearly explain your issue. 12 | * Please only include 1 language at a time in a PR (unless they are closely related, such as `pt`/`pt-BR` or `zh-CN`/`zh-TW`). If you can contribute in multiple languages, that's great, but please raise different requests for each language to make the review process easier. 13 | * Ensure that the JSON file is still valid when new keys are added (i.e. no duplicate keys, no trailing or missing commas etc.) 14 | * If you are adding a new language, ensure you translate **both** the `resources/lang/{locale}.json` and `resources/lang/{locale}/validation.php` files. 15 | * If you have changed several existing translations, please give a brief explanation for why your versions are preferred over the existing translations. 16 | * If you add or change a particular word in any one translation key, ensure you reuse the same word in all related keys, e.g. `Delete`, `Delete Selected`, `Are you sure you want to delete this resource?`, `The resource was successfully deleted.` etc. should all use the same verb for "delete". 17 | * If the file has existing translations with either formal or informal ("tu/vous", "tú/usted", "du/Sie", etc.) verb forms or pronouns, ensure your additions match the same level of formality as the existing keys. If you think the whole file should be changed from formal to informal or vice versa, please raise an issue for discussion. 18 | * Ensure that the order of the translation keys is the same as in the [source file from laravel/nova](https://github.com/laravel/nova/blob/2.0/resources/lang/en.json). You can omit keys if you have not translated them yet, but you should insert new keys into the correct order. This helps the diff on the pull request to display more usefully. 19 | * Do not try to match the English capitalisation if your language does not usually use Title Case, e.g. `Delete Resource` should be `Eliminar recurso`, `Supprimer la ressource`, `Usuń zasób`, `Otkači resurs`, etc. as appropriate. 20 | * There are different possible approaches to handling the limitations of Laravel's translation functionality when it comes to the gender of resources. To translate a key such as `The :resource was created!`, where the resource's name in German could be e.g. "(der) Nutzer", "(die) Seite" or "(das) Dokument", you could either leave off the article "the", i.e. `:resource wurde erstellt!` or include the word for "resource" in the translation, i.e. `Die Ressource :resource wurde erstellt!`. Decide which works best for your language and ensure that you use the same format throughout related translation keys. The least preferred option is to include all gender options, e.g. `Der/Die/Das :resource wurde erstellt!`, as this is difficult to read. 21 | * If there is a problem where your language cannot be translated grammatically correctly because of the way Nova has formatted the English sentence, you should raise an issue in the [laravel/nova-issues](https://github.com/laravel/nova-issues/issues/) repository. We cannot fix limitations of the available keys. For example the issue of "`Create` + Resource" was fixed to `Create :resource` by raising it directly with the Nova team. You can link your Nova issue to an issue or PR in this repository if it helps. 22 | * All country names have been imported from the [CLDR repository](http://cldr.unicode.org/) as the definitive source, so please do not modify the names of countries in this repository. If you have a genuine problem with the name of a country, please raise an issue to discuss it. 23 | * Note that the `en.json` file in this repository has been modified from the original file from laravel/nova to provide the correct country names as above. 24 | * There is no need to update the count of translated strings and add your username to the readme as this is done by script when the PR is merged. 25 | * Take note of the common mistakes below which can be misleading in English and are commonly mistranslated. 26 | 27 | ### Common Mistakes 28 | 29 | * `Reset Password Notification` means _(Reset Password)+(Notification)_ "notification of the reset of the password", not _(Reset)+(Password Notification)_ "to reset the password-notification". 30 | * `Increase` and `Decrease` are nouns not verbs, i.e. "the increase" not "to increase". 31 | * `Force Delete Resource` means _(Force Delete)+(Resource)_ "to permanently delete the resource", not _(Force)+(Delete Resource)_ "to force the deletion-resource" 32 | 33 | ## Contributing PHP Functionality 34 | 35 | - **[PSR-2 Coding Standard.](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** The easiest way to apply the conventions is to install [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer). 36 | - **Add tests!** Your patch won't be accepted if it doesn't have tests. 37 | - **Document any change in behaviour.** Make sure the `README.md` and any other relevant documentation are kept up-to-date. 38 | - **Consider our release cycle.** We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option. 39 | - **Create feature branches.** Don't ask us to pull from your master branch. 40 | - **One pull request per feature.** If you want to do more than one thing, send multiple pull requests. 41 | - **Send coherent history.** Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting. 42 | 43 | **Happy coding!** 44 | -------------------------------------------------------------------------------- /src/Commands/NovaLangPublish.php: -------------------------------------------------------------------------------- 1 | getAvailableLocales(); 47 | 48 | $requestedLocales = $this->getRequestedLocales(); 49 | 50 | $requestedLocales->each(function (string $alias, string $locale) use ($availableLocales) { 51 | if ($alias == 'en' && $this->isForce()) { 52 | if (! $this->confirm(sprintf(static::CONFIRM_EN_OVERWRITE))) { 53 | return; 54 | } 55 | } 56 | 57 | if (! $availableLocales->contains($locale)) { 58 | $this->warn(sprintf(static::LOCALE_NOT_EXIST, $locale)); 59 | 60 | return; 61 | } 62 | 63 | $asAlias = ''; 64 | 65 | if ($this->option('underscore')) { 66 | $alias = $this->fixSeparators($alias, '_'); 67 | } 68 | 69 | if ($alias !== $locale) { 70 | $asAlias = sprintf(static::AS_ALIAS, $alias); 71 | } 72 | 73 | $inputDirectory = $this->directoryFrom().'/'.$locale; 74 | 75 | $outputDirectory = $this->directoryTo().'/'.$alias; 76 | 77 | $inputFile = $inputDirectory.'.json'; 78 | 79 | $outputFile = $outputDirectory.'.json'; 80 | 81 | if (($this->filesystem->exists($outputDirectory) || $this->filesystem->exists($outputFile)) && ! $this->isForce()) { 82 | $this->warn(sprintf(static::CONFIRM_OVERWRITE, $locale, $asAlias)); 83 | 84 | return; 85 | } 86 | 87 | if ($this->filesystem->exists($inputDirectory)) { 88 | $this->filesystem->makeDirectory($outputDirectory, 0777, true, true); 89 | 90 | $this->filesystem->copyDirectory($inputDirectory, $outputDirectory); 91 | } 92 | 93 | if ($this->filesystem->exists($inputFile)) { 94 | $this->filesystem->copy($inputFile, $outputFile); 95 | } 96 | 97 | $this->info(sprintf(static::PUBLISHED_SUCCESSFULLY, $locale, $asAlias)); 98 | }); 99 | } 100 | 101 | protected function getRequestedLocales(): Collection 102 | { 103 | $locales = parent::getRequestedLocales(); 104 | 105 | $aliases = $this->getLocaleAliases($locales->count() == 1 ? $locales->first() : false); 106 | 107 | $locales = $locales->mapWithKeys(function (string $locale) use (&$aliases) { 108 | $alias = $aliases->pull($locale, $locale); 109 | 110 | return [$locale => $alias]; 111 | }); 112 | 113 | if ($aliases->count()) { 114 | $aliases = $aliases->map(function (string $locale, string $alias) { 115 | return "$alias:$locale"; 116 | })->join(','); 117 | 118 | $this->warn(sprintf(static::ALIASES_NOT_USED, $aliases)); 119 | } 120 | 121 | return $locales; 122 | } 123 | 124 | /** 125 | * Get aliases for locales. 126 | * 127 | * @param bool|string $single 128 | * @return Collection 129 | */ 130 | protected function getLocaleAliases($single = false): Collection 131 | { 132 | $aliases = collect(); 133 | 134 | /** @var string $input */ 135 | $input = $this->option('alias'); 136 | 137 | if ($input) { 138 | $inputs = explode(',', $input); 139 | 140 | if (strpos($input, ':') === false) { 141 | if ($single && count($inputs) == 1) { 142 | return collect([(string) $single => $input]); 143 | } 144 | 145 | $this->error(static::ALIAS_WRONG_FORMAT); 146 | 147 | exit; 148 | } elseif (substr_count($input, ':') < count($inputs)) { 149 | if ($single) { 150 | $this->error(static::ONLY_ONE_ALIAS); 151 | } else { 152 | $this->error(static::ALIAS_WRONG_FORMAT); 153 | } 154 | 155 | exit; 156 | } 157 | 158 | foreach ($inputs as $input) { 159 | [$locale, $alias] = explode(':', $input); 160 | 161 | if (empty($alias) || empty($locale)) { 162 | $this->error(sprintf(static::ALIAS_NOT_VALID, $input)); 163 | exit; 164 | } 165 | 166 | if ($aliases->has($locale)) { 167 | $this->warn(sprintf(static::ALIAS_DECLARED_MORE_THAN_ONCE, $locale)); 168 | } 169 | 170 | $locale = $this->fixSeparators($locale); 171 | 172 | $aliases->put($locale, $alias); 173 | } 174 | } 175 | 176 | return $aliases; 177 | } 178 | } 179 | -------------------------------------------------------------------------------- /resources/lang/tl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Mga gawain", 3 | "Details": "Mga detalye", 4 | "If you did not request a password reset, no further action is required.": "Kung hindi po kayo ang nag-request na i-reset ang inyong password, huwag na lamang pansinin itong email na ito.", 5 | "Reset Password": "I-reset ang password", 6 | "Sorry! You are not authorized to perform this action.": "Pasensya na po. hindi po maaaring ituloy ang inyong pakay.", 7 | "You are receiving this email because we received a password reset request for your account.": "Natanggap mo ang email na ito dahil may nagrequest na i-reset ang iyong password.", 8 | "Confirm Password": "Ulitin ang password", 9 | "Dashboard": "Dashboard", 10 | "Email Address": "Email address", 11 | "Forgot Password": "Nakalimutan ang Password?", 12 | "Forgot your password?": "Nalimutan mo ba ang iyong password?", 13 | "Log In": "Login", 14 | "Logout": "Logout", 15 | "Password": "Password", 16 | "Remember me": "Ako'y Tandaan", 17 | "Resources": "Resources", 18 | "Send Password Reset Link": "Ipadala ang link na pang-reset ng password", 19 | "Welcome Back!": "Maligayang pagbabalik!", 20 | "Delete Resource": "Pagbubura", 21 | "Delete": "Burahin", 22 | "Detach Resource": "Paghihiwalay", 23 | "Detach": "Paghihiwalay", 24 | "Detach Selected": "Ihiwalay ang mga napili", 25 | "Delete Selected": "Burahin ang mga napili", 26 | "Force Delete Selected": "Puwersahang pagbubura ng mga napili", 27 | "Restore Selected": "Ibaling ang mga napili", 28 | "Restore Resource": "Ibalik ang binura", 29 | "Restore": "Pagbabalik ng mga binura", 30 | "Force Delete Resource": "Pwersahang pagbubura", 31 | "Force Delete": "Puwersahang pagbubura", 32 | "Are you sure you want to delete this resource?": "Sigurado ba tayo na gusto nating burahin ito?", 33 | "Are you sure you want to delete the selected resources?": "Sigurado ba tayo na gusto nating burahin ang mga napili?", 34 | "Are you sure you want to detach this resource?": "Sigurado ba tayo na gusto nating ihiwalay ang napili?", 35 | "Are you sure you want to detach the selected resources?": "Sigurado ba tayo na gusto nating ihiwalay ang mga napili?", 36 | "Are you sure you want to force delete this resource?": "Sigurado ba tayo na buburahin natin ito?", 37 | "Are you sure you want to force delete the selected resources?": "Sigurado ba tayo na buburahin natin ang mga napili?", 38 | "Are you sure you want to restore this resource?": "Sigurado ba tayo na ibabalik natin ito?", 39 | "Are you sure you want to restore the selected resources?": "Sigurado ba tayo na ibabalik natin ang mga napili?", 40 | "No :resource matched the given criteria.": "Walang :resource na nakita sa mga katagang ipinanghanap.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "May ibang nagbago nito mula kanina. Mag-reload at subukang muli.", 42 | "Are you sure you want to delete this file?": "Buburahin talaga natin itong file?", 43 | "Are you sure you want to run this action?": "Sigurado ka bang ituloy ito?", 44 | "Attach": "Magsama", 45 | "Attach & Attach Another": "Magsama at magsama pa", 46 | "Cancel": "Ikansela", 47 | "Choose": "Pumili", 48 | "Choose File": "Pumili ng File", 49 | "Choose Type": "Pumili ng Type", 50 | "Choose an option": "Pumili ng option", 51 | "Click to choose": "Click upang makapili", 52 | "Create": "Lumikha", 53 | "Create & Add Another": "Lumikha at magdagdag pa", 54 | "Delete File": "Burahin ang File", 55 | "Edit": "I-edit", 56 | "Go Home": "Uwi", 57 | "Hold Up!": "Teka muna!", 58 | "Lens": "Lens", 59 | "New": "Bago", 60 | "Next": "Next", 61 | "Only Trashed": "Mga ibinasura lamang", 62 | "Per Page": "Kada pahina", 63 | "Preview": "Preview", 64 | "Previous": "Nakalipas", 65 | "Run Action": "Patakbuhin", 66 | "Select Action": "Pumili ng gawain", 67 | "Select all": "Piliin lahat", 68 | "Something went wrong.": "May sumablay.", 69 | "The action was executed successfully.": "Tagumpay na nagawa!", 70 | "The government won't let us show you what's behind these doors": "Ipinagbawal ng gobyerno na makita ang nasa likod ng mga nakasaradong pinto", 71 | "Update": "I-update", 72 | "Update & Continue Editing": "I-update at mag-edit muli", 73 | "View": "View", 74 | "We're lost in space. The page you were trying to view does not exist.": "Naligaw tayo sa kalawakan. Hindi natin makita ang ating pupuntahan.", 75 | "Whoops": "Ay", 76 | "Whoops!": "Ay!", 77 | "With Trashed": "May ibinasura", 78 | "Write": "isulat", 79 | "total": "total", 80 | "January": "Enero", 81 | "February": "Pebrero", 82 | "March": "Marso", 83 | "April": "Abril", 84 | "May": "Mayo", 85 | "June": "Hunyo", 86 | "July": "Hulyo", 87 | "August": "Agosto", 88 | "September": "Setyembre", 89 | "October": "Oktubre", 90 | "November": "Nobyembre", 91 | "December": "Disyembre", 92 | "Afghanistan": "Afghanistan", 93 | "Aland Islands": "Aland Islands", 94 | "Albania": "Albania", 95 | "Algeria": "Algeria", 96 | "American Samoa": "American Samoa", 97 | "Andorra": "Andorra", 98 | "Angola": "Angola", 99 | "Anguilla": "Anguilla", 100 | "Antarctica": "Antarctica", 101 | "Antigua And Barbuda": "Antigua And Barbuda", 102 | "Argentina": "Argentina", 103 | "Armenia": "Armenia", 104 | "Aruba": "Aruba", 105 | "Australia": "Australia", 106 | "Austria": "Austria", 107 | "Azerbaijan": "Azerbaijan", 108 | "Bahamas": "Bahamas", 109 | "Bahrain": "Bahrain", 110 | "Bangladesh": "Bangladesh", 111 | "Barbados": "Barbados", 112 | "Belarus": "Belarus", 113 | "Belgium": "Belgium", 114 | "Belize": "Belize", 115 | "Benin": "Benin", 116 | "Bermuda": "Bermuda", 117 | "Bhutan": "Bhutan", 118 | "Bolivia": "Bolivia", 119 | "Bosnia And Herzegovina": "Bosnia And Herzegovina", 120 | "Botswana": "Botswana", 121 | "Bouvet Island": "Bouvet Island", 122 | "Brazil": "Brazil", 123 | "British Indian Ocean Territory": "British Indian Ocean Territory", 124 | "Brunei Darussalam": "Brunei Darussalam", 125 | "Bulgaria": "Bulgaria", 126 | "Burkina Faso": "Burkina Faso", 127 | "Burundi": "Burundi", 128 | "Cambodia": "Cambodia", 129 | "Cameroon": "Cameroon", 130 | "Canada": "Canada", 131 | "Cape Verde": "Cape Verde", 132 | "Cayman Islands": "Cayman Islands", 133 | "Central African Republic": "Central African Republic", 134 | "Chad": "Chad", 135 | "Chile": "Chile", 136 | "China": "China", 137 | "Christmas Island": "Christmas Island", 138 | "Cocos (Keeling) Islands": "Cocos (Keeling) Islands", 139 | "Colombia": "Colombia", 140 | "Comoros": "Comoros", 141 | "Congo": "Congo", 142 | "Congo, Democratic Republic": "Congo, Democratic Republic", 143 | "Cook Islands": "Cook Islands", 144 | "Costa Rica": "Costa Rica", 145 | "Cote D'Ivoire": "Cote D'Ivoire", 146 | "Croatia": "Croatia", 147 | "Cuba": "Cuba", 148 | "Cyprus": "Cyprus", 149 | "Czech Republic": "Czech Republic", 150 | "Denmark": "Denmark", 151 | "Djibouti": "Djibouti", 152 | "Dominica": "Dominica", 153 | "Dominican Republic": "Dominican Republic", 154 | "Ecuador": "Ecuador", 155 | "Egypt": "Egypt", 156 | "El Salvador": "El Salvador", 157 | "Equatorial Guinea": "Equatorial Guinea", 158 | "Eritrea": "Eritrea", 159 | "Estonia": "Estonia", 160 | "Ethiopia": "Ethiopia", 161 | "Falkland Islands (Malvinas)": "Falkland Islands (Malvinas)", 162 | "Faroe Islands": "Faroe Islands", 163 | "Fiji": "Fiji", 164 | "Finland": "Finland", 165 | "France": "France", 166 | "French Guiana": "French Guiana", 167 | "French Polynesia": "French Polynesia", 168 | "French Southern Territories": "French Southern Territories", 169 | "Gabon": "Gabon", 170 | "Gambia": "Gambia", 171 | "Georgia": "Georgia", 172 | "Germany": "Germany", 173 | "Ghana": "Ghana", 174 | "Gibraltar": "Gibraltar", 175 | "Greece": "Greece", 176 | "Greenland": "Greenland", 177 | "Grenada": "Grenada", 178 | "Guadeloupe": "Guadeloupe", 179 | "Guam": "Guam", 180 | "Guatemala": "Guatemala", 181 | "Guernsey": "Guernsey", 182 | "Guinea": "Guinea", 183 | "Guinea-Bissau": "Guinea-Bissau", 184 | "Guyana": "Guyana", 185 | "Haiti": "Haiti", 186 | "Heard Island & Mcdonald Islands": "Heard Island & Mcdonald Islands", 187 | "Holy See (Vatican City State)": "Holy See (Vatican City State)", 188 | "Honduras": "Honduras", 189 | "Hong Kong": "Hong Kong", 190 | "Hungary": "Hungary", 191 | "Iceland": "Iceland", 192 | "India": "India", 193 | "Indonesia": "Indonesia", 194 | "Iran, Islamic Republic Of": "Iran, Islamic Republic Of", 195 | "Iraq": "Iraq", 196 | "Ireland": "Ireland", 197 | "Isle Of Man": "Isle Of Man", 198 | "Israel": "Israel", 199 | "Italy": "Italy", 200 | "Jamaica": "Jamaica", 201 | "Japan": "Japan", 202 | "Jersey": "Jersey", 203 | "Jordan": "Jordan", 204 | "Kazakhstan": "Kazakhstan", 205 | "Kenya": "Kenya", 206 | "Kiribati": "Kiribati", 207 | "Korea": "Korea", 208 | "Kuwait": "Kuwait", 209 | "Kyrgyzstan": "Kyrgyzstan", 210 | "Lao People's Democratic Republic": "Lao People's Democratic Republic", 211 | "Latvia": "Latvia", 212 | "Lebanon": "Lebanon", 213 | "Lesotho": "Lesotho", 214 | "Liberia": "Liberia", 215 | "Libyan Arab Jamahiriya": "Libyan Arab Jamahiriya", 216 | "Liechtenstein": "Liechtenstein", 217 | "Lithuania": "Lithuania", 218 | "Luxembourg": "Luxembourg", 219 | "Macao": "Macao", 220 | "Macedonia": "Macedonia", 221 | "Madagascar": "Madagascar", 222 | "Malawi": "Malawi", 223 | "Malaysia": "Malaysia", 224 | "Maldives": "Maldives", 225 | "Mali": "Mali", 226 | "Malta": "Malta", 227 | "Marshall Islands": "Marshall Islands", 228 | "Martinique": "Martinique", 229 | "Mauritania": "Mauritania", 230 | "Mauritius": "Mauritius", 231 | "Mayotte": "Mayotte", 232 | "Mexico": "Mexico", 233 | "Micronesia, Federated States Of": "Micronesia, Federated States Of", 234 | "Moldova": "Moldova", 235 | "Monaco": "Monaco", 236 | "Mongolia": "Mongolia", 237 | "Montenegro": "Montenegro", 238 | "Montserrat": "Montserrat", 239 | "Morocco": "Morocco", 240 | "Mozambique": "Mozambique", 241 | "Myanmar": "Myanmar", 242 | "Namibia": "Namibia", 243 | "Nauru": "Nauru", 244 | "Nepal": "Nepal", 245 | "Netherlands": "Netherlands", 246 | "New Caledonia": "New Caledonia", 247 | "New Zealand": "New Zealand", 248 | "Nicaragua": "Nicaragua", 249 | "Niger": "Niger", 250 | "Nigeria": "Nigeria", 251 | "Niue": "Niue", 252 | "Norfolk Island": "Norfolk Island", 253 | "Northern Mariana Islands": "Northern Mariana Islands", 254 | "Norway": "Norway", 255 | "Oman": "Oman", 256 | "Pakistan": "Pakistan", 257 | "Palau": "Palau", 258 | "Palestinian Territory, Occupied": "Palestinian Territory, Occupied", 259 | "Panama": "Panama", 260 | "Papua New Guinea": "Papua New Guinea", 261 | "Paraguay": "Paraguay", 262 | "Peru": "Peru", 263 | "Philippines": "Philippines", 264 | "Pitcairn": "Pitcairn", 265 | "Poland": "Poland", 266 | "Portugal": "Portugal", 267 | "Puerto Rico": "Puerto Rico", 268 | "Qatar": "Qatar", 269 | "Reunion": "Reunion", 270 | "Romania": "Romania", 271 | "Russian Federation": "Russian Federation", 272 | "Rwanda": "Rwanda", 273 | "Saint Barthelemy": "Saint Barthelemy", 274 | "Saint Helena": "Saint Helena", 275 | "Saint Kitts And Nevis": "Saint Kitts And Nevis", 276 | "Saint Lucia": "Saint Lucia", 277 | "Saint Martin": "Saint Martin", 278 | "Saint Pierre And Miquelon": "Saint Pierre And Miquelon", 279 | "Saint Vincent And Grenadines": "Saint Vincent And Grenadines", 280 | "Samoa": "Samoa", 281 | "San Marino": "San Marino", 282 | "Sao Tome And Principe": "Sao Tome And Principe", 283 | "Saudi Arabia": "Saudi Arabia", 284 | "Senegal": "Senegal", 285 | "Serbia": "Serbia", 286 | "Seychelles": "Seychelles", 287 | "Sierra Leone": "Sierra Leone", 288 | "Singapore": "Singapore", 289 | "Slovakia": "Slovakia", 290 | "Slovenia": "Slovenia", 291 | "Solomon Islands": "Solomon Islands", 292 | "Somalia": "Somalia", 293 | "South Africa": "South Africa", 294 | "South Georgia And Sandwich Isl.": "South Georgia And Sandwich Isl.", 295 | "Spain": "Spain", 296 | "Sri Lanka": "Sri Lanka", 297 | "Sudan": "Sudan", 298 | "Suriname": "Suriname", 299 | "Svalbard And Jan Mayen": "Svalbard And Jan Mayen", 300 | "Swaziland": "Swaziland", 301 | "Sweden": "Sweden", 302 | "Switzerland": "Switzerland", 303 | "Syrian Arab Republic": "Syrian Arab Republic", 304 | "Taiwan": "Taiwan", 305 | "Tajikistan": "Tajikistan", 306 | "Tanzania": "Tanzania", 307 | "Thailand": "Thailand", 308 | "Timor-Leste": "Timor-Leste", 309 | "Togo": "Togo", 310 | "Tokelau": "Tokelau", 311 | "Tonga": "Tonga", 312 | "Trinidad And Tobago": "Trinidad And Tobago", 313 | "Tunisia": "Tunisia", 314 | "Turkey": "Turkey", 315 | "Turkmenistan": "Turkmenistan", 316 | "Turks And Caicos Islands": "Turks And Caicos Islands", 317 | "Tuvalu": "Tuvalu", 318 | "Uganda": "Uganda", 319 | "Ukraine": "Ukraine", 320 | "United Arab Emirates": "United Arab Emirates", 321 | "United Kingdom": "United Kingdom", 322 | "United States": "United States", 323 | "United States Outlying Islands": "United States Outlying Islands", 324 | "Uruguay": "Uruguay", 325 | "Uzbekistan": "Uzbekistan", 326 | "Vanuatu": "Vanuatu", 327 | "Venezuela": "Venezuela", 328 | "Viet Nam": "Vietnam", 329 | "Virgin Islands, British": "Virgin Islands, British", 330 | "Virgin Islands, U.S.": "Virgin Islands, U.S.", 331 | "Wallis And Futuna": "Wallis And Futuna", 332 | "Western Sahara": "Western Sahara", 333 | "Yemen": "Yemen", 334 | "Zambia": "Zambia", 335 | "Zimbabwe": "Zimbabwe", 336 | "Yes": "Oo", 337 | "No": "Hindi", 338 | "Action Status": "Katayuan", 339 | "The :resource was created!": "Nalikha na ang :resource na ito!", 340 | "Download": "I-download" 341 | } 342 | -------------------------------------------------------------------------------- /resources/lang/sk.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Akcie", 3 | "Details": "Detaily", 4 | "If you did not request a password reset, no further action is required.": "Pokiaľ ste si resetovanie hesla nevyžiadali, nie je potrebné nič robiť.", 5 | "Reset Password": "Resetovať heslo", 6 | "Sorry! You are not authorized to perform this action.": "Sorry! Nemáte práva na túto akciu.", 7 | "You are receiving this email because we received a password reset request for your account.": "Dostali ste tento email, pretože my sme dostali požiadavku na zmenu hesla pre Váš účet.", 8 | "Confirm Password": "Potvrdiť heslo", 9 | "Dashboard": "Nástenka", 10 | "Email Address": "Emailová adresa", 11 | "Forgot Password": "Zabudli ste heslo?", 12 | "Forgot your password?": "Zabudli ste heslo?", 13 | "Log In": "Prihlásenie", 14 | "Logout": "Odhlásenie", 15 | "Password": "Heslo", 16 | "Remember me": "Zapamätať si ma", 17 | "Resources": "Zdroje", 18 | "Send Password Reset Link": "Odoslať link na reset hesla", 19 | "Welcome Back!": "Vitajte späť!", 20 | "Delete Resource": "Vymazať zdroj", 21 | "Delete": "Vymazať", 22 | "Detach Resource": "Odobrať zdroj", 23 | "Detach": "Odobrať", 24 | "Detach Selected": "Odobrať zvolené", 25 | "Delete Selected": "Vymazať zvolené", 26 | "Force Delete Selected": "Vynútiť vymazanie zvolených", 27 | "Restore Selected": "Obnoviť zvolené", 28 | "Restore Resource": "Obnoviť zdroj", 29 | "Restore": "Obnoviť", 30 | "Force Delete Resource": "Vynútiť vymazanie zdroja", 31 | "Force Delete": "Vynútiť vymazanie", 32 | "Are you sure you want to delete this resource?": "Naozaj chcete vymazať tento zdroj?", 33 | "Are you sure you want to delete the selected resources?": "Naozaj chcete vymazať zvolené zdroje?", 34 | "Are you sure you want to detach this resource?": "Naozaj chcete odobrať tento zdroj?", 35 | "Are you sure you want to detach the selected resources?": "Naozaj chcete vymazať zvolené zdroje?", 36 | "Are you sure you want to force delete this resource?": "Naozaj chcete vynútiť vymazanie tohto zdroj?", 37 | "Are you sure you want to force delete the selected resources?": "Naozaj chcete vynútiť vymazanie zvolených zdrojov?", 38 | "Are you sure you want to restore this resource?": "Naozaj chcete obnoviť tieto zdroje?", 39 | "Are you sure you want to restore the selected resources?": "Naozaj chcete obnoviť zvolené zdroje?", 40 | "No :resource matched the given criteria.": "Žiaden :resource nevyhovel zadaných kritériám.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Iný užívateľ obnovil tento zdroj od posledného načítania. Prosím, obnovte stránku a skúste znova.", 42 | "Are you sure you want to delete this file?": "Naozaj chcete vymazať tento súbor?", 43 | "Are you sure you want to run this action?": "Naozaj chcete spustiť túto akciu?", 44 | "Attach": "Priložit", 45 | "Attach & Attach Another": "Priložiť a priložiť ďalšie", 46 | "Cancel": "Zrušiť", 47 | "Choose": "Vybrať", 48 | "Choose File": "Vybrať súbor", 49 | "Choose Type": "Vybrať typ", 50 | "Choose an option": "Vybrať možnosť", 51 | "Click to choose": "Zakliknúť", 52 | "Create": "Vytvoriť", 53 | "Create & Add Another": "Vytvoriť a pridať ďalšie", 54 | "Delete File": "Vymazať súbor", 55 | "Edit": "Upraviť", 56 | "Edit Attached": "Upraviť priložené", 57 | "Go Home": "Späť domov", 58 | "Hold Up!": "Vydržte!", 59 | "Lens": "Šošovka", 60 | "New": "Nový", 61 | "Next": "Ďalší", 62 | "Only Trashed": "Len vymazané", 63 | "Per Page": "Na stránku", 64 | "Preview": "Náhľad", 65 | "Previous": "Prechádzajúci", 66 | "Run Action": "Spustiť akciu", 67 | "Select Action": "Vybrať akciu", 68 | "Select all": "Vybrať všetko", 69 | "Something went wrong.": "Niečo sa pokazilo.", 70 | "The action was executed successfully.": "Akcia prebehla úspešne!", 71 | "The government won't let us show you what's behind these doors": "Štát nás nenechá nahliadnúť, čo je za týmito dvermi", 72 | "Update": "Aktualizovať", 73 | "Update & Continue Editing": "Aktualizovať a pokračovať v úprave", 74 | "View": "Ukázať", 75 | "We're lost in space. The page you were trying to view does not exist.": "Stratili sme sa. Stránka, ktorú hľadáte, neexistuje.", 76 | "Whoops": "Ups", 77 | "Whoops!": "Ups!", 78 | "With Trashed": "Spolu s vymazanými", 79 | "Write": "Zapísať", 80 | "total": "celkovo", 81 | "January": "Január", 82 | "February": "Február", 83 | "March": "Marec", 84 | "April": "Apríl", 85 | "May": "Máj", 86 | "June": "Jún", 87 | "July": "Júl", 88 | "August": "August", 89 | "September": "September", 90 | "October": "Október", 91 | "November": "November", 92 | "December": "December", 93 | "Afghanistan": "Afganistan", 94 | "Aland Islands": "Alandy", 95 | "Albania": "Albánsko", 96 | "Algeria": "Alžírsko", 97 | "American Samoa": "Americká Samoa", 98 | "Andorra": "Andorra", 99 | "Angola": "Angola", 100 | "Anguilla": "Anguilla", 101 | "Antarctica": "Antarktída", 102 | "Antigua And Barbuda": "Antigua a Barbuda", 103 | "Argentina": "Argentína", 104 | "Armenia": "Arménsko", 105 | "Aruba": "Aruba", 106 | "Australia": "Austrália", 107 | "Austria": "Rakúsko", 108 | "Azerbaijan": "Azerbajdžan", 109 | "Bahamas": "Bahamy", 110 | "Bahrain": "Bahrajn", 111 | "Bangladesh": "Bangladéš", 112 | "Barbados": "Barbados", 113 | "Belarus": "Bielorusko", 114 | "Belgium": "Belgicko", 115 | "Belize": "Belize", 116 | "Benin": "Benin", 117 | "Bermuda": "Bermudy", 118 | "Bhutan": "Bhután", 119 | "Bolivia": "Bolívia", 120 | "Bonaire, Sint Eustatius and Saba": "Karibské Holandsko", 121 | "Bosnia And Herzegovina": "Bosna a Hercegovina", 122 | "Botswana": "Botswana", 123 | "Bouvet Island": "Bouvetov ostrov", 124 | "Brazil": "Brazília", 125 | "British Indian Ocean Territory": "Britské indickooceánske územie", 126 | "Brunei Darussalam": "Brunej", 127 | "Bulgaria": "Bulharsko", 128 | "Burkina Faso": "Burkina Faso", 129 | "Burundi": "Burundi", 130 | "Cambodia": "Kambodža", 131 | "Cameroon": "Kamerun", 132 | "Canada": "Kanada", 133 | "Cape Verde": "Kapverdy", 134 | "Cayman Islands": "Kajmanie ostrovy", 135 | "Central African Republic": "Stredoafrická republika", 136 | "Chad": "Čad", 137 | "Chile": "Čile", 138 | "China": "Čína", 139 | "Christmas Island": "Vianočný ostrov", 140 | "Cocos (Keeling) Islands": "Kokosové ostrovy", 141 | "Colombia": "Kolumbia", 142 | "Comoros": "Komory", 143 | "Congo": "Konžská republika", 144 | "Congo, Democratic Republic": "Konžská demokratická republika", 145 | "Cook Islands": "Cookove ostrovy", 146 | "Costa Rica": "Kostarika", 147 | "Cote D'Ivoire": "Pobrežie Slonoviny", 148 | "Croatia": "Chorvátsko", 149 | "Cuba": "Kuba", 150 | "Curaçao": "Curaçao", 151 | "Cyprus": "Cyprus", 152 | "Czech Republic": "Česko", 153 | "Denmark": "Dánsko", 154 | "Djibouti": "Džibutsko", 155 | "Dominica": "Dominika", 156 | "Dominican Republic": "Dominikánska republika", 157 | "Ecuador": "Ekvádor", 158 | "Egypt": "Egypt", 159 | "El Salvador": "Salvádor", 160 | "Equatorial Guinea": "Rovníková Guinea", 161 | "Eritrea": "Eritrea", 162 | "Estonia": "Estónsko", 163 | "Ethiopia": "Etiópia", 164 | "Falkland Islands (Malvinas)": "Falklandy", 165 | "Faroe Islands": "Faerské ostrovy", 166 | "Fiji": "Fidži", 167 | "Finland": "Fínsko", 168 | "France": "Francúzsko", 169 | "French Guiana": "Francúzska Guyana", 170 | "French Polynesia": "Francúzska Polynézia", 171 | "French Southern Territories": "Francúzske južné a antarktické územia", 172 | "Gabon": "Gabon", 173 | "Gambia": "Gambia", 174 | "Georgia": "Gruzínsko", 175 | "Germany": "Nemecko", 176 | "Ghana": "Ghana", 177 | "Gibraltar": "Gibraltár", 178 | "Greece": "Grécko", 179 | "Greenland": "Grónsko", 180 | "Grenada": "Grenada", 181 | "Guadeloupe": "Guadeloupe", 182 | "Guam": "Guam", 183 | "Guatemala": "Guatemala", 184 | "Guernsey": "Guernsey", 185 | "Guinea": "Guinea", 186 | "Guinea-Bissau": "Guinea-Bissau", 187 | "Guyana": "Guyana", 188 | "Haiti": "Haiti", 189 | "Heard Island & Mcdonald Islands": "Heardov ostrov a Macdonaldove ostrovy", 190 | "Holy See (Vatican City State)": "Vatikán", 191 | "Honduras": "Honduras", 192 | "Hong Kong": "Hongkong – OAO Číny", 193 | "Hungary": "Maďarsko", 194 | "Iceland": "Island", 195 | "India": "India", 196 | "Indonesia": "Indonézia", 197 | "Iran, Islamic Republic Of": "Irán", 198 | "Iraq": "Irak", 199 | "Ireland": "Írsko", 200 | "Isle Of Man": "Ostrov Man", 201 | "Israel": "Izrael", 202 | "Italy": "Taliansko", 203 | "Jamaica": "Jamajka", 204 | "Japan": "Japonsko", 205 | "Jersey": "Jersey", 206 | "Jordan": "Jordánsko", 207 | "Kazakhstan": "Kazachstan", 208 | "Kenya": "Keňa", 209 | "Kiribati": "Kiribati", 210 | "Korea, Democratic People's Republic of": "Severná Kórea", 211 | "Korea": "Južná Kórea", 212 | "Kosovo": "Kosovo", 213 | "Kuwait": "Kuvajt", 214 | "Kyrgyzstan": "Kirgizsko", 215 | "Lao People's Democratic Republic": "Laos", 216 | "Latvia": "Lotyšsko", 217 | "Lebanon": "Libanon", 218 | "Lesotho": "Lesotho", 219 | "Liberia": "Libéria", 220 | "Libyan Arab Jamahiriya": "Líbya", 221 | "Liechtenstein": "Lichtenštajnsko", 222 | "Lithuania": "Litva", 223 | "Luxembourg": "Luxembursko", 224 | "Macao": "Macao – OAO Číny", 225 | "Macedonia": "Severné Macedónsko", 226 | "Madagascar": "Madagaskar", 227 | "Malawi": "Malawi", 228 | "Malaysia": "Malajzia", 229 | "Maldives": "Maldivy", 230 | "Mali": "Mali", 231 | "Malta": "Malta", 232 | "Marshall Islands": "Marshallove ostrovy", 233 | "Martinique": "Martinik", 234 | "Mauritania": "Mauritánia", 235 | "Mauritius": "Maurícius", 236 | "Mayotte": "Mayotte", 237 | "Mexico": "Mexiko", 238 | "Micronesia, Federated States Of": "Mikronézia", 239 | "Moldova": "Moldavsko", 240 | "Monaco": "Monako", 241 | "Mongolia": "Mongolsko", 242 | "Montenegro": "Čierna Hora", 243 | "Montserrat": "Montserrat", 244 | "Morocco": "Maroko", 245 | "Mozambique": "Mozambik", 246 | "Myanmar": "Mjanmarsko", 247 | "Namibia": "Namíbia", 248 | "Nauru": "Nauru", 249 | "Nepal": "Nepál", 250 | "Netherlands": "Holandsko", 251 | "New Caledonia": "Nová Kaledónia", 252 | "New Zealand": "Nový Zéland", 253 | "Nicaragua": "Nikaragua", 254 | "Niger": "Niger", 255 | "Nigeria": "Nigéria", 256 | "Niue": "Niue", 257 | "Norfolk Island": "Norfolk", 258 | "Northern Mariana Islands": "Severné Mariány", 259 | "Norway": "Nórsko", 260 | "Oman": "Omán", 261 | "Pakistan": "Pakistan", 262 | "Palau": "Palau", 263 | "Palestinian Territory, Occupied": "Palestínske územia", 264 | "Panama": "Panama", 265 | "Papua New Guinea": "Papua-Nová Guinea", 266 | "Paraguay": "Paraguaj", 267 | "Peru": "Peru", 268 | "Philippines": "Filipíny", 269 | "Pitcairn": "Pitcairnove ostrovy", 270 | "Poland": "Poľsko", 271 | "Portugal": "Portugalsko", 272 | "Puerto Rico": "Portoriko", 273 | "Qatar": "Katar", 274 | "Reunion": "Réunion", 275 | "Romania": "Rumunsko", 276 | "Russian Federation": "Rusko", 277 | "Rwanda": "Rwanda", 278 | "Saint Barthelemy": "Svätý Bartolomej", 279 | "Saint Helena": "Svätá Helena", 280 | "Saint Kitts And Nevis": "Svätý Krištof a Nevis", 281 | "Saint Lucia": "Svätá Lucia", 282 | "Saint Martin": "Svätý Martin (fr.)", 283 | "Saint Pierre And Miquelon": "Saint Pierre a Miquelon", 284 | "Saint Vincent And Grenadines": "Svätý Vincent a Grenadíny", 285 | "Samoa": "Samoa", 286 | "San Marino": "San Maríno", 287 | "Sao Tome And Principe": "Svätý Tomáš a Princov ostrov", 288 | "Saudi Arabia": "Saudská Arábia", 289 | "Senegal": "Senegal", 290 | "Serbia": "Srbsko", 291 | "Seychelles": "Seychely", 292 | "Sierra Leone": "Sierra Leone", 293 | "Singapore": "Singapur", 294 | "Sint Maarten (Dutch part)": "Svätý Martin (hol.)", 295 | "Slovakia": "Slovensko", 296 | "Slovenia": "Slovinsko", 297 | "Solomon Islands": "Šalamúnove ostrovy", 298 | "Somalia": "Somálsko", 299 | "South Africa": "Južná Afrika", 300 | "South Georgia And Sandwich Isl.": "Južná Georgia a Južné Sandwichove ostrovy", 301 | "South Sudan": "Južný Sudán", 302 | "Spain": "Španielsko", 303 | "Sri Lanka": "Srí Lanka", 304 | "Sudan": "Sudán", 305 | "Suriname": "Surinam", 306 | "Svalbard And Jan Mayen": "Svalbard a Jan Mayen", 307 | "Swaziland": "Eswatini", 308 | "Sweden": "Švédsko", 309 | "Switzerland": "Švajčiarsko", 310 | "Syrian Arab Republic": "Sýria", 311 | "Taiwan": "Taiwan", 312 | "Tajikistan": "Tadžikistan", 313 | "Tanzania": "Tanzánia", 314 | "Thailand": "Thajsko", 315 | "Timor-Leste": "Východný Timor", 316 | "Togo": "Togo", 317 | "Tokelau": "Tokelau", 318 | "Tonga": "Tonga", 319 | "Trinidad And Tobago": "Trinidad a Tobago", 320 | "Tunisia": "Tunisko", 321 | "Turkey": "Turecko", 322 | "Turkmenistan": "Turkménsko", 323 | "Turks And Caicos Islands": "Turks a Caicos", 324 | "Tuvalu": "Tuvalu", 325 | "Uganda": "Uganda", 326 | "Ukraine": "Ukrajina", 327 | "United Arab Emirates": "Spojené arabské emiráty", 328 | "United Kingdom": "Spojené kráľovstvo", 329 | "United States": "Spojené štáty", 330 | "United States Outlying Islands": "Menšie odľahlé ostrovy USA", 331 | "Uruguay": "Uruguaj", 332 | "Uzbekistan": "Uzbekistan", 333 | "Vanuatu": "Vanuatu", 334 | "Venezuela": "Venezuela", 335 | "Viet Nam": "Vietnam", 336 | "Virgin Islands, British": "Britské Panenské ostrovy", 337 | "Virgin Islands, U.S.": "Americké Panenské ostrovy", 338 | "Wallis And Futuna": "Wallis a Futuna", 339 | "Western Sahara": "Západná Sahara", 340 | "Yemen": "Jemen", 341 | "Zambia": "Zambia", 342 | "Zimbabwe": "Zimbabwe", 343 | "Yes": "Áno", 344 | "No": "Nie", 345 | "Action Status": "Postavenie", 346 | "The :resource was created!": ":resource bol vytvorený!", 347 | "Download": "Stiahnuť" 348 | } 349 | -------------------------------------------------------------------------------- /resources/lang/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Dejanja", 3 | "Details": "Podrobnosti", 4 | "If you did not request a password reset, no further action is required.": "Če niste zahtevali ponastavitve gesla, nadaljna dejanja niso potrebna.", 5 | "Reset Password": "Ponastavi geslo", 6 | "Sorry! You are not authorized to perform this action.": "Oprostite, niste pooblaščeni za omenjeno dejanje.", 7 | "You are receiving this email because we received a password reset request for your account.": "To sporočilo ste prejeli, ker je bila za vaš uporabniški račun zahtevana ponastavitev gesla.", 8 | "Confirm Password": "Potrdite geslo", 9 | "Dashboard": "Kontrolna plošča", 10 | "Email Address": "E-poštni naslov", 11 | "Forgot Password": "Ste pozabili geslo?", 12 | "Forgot your password?": "Ste pozabili geslo?", 13 | "Log In": "Prijava", 14 | "Logout": "Odjava", 15 | "Password": "Geslo", 16 | "Remember me": "Zapomni si me", 17 | "Resources": "Viri", 18 | "Send Password Reset Link": "Pošlji povezavo za ponastavitev gesla", 19 | "Welcome Back!": "Dobrodošli nazaj!", 20 | "Delete Resource": "Izbriši", 21 | "Delete": "Izbriši", 22 | "Detach Resource": "Loči vira", 23 | "Detach": "Loči", 24 | "Detach Selected": "Loči izbrane", 25 | "Delete Selected": "Izbriši izbrane", 26 | "Force Delete Selected": "Prisilno izbriši izbrane", 27 | "Restore Selected": "Obnovi izbrane", 28 | "Restore Resource": "Obnovi vir", 29 | "Restore": "Obnovi", 30 | "Force Delete Resource": "Prisilno izbriši vir", 31 | "Force Delete": "Prisilno izbriši", 32 | "Are you sure you want to delete this resource?": "Ste prepričani, da želite izbrisati vir?", 33 | "Are you sure you want to delete the selected resources?": "Ste prepričani, da želite izbrisati izbrane vire?", 34 | "Are you sure you want to detach this resource?": "Ste prepričani, da želite ločiti vir?", 35 | "Are you sure you want to detach the selected resources?": "Ste prepričani, da želite ločiti izbrane vire?", 36 | "Are you sure you want to force delete this resource?": "Ste prepričani, da želite prisilno izbrisati vir?", 37 | "Are you sure you want to force delete the selected resources?": "Ste prepričani, da želite prisilno izbrisati izbrane vire?", 38 | "Are you sure you want to restore this resource?": "Ste prepričani, da želite obnoviti vir?", 39 | "Are you sure you want to restore the selected resources?": "Ste prepričani, da želite obnoviti izbrane vire?", 40 | "No :resource matched the given criteria.": "Ni :resource, ki bi ustrezale kriterijem.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Drug uporabnik je v času od zadnjega nalaganja strani, posodobil vir. Osvežite stran in poskusite znova.", 42 | "Are you sure you want to delete this file?": "Ste prepričani, da želite izbrisati datoteko?", 43 | "Are you sure you want to run this action?": "Ste prepričani, da želite izvesti dejanje?", 44 | "Attach": "Poveži", 45 | "Attach & Attach Another": "Poveži in poveži dodatno", 46 | "Cancel": "Prekliči", 47 | "Choose": "Izberi", 48 | "Choose File": "Izberi datoteko", 49 | "Choose Type": "Izberi tip", 50 | "Choose an option": "Izberi možnost", 51 | "Click to choose": "Klikni za izbor", 52 | "Create": "Ustvari", 53 | "Create & Add Another": "Ustvari in ustvari dodatno", 54 | "Delete File": "Izbriši datoteko", 55 | "Edit": "Uredi", 56 | "Edit Attached": "Uredi povezano", 57 | "Go Home": "Domov", 58 | "Hold Up!": "Ustavi se!", 59 | "Lens": "Leča", 60 | "New": "Nov", 61 | "Next": "Naslednji", 62 | "Only Trashed": "Samo izbrisani", 63 | "Per Page": "Na stran", 64 | "Preview": "Predogled", 65 | "Previous": "Prejšnji", 66 | "Run Action": "Izvedi dejanje", 67 | "Select Action": "Izberi dejanje", 68 | "Select all": "Izberi vse", 69 | "Something went wrong.": "Nekaj je šlo narobe.", 70 | "The action was executed successfully.": "Dejanje uspešno izvedeno!", 71 | "The government won't let us show you what's behind these doors": "Vladajoči nam ne dovolijo, da vam pokažemo kaj je za temi vrati", 72 | "Update": "Posodobi", 73 | "Update & Continue Editing": "Posodobi in nadaljuj z urejanjem", 74 | "View": "Ogled", 75 | "We're lost in space. The page you were trying to view does not exist.": "Izgubljeni v vesolju. Željena stran ne obstaja.", 76 | "Whoops": "Ups", 77 | "Whoops!": "Ups!", 78 | "With Trashed": "Z izbrisanimi", 79 | "Write": "Piši", 80 | "total": "skupaj", 81 | "January": "januar", 82 | "February": "februar", 83 | "March": "marec", 84 | "April": "april", 85 | "May": "maj", 86 | "June": "junij", 87 | "July": "julij", 88 | "August": "avgust", 89 | "September": "september", 90 | "October": "oktober", 91 | "November": "november", 92 | "December": "december", 93 | "Afghanistan": "Afganistan", 94 | "Aland Islands": "Ålandski otoki", 95 | "Albania": "Albanija", 96 | "Algeria": "Alžirija", 97 | "American Samoa": "Ameriška Samoa", 98 | "Andorra": "Andora", 99 | "Angola": "Angola", 100 | "Anguilla": "Angvila", 101 | "Antarctica": "Antarktika", 102 | "Antigua And Barbuda": "Antigva in Barbuda", 103 | "Argentina": "Argentina", 104 | "Armenia": "Armenija", 105 | "Aruba": "Aruba", 106 | "Australia": "Avstralija", 107 | "Austria": "Avstrija", 108 | "Azerbaijan": "Azerbajdžan", 109 | "Bahamas": "Bahami", 110 | "Bahrain": "Bahrajn", 111 | "Bangladesh": "Bangladeš", 112 | "Barbados": "Barbados", 113 | "Belarus": "Belorusija", 114 | "Belgium": "Belgija", 115 | "Belize": "Belize", 116 | "Benin": "Benin", 117 | "Bermuda": "Bermudi", 118 | "Bhutan": "Butan", 119 | "Bolivia": "Bolivija", 120 | "Bonaire, Sint Eustatius and Saba": "Nizozemski Karibi", 121 | "Bosnia And Herzegovina": "Bosna in Hercegovina", 122 | "Botswana": "Bocvana", 123 | "Bouvet Island": "Bouvetov otok", 124 | "Brazil": "Brazilija", 125 | "British Indian Ocean Territory": "Britansko ozemlje v Indijskem oceanu", 126 | "Brunei Darussalam": "Brunej", 127 | "Bulgaria": "Bolgarija", 128 | "Burkina Faso": "Burkina Faso", 129 | "Burundi": "Burundi", 130 | "Cambodia": "Kambodža", 131 | "Cameroon": "Kamerun", 132 | "Canada": "Kanada", 133 | "Cape Verde": "Zelenortski otoki", 134 | "Cayman Islands": "Kajmanski otoki", 135 | "Central African Republic": "Srednjeafriška republika", 136 | "Chad": "Čad", 137 | "Chile": "Čile", 138 | "China": "Kitajska", 139 | "Christmas Island": "Božični otok", 140 | "Cocos (Keeling) Islands": "Kokosovi otoki", 141 | "Colombia": "Kolumbija", 142 | "Comoros": "Komori", 143 | "Congo": "Kongo - Brazzaville", 144 | "Congo, Democratic Republic": "Demokratična republika Kongo", 145 | "Cook Islands": "Cookovi otoki", 146 | "Costa Rica": "Kostarika", 147 | "Cote D'Ivoire": "Slonokoščena obala", 148 | "Croatia": "Hrvaška", 149 | "Cuba": "Kuba", 150 | "Curaçao": "Curaçao", 151 | "Cyprus": "Ciper", 152 | "Czech Republic": "Češka", 153 | "Denmark": "Danska", 154 | "Djibouti": "Džibuti", 155 | "Dominica": "Dominika", 156 | "Dominican Republic": "Dominikanska republika", 157 | "Ecuador": "Ekvador", 158 | "Egypt": "Egipt", 159 | "El Salvador": "Salvador", 160 | "Equatorial Guinea": "Ekvatorialna Gvineja", 161 | "Eritrea": "Eritreja", 162 | "Estonia": "Estonija", 163 | "Ethiopia": "Etiopija", 164 | "Falkland Islands (Malvinas)": "Falklandski otoki", 165 | "Faroe Islands": "Ferski otoki", 166 | "Fiji": "Fidži", 167 | "Finland": "Finska", 168 | "France": "Francija", 169 | "French Guiana": "Francoska Gvajana", 170 | "French Polynesia": "Francoska Polinezija", 171 | "French Southern Territories": "Francosko južno ozemlje", 172 | "Gabon": "Gabon", 173 | "Gambia": "Gambija", 174 | "Georgia": "Gruzija", 175 | "Germany": "Nemčija", 176 | "Ghana": "Gana", 177 | "Gibraltar": "Gibraltar", 178 | "Greece": "Grčija", 179 | "Greenland": "Grenlandija", 180 | "Grenada": "Grenada", 181 | "Guadeloupe": "Guadeloupe", 182 | "Guam": "Guam", 183 | "Guatemala": "Gvatemala", 184 | "Guernsey": "Guernsey", 185 | "Guinea": "Gvineja", 186 | "Guinea-Bissau": "Gvineja Bissau", 187 | "Guyana": "Gvajana", 188 | "Haiti": "Haiti", 189 | "Heard Island & Mcdonald Islands": "Heardov otok in McDonaldovi otoki", 190 | "Holy See (Vatican City State)": "Vatikan", 191 | "Honduras": "Honduras", 192 | "Hong Kong": "Hongkong", 193 | "Hungary": "Madžarska", 194 | "Iceland": "Islandija", 195 | "India": "Indija", 196 | "Indonesia": "Indonezija", 197 | "Iran, Islamic Republic Of": "Iran", 198 | "Iraq": "Irak", 199 | "Ireland": "Irska", 200 | "Isle Of Man": "Otok Man", 201 | "Israel": "Izrael", 202 | "Italy": "Italija", 203 | "Jamaica": "Jamajka", 204 | "Japan": "Japonska", 205 | "Jersey": "Jersey", 206 | "Jordan": "Jordanija", 207 | "Kazakhstan": "Kazahstan", 208 | "Kenya": "Kenija", 209 | "Kiribati": "Kiribati", 210 | "Korea, Democratic People's Republic of": "Severna Koreja", 211 | "Korea": "Južna Koreja", 212 | "Kosovo": "Kosovo", 213 | "Kuwait": "Kuvajt", 214 | "Kyrgyzstan": "Kirgizistan", 215 | "Lao People's Democratic Republic": "Laos", 216 | "Latvia": "Latvija", 217 | "Lebanon": "Libanon", 218 | "Lesotho": "Lesoto", 219 | "Liberia": "Liberija", 220 | "Libyan Arab Jamahiriya": "Libija", 221 | "Liechtenstein": "Lihtenštajn", 222 | "Lithuania": "Litva", 223 | "Luxembourg": "Luksemburg", 224 | "Macao": "Macao", 225 | "Macedonia": "Severna Makedonija", 226 | "Madagascar": "Madagaskar", 227 | "Malawi": "Malavi", 228 | "Malaysia": "Malezija", 229 | "Maldives": "Maldivi", 230 | "Mali": "Mali", 231 | "Malta": "Malta", 232 | "Marshall Islands": "Marshallovi otoki", 233 | "Martinique": "Martinik", 234 | "Mauritania": "Mavretanija", 235 | "Mauritius": "Mauritius", 236 | "Mayotte": "Mayotte", 237 | "Mexico": "Mehika", 238 | "Micronesia, Federated States Of": "Mikronezija", 239 | "Moldova": "Moldavija", 240 | "Monaco": "Monako", 241 | "Mongolia": "Mongolija", 242 | "Montenegro": "Črna gora", 243 | "Montserrat": "Montserrat", 244 | "Morocco": "Maroko", 245 | "Mozambique": "Mozambik", 246 | "Myanmar": "Mjanmar (Burma)", 247 | "Namibia": "Namibija", 248 | "Nauru": "Nauru", 249 | "Nepal": "Nepal", 250 | "Netherlands": "Nizozemska", 251 | "New Caledonia": "Nova Kaledonija", 252 | "New Zealand": "Nova Zelandija", 253 | "Nicaragua": "Nikaragva", 254 | "Niger": "Niger", 255 | "Nigeria": "Nigerija", 256 | "Niue": "Niue", 257 | "Norfolk Island": "Norfolški otok", 258 | "Northern Mariana Islands": "Severni Marianski otoki", 259 | "Norway": "Norveška", 260 | "Oman": "Oman", 261 | "Pakistan": "Pakistan", 262 | "Palau": "Palau", 263 | "Palestinian Territory, Occupied": "Palestinsko ozemlje", 264 | "Panama": "Panama", 265 | "Papua New Guinea": "Papua Nova Gvineja", 266 | "Paraguay": "Paragvaj", 267 | "Peru": "Peru", 268 | "Philippines": "Filipini", 269 | "Pitcairn": "Pitcairn", 270 | "Poland": "Poljska", 271 | "Portugal": "Portugalska", 272 | "Puerto Rico": "Portoriko", 273 | "Qatar": "Katar", 274 | "Reunion": "Reunion", 275 | "Romania": "Romunija", 276 | "Russian Federation": "Rusija", 277 | "Rwanda": "Ruanda", 278 | "Saint Barthelemy": "Saint Barthélemy", 279 | "Saint Helena": "Sveta Helena", 280 | "Saint Kitts And Nevis": "Saint Kitts in Nevis", 281 | "Saint Lucia": "Saint Lucia", 282 | "Saint Martin": "Saint Martin", 283 | "Saint Pierre And Miquelon": "Saint Pierre in Miquelon", 284 | "Saint Vincent And Grenadines": "Saint Vincent in Grenadine", 285 | "Samoa": "Samoa", 286 | "San Marino": "San Marino", 287 | "Sao Tome And Principe": "Sao Tome in Principe", 288 | "Saudi Arabia": "Saudova Arabija", 289 | "Senegal": "Senegal", 290 | "Serbia": "Srbija", 291 | "Seychelles": "Sejšeli", 292 | "Sierra Leone": "Sierra Leone", 293 | "Singapore": "Singapur", 294 | "Sint Maarten (Dutch part)": "Sint Maarten", 295 | "Slovakia": "Slovaška", 296 | "Slovenia": "Slovenija", 297 | "Solomon Islands": "Salomonovi otoki", 298 | "Somalia": "Somalija", 299 | "South Africa": "Južnoafriška republika", 300 | "South Georgia And Sandwich Isl.": "Južna Georgia in Južni Sandwichevi otoki", 301 | "South Sudan": "Južni Sudan", 302 | "Spain": "Španija", 303 | "Sri Lanka": "Šrilanka", 304 | "Sudan": "Sudan", 305 | "Suriname": "Surinam", 306 | "Svalbard And Jan Mayen": "Svalbard in Jan Mayen", 307 | "Swaziland": "Esvatini", 308 | "Sweden": "Švedska", 309 | "Switzerland": "Švica", 310 | "Syrian Arab Republic": "Sirija", 311 | "Taiwan": "Tajvan", 312 | "Tajikistan": "Tadžikistan", 313 | "Tanzania": "Tanzanija", 314 | "Thailand": "Tajska", 315 | "Timor-Leste": "Timor-Leste", 316 | "Togo": "Togo", 317 | "Tokelau": "Tokelau", 318 | "Tonga": "Tonga", 319 | "Trinidad And Tobago": "Trinidad in Tobago", 320 | "Tunisia": "Tunizija", 321 | "Turkey": "Turčija", 322 | "Turkmenistan": "Turkmenistan", 323 | "Turks And Caicos Islands": "Otoki Turks in Caicos", 324 | "Tuvalu": "Tuvalu", 325 | "Uganda": "Uganda", 326 | "Ukraine": "Ukrajina", 327 | "United Arab Emirates": "Združeni arabski emirati", 328 | "United Kingdom": "Združeno kraljestvo", 329 | "United States": "Združene države Amerike", 330 | "United States Outlying Islands": "Stranski zunanji otoki Združenih držav", 331 | "Uruguay": "Urugvaj", 332 | "Uzbekistan": "Uzbekistan", 333 | "Vanuatu": "Vanuatu", 334 | "Venezuela": "Venezuela", 335 | "Viet Nam": "Vietnam", 336 | "Virgin Islands, British": "Britanski Deviški otoki", 337 | "Virgin Islands, U.S.": "Ameriški Deviški otoki", 338 | "Wallis And Futuna": "Wallis in Futuna", 339 | "Western Sahara": "Zahodna Sahara", 340 | "Yemen": "Jemen", 341 | "Zambia": "Zambija", 342 | "Zimbabwe": "Zimbabve", 343 | "Yes": "Da", 344 | "No": "Ne", 345 | "Action Status": "Stanje", 346 | "The :resource was created!": ":resource je bil ustvarjen!", 347 | "Download": "Prenesi" 348 | } 349 | -------------------------------------------------------------------------------- /resources/lang/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Toiminnot", 3 | "Details": "Yksityiskohdat", 4 | "If you did not request a password reset, no further action is required.": "Jos et pyytänyt uutta salasanaa, sinun ei tarvitse tehdä mitään.", 5 | "Reset Password": "Palauta salasana", 6 | "Sorry! You are not authorized to perform this action.": "Sori! Sinulla ei ole oikeuksia suorittaa tätä toimintoa.", 7 | "You are receiving this email because we received a password reset request for your account.": "Saat tämän sähköpostin koska olemme saaneet salasanan palautuspyynnön.", 8 | "Confirm Password": "Vahvista salasana", 9 | "Dashboard": "Työpöytä", 10 | "Email Address": "Sähköpostiosoite", 11 | "Forgot Password": "Unohditko salasanasi?", 12 | "Forgot your password?": "Unohditko salasanasi?", 13 | "Log In": "Kirjaudu sisään", 14 | "Logout": "Kirjaudu ulos", 15 | "Password": "Salasana", 16 | "Remember me": "Muista minut", 17 | "Resources": "Resurssit", 18 | "Send Password Reset Link": "Lähetä salasanan palautuslinkki", 19 | "Welcome Back!": "Tervetuloa takaisin!", 20 | "Delete Resource": "Poista resurssi", 21 | "Delete": "Poista", 22 | "Detach Resource": "Irrota resurssi", 23 | "Detach": "Irrota", 24 | "Detach Selected": "Irrota valitut", 25 | "Delete Selected": "Poista valitut", 26 | "Force Delete Selected": "Pakota valittujen poisto", 27 | "Restore Selected": "Palauta valitut", 28 | "Restore Resource": "Palauta resurssi", 29 | "Restore": "Palauta", 30 | "Force Delete Resource": "Pakota resurssien poisto", 31 | "Force Delete": "Pakota poisto", 32 | "Are you sure you want to delete this resource?": "Oletko varma että haluat poistaa tämän resurssin?", 33 | "Are you sure you want to delete the selected resources?": "Oletko varma että haluat poistaa valitut resurssit?", 34 | "Are you sure you want to detach this resource?": "Oletko varma että haluat irrottaa tämän resurssin?", 35 | "Are you sure you want to detach the selected resources?": "Oletko varma että haluat irrottaa valitut resurssit?", 36 | "Are you sure you want to force delete this resource?": "Oletko varma että haluat pakottaa tämän resurssin poiston?", 37 | "Are you sure you want to force delete the selected resources?": "Oletko varma että haluat pakottaa valittujen resurssien poiston?", 38 | "Are you sure you want to restore this resource?": "Oletko varma että haluat palauttaa tämän resurssin?", 39 | "Are you sure you want to restore the selected resources?": "Oletko varma että haluat palauttaa valitut resurssit?", 40 | "No :resource matched the given criteria.": "Kriteereillä ei löynyt yhtään :resource.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Toinen käyttäjä on päivittänyt tätä resurssia. Ole hyvä ja päivitä sivu.", 42 | "Are you sure you want to delete this file?": "Oletko varma että haluat poistaa tämän tiedoston?", 43 | "Are you sure you want to run this action?": "Oletko varma että haluat ajaa tämän toiminnon?", 44 | "Attach": "Liite", 45 | "Attach & Attach Another": "Liitä ja liitä toinen", 46 | "Cancel": "Peruuta", 47 | "Choose": "Valitse", 48 | "Choose File": "Valitse tiedosto", 49 | "Choose Type": "Valitse tyyppi", 50 | "Choose an option": "Valitse vaihtoehto", 51 | "Click to choose": "Klikkaa ja valitse", 52 | "Create": "Luo", 53 | "Create & Add Another": "Luo ja lisää toinen", 54 | "Delete File": "Poista tiedosto", 55 | "Edit": "Muokkaa", 56 | "Edit Attached": "Muokkaa liitettyjä", 57 | "Go Home": "Mene kotia", 58 | "Hold Up!": "Odotas!", 59 | "Lens": "Linssi", 60 | "New": "Uusi", 61 | "Next": "Seuraava", 62 | "Only Trashed": "Vain poistetut", 63 | "Per Page": "Per sivu", 64 | "Preview": "Esikatselu", 65 | "Previous": "Edellinen", 66 | "Run Action": "Aja toiminto", 67 | "Select Action": "Valitse toiminto", 68 | "Select all": "Valitse kaikki", 69 | "Something went wrong.": "Jokin meni pieleen.", 70 | "The action was executed successfully.": "Toiminto ajettiin onnistuneesti!", 71 | "The government won't let us show you what's behind these doors": "Hallitus ei anna meidän näyttää mitä näiden ovien takana on.", 72 | "Update": "Päivitä", 73 | "Update & Continue Editing": "Päivitä ja jatka muokkaamista", 74 | "View": "Näytä", 75 | "We're lost in space. The page you were trying to view does not exist.": "Olemme kadoksissa avarauudessa. Sivu jota yritit avata ei ole olemassa.", 76 | "Whoops": "Hups", 77 | "Whoops!": "Hups!", 78 | "With Trashed": "Roskineen", 79 | "Write": "Kirjoita", 80 | "total": "yhteensä", 81 | "January": "tammikuu", 82 | "February": "helmikuu", 83 | "March": "maaliskuu", 84 | "April": "huhtikuu", 85 | "May": "toukokuu", 86 | "June": "kesäkuu", 87 | "July": "heinäkuu", 88 | "August": "elokuu", 89 | "September": "syyskuu", 90 | "October": "lokakuu", 91 | "November": "marraskuu", 92 | "December": "joulukuu", 93 | "Afghanistan": "Afganistan", 94 | "Aland Islands": "Ahvenanmaa", 95 | "Albania": "Albania", 96 | "Algeria": "Algeria", 97 | "American Samoa": "Amerikan Samoa", 98 | "Andorra": "Andorra", 99 | "Angola": "Angola", 100 | "Anguilla": "Anguilla", 101 | "Antarctica": "Antarktis", 102 | "Antigua And Barbuda": "Antigua ja Barbuda", 103 | "Argentina": "Argentiina", 104 | "Armenia": "Armenia", 105 | "Aruba": "Aruba", 106 | "Australia": "Australia", 107 | "Austria": "Itävalta", 108 | "Azerbaijan": "Azerbaidžan", 109 | "Bahamas": "Bahama", 110 | "Bahrain": "Bahrain", 111 | "Bangladesh": "Bangladesh", 112 | "Barbados": "Barbados", 113 | "Belarus": "Valko-Venäjä", 114 | "Belgium": "Belgia", 115 | "Belize": "Belize", 116 | "Benin": "Benin", 117 | "Bermuda": "Bermuda", 118 | "Bhutan": "Bhutan", 119 | "Bolivia": "Bolivia", 120 | "Bonaire, Sint Eustatius and Saba": "Karibian Alankomaat", 121 | "Bosnia And Herzegovina": "Bosnia ja Hertsegovina", 122 | "Botswana": "Botswana", 123 | "Bouvet Island": "Bouvet’nsaari", 124 | "Brazil": "Brasilia", 125 | "British Indian Ocean Territory": "Brittiläinen Intian valtameren alue", 126 | "Brunei Darussalam": "Brunei", 127 | "Bulgaria": "Bulgaria", 128 | "Burkina Faso": "Burkina Faso", 129 | "Burundi": "Burundi", 130 | "Cambodia": "Kambodža", 131 | "Cameroon": "Kamerun", 132 | "Canada": "Kanada", 133 | "Cape Verde": "Kap Verde", 134 | "Cayman Islands": "Caymansaaret", 135 | "Central African Republic": "Keski-Afrikan tasavalta", 136 | "Chad": "Tšad", 137 | "Chile": "Chile", 138 | "China": "Kiina", 139 | "Christmas Island": "Joulusaari", 140 | "Cocos (Keeling) Islands": "Kookossaaret (Keelingsaaret)", 141 | "Colombia": "Kolumbia", 142 | "Comoros": "Komorit", 143 | "Congo": "Kongon tasavalta", 144 | "Congo, Democratic Republic": "Kongon demokraattinen tasavalta", 145 | "Cook Islands": "Cookinsaaret", 146 | "Costa Rica": "Costa Rica", 147 | "Cote D'Ivoire": "Norsunluurannikko", 148 | "Croatia": "Kroatia", 149 | "Cuba": "Kuuba", 150 | "Curaçao": "Curaçao", 151 | "Cyprus": "Kypros", 152 | "Czech Republic": "Tšekki", 153 | "Denmark": "Tanska", 154 | "Djibouti": "Djibouti", 155 | "Dominica": "Dominica", 156 | "Dominican Republic": "Dominikaaninen tasavalta", 157 | "Ecuador": "Ecuador", 158 | "Egypt": "Egypti", 159 | "El Salvador": "El Salvador", 160 | "Equatorial Guinea": "Päiväntasaajan Guinea", 161 | "Eritrea": "Eritrea", 162 | "Estonia": "Viro", 163 | "Ethiopia": "Etiopia", 164 | "Falkland Islands (Malvinas)": "Falklandinsaaret", 165 | "Faroe Islands": "Färsaaret", 166 | "Fiji": "Fidži", 167 | "Finland": "Suomi", 168 | "France": "Ranska", 169 | "French Guiana": "Ranskan Guayana", 170 | "French Polynesia": "Ranskan Polynesia", 171 | "French Southern Territories": "Ranskan eteläiset ja antarktiset alueet", 172 | "Gabon": "Gabon", 173 | "Gambia": "Gambia", 174 | "Georgia": "Georgia", 175 | "Germany": "Saksa", 176 | "Ghana": "Ghana", 177 | "Gibraltar": "Gibraltar", 178 | "Greece": "Kreikka", 179 | "Greenland": "Grönlanti", 180 | "Grenada": "Grenada", 181 | "Guadeloupe": "Guadeloupe", 182 | "Guam": "Guam", 183 | "Guatemala": "Guatemala", 184 | "Guernsey": "Guernsey", 185 | "Guinea": "Guinea", 186 | "Guinea-Bissau": "Guinea-Bissau", 187 | "Guyana": "Guyana", 188 | "Haiti": "Haiti", 189 | "Heard Island & Mcdonald Islands": "Heard ja McDonaldinsaaret", 190 | "Holy See (Vatican City State)": "Vatikaani", 191 | "Honduras": "Honduras", 192 | "Hong Kong": "Hongkong", 193 | "Hungary": "Unkari", 194 | "Iceland": "Islanti", 195 | "India": "Intia", 196 | "Indonesia": "Indonesia", 197 | "Iran, Islamic Republic Of": "Iran", 198 | "Iraq": "Irak", 199 | "Ireland": "Irlanti", 200 | "Isle Of Man": "Mansaari", 201 | "Israel": "Israel", 202 | "Italy": "Italia", 203 | "Jamaica": "Jamaika", 204 | "Japan": "Japani", 205 | "Jersey": "Jersey", 206 | "Jordan": "Jordania", 207 | "Kazakhstan": "Kazakstan", 208 | "Kenya": "Kenia", 209 | "Kiribati": "Kiribati", 210 | "Korea, Democratic People's Republic of": "Pohjois-Korea", 211 | "Korea": "Etelä-Korea", 212 | "Kosovo": "Kosovo", 213 | "Kuwait": "Kuwait", 214 | "Kyrgyzstan": "Kirgisia", 215 | "Lao People's Democratic Republic": "Laos", 216 | "Latvia": "Latvia", 217 | "Lebanon": "Libanon", 218 | "Lesotho": "Lesotho", 219 | "Liberia": "Liberia", 220 | "Libyan Arab Jamahiriya": "Libya", 221 | "Liechtenstein": "Liechtenstein", 222 | "Lithuania": "Liettua", 223 | "Luxembourg": "Luxemburg", 224 | "Macao": "Macao", 225 | "Macedonia": "Pohjois-Makedonia", 226 | "Madagascar": "Madagaskar", 227 | "Malawi": "Malawi", 228 | "Malaysia": "Malesia", 229 | "Maldives": "Malediivit", 230 | "Mali": "Mali", 231 | "Malta": "Malta", 232 | "Marshall Islands": "Marshallinsaaret", 233 | "Martinique": "Martinique", 234 | "Mauritania": "Mauritania", 235 | "Mauritius": "Mauritius", 236 | "Mayotte": "Mayotte", 237 | "Mexico": "Meksiko", 238 | "Micronesia, Federated States Of": "Mikronesia", 239 | "Moldova": "Moldova", 240 | "Monaco": "Monaco", 241 | "Mongolia": "Mongolia", 242 | "Montenegro": "Montenegro", 243 | "Montserrat": "Montserrat", 244 | "Morocco": "Marokko", 245 | "Mozambique": "Mosambik", 246 | "Myanmar": "Myanmar (Burma)", 247 | "Namibia": "Namibia", 248 | "Nauru": "Nauru", 249 | "Nepal": "Nepal", 250 | "Netherlands": "Alankomaat", 251 | "New Caledonia": "Uusi-Kaledonia", 252 | "New Zealand": "Uusi-Seelanti", 253 | "Nicaragua": "Nicaragua", 254 | "Niger": "Niger", 255 | "Nigeria": "Nigeria", 256 | "Niue": "Niue", 257 | "Norfolk Island": "Norfolkinsaari", 258 | "Northern Mariana Islands": "Pohjois-Mariaanit", 259 | "Norway": "Norja", 260 | "Oman": "Oman", 261 | "Pakistan": "Pakistan", 262 | "Palau": "Palau", 263 | "Palestinian Territory, Occupied": "Palestiinalaisalue", 264 | "Panama": "Panama", 265 | "Papua New Guinea": "Papua-Uusi-Guinea", 266 | "Paraguay": "Paraguay", 267 | "Peru": "Peru", 268 | "Philippines": "Filippiinit", 269 | "Pitcairn": "Pitcairn", 270 | "Poland": "Puola", 271 | "Portugal": "Portugali", 272 | "Puerto Rico": "Puerto Rico", 273 | "Qatar": "Qatar", 274 | "Reunion": "Réunion", 275 | "Romania": "Romania", 276 | "Russian Federation": "Venäjä", 277 | "Rwanda": "Ruanda", 278 | "Saint Barthelemy": "Saint-Barthélemy", 279 | "Saint Helena": "Saint Helena", 280 | "Saint Kitts And Nevis": "Saint Kitts ja Nevis", 281 | "Saint Lucia": "Saint Lucia", 282 | "Saint Martin": "Saint-Martin", 283 | "Saint Pierre And Miquelon": "Saint-Pierre ja Miquelon", 284 | "Saint Vincent And Grenadines": "Saint Vincent ja Grenadiinit", 285 | "Samoa": "Samoa", 286 | "San Marino": "San Marino", 287 | "Sao Tome And Principe": "São Tomé ja Príncipe", 288 | "Saudi Arabia": "Saudi-Arabia", 289 | "Senegal": "Senegal", 290 | "Serbia": "Serbia", 291 | "Seychelles": "Seychellit", 292 | "Sierra Leone": "Sierra Leone", 293 | "Singapore": "Singapore", 294 | "Sint Maarten (Dutch part)": "Sint Maarten", 295 | "Slovakia": "Slovakia", 296 | "Slovenia": "Slovenia", 297 | "Solomon Islands": "Salomonsaaret", 298 | "Somalia": "Somalia", 299 | "South Africa": "Etelä-Afrikka", 300 | "South Georgia And Sandwich Isl.": "Etelä-Georgia ja Eteläiset Sandwichinsaaret", 301 | "South Sudan": "Etelä-Sudan", 302 | "Spain": "Espanja", 303 | "Sri Lanka": "Sri Lanka", 304 | "Sudan": "Sudan", 305 | "Suriname": "Suriname", 306 | "Svalbard And Jan Mayen": "Svalbard ja Jan Mayen", 307 | "Swaziland": "Eswatini", 308 | "Sweden": "Ruotsi", 309 | "Switzerland": "Sveitsi", 310 | "Syrian Arab Republic": "Syyria", 311 | "Taiwan": "Taiwan", 312 | "Tajikistan": "Tadžikistan", 313 | "Tanzania": "Tansania", 314 | "Thailand": "Thaimaa", 315 | "Timor-Leste": "Itä-Timor", 316 | "Togo": "Togo", 317 | "Tokelau": "Tokelau", 318 | "Tonga": "Tonga", 319 | "Trinidad And Tobago": "Trinidad ja Tobago", 320 | "Tunisia": "Tunisia", 321 | "Turkey": "Turkki", 322 | "Turkmenistan": "Turkmenistan", 323 | "Turks And Caicos Islands": "Turks- ja Caicossaaret", 324 | "Tuvalu": "Tuvalu", 325 | "Uganda": "Uganda", 326 | "Ukraine": "Ukraina", 327 | "United Arab Emirates": "Arabiemiirikunnat", 328 | "United Kingdom": "Iso-Britannia", 329 | "United States": "Yhdysvallat", 330 | "United States Outlying Islands": "Yhdysvaltain erillissaaret", 331 | "Uruguay": "Uruguay", 332 | "Uzbekistan": "Uzbekistan", 333 | "Vanuatu": "Vanuatu", 334 | "Venezuela": "Venezuela", 335 | "Viet Nam": "Vietnam", 336 | "Virgin Islands, British": "Brittiläiset Neitsytsaaret", 337 | "Virgin Islands, U.S.": "Yhdysvaltain Neitsytsaaret", 338 | "Wallis And Futuna": "Wallis ja Futuna", 339 | "Western Sahara": "Länsi-Sahara", 340 | "Yemen": "Jemen", 341 | "Zambia": "Sambia", 342 | "Zimbabwe": "Zimbabwe", 343 | "Yes": "Kyllä", 344 | "No": "Ei", 345 | "Action Status": "Tila", 346 | "The :resource was created!": ":resource luotiin!", 347 | "Download": "Lataa" 348 | } 349 | -------------------------------------------------------------------------------- /resources/lang/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Ekintzak", 3 | "Details": "Xehetasunak", 4 | "If you did not request a password reset, no further action is required.": "Pasahitza aldaketa eskatu ez baduzu, ez dago ekintza gehiagoren beharrik.", 5 | "Reset Password": "Pasahitza berritu", 6 | "Sorry! You are not authorized to perform this action.": "Adi! Ekintza egiteko baimenak falta dituzu.", 7 | "You are receiving this email because we received a password reset request for your account.": "Posta hau pasahitza berritzeko eskaera baten ondorioz bidaltzen ari zara.", 8 | "Confirm Password": "Pasahitza ziurtatu", 9 | "Dashboard": "Aginte-mahia", 10 | "Email Address": "Email helbidea", 11 | "Forgot Password": "Pasahitza ahaztuta?", 12 | "Forgot your password?": "Pasahitza ahaztuta?", 13 | "Log In": "Sartu", 14 | "Logout": "Irten", 15 | "Password": "Pasahitza", 16 | "Remember me": "Gogoratu", 17 | "Resources": "Baliabideak", 18 | "Send Password Reset Link": "Bidali pasahitza berreskuratzeko esteka", 19 | "Welcome Back!": "Ongi etorri!", 20 | "Delete Resource": "Ezabatu baliabidea", 21 | "Delete": "Ezabatu", 22 | "Detach Resource": "Baliabidea askatu", 23 | "Detach": "Askatu", 24 | "Detach Selected": "Askatu aukeratutakoa", 25 | "Delete Selected": "Aukeratutako ezabatu", 26 | "Force Delete Selected": "Aukeratutakoa indarrez ezabatu", 27 | "Restore Selected": "Aukeratutakoa berreskuratu", 28 | "Restore Resource": "Baliabidea berreskuratu", 29 | "Restore": "Berreskuratu", 30 | "Force Delete Resource": "Baliabidea indarrez ezabatu", 31 | "Force Delete": "Indarrez ezabatu", 32 | "Are you sure you want to delete this resource?": "Baliabidea ezabatzeaz ziur?", 33 | "Are you sure you want to delete the selected resources?": "Aukeratutako baliabidea ezabatzeaz ziur?", 34 | "Are you sure you want to detach this resource?": "Baliabidea askatzeaz ziur", 35 | "Are you sure you want to detach the selected resources?": "Aukeratutako baliabidea ezabatzeaz ziur?", 36 | "Are you sure you want to force delete this resource?": "Baliabidea indarrez ezabatzeaz ziur?", 37 | "Are you sure you want to force delete the selected resources?": "Aukeratutako baliabidea indarrez ezabatzeaz ziur?", 38 | "Are you sure you want to restore this resource?": "Baliabidea berreskuratzeaz ziur?", 39 | "Are you sure you want to restore the selected resources?": "Aukeratutako baliabidea berreskuratzeaz ziur?", 40 | "No :resource matched the given criteria.": "Ez da Irizpideekin bat datorren :resource aurkitu.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Beste erabiltzaile batek eguneratu du baliabide hau. Freskatu webgunea eta berriz saiatu.", 42 | "Are you sure you want to delete this file?": "Artxiboa borratzeaz ziur?", 43 | "Are you sure you want to run this action?": "Ekintzarekin jarraitzeaz ziur?", 44 | "Attach": "Atxikitu", 45 | "Attach & Attach Another": "Atxikitu eta hurrengoa atxikitu", 46 | "Cancel": "Ezeztatu", 47 | "Choose": "Aukeratu", 48 | "Choose File": "Aukeratu artxiboa", 49 | "Choose Type": "Aukeratu tipoa", 50 | "Choose an option": "Aukeratu opzio bat", 51 | "Click to choose": "Egin clik aukeratzeko", 52 | "Create": "Sortu", 53 | "Create & Add Another": "Sortu eta hurrengoa sortu", 54 | "Delete File": "Artxiboa borratu", 55 | "Edit": "Editatu", 56 | "Edit Attached": "Atxikitutakoa editatu", 57 | "Go Home": "Etxera", 58 | "Hold Up!": "Itxoin!", 59 | "Lens": "Lenteak", 60 | "New": "Berria", 61 | "Next": "Hurrengoa", 62 | "Only Trashed": "Ezabatuta", 63 | "Per Page": "Orrialdeko", 64 | "Preview": "Aurrerapena", 65 | "Previous": "Aurrekoa", 66 | "Run Action": "Ekin", 67 | "Select Action": "Ekintza aukeratu", 68 | "Select all": "Dena aukeratu", 69 | "Something went wrong.": "Erroren bat gertatu da.", 70 | "The action was executed successfully.": "Ekintza behar bezala egin da!", 71 | "The government won't let us show you what's behind these doors": "Gobernuak ez digu ateen atzean dagoena ikusten utziko", 72 | "Update": "Eguneratu", 73 | "Update & Continue Editing": "Eguneratu eta jarraitu eguneratzen", 74 | "View": "Bista", 75 | "We're lost in space. The page you were trying to view does not exist.": "Galduta gaude. Eskatutako orrialdea ez da existitzen.", 76 | "Whoops": "Whoops", 77 | "Whoops!": "Whoops!", 78 | "With Trashed": "Ezabatuta", 79 | "Write": "Idatzi", 80 | "total": "totala", 81 | "January": "Urtarrila", 82 | "February": "Otsaila", 83 | "March": "Martxoa", 84 | "April": "Apirilia", 85 | "May": "Maiatza", 86 | "June": "Ekaina", 87 | "July": "Uztaila", 88 | "August": "Abuztua", 89 | "September": "Iraila", 90 | "October": "Urria", 91 | "November": "Azaroa", 92 | "December": "Abendua", 93 | "Afghanistan": "Afganistan", 94 | "Aland Islands": "Åland", 95 | "Albania": "Albania", 96 | "Algeria": "Aljeria", 97 | "American Samoa": "Samoa Estatubatuarra", 98 | "Andorra": "Andorra", 99 | "Angola": "Angola", 100 | "Anguilla": "Aingira", 101 | "Antarctica": "Antartika", 102 | "Antigua And Barbuda": "Antigua eta Barbuda", 103 | "Argentina": "Argentina", 104 | "Armenia": "Armenia", 105 | "Aruba": "Aruba", 106 | "Australia": "Australia", 107 | "Austria": "Austria", 108 | "Azerbaijan": "Azerbaijan", 109 | "Bahamas": "Bahamak", 110 | "Bahrain": "Bahrain", 111 | "Bangladesh": "Bangladesh", 112 | "Barbados": "Barbados", 113 | "Belarus": "Bielorrusia", 114 | "Belgium": "Belgika", 115 | "Belize": "Belize", 116 | "Benin": "Benin", 117 | "Bermuda": "Bermuda", 118 | "Bhutan": "Bhutan", 119 | "Bolivia": "Bolivia", 120 | "Bonaire, Sint Eustatius and Saba": "Karibeko Herbehereak", 121 | "Bosnia And Herzegovina": "Bosnia-Herzegovina", 122 | "Botswana": "Botswana", 123 | "Bouvet Island": "Bouvet uhartea", 124 | "Brazil": "Brasil", 125 | "British Indian Ocean Territory": "Indiako Ozeanoko lurralde britainiarra", 126 | "Brunei Darussalam": "Brunei", 127 | "Bulgaria": "Bulgaria", 128 | "Burkina Faso": "Burkina Faso", 129 | "Burundi": "Burundi", 130 | "Cambodia": "Kanbodia", 131 | "Cameroon": "Kamerun", 132 | "Canada": "Kanada", 133 | "Cape Verde": "Cabo Verde", 134 | "Cayman Islands": "Kaiman uharteak", 135 | "Central African Republic": "Afrika Erdiko Errepublika", 136 | "Chad": "Txad", 137 | "Chile": "Txile", 138 | "China": "Txina", 139 | "Christmas Island": "Christmas uhartea", 140 | "Cocos (Keeling) Islands": "Cocos (Keeling) uharteak", 141 | "Colombia": "Kolonbia", 142 | "Comoros": "Komoreak", 143 | "Congo": "Kongo", 144 | "Congo, Democratic Republic": "Kongoko Errepublika Demokratikoa", 145 | "Cook Islands": "Cook uharteak", 146 | "Costa Rica": "Costa Rica", 147 | "Cote D'Ivoire": "Boli Kosta", 148 | "Croatia": "Kroazia", 149 | "Cuba": "Kuba", 150 | "Curaçao": "Curaçao", 151 | "Cyprus": "Zipre", 152 | "Czech Republic": "Txekia", 153 | "Denmark": "Danimarka", 154 | "Djibouti": "Djibuti", 155 | "Dominica": "Dominika", 156 | "Dominican Republic": "Dominikar Errepublika", 157 | "Ecuador": "Ekuador", 158 | "Egypt": "Egipto", 159 | "El Salvador": "El Salvador", 160 | "Equatorial Guinea": "Ekuatore Ginea", 161 | "Eritrea": "Eritrea", 162 | "Estonia": "Estonia", 163 | "Ethiopia": "Etiopia", 164 | "Falkland Islands (Malvinas)": "Falklandak", 165 | "Faroe Islands": "Faroe uharteak", 166 | "Fiji": "Fiji", 167 | "Finland": "Finlandia", 168 | "France": "Frantzia", 169 | "French Guiana": "Guyana Frantsesa", 170 | "French Polynesia": "Polinesia Frantsesa", 171 | "French Southern Territories": "Hegoaldeko lurralde frantsesak", 172 | "Gabon": "Gabon", 173 | "Gambia": "Gambia", 174 | "Georgia": "Georgia", 175 | "Germany": "Alemania", 176 | "Ghana": "Ghana", 177 | "Gibraltar": "Gibraltar", 178 | "Greece": "Grezia", 179 | "Greenland": "Groenlandia", 180 | "Grenada": "Grenada", 181 | "Guadeloupe": "Guadalupe", 182 | "Guam": "Guam", 183 | "Guatemala": "Guatemala", 184 | "Guernsey": "Guernesey", 185 | "Guinea": "Ginea", 186 | "Guinea-Bissau": "Ginea Bissau", 187 | "Guyana": "Guyana", 188 | "Haiti": "Haiti", 189 | "Heard Island & Mcdonald Islands": "Heard eta McDonald uharteak", 190 | "Holy See (Vatican City State)": "Vatikano Hiria", 191 | "Honduras": "Honduras", 192 | "Hong Kong": "Hong Kong Txinako AEB", 193 | "Hungary": "Hungaria", 194 | "Iceland": "Islandia", 195 | "India": "India", 196 | "Indonesia": "Indonesia", 197 | "Iran, Islamic Republic Of": "Iran", 198 | "Iraq": "Irak", 199 | "Ireland": "Irlanda", 200 | "Isle Of Man": "Man uhartea", 201 | "Israel": "Israel", 202 | "Italy": "Italia", 203 | "Jamaica": "Jamaika", 204 | "Japan": "Japonia", 205 | "Jersey": "Jersey", 206 | "Jordan": "Jordania", 207 | "Kazakhstan": "Kazakhstan", 208 | "Kenya": "Kenya", 209 | "Kiribati": "Kiribati", 210 | "Korea, Democratic People's Republic of": "Ipar Korea", 211 | "Korea": "Hego Korea", 212 | "Kosovo": "Kosovo", 213 | "Kuwait": "Kuwait", 214 | "Kyrgyzstan": "Kirgizistan", 215 | "Lao People's Democratic Republic": "Laos", 216 | "Latvia": "Letonia", 217 | "Lebanon": "Libano", 218 | "Lesotho": "Lesotho", 219 | "Liberia": "Liberia", 220 | "Libyan Arab Jamahiriya": "Libia", 221 | "Liechtenstein": "Liechtenstein", 222 | "Lithuania": "Lituania", 223 | "Luxembourg": "Luxenburgo", 224 | "Macao": "Macau Txinako AEB", 225 | "Macedonia": "Ipar Mazedonia", 226 | "Madagascar": "Madagaskar", 227 | "Malawi": "Malawi", 228 | "Malaysia": "Malaysia", 229 | "Maldives": "Maldivak", 230 | "Mali": "Mali", 231 | "Malta": "Malta", 232 | "Marshall Islands": "Marshall Uharteak", 233 | "Martinique": "Martinika", 234 | "Mauritania": "Mauritania", 235 | "Mauritius": "Maurizio", 236 | "Mayotte": "Mayotte", 237 | "Mexico": "Mexiko", 238 | "Micronesia, Federated States Of": "Mikronesia", 239 | "Moldova": "Moldavia", 240 | "Monaco": "Monako", 241 | "Mongolia": "Mongolia", 242 | "Montenegro": "Montenegro", 243 | "Montserrat": "Montserrat", 244 | "Morocco": "Maroko", 245 | "Mozambique": "Mozambike", 246 | "Myanmar": "Myanmar (Birmania)", 247 | "Namibia": "Namibia", 248 | "Nauru": "Nauru", 249 | "Nepal": "Nepal", 250 | "Netherlands": "Herbehereak", 251 | "New Caledonia": "Kaledonia Berria", 252 | "New Zealand": "Zeelanda Berria", 253 | "Nicaragua": "Nikaragua", 254 | "Niger": "Niger", 255 | "Nigeria": "Nigeria", 256 | "Niue": "Niue", 257 | "Norfolk Island": "Norfolk uhartea", 258 | "Northern Mariana Islands": "Ipar Mariana uharteak", 259 | "Norway": "Norvegia", 260 | "Oman": "Oman", 261 | "Pakistan": "Pakistan", 262 | "Palau": "Palau", 263 | "Palestinian Territory, Occupied": "Palestinar Lurralde Okupatuak", 264 | "Panama": "Panama", 265 | "Papua New Guinea": "Papua Ginea Berria", 266 | "Paraguay": "Paraguai", 267 | "Peru": "Peru", 268 | "Philippines": "Filipinak", 269 | "Pitcairn": "Pitcairn uharteak", 270 | "Poland": "Polonia", 271 | "Portugal": "Portugal", 272 | "Puerto Rico": "Puerto Rico", 273 | "Qatar": "Qatar", 274 | "Reunion": "Reunion", 275 | "Romania": "Errumania", 276 | "Russian Federation": "Errusia", 277 | "Rwanda": "Ruanda", 278 | "Saint Barthelemy": "Saint Barthélemy", 279 | "Saint Helena": "Santa Helena", 280 | "Saint Kitts And Nevis": "Saint Kitts eta Nevis", 281 | "Saint Lucia": "Santa Luzia", 282 | "Saint Martin": "San Martin", 283 | "Saint Pierre And Miquelon": "Saint-Pierre eta Mikelune", 284 | "Saint Vincent And Grenadines": "Saint Vincent eta Grenadinak", 285 | "Samoa": "Samoa", 286 | "San Marino": "San Marino", 287 | "Sao Tome And Principe": "Sao Tome eta Principe", 288 | "Saudi Arabia": "Saudi Arabia", 289 | "Senegal": "Senegal", 290 | "Serbia": "Serbia", 291 | "Seychelles": "Seychelleak", 292 | "Sierra Leone": "Sierra Leona", 293 | "Singapore": "Singapur", 294 | "Sint Maarten (Dutch part)": "Sint Maarten", 295 | "Slovakia": "Eslovakia", 296 | "Slovenia": "Eslovenia", 297 | "Solomon Islands": "Salomon Uharteak", 298 | "Somalia": "Somalia", 299 | "South Africa": "Hegoafrika", 300 | "South Georgia And Sandwich Isl.": "Hegoaldeko Georgia eta Hegoaldeko Sandwich uharteak", 301 | "South Sudan": "Hego Sudan", 302 | "Spain": "Espainia", 303 | "Sri Lanka": "Sri Lanka", 304 | "Sudan": "Sudan", 305 | "Suriname": "Surinam", 306 | "Svalbard And Jan Mayen": "Svalbard eta Jan Mayen uharteak", 307 | "Swaziland": "Swazilandia", 308 | "Sweden": "Suedia", 309 | "Switzerland": "Suitza", 310 | "Syrian Arab Republic": "Siria", 311 | "Taiwan": "Taiwan", 312 | "Tajikistan": "Tajikistan", 313 | "Tanzania": "Tanzania", 314 | "Thailand": "Thailandia", 315 | "Timor-Leste": "Ekialdeko Timor", 316 | "Togo": "Togo", 317 | "Tokelau": "Tokelau", 318 | "Tonga": "Tonga", 319 | "Trinidad And Tobago": "Trinidad eta Tobago", 320 | "Tunisia": "Tunisia", 321 | "Turkey": "Turkia", 322 | "Turkmenistan": "Turkmenistan", 323 | "Turks And Caicos Islands": "Turk eta Caico uharteak", 324 | "Tuvalu": "Tuvalu", 325 | "Uganda": "Uganda", 326 | "Ukraine": "Ukraina", 327 | "United Arab Emirates": "Arabiar Emirerri Batuak", 328 | "United Kingdom": "Erresuma Batua", 329 | "United States": "Ameriketako Estatu Batuak", 330 | "United States Outlying Islands": "Ameriketako Estatu Batuetako Kanpoaldeko Uharte Txikiak", 331 | "Uruguay": "Uruguai", 332 | "Uzbekistan": "Uzbekistan", 333 | "Vanuatu": "Vanuatu", 334 | "Venezuela": "Venezuela", 335 | "Viet Nam": "Vietnam", 336 | "Virgin Islands, British": "Birjina uharte britainiarrak", 337 | "Virgin Islands, U.S.": "Birjina uharte amerikarrak", 338 | "Wallis And Futuna": "Wallis eta Futuna", 339 | "Western Sahara": "Mendebaldeko Sahara", 340 | "Yemen": "Yemen", 341 | "Zambia": "Zambia", 342 | "Zimbabwe": "Zimbabwe", 343 | "Yes": "Bai", 344 | "No": "Ez", 345 | "Action Name": "Izena", 346 | "Action Target": "Xede", 347 | "Action Status": "Egoera", 348 | "The :resource was created!": ":resource sortuta!", 349 | "Download": "Deskarga" 350 | } 351 | -------------------------------------------------------------------------------- /resources/lang/hi.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "क्रिया", 3 | "Details": "विवरण", 4 | "If you did not request a password reset, no further action is required.": "अगर आपने पासवर्ड रीसेट का अनुरोध नहीं किया है, तो आगे कोई कार्रवाई की आवश्यकता नहीं है।", 5 | "Reset Password": "पासवर्ड रीसेट", 6 | "Sorry! You are not authorized to perform this action.": "माफ़ कीजिये! आप इस क्रिया को करने के लिए अधिकृत नहीं हैं।", 7 | "You are receiving this email because we received a password reset request for your account.": "आपको यह ईमेल प्राप्त हो रहा है क्योंकि हमें आपके खाते के लिए पासवर्ड रीसेट अनुरोध प्राप्त हुआ है।", 8 | "Confirm Password": "पासवर्ड की पुष्टि कीजिये", 9 | "Dashboard": "डैशबोर्ड", 10 | "Email Address": "ईमेल पता", 11 | "Forgot Password": "क्या आप पासवर्ड भूल गए?", 12 | "Forgot your password?": "क्या आप पासवर्ड भूल गए?", 13 | "Log In": "लोग इन करें", 14 | "Logout": "लोग आउट", 15 | "Password": "पासवर्ड", 16 | "Remember me": "मुझे याद रखें", 17 | "Resources": "संसाधन", 18 | "Send Password Reset Link": "पासवर्ड रीसेट लिंक भेजें", 19 | "Welcome Back!": "वापसी पर स्वागत है!", 20 | "Delete Resource": "संसाधन हटाएं", 21 | "Delete": "हटाएं", 22 | "Detach Resource": "संसाधन निकालें", 23 | "Detach": "निकालें", 24 | "Detach Selected": "चयनित अलग करें", 25 | "Delete Selected": "चयनित मिटाएं", 26 | "Force Delete Selected": "चयनित को बलपुर्वक हटाएँ", 27 | "Restore Selected": "चयनित को पुनर्स्थापित करे", 28 | "Restore Resource": "संसाधन पुनर्स्थापित करें", 29 | "Restore": "पुनर्स्थापित करें", 30 | "Force Delete Resource": "संसाधन बलपुर्वक हटाएं", 31 | "Force Delete": "बलपुर्वक हटाएं", 32 | "Are you sure you want to delete this resource?": "क्या आप वाकई इस संसाधन को मिटाना चाहते हैं?", 33 | "Are you sure you want to delete the selected resources?": "क्या आप वाकई चयनित संसाधनों को मिटाना चाहते हैं?", 34 | "Are you sure you want to detach this resource?": "क्या आप वाकई इस संसाधन को अलग करना चाहते हैं?", 35 | "Are you sure you want to detach the selected resources?": "क्या आप वाकई चयनित संसाधनों को अलग करना चाहते हैं?", 36 | "Are you sure you want to force delete this resource?": "क्या आप वाक़ई इस संसाधन को हटाने के लिए बाध्य करना चाहते हैं?", 37 | "Are you sure you want to force delete the selected resources?": "क्या आप वाकई चयनित संसाधनों को हटाने के लिए बाध्य करना चाहते हैं?", 38 | "Are you sure you want to restore this resource?": "क्या आप वाकई इस संसाधन को पुनर्स्थापित करना चाहते हैं?", 39 | "Are you sure you want to restore the selected resources?": "क्या आप वाकई चयनित संसाधनों को पुनर्स्थापित करना चाहते हैं?", 40 | "No :resource matched the given criteria.": "कोई :resource दिए गए मानदंडों से मेल नहीं खाता है।", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "इस पृष्ठ को लोड करने के बाद से किसी अन्य उपयोगकर्ता ने इस संसाधन को अपडेट किया है। पृष्ठ को रीफ्रेश करें और पुन:प्रयास करें।", 42 | "Are you sure you want to delete this file?": "क्या आप वाकई इस फ़ाइल को हटाना चाहते हैं?", 43 | "Are you sure you want to run this action?": "क्या आप वाकई यह कार्रवाई करना चाहते हैं?", 44 | "Attach": "जोड़ें", 45 | "Attach & Attach Another": "जोड़ें और एक और जोड़ें", 46 | "Cancel": "रद्द करें", 47 | "Choose": "चुनें", 48 | "Choose File": "फ़ाइल चुनें", 49 | "Choose Type": "प्रकार चुनें", 50 | "Choose an option": "एक विकल्प चुनें", 51 | "Click to choose": "चुनने के लिए क्लिक करें", 52 | "Create": "बनाएं", 53 | "Create & Add Another": "बनाएं और एक और जोड़ें", 54 | "Delete File": "फ़ाइल को हटाएं", 55 | "Edit": "संपादित करें", 56 | "Edit Attached": "संलग्न संपादित करें", 57 | "Go Home": "घर जाईए", 58 | "Hold Up!": "रुकिए!", 59 | "Lens": "भिंग", 60 | "New": "नया", 61 | "Next": "आगामी", 62 | "Only Trashed": "केवल ट्रैश किया गया", 63 | "Per Page": "प्रति पृष्ठ", 64 | "Preview": "पूर्वावलोकन", 65 | "Previous": "पिछला", 66 | "Run Action": "कार्रवाई करें", 67 | "Select Action": "कार्रवाई चुनें", 68 | "Select all": "सभी का चयन करे", 69 | "Something went wrong.": "कुछ गलत हो गया है।", 70 | "The action was executed successfully.": "कार्रवाई सफलतापूर्वक पुरी की गई!", 71 | "The government won't let us show you what's behind these doors": "सरकार हमें आपको यह दिखाने नहीं देगी की इस दरवाजे के पिछे क्या है।", 72 | "Update": "अद्यतन करें", 73 | "Update & Continue Editing": "अद्यतन करें और संपादन जारी रखें", 74 | "View": "देखें", 75 | "We're lost in space. The page you were trying to view does not exist.": "हम अंतरिक्ष में खो गए हैं। जिस पृष्ठ को आप देखने का प्रयास कर रहे थे वह मौजूद नहीं है।", 76 | "Whoops": "ओह", 77 | "Whoops!": "ओह!", 78 | "With Trashed": "ट्रैश किए गए के साथ", 79 | "Write": "लिखो", 80 | "total": "कुल", 81 | "January": "जनवरी", 82 | "February": "फ़रवरी", 83 | "March": "मार्च", 84 | "April": "अप्रैल", 85 | "May": "मई", 86 | "June": "जून", 87 | "July": "जुलाई", 88 | "August": "अगस्त", 89 | "September": "सितंबर", 90 | "October": "अक्टूबर", 91 | "November": "नवंबर", 92 | "December": "दिसंबर", 93 | "Afghanistan": "अफ़गानिस्तान", 94 | "Aland Islands": "एलैंड द्वीपसमूह", 95 | "Albania": "अल्बानिया", 96 | "Algeria": "अल्जीरिया", 97 | "American Samoa": "अमेरिकी समोआ", 98 | "Andorra": "एंडोरा", 99 | "Angola": "अंगोला", 100 | "Anguilla": "एंग्विला", 101 | "Antarctica": "अंटार्कटिका", 102 | "Antigua And Barbuda": "एंटिगुआ और बरबुडा", 103 | "Argentina": "अर्जेंटीना", 104 | "Armenia": "आर्मेनिया", 105 | "Aruba": "अरूबा", 106 | "Australia": "ऑस्ट्रेलिया", 107 | "Austria": "ऑस्ट्रिया", 108 | "Azerbaijan": "अज़रबैजान", 109 | "Bahamas": "बहामास", 110 | "Bahrain": "बहरीन", 111 | "Bangladesh": "बांग्लादेश", 112 | "Barbados": "बारबाडोस", 113 | "Belarus": "बेलारूस", 114 | "Belgium": "बेल्जियम", 115 | "Belize": "बेलीज़", 116 | "Benin": "बेनिन", 117 | "Bermuda": "बरमूडा", 118 | "Bhutan": "भूटान", 119 | "Bolivia": "बोलीविया", 120 | "Bonaire, Sint Eustatius and Saba": "कैरिबियन नीदरलैंड", 121 | "Bosnia And Herzegovina": "बोस्निया और हर्ज़ेगोविना", 122 | "Botswana": "बोत्स्वाना", 123 | "Bouvet Island": "बोवेत द्वीप", 124 | "Brazil": "ब्राज़ील", 125 | "British Indian Ocean Territory": "ब्रिटिश हिंद महासागरीय क्षेत्र", 126 | "Brunei Darussalam": "ब्रूनेई", 127 | "Bulgaria": "बुल्गारिया", 128 | "Burkina Faso": "बुर्किना फ़ासो", 129 | "Burundi": "बुरुंडी", 130 | "Cambodia": "कंबोडिया", 131 | "Cameroon": "कैमरून", 132 | "Canada": "कनाडा", 133 | "Cape Verde": "केप वर्ड", 134 | "Cayman Islands": "कैमेन द्वीपसमूह", 135 | "Central African Republic": "मध्य अफ़्रीकी गणराज्य", 136 | "Chad": "चाड", 137 | "Chile": "चिली", 138 | "China": "चीन", 139 | "Christmas Island": "क्रिसमस द्वीप", 140 | "Cocos (Keeling) Islands": "कोकोस (कीलिंग) द्वीपसमूह", 141 | "Colombia": "कोलंबिया", 142 | "Comoros": "कोमोरोस", 143 | "Congo": "कांगो – ब्राज़ाविल", 144 | "Congo, Democratic Republic": "कांगो - किंशासा", 145 | "Cook Islands": "कुक द्वीपसमूह", 146 | "Costa Rica": "कोस्टारिका", 147 | "Cote D'Ivoire": "कोट डी आइवर", 148 | "Croatia": "क्रोएशिया", 149 | "Cuba": "क्यूबा", 150 | "Curaçao": "क्यूरासाओ", 151 | "Cyprus": "साइप्रस", 152 | "Czech Republic": "चेकिया", 153 | "Denmark": "डेनमार्क", 154 | "Djibouti": "जिबूती", 155 | "Dominica": "डोमिनिका", 156 | "Dominican Republic": "डोमिनिकन गणराज्य", 157 | "Ecuador": "इक्वाडोर", 158 | "Egypt": "मिस्र", 159 | "El Salvador": "अल सल्वाडोर", 160 | "Equatorial Guinea": "इक्वेटोरियल गिनी", 161 | "Eritrea": "इरिट्रिया", 162 | "Estonia": "एस्टोनिया", 163 | "Ethiopia": "इथियोपिया", 164 | "Falkland Islands (Malvinas)": "फ़ॉकलैंड द्वीपसमूह", 165 | "Faroe Islands": "फ़ेरो द्वीपसमूह", 166 | "Fiji": "फ़िजी", 167 | "Finland": "फ़िनलैंड", 168 | "France": "फ़्रांस", 169 | "French Guiana": "फ़्रेंच गुयाना", 170 | "French Polynesia": "फ़्रेंच पोलिनेशिया", 171 | "French Southern Territories": "फ़्रांसीसी दक्षिणी क्षेत्र", 172 | "Gabon": "गैबॉन", 173 | "Gambia": "गाम्बिया", 174 | "Georgia": "जॉर्जिया", 175 | "Germany": "जर्मनी", 176 | "Ghana": "घाना", 177 | "Gibraltar": "जिब्राल्टर", 178 | "Greece": "यूनान", 179 | "Greenland": "ग्रीनलैंड", 180 | "Grenada": "ग्रेनाडा", 181 | "Guadeloupe": "ग्वाडेलूप", 182 | "Guam": "गुआम", 183 | "Guatemala": "ग्वाटेमाला", 184 | "Guernsey": "गर्नसी", 185 | "Guinea": "गिनी", 186 | "Guinea-Bissau": "गिनी-बिसाउ", 187 | "Guyana": "गुयाना", 188 | "Haiti": "हैती", 189 | "Heard Island & Mcdonald Islands": "हर्ड द्वीप और मैकडोनॉल्ड द्वीपसमूह", 190 | "Holy See (Vatican City State)": "वेटिकन सिटी", 191 | "Honduras": "होंडूरास", 192 | "Hong Kong": "हाँग काँग (चीन विशेष प्रशासनिक क्षेत्र)", 193 | "Hungary": "हंगरी", 194 | "Iceland": "आइसलैंड", 195 | "India": "भारत", 196 | "Indonesia": "इंडोनेशिया", 197 | "Iran, Islamic Republic Of": "ईरान", 198 | "Iraq": "इराक", 199 | "Ireland": "आयरलैंड", 200 | "Isle Of Man": "आइल ऑफ़ मैन", 201 | "Israel": "इज़राइल", 202 | "Italy": "इटली", 203 | "Jamaica": "जमैका", 204 | "Japan": "जापान", 205 | "Jersey": "जर्सी", 206 | "Jordan": "जॉर्डन", 207 | "Kazakhstan": "कज़ाखस्तान", 208 | "Kenya": "केन्या", 209 | "Kiribati": "किरिबाती", 210 | "Korea, Democratic People's Republic of": "उत्तर कोरिया", 211 | "Korea": "दक्षिण कोरिया", 212 | "Kosovo": "कोसोवो", 213 | "Kuwait": "कुवैत", 214 | "Kyrgyzstan": "किर्गिज़स्तान", 215 | "Lao People's Democratic Republic": "लाओस", 216 | "Latvia": "लातविया", 217 | "Lebanon": "लेबनान", 218 | "Lesotho": "लेसोथो", 219 | "Liberia": "लाइबेरिया", 220 | "Libyan Arab Jamahiriya": "लीबिया", 221 | "Liechtenstein": "लिचेंस्टीन", 222 | "Lithuania": "लिथुआनिया", 223 | "Luxembourg": "लग्ज़मबर्ग", 224 | "Macao": "मकाऊ (विशेष प्रशासनिक क्षेत्र चीन)", 225 | "Macedonia": "उत्तरी मकदूनिया", 226 | "Madagascar": "मेडागास्कर", 227 | "Malawi": "मलावी", 228 | "Malaysia": "मलेशिया", 229 | "Maldives": "मालदीव", 230 | "Mali": "माली", 231 | "Malta": "माल्टा", 232 | "Marshall Islands": "मार्शल द्वीपसमूह", 233 | "Martinique": "मार्टीनिक", 234 | "Mauritania": "मॉरिटानिया", 235 | "Mauritius": "मॉरीशस", 236 | "Mayotte": "मायोते", 237 | "Mexico": "मैक्सिको", 238 | "Micronesia, Federated States Of": "माइक्रोनेशिया", 239 | "Moldova": "मॉल्डोवा", 240 | "Monaco": "मोनाको", 241 | "Mongolia": "मंगोलिया", 242 | "Montenegro": "मोंटेनेग्रो", 243 | "Montserrat": "मोंटसेरात", 244 | "Morocco": "मोरक्को", 245 | "Mozambique": "मोज़ांबिक", 246 | "Myanmar": "म्यांमार (बर्मा)", 247 | "Namibia": "नामीबिया", 248 | "Nauru": "नाउरु", 249 | "Nepal": "नेपाल", 250 | "Netherlands": "नीदरलैंड", 251 | "New Caledonia": "न्यू कैलेडोनिया", 252 | "New Zealand": "न्यूज़ीलैंड", 253 | "Nicaragua": "निकारागुआ", 254 | "Niger": "नाइजर", 255 | "Nigeria": "नाइजीरिया", 256 | "Niue": "नीयू", 257 | "Norfolk Island": "नॉरफ़ॉक द्वीप", 258 | "Northern Mariana Islands": "उत्तरी मारियाना द्वीपसमूह", 259 | "Norway": "नॉर्वे", 260 | "Oman": "ओमान", 261 | "Pakistan": "पाकिस्तान", 262 | "Palau": "पलाऊ", 263 | "Palestinian Territory, Occupied": "फ़िलिस्तीनी क्षेत्र", 264 | "Panama": "पनामा", 265 | "Papua New Guinea": "पापुआ न्यू गिनी", 266 | "Paraguay": "पराग्वे", 267 | "Peru": "पेरू", 268 | "Philippines": "फ़िलिपींस", 269 | "Pitcairn": "पिटकैर्न द्वीपसमूह", 270 | "Poland": "पोलैंड", 271 | "Portugal": "पुर्तगाल", 272 | "Puerto Rico": "पोर्टो रिको", 273 | "Qatar": "क़तर", 274 | "Reunion": "रियूनियन", 275 | "Romania": "रोमानिया", 276 | "Russian Federation": "रूस", 277 | "Rwanda": "रवांडा", 278 | "Saint Barthelemy": "सेंट बार्थेलेमी", 279 | "Saint Helena": "सेंट हेलेना", 280 | "Saint Kitts And Nevis": "सेंट किट्स और नेविस", 281 | "Saint Lucia": "सेंट लूसिया", 282 | "Saint Martin": "सेंट मार्टिन", 283 | "Saint Pierre And Miquelon": "सेंट पिएरे और मिक्वेलान", 284 | "Saint Vincent And Grenadines": "सेंट विंसेंट और ग्रेनाडाइंस", 285 | "Samoa": "समोआ", 286 | "San Marino": "सैन मेरीनो", 287 | "Sao Tome And Principe": "साओ टोम और प्रिंसिपे", 288 | "Saudi Arabia": "सऊदी अरब", 289 | "Senegal": "सेनेगल", 290 | "Serbia": "सर्बिया", 291 | "Seychelles": "सेशेल्स", 292 | "Sierra Leone": "सिएरा लियोन", 293 | "Singapore": "सिंगापुर", 294 | "Sint Maarten (Dutch part)": "सिंट मार्टिन", 295 | "Slovakia": "स्लोवाकिया", 296 | "Slovenia": "स्लोवेनिया", 297 | "Solomon Islands": "सोलोमन द्वीपसमूह", 298 | "Somalia": "सोमालिया", 299 | "South Africa": "दक्षिण अफ़्रीका", 300 | "South Georgia And Sandwich Isl.": "दक्षिण जॉर्जिया और दक्षिण सैंडविच द्वीपसमूह", 301 | "South Sudan": "दक्षिण सूडान", 302 | "Spain": "स्पेन", 303 | "Sri Lanka": "श्रीलंका", 304 | "Sudan": "सूडान", 305 | "Suriname": "सूरीनाम", 306 | "Svalbard And Jan Mayen": "स्वालबार्ड और जान मायेन", 307 | "Swaziland": "एस्वाटिनी", 308 | "Sweden": "स्वीडन", 309 | "Switzerland": "स्विट्ज़रलैंड", 310 | "Syrian Arab Republic": "सीरिया", 311 | "Taiwan": "ताइवान", 312 | "Tajikistan": "ताज़िकिस्तान", 313 | "Tanzania": "तंज़ानिया", 314 | "Thailand": "थाईलैंड", 315 | "Timor-Leste": "तिमोर-लेस्त", 316 | "Togo": "टोगो", 317 | "Tokelau": "तोकेलाउ", 318 | "Tonga": "टोंगा", 319 | "Trinidad And Tobago": "त्रिनिदाद और टोबैगो", 320 | "Tunisia": "ट्यूनीशिया", 321 | "Turkey": "तुर्की", 322 | "Turkmenistan": "तुर्कमेनिस्तान", 323 | "Turks And Caicos Islands": "तुर्क और कैकोज़ द्वीपसमूह", 324 | "Tuvalu": "तुवालू", 325 | "Uganda": "युगांडा", 326 | "Ukraine": "यूक्रेन", 327 | "United Arab Emirates": "संयुक्त अरब अमीरात", 328 | "United Kingdom": "यूनाइटेड किंगडम", 329 | "United States": "संयुक्त राज्य", 330 | "United States Outlying Islands": "यू॰एस॰ आउटलाइंग द्वीपसमूह", 331 | "Uruguay": "उरूग्वे", 332 | "Uzbekistan": "उज़्बेकिस्तान", 333 | "Vanuatu": "वनुआतू", 334 | "Venezuela": "वेनेज़ुएला", 335 | "Viet Nam": "वियतनाम", 336 | "Virgin Islands, British": "ब्रिटिश वर्जिन द्वीपसमूह", 337 | "Virgin Islands, U.S.": "यू॰एस॰ वर्जिन द्वीपसमूह", 338 | "Wallis And Futuna": "वालिस और फ़्यूचूना", 339 | "Western Sahara": "पश्चिमी सहारा", 340 | "Yemen": "यमन", 341 | "Zambia": "ज़ाम्बिया", 342 | "Zimbabwe": "ज़िम्बाब्वे", 343 | "Yes": "हाँ", 344 | "No": "नहीं", 345 | "Action Status": "स्थिति", 346 | "The :resource was created!": ":resource बनाया गया था!", 347 | "Download": "डाउनलोड" 348 | } 349 | -------------------------------------------------------------------------------- /resources/lang/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Поступци", 3 | "Details": "Детаљи", 4 | "If you did not request a password reset, no further action is required.": "Ако нисте захтевали ресетовање лозинке, нема потребе за даљим поступањем.", 5 | "Reset Password": "Ресетовање лозинке", 6 | "Sorry! You are not authorized to perform this action.": "Жао нам је! Ви нисте ауторизовани да извршите овај поступак.", 7 | "You are receiving this email because we received a password reset request for your account.": "Добијате овај мејл зато што смо добили захтев за ресетовање лозинке за ваш налог.", 8 | "Confirm Password": "Потврдите лозинку", 9 | "Dashboard": "Командна табла", 10 | "Email Address": "Имејл адреса", 11 | "Forgot Password": "Заборавили сте вашу лозинку?", 12 | "Forgot your password?": "Заборавили сте лозинку?", 13 | "Log In": "Пријава", 14 | "Logout": "Одјава", 15 | "Password": "Лозинка", 16 | "Remember me": "Запамти ме", 17 | "Resources": "Ресурси", 18 | "Send Password Reset Link": "Пошаљи линк за ресетовање лозинке", 19 | "Welcome Back!": "Добродошли назад!", 20 | "Delete Resource": "Обриши ресурс", 21 | "Delete": "Обриши", 22 | "Detach Resource": "Откачи ресурс", 23 | "Detach": "Откачи", 24 | "Detach Selected": "Откачи изабрано", 25 | "Delete Selected": "Обриши изабрано", 26 | "Force Delete Selected": "Обришите изабрано на силу", 27 | "Restore Selected": "Опорави изабрано", 28 | "Restore Resource": "Опорави ресурс", 29 | "Restore": "Опорави", 30 | "Force Delete Resource": "Обриши ресурс на силу", 31 | "Force Delete": "Обриши на силу", 32 | "Are you sure you want to delete this resource?": "Да ли сте сигурни да желите да обришете овај ресурс?", 33 | "Are you sure you want to delete the selected resources?": "Да ли сте сигурни да желите да обришете изабране ресурсе?", 34 | "Are you sure you want to detach this resource?": "Да ли сте сигурни да желите да откачите овај ресурс?", 35 | "Are you sure you want to detach the selected resources?": "Да ли сте сигурни да желите да откачите изабране ресурсе?", 36 | "Are you sure you want to force delete this resource?": "Да ли сте сигурни да желите да обришете овај ресурс са силу?", 37 | "Are you sure you want to force delete the selected resources?": "Да ли сте сигутни да желите да обришете изабране ресурсе на силу?", 38 | "Are you sure you want to restore this resource?": "Да ли сте сигурни да желите да опоравите овај ресурс?", 39 | "Are you sure you want to restore the selected resources?": "Да ли сте сигурни да желите да опоравите изабране ресурсе?", 40 | "No :resource matched the given criteria.": "Ни један :ресоурце се не поклапа са датим критеријумима.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Други корисник је ажурирао овај ресурс откад је ова страна учитана. Молимо вас да освежите страницу и покушате поново.", 42 | "Are you sure you want to delete this file?": "Да ли сте сигурни да желите да обришете ову датотеку?", 43 | "Are you sure you want to run this action?": "Да ли сте сигурни да желите да покренете овај поступак?", 44 | "Attach": "Прикачи", 45 | "Attach & Attach Another": "Прикачи и прикачи још један", 46 | "Cancel": "Обустави", 47 | "Choose": "Изабери", 48 | "Choose File": "Изабери датотеку", 49 | "Choose Type": "Изабери тип", 50 | "Choose an option": "Изабери неку опцију", 51 | "Click to choose": "Кликни да изабереш", 52 | "Create": "Направи", 53 | "Create & Add Another": "Направи и направи још један", 54 | "Delete File": "Обриши датотеку", 55 | "Edit": "Измени", 56 | "Edit Attached": "Измени прикачено", 57 | "Go Home": "Назад на Почетну", 58 | "Hold Up!": "Молимо сачекајте!", 59 | "Lens": "Објектив", 60 | "New": "Ново", 61 | "Next": "Даље", 62 | "Only Trashed": "Само обрисано", 63 | "Per Page": "По страни", 64 | "Preview": "Преглед", 65 | "Previous": "Прошли", 66 | "Run Action": "Покрени поступак", 67 | "Select Action": "Изабрани поступак", 68 | "Select all": "Изабери све", 69 | "Something went wrong.": "Нешто није како треба.", 70 | "The action was executed successfully.": "Поступак је успешно покренут!", 71 | "The government won't let us show you what's behind these doors": "Влада нам не дозвољава да Вам прикажемо шта је иза ових врата", 72 | "Update": "Ажурирај", 73 | "Update & Continue Editing": "Ажурирај и настави са изменама", 74 | "View": "Види", 75 | "We're lost in space. The page you were trying to view does not exist.": "Изгубљени смо у свемиру. Страна коју покушавате да видите не постоји.", 76 | "Whoops": "Упс", 77 | "Whoops!": "Упс!", 78 | "With Trashed": "Са обрисаним", 79 | "Write": "Пиши", 80 | "total": "укупно", 81 | "January": "Јануар", 82 | "February": "Фебруар", 83 | "March": "Март", 84 | "April": "Април", 85 | "May": "Мај", 86 | "June": "Јун", 87 | "July": "Јул", 88 | "August": "Август", 89 | "September": "Септембар", 90 | "October": "Октобар", 91 | "November": "Новембар", 92 | "December": "Децембар", 93 | "Afghanistan": "Авганистан", 94 | "Aland Islands": "Оландска Острва", 95 | "Albania": "Албанија", 96 | "Algeria": "Алжир", 97 | "American Samoa": "Америчка Самоа", 98 | "Andorra": "Андора", 99 | "Angola": "Ангола", 100 | "Anguilla": "Ангвила", 101 | "Antarctica": "Антарктик", 102 | "Antigua And Barbuda": "Антигва и Барбуда", 103 | "Argentina": "Аргентина", 104 | "Armenia": "Јерменија", 105 | "Aruba": "Аруба", 106 | "Australia": "Аустралија", 107 | "Austria": "Аустрија", 108 | "Azerbaijan": "Азербејџан", 109 | "Bahamas": "Бахами", 110 | "Bahrain": "Бахреин", 111 | "Bangladesh": "Бангладеш", 112 | "Barbados": "Барбадос", 113 | "Belarus": "Белорусија", 114 | "Belgium": "Белгија", 115 | "Belize": "Белизе", 116 | "Benin": "Бенин", 117 | "Bermuda": "Бермуда", 118 | "Bhutan": "Бутан", 119 | "Bolivia": "Боливија", 120 | "Bonaire, Sint Eustatius and Saba": "Карипска Холандија", 121 | "Bosnia And Herzegovina": "Босна и Херцеговина", 122 | "Botswana": "Боцвана", 123 | "Bouvet Island": "Острво Буве", 124 | "Brazil": "Бразил", 125 | "British Indian Ocean Territory": "Британска територија Индијског океана", 126 | "Brunei Darussalam": "Брунеј", 127 | "Bulgaria": "Бугарска", 128 | "Burkina Faso": "Буркина Фасо", 129 | "Burundi": "Бурунди", 130 | "Cambodia": "Камбоџа", 131 | "Cameroon": "Камерун", 132 | "Canada": "Канада", 133 | "Cape Verde": "Зеленортска Острва", 134 | "Cayman Islands": "Кајманска Острва", 135 | "Central African Republic": "Централноафричка Република", 136 | "Chad": "Чад", 137 | "Chile": "Чиле", 138 | "China": "Кина", 139 | "Christmas Island": "Божићно Острво", 140 | "Cocos (Keeling) Islands": "Кокосова (Килингова) Острва", 141 | "Colombia": "Колумбија", 142 | "Comoros": "Коморска Острва", 143 | "Congo": "Конго - Бразавил", 144 | "Congo, Democratic Republic": "Конго - Киншаса", 145 | "Cook Islands": "Кукова Острва", 146 | "Costa Rica": "Костарика", 147 | "Cote D'Ivoire": "Обала Слоноваче (Кот д’Ивоар)", 148 | "Croatia": "Хрватска", 149 | "Cuba": "Куба", 150 | "Curaçao": "Курасао", 151 | "Cyprus": "Кипар", 152 | "Czech Republic": "Чешка", 153 | "Denmark": "Данска", 154 | "Djibouti": "Џибути", 155 | "Dominica": "Доминика", 156 | "Dominican Republic": "Доминиканска Република", 157 | "Ecuador": "Еквадор", 158 | "Egypt": "Египат", 159 | "El Salvador": "Салвадор", 160 | "Equatorial Guinea": "Екваторијална Гвинеја", 161 | "Eritrea": "Еритреја", 162 | "Estonia": "Естонија", 163 | "Ethiopia": "Етиопија", 164 | "Falkland Islands (Malvinas)": "Фокландска Острва", 165 | "Faroe Islands": "Фарска Острва", 166 | "Fiji": "Фиџи", 167 | "Finland": "Финска", 168 | "France": "Француска", 169 | "French Guiana": "Француска Гвајана", 170 | "French Polynesia": "Француска Полинезија", 171 | "French Southern Territories": "Француске Јужне Територије", 172 | "Gabon": "Габон", 173 | "Gambia": "Гамбија", 174 | "Georgia": "Грузија", 175 | "Germany": "Немачка", 176 | "Ghana": "Гана", 177 | "Gibraltar": "Гибралтар", 178 | "Greece": "Грчка", 179 | "Greenland": "Гренланд", 180 | "Grenada": "Гренада", 181 | "Guadeloupe": "Гваделуп", 182 | "Guam": "Гуам", 183 | "Guatemala": "Гватемала", 184 | "Guernsey": "Гернзи", 185 | "Guinea": "Гвинеја", 186 | "Guinea-Bissau": "Гвинеја-Бисао", 187 | "Guyana": "Гвајана", 188 | "Haiti": "Хаити", 189 | "Heard Island & Mcdonald Islands": "Острво Херд и Мекдоналдова острва", 190 | "Holy See (Vatican City State)": "Ватикан", 191 | "Honduras": "Хондурас", 192 | "Hong Kong": "Хонгконг", 193 | "Hungary": "Мађарска", 194 | "Iceland": "Исланд", 195 | "India": "Индија", 196 | "Indonesia": "Индонезија", 197 | "Iran, Islamic Republic Of": "Иран", 198 | "Iraq": "Ирак", 199 | "Ireland": "Ирска", 200 | "Isle Of Man": "Острво Ман", 201 | "Israel": "Израел", 202 | "Italy": "Италија", 203 | "Jamaica": "Јамајка", 204 | "Japan": "Јапан", 205 | "Jersey": "Џерзи", 206 | "Jordan": "Јордан", 207 | "Kazakhstan": "Казахстан", 208 | "Kenya": "Кенија", 209 | "Kiribati": "Кирибати", 210 | "Korea, Democratic People's Republic of": "Северна Кореја", 211 | "Korea": "Јужна Кореја", 212 | "Kosovo": "Косово", 213 | "Kuwait": "Кувајт", 214 | "Kyrgyzstan": "Киргистан", 215 | "Lao People's Democratic Republic": "Лаос", 216 | "Latvia": "Летонија", 217 | "Lebanon": "Либан", 218 | "Lesotho": "Лесото", 219 | "Liberia": "Либерија", 220 | "Libyan Arab Jamahiriya": "Либија", 221 | "Liechtenstein": "Лихтенштајн", 222 | "Lithuania": "Литванија", 223 | "Luxembourg": "Луксембург", 224 | "Macao": "Макао", 225 | "Macedonia": "Северна Македонија", 226 | "Madagascar": "Мадагаскар", 227 | "Malawi": "Малави", 228 | "Malaysia": "Малезија", 229 | "Maldives": "Малдиви", 230 | "Mali": "Мали", 231 | "Malta": "Малта", 232 | "Marshall Islands": "Маршалска Острва", 233 | "Martinique": "Мартиник", 234 | "Mauritania": "Мауританија", 235 | "Mauritius": "Маурицијус", 236 | "Mayotte": "Мајот", 237 | "Mexico": "Мексико", 238 | "Micronesia, Federated States Of": "Микронезија", 239 | "Moldova": "Молдавија", 240 | "Monaco": "Монако", 241 | "Mongolia": "Монголија", 242 | "Montenegro": "Црна Гора", 243 | "Montserrat": "Монсерат", 244 | "Morocco": "Мароко", 245 | "Mozambique": "Мозамбик", 246 | "Myanmar": "Мијанмар (Бурма)", 247 | "Namibia": "Намибија", 248 | "Nauru": "Науру", 249 | "Nepal": "Непал", 250 | "Netherlands": "Холандија", 251 | "New Caledonia": "Нова Каледонија", 252 | "New Zealand": "Нови Зеланд", 253 | "Nicaragua": "Никарагва", 254 | "Niger": "Нигер", 255 | "Nigeria": "Нигерија", 256 | "Niue": "Ниуе", 257 | "Norfolk Island": "Острво Норфок", 258 | "Northern Mariana Islands": "Северна Маријанска Острва", 259 | "Norway": "Норвешка", 260 | "Oman": "Оман", 261 | "Pakistan": "Пакистан", 262 | "Palau": "Палау", 263 | "Palestinian Territory, Occupied": "Палестинске територије", 264 | "Panama": "Панама", 265 | "Papua New Guinea": "Папуа Нова Гвинеја", 266 | "Paraguay": "Парагвај", 267 | "Peru": "Перу", 268 | "Philippines": "Филипини", 269 | "Pitcairn": "Питкерн", 270 | "Poland": "Пољска", 271 | "Portugal": "Португалија", 272 | "Puerto Rico": "Порторико", 273 | "Qatar": "Катар", 274 | "Reunion": "Реинион", 275 | "Romania": "Румунија", 276 | "Russian Federation": "Русија", 277 | "Rwanda": "Руанда", 278 | "Saint Barthelemy": "Свети Бартоломеј", 279 | "Saint Helena": "Света Јелена", 280 | "Saint Kitts And Nevis": "Сент Китс и Невис", 281 | "Saint Lucia": "Света Луција", 282 | "Saint Martin": "Свети Мартин (Француска)", 283 | "Saint Pierre And Miquelon": "Сен Пјер и Микелон", 284 | "Saint Vincent And Grenadines": "Сент Винсент и Гренадини", 285 | "Samoa": "Самоа", 286 | "San Marino": "Сан Марино", 287 | "Sao Tome And Principe": "Сао Томе и Принципе", 288 | "Saudi Arabia": "Саудијска Арабија", 289 | "Senegal": "Сенегал", 290 | "Serbia": "Србија", 291 | "Seychelles": "Сејшели", 292 | "Sierra Leone": "Сијера Леоне", 293 | "Singapore": "Сингапур", 294 | "Sint Maarten (Dutch part)": "Свети Мартин (Холандија)", 295 | "Slovakia": "Словачка", 296 | "Slovenia": "Словенија", 297 | "Solomon Islands": "Соломонска Острва", 298 | "Somalia": "Сомалија", 299 | "South Africa": "Јужноафричка Република", 300 | "South Georgia And Sandwich Isl.": "Јужна Џорџија и Јужна Сендвичка Острва", 301 | "South Sudan": "Јужни Судан", 302 | "Spain": "Шпанија", 303 | "Sri Lanka": "Шри Ланка", 304 | "Sudan": "Судан", 305 | "Suriname": "Суринам", 306 | "Svalbard And Jan Mayen": "Свалбард и Јан Мајен", 307 | "Swaziland": "Свазиленд", 308 | "Sweden": "Шведска", 309 | "Switzerland": "Швајцарска", 310 | "Syrian Arab Republic": "Сирија", 311 | "Taiwan": "Тајван", 312 | "Tajikistan": "Таџикистан", 313 | "Tanzania": "Танзанија", 314 | "Thailand": "Тајланд", 315 | "Timor-Leste": "Тимор-Лесте (Источни Тимор)", 316 | "Togo": "Того", 317 | "Tokelau": "Токелау", 318 | "Tonga": "Тонга", 319 | "Trinidad And Tobago": "Тринидад и Тобаго", 320 | "Tunisia": "Тунис", 321 | "Turkey": "Турска", 322 | "Turkmenistan": "Туркменистан", 323 | "Turks And Caicos Islands": "Острва Туркс и Каикос", 324 | "Tuvalu": "Тувалу", 325 | "Uganda": "Уганда", 326 | "Ukraine": "Украјина", 327 | "United Arab Emirates": "Уједињени Арапски Емирати", 328 | "United Kingdom": "Уједињено Краљевство", 329 | "United States": "Сједињене Државе", 330 | "United States Outlying Islands": "Удаљена острва САД", 331 | "Uruguay": "Уругвај", 332 | "Uzbekistan": "Узбекистан", 333 | "Vanuatu": "Вануату", 334 | "Venezuela": "Венецуела", 335 | "Viet Nam": "Вијетнам", 336 | "Virgin Islands, British": "Британска Девичанска Острва", 337 | "Virgin Islands, U.S.": "Америчка Девичанска Острва", 338 | "Wallis And Futuna": "Валис и Футуна", 339 | "Western Sahara": "Западна Сахара", 340 | "Yemen": "Јемен", 341 | "Zambia": "Замбија", 342 | "Zimbabwe": "Зимбабве", 343 | "Yes": "Да", 344 | "No": "Не", 345 | "Action Status": "Статус", 346 | "The :resource was created!": "Овај :ресоурце је направљен!", 347 | "Download": "Преузимање" 348 | } 349 | -------------------------------------------------------------------------------- /resources/lang/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Handlinger", 3 | "Details": "Detaljer", 4 | "If you did not request a password reset, no further action is required.": "Hvis du ikke anmodede om en nulstilling af adgangskoden, er der ikke behov for yderligere handlinger.", 5 | "Reset Password": "Nulstil adgangskode", 6 | "Sorry! You are not authorized to perform this action.": "Undskyld! Du har ikke rettigheder til at udfører denne handling.", 7 | "You are receiving this email because we received a password reset request for your account.": "Du modtager denne mail fordi vi modtog en anmodning om nulstilling af adgangskode for din konto.", 8 | "Confirm Password": "Bekræft kodeord", 9 | "Dashboard": "Betjeningspanel", 10 | "Email Address": "Email adresse", 11 | "Forgot Password": "Glemt din adgangskode?", 12 | "Forgot your password?": "Glemt din adgangskode?", 13 | "Log In": "Log ind", 14 | "Logout": "Log ud", 15 | "Password": "Adgangskode", 16 | "Remember me": "Husk mig", 17 | "Resources": "Ressourcer", 18 | "Send Password Reset Link": "Send adgangskode nulstillings mail", 19 | "Welcome Back!": "Velkommen tilbage!", 20 | "Delete Resource": "Slet ressource", 21 | "Delete": "Slet", 22 | "Detach Resource": "Fjern ressource", 23 | "Detach": "Fjern", 24 | "Detach Selected": "Fjern valgte", 25 | "Delete Selected": "Slet valgte", 26 | "Force Delete Selected": "Tvangslet valgte", 27 | "Restore Selected": "Gendan valgte", 28 | "Restore Resource": "Gendan ressource", 29 | "Restore": "Gendan", 30 | "Force Delete Resource": "Tvangslet ressource", 31 | "Force Delete": "Tvangslet", 32 | "Are you sure you want to delete this resource?": "Er du sikker på du vil slette denne ressource?", 33 | "Are you sure you want to delete the selected resources?": "Er du sikker på du vil slette de valgte ressourcer?", 34 | "Are you sure you want to detach this resource?": "Er du sikker på du vil fjerne denne ressource?", 35 | "Are you sure you want to detach the selected resources?": "Er du sikker på du vil fjerne de valgte ressourcer?", 36 | "Are you sure you want to force delete this resource?": "Er du sikker på du vil tvangslette denne ressource?", 37 | "Are you sure you want to force delete the selected resources?": "Er du sikker på du vil tvangslette de valgte ressourcer", 38 | "Are you sure you want to restore this resource?": "Er du sikker på du vil gendanne denne ressource?", 39 | "Are you sure you want to restore the selected resources?": "Er du sikker på du vil gendanne de valgte ressourcer?", 40 | "No :resource matched the given criteria.": "Ingen :resource matchede de givne kriterier.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "En anden bruger har opdateret denne ressource siden denne side blev indlæst. Opdater siden, og prøv igen.", 42 | "Are you sure you want to delete this file?": "Er du sikker på du vil slette denne fil?", 43 | "Are you sure you want to run this action?": "Er du sikker på du vil køre denne handling?", 44 | "Attach": "Vedhæft", 45 | "Attach & Attach Another": "Vedhæft og vedhæft en anden", 46 | "Cancel": "Annullere", 47 | "Choose": "Vælg", 48 | "Choose File": "Vælg fil", 49 | "Choose Type": "Vælg type", 50 | "Choose an option": "Vælg en indstilling", 51 | "Click to choose": "Klik for at vælge", 52 | "Create": "Opret", 53 | "Create & Add Another": "Opret og tilføj en anden", 54 | "Delete File": "Slet fil", 55 | "Edit": "Rediger", 56 | "Edit Attached": "Rediger vedhæftet", 57 | "Go Home": "Til forside", 58 | "Hold Up!": "Vent et øjeblik!", 59 | "Lens": "Linse", 60 | "New": "Ny", 61 | "Next": "Næste", 62 | "Only Trashed": "Kun slettede", 63 | "Per Page": "Per side", 64 | "Preview": "Forhåndsvisning", 65 | "Previous": "Forrige", 66 | "No Results Found.": "Ingen resultater fundet.", 67 | "Run Action": "Kør handling", 68 | "Select Action": "Vælg handling", 69 | "Search": "Søg", 70 | "Press / to search": "Tryk på / for at søge", 71 | "Select all": "Vælg alle", 72 | "Something went wrong.": "Noget gik galt.", 73 | "The action was executed successfully.": "Handlingen kørte med succes!", 74 | "The government won't let us show you what's behind these doors": "Regeringen vil ikke lade os vise dig, hvad der er bag disse døre", 75 | "Update": "Opdater", 76 | "Update & Continue Editing": "Opdater og forsæt redigering", 77 | "View": "Se", 78 | "We're lost in space. The page you were trying to view does not exist.": "Vi er tabt i rummet. Siden du forsøgte at se findes ikke.", 79 | "Whoops": "Ups", 80 | "Whoops!": "Ups!", 81 | "With Trashed": "Med slettede", 82 | "Write": "Skrive", 83 | "total": "totalt", 84 | "January": "Januar", 85 | "February": "Februar", 86 | "March": "Marts", 87 | "April": "April", 88 | "May": "Maj", 89 | "June": "Juni", 90 | "July": "Juli", 91 | "August": "August", 92 | "September": "September", 93 | "October": "Oktober", 94 | "November": "November", 95 | "December": "December", 96 | "Afghanistan": "Afghanistan", 97 | "Aland Islands": "Åland", 98 | "Albania": "Albanien", 99 | "Algeria": "Algeriet", 100 | "American Samoa": "Amerikansk Samoa", 101 | "Andorra": "Andorra", 102 | "Angola": "Angola", 103 | "Anguilla": "Anguilla", 104 | "Antarctica": "Antarktis", 105 | "Antigua And Barbuda": "Antigua og Barbuda", 106 | "Argentina": "Argentina", 107 | "Armenia": "Armenien", 108 | "Aruba": "Aruba", 109 | "Australia": "Australien", 110 | "Austria": "Østrig", 111 | "Azerbaijan": "Aserbajdsjan", 112 | "Bahamas": "Bahamas", 113 | "Bahrain": "Bahrain", 114 | "Bangladesh": "Bangladesh", 115 | "Barbados": "Barbados", 116 | "Belarus": "Hviderusland", 117 | "Belgium": "Belgien", 118 | "Belize": "Belize", 119 | "Benin": "Benin", 120 | "Bermuda": "Bermuda", 121 | "Bhutan": "Bhutan", 122 | "Bolivia": "Bolivia", 123 | "Bonaire, Sint Eustatius and Saba": "De tidligere Nederlandske Antiller", 124 | "Bosnia And Herzegovina": "Bosnien-Hercegovina", 125 | "Botswana": "Botswana", 126 | "Bouvet Island": "Bouvetøen", 127 | "Brazil": "Brasilien", 128 | "British Indian Ocean Territory": "Det Britiske Territorium i Det Indiske Ocean", 129 | "Brunei Darussalam": "Brunei", 130 | "Bulgaria": "Bulgarien", 131 | "Burkina Faso": "Burkina Faso", 132 | "Burundi": "Burundi", 133 | "Cambodia": "Cambodja", 134 | "Cameroon": "Cameroun", 135 | "Canada": "Canada", 136 | "Cape Verde": "Kap Verde", 137 | "Cayman Islands": "Caymanøerne", 138 | "Central African Republic": "Den Centralafrikanske Republik", 139 | "Chad": "Tchad", 140 | "Chile": "Chile", 141 | "China": "Kina", 142 | "Christmas Island": "Juleøen", 143 | "Cocos (Keeling) Islands": "Cocosøerne", 144 | "Colombia": "Colombia", 145 | "Comoros": "Comorerne", 146 | "Congo": "Congo-Brazzaville", 147 | "Congo, Democratic Republic": "Congo-Kinshasa", 148 | "Cook Islands": "Cookøerne", 149 | "Costa Rica": "Costa Rica", 150 | "Cote D'Ivoire": "Elfenbenskysten", 151 | "Croatia": "Kroatien", 152 | "Cuba": "Cuba", 153 | "Curaçao": "Curaçao", 154 | "Cyprus": "Cypern", 155 | "Czech Republic": "Tjekkiet", 156 | "Denmark": "Danmark", 157 | "Djibouti": "Djibouti", 158 | "Dominica": "Dominica", 159 | "Dominican Republic": "Den Dominikanske Republik", 160 | "Ecuador": "Ecuador", 161 | "Egypt": "Egypten", 162 | "El Salvador": "El Salvador", 163 | "Equatorial Guinea": "Ækvatorialguinea", 164 | "Eritrea": "Eritrea", 165 | "Estonia": "Estland", 166 | "Ethiopia": "Etiopien", 167 | "Falkland Islands (Malvinas)": "Falklandsøerne", 168 | "Faroe Islands": "Færøerne", 169 | "Fiji": "Fiji", 170 | "Finland": "Finland", 171 | "France": "Frankrig", 172 | "French Guiana": "Fransk Guyana", 173 | "French Polynesia": "Fransk Polynesien", 174 | "French Southern Territories": "De Franske Besiddelser i Det Sydlige Indiske Ocean og Antarktis", 175 | "Gabon": "Gabon", 176 | "Gambia": "Gambia", 177 | "Georgia": "Georgien", 178 | "Germany": "Tyskland", 179 | "Ghana": "Ghana", 180 | "Gibraltar": "Gibraltar", 181 | "Greece": "Grækenland", 182 | "Greenland": "Grønland", 183 | "Grenada": "Grenada", 184 | "Guadeloupe": "Guadeloupe", 185 | "Guam": "Guam", 186 | "Guatemala": "Guatemala", 187 | "Guernsey": "Guernsey", 188 | "Guinea": "Guinea", 189 | "Guinea-Bissau": "Guinea-Bissau", 190 | "Guyana": "Guyana", 191 | "Haiti": "Haiti", 192 | "Heard Island & Mcdonald Islands": "Heard Island og McDonald Islands", 193 | "Holy See (Vatican City State)": "Vatikanstaten", 194 | "Honduras": "Honduras", 195 | "Hong Kong": "SAR Hongkong", 196 | "Hungary": "Ungarn", 197 | "Iceland": "Island", 198 | "India": "Indien", 199 | "Indonesia": "Indonesien", 200 | "Iran, Islamic Republic Of": "Iran", 201 | "Iraq": "Irak", 202 | "Ireland": "Irland", 203 | "Isle Of Man": "Isle of Man", 204 | "Israel": "Israel", 205 | "Italy": "Italien", 206 | "Jamaica": "Jamaica", 207 | "Japan": "Japan", 208 | "Jersey": "Jersey", 209 | "Jordan": "Jordan", 210 | "Kazakhstan": "Kasakhstan", 211 | "Kenya": "Kenya", 212 | "Kiribati": "Kiribati", 213 | "Korea, Democratic People's Republic of": "Nordkorea", 214 | "Korea": "Sydkorea", 215 | "Kosovo": "Kosovo", 216 | "Kuwait": "Kuwait", 217 | "Kyrgyzstan": "Kirgisistan", 218 | "Lao People's Democratic Republic": "Laos", 219 | "Latvia": "Letland", 220 | "Lebanon": "Libanon", 221 | "Lesotho": "Lesotho", 222 | "Liberia": "Liberia", 223 | "Libyan Arab Jamahiriya": "Libyen", 224 | "Liechtenstein": "Liechtenstein", 225 | "Lithuania": "Litauen", 226 | "Luxembourg": "Luxembourg", 227 | "Macao": "SAR Macao", 228 | "Macedonia": "Nordmakedonien", 229 | "Madagascar": "Madagaskar", 230 | "Malawi": "Malawi", 231 | "Malaysia": "Malaysia", 232 | "Maldives": "Maldiverne", 233 | "Mali": "Mali", 234 | "Malta": "Malta", 235 | "Marshall Islands": "Marshalløerne", 236 | "Martinique": "Martinique", 237 | "Mauritania": "Mauretanien", 238 | "Mauritius": "Mauritius", 239 | "Mayotte": "Mayotte", 240 | "Mexico": "Mexico", 241 | "Micronesia, Federated States Of": "Mikronesien", 242 | "Moldova": "Moldova", 243 | "Monaco": "Monaco", 244 | "Mongolia": "Mongoliet", 245 | "Montenegro": "Montenegro", 246 | "Montserrat": "Montserrat", 247 | "Morocco": "Marokko", 248 | "Mozambique": "Mozambique", 249 | "Myanmar": "Myanmar (Burma)", 250 | "Namibia": "Namibia", 251 | "Nauru": "Nauru", 252 | "Nepal": "Nepal", 253 | "Netherlands": "Holland", 254 | "New Caledonia": "Ny Kaledonien", 255 | "New Zealand": "New Zealand", 256 | "Nicaragua": "Nicaragua", 257 | "Niger": "Niger", 258 | "Nigeria": "Nigeria", 259 | "Niue": "Niue", 260 | "Norfolk Island": "Norfolk Island", 261 | "Northern Mariana Islands": "Nordmarianerne", 262 | "Norway": "Norge", 263 | "Oman": "Oman", 264 | "Pakistan": "Pakistan", 265 | "Palau": "Palau", 266 | "Palestinian Territory, Occupied": "De palæstinensiske områder", 267 | "Panama": "Panama", 268 | "Papua New Guinea": "Papua Ny Guinea", 269 | "Paraguay": "Paraguay", 270 | "Peru": "Peru", 271 | "Philippines": "Filippinerne", 272 | "Pitcairn": "Pitcairn", 273 | "Poland": "Polen", 274 | "Portugal": "Portugal", 275 | "Puerto Rico": "Puerto Rico", 276 | "Qatar": "Qatar", 277 | "Reunion": "Réunion", 278 | "Romania": "Rumænien", 279 | "Russian Federation": "Rusland", 280 | "Rwanda": "Rwanda", 281 | "Saint Barthelemy": "Saint Barthélemy", 282 | "Saint Helena": "St. Helena", 283 | "Saint Kitts And Nevis": "Saint Kitts og Nevis", 284 | "Saint Lucia": "Saint Lucia", 285 | "Saint Martin": "Saint Martin", 286 | "Saint Pierre And Miquelon": "Saint Pierre og Miquelon", 287 | "Saint Vincent And Grenadines": "Saint Vincent og Grenadinerne", 288 | "Samoa": "Samoa", 289 | "San Marino": "San Marino", 290 | "Sao Tome And Principe": "São Tomé og Príncipe", 291 | "Saudi Arabia": "Saudi-Arabien", 292 | "Senegal": "Senegal", 293 | "Serbia": "Serbien", 294 | "Seychelles": "Seychellerne", 295 | "Sierra Leone": "Sierra Leone", 296 | "Singapore": "Singapore", 297 | "Sint Maarten (Dutch part)": "Sint Maarten", 298 | "Slovakia": "Slovakiet", 299 | "Slovenia": "Slovenien", 300 | "Solomon Islands": "Salomonøerne", 301 | "Somalia": "Somalia", 302 | "South Africa": "Sydafrika", 303 | "South Georgia And Sandwich Isl.": "South Georgia og De Sydlige Sandwichøer", 304 | "South Sudan": "Sydsudan", 305 | "Spain": "Spanien", 306 | "Sri Lanka": "Sri Lanka", 307 | "Sudan": "Sudan", 308 | "Suriname": "Surinam", 309 | "Svalbard And Jan Mayen": "Svalbard og Jan Mayen", 310 | "Swaziland": "Eswatini", 311 | "Sweden": "Sverige", 312 | "Switzerland": "Schweiz", 313 | "Syrian Arab Republic": "Syrien", 314 | "Taiwan": "Taiwan", 315 | "Tajikistan": "Tadsjikistan", 316 | "Tanzania": "Tanzania", 317 | "Thailand": "Thailand", 318 | "Timor-Leste": "Timor-Leste", 319 | "Togo": "Togo", 320 | "Tokelau": "Tokelau", 321 | "Tonga": "Tonga", 322 | "Trinidad And Tobago": "Trinidad og Tobago", 323 | "Tunisia": "Tunesien", 324 | "Turkey": "Tyrkiet", 325 | "Turkmenistan": "Turkmenistan", 326 | "Turks And Caicos Islands": "Turks- og Caicosøerne", 327 | "Tuvalu": "Tuvalu", 328 | "Uganda": "Uganda", 329 | "Ukraine": "Ukraine", 330 | "United Arab Emirates": "De Forenede Arabiske Emirater", 331 | "United Kingdom": "Storbritannien", 332 | "United States": "USA", 333 | "United States Outlying Islands": "Amerikanske oversøiske øer", 334 | "Uruguay": "Uruguay", 335 | "Uzbekistan": "Usbekistan", 336 | "Vanuatu": "Vanuatu", 337 | "Venezuela": "Venezuela", 338 | "Viet Nam": "Vietnam", 339 | "Virgin Islands, British": "De Britiske Jomfruøer", 340 | "Virgin Islands, U.S.": "De Amerikanske Jomfruøer", 341 | "Wallis And Futuna": "Wallis og Futuna", 342 | "Western Sahara": "Vestsahara", 343 | "Yemen": "Yemen", 344 | "Zambia": "Zambia", 345 | "Zimbabwe": "Zimbabwe", 346 | "Yes": "Ja", 347 | "No": "Nej", 348 | "Action Status": "Status", 349 | "The :resource was created!": "En :resource var oprettet!", 350 | "Create :resource": "Opret :resource", 351 | "Download": "Downloade" 352 | } 353 | -------------------------------------------------------------------------------- /resources/lang/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Akcije", 3 | "Details": "Detalji", 4 | "If you did not request a password reset, no further action is required.": "Ako niste zatražili promjenu lozinke, nema potrebe za dodatnim akcijama.", 5 | "Reset Password": "Resetiranje lozinke", 6 | "Sorry! You are not authorized to perform this action.": "Žao nam je! Vi niste ovlašteni za izvršavanje ovog postupka.", 7 | "You are receiving this email because we received a password reset request for your account.": "Primili ste ovu poruku zato što smo dobili zahtjev za resetiranje lozinke vašeg računa.", 8 | "Confirm Password": "Potvrdite lozinku", 9 | "Dashboard": "Upravljačka ploča", 10 | "Email Address": "Email adresa", 11 | "Forgot Password": "Zaboravili ste Vašu lozinku?", 12 | "Forgot your password?": "Zaboravili ste lozinku?", 13 | "Log In": "Prijava", 14 | "Logout": "Odjava", 15 | "Password": "Lozinka", 16 | "Remember me": "Zapamti me", 17 | "Resources": "Resursi", 18 | "Send Password Reset Link": "Pošalji link za resetiranje lozinke", 19 | "Welcome Back!": "Dobrodošli natrag!", 20 | "Delete Resource": "Obriši resurs", 21 | "Delete": "Obriši", 22 | "Detach Resource": "Otkači resurs", 23 | "Detach": "Otkači", 24 | "Detach Selected": "Otkači izabrano", 25 | "Delete Selected": "Obriši izabrano", 26 | "Force Delete Selected": "Obrišite izabrano na silu", 27 | "Restore Selected": "Povrati izabrano", 28 | "Restore Resource": "Povrati resurs", 29 | "Restore": "Povrati", 30 | "Force Delete Resource": "Obriši resurs na silu", 31 | "Force Delete": "Obriši na silu", 32 | "Are you sure you want to delete this resource?": "Jeste li sigurni da želite da obrisati ovaj resurs?", 33 | "Are you sure you want to delete the selected resources?": "Jeste li sigurni da želite da obrisati izabrane resurse?", 34 | "Are you sure you want to detach this resource?": "Jeste li sigurni da želite otkačiti ovaj resurs?", 35 | "Are you sure you want to detach the selected resources?": "Jeste li sigurni da želite otkačiti izabrane resurse?", 36 | "Are you sure you want to force delete this resource?": "Jeste li sigurni da želite obrisati ovaj resurs na silu?", 37 | "Are you sure you want to force delete the selected resources?": "Jeste li sigurni da želite obrisati odabrane resurse na silu?", 38 | "Are you sure you want to restore this resource?": "Jeste li sigurni da želite povratiti ovaj resurs?", 39 | "Are you sure you want to restore the selected resources?": "Jeste li sigurni da želite povratiti izabrane resurse?", 40 | "No :resource matched the given criteria.": "Nijedan :resource se ne slaže sa zadanim kriterijima.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Drugi korisnik je ažurirao ovaj resurs otkad je ova stranica učitana. Molimo vas da osvježite stranicu i pokušate ponovo.", 42 | "Are you sure you want to delete this file?": "Jeste li sigurni da želite obrisati ovu datoteku?", 43 | "Are you sure you want to run this action?": "Jeste li sigurni da želite pokrenuti ovaj postupak?", 44 | "Attach": "Zakači", 45 | "Attach & Attach Another": "Zakači i zakači još jedan", 46 | "Cancel": "Odustani", 47 | "Choose": "Izaberi", 48 | "Choose File": "Izaberi datoteku", 49 | "Choose Type": "Izaberi tip", 50 | "Choose an option": "Izaberi neku opciju", 51 | "Click to choose": "Klikni za odabir", 52 | "Create": "Napravi", 53 | "Create & Add Another": "Napravi i napravi još jedan", 54 | "Delete File": "Obriši datoteku", 55 | "Edit": "Izmjeni", 56 | "Edit Attached": "Izmjeni zakačeno", 57 | "Go Home": "Natrag na Početnu", 58 | "Hold Up!": "Molimo pričekajte!", 59 | "Lens": "Objektiv", 60 | "New": "Novo", 61 | "Next": "Dalje", 62 | "Only Trashed": "Samo obrisano", 63 | "Per Page": "Po stranici", 64 | "Preview": "Pregled", 65 | "Previous": "Prošli", 66 | "Run Action": "Pokreni postupak", 67 | "Select Action": "Izabrani postupak", 68 | "Select all": "Izaberi sve", 69 | "Something went wrong.": "Nešto nije u redu.", 70 | "The action was executed successfully.": "Postupak je uspješno pokrenut!", 71 | "The government won't let us show you what's behind these doors": "Vlada nam ne dozvoljava da Vam prikažemo što je iza ovih vrata", 72 | "Update": "Ažuriraj", 73 | "Update & Continue Editing": "Ažuriraj i nastavi sa izmjenama", 74 | "View": "Pogledaj", 75 | "We're lost in space. The page you were trying to view does not exist.": "Izgubljeni smo u svemiru. Stranica koju pokušavate pregledati ne postoji.", 76 | "Whoops": "Ups", 77 | "Whoops!": "Ups!", 78 | "With Trashed": "Sa obrisanim", 79 | "Write": "Piši", 80 | "total": "ukupno", 81 | "January": "Siječanj", 82 | "February": "Veljača", 83 | "March": "Ožujak", 84 | "April": "Travanj", 85 | "May": "Svibanj", 86 | "June": "Lipanj", 87 | "July": "Srpanj", 88 | "August": "Kolovoz", 89 | "September": "Rujan", 90 | "October": "Listopad", 91 | "November": "Studeni", 92 | "December": "Prosinac", 93 | "Afghanistan": "Afganistan", 94 | "Aland Islands": "Ålandski otoci", 95 | "Albania": "Albanija", 96 | "Algeria": "Alžir", 97 | "American Samoa": "Američka Samoa", 98 | "Andorra": "Andora", 99 | "Angola": "Angola", 100 | "Anguilla": "Angvila", 101 | "Antarctica": "Antarktika", 102 | "Antigua And Barbuda": "Antigva i Barbuda", 103 | "Argentina": "Argentina", 104 | "Armenia": "Armenija", 105 | "Aruba": "Aruba", 106 | "Australia": "Australija", 107 | "Austria": "Austrija", 108 | "Azerbaijan": "Azerbajdžan", 109 | "Bahamas": "Bahami", 110 | "Bahrain": "Bahrein", 111 | "Bangladesh": "Bangladeš", 112 | "Barbados": "Barbados", 113 | "Belarus": "Bjelorusija", 114 | "Belgium": "Belgija", 115 | "Belize": "Belize", 116 | "Benin": "Benin", 117 | "Bermuda": "Bermudi", 118 | "Bhutan": "Butan", 119 | "Bolivia": "Bolivija", 120 | "Bonaire, Sint Eustatius and Saba": "Karipski otoci Nizozemske", 121 | "Bosnia And Herzegovina": "Bosna i Hercegovina", 122 | "Botswana": "Bocvana", 123 | "Bouvet Island": "Otok Bouvet", 124 | "Brazil": "Brazil", 125 | "British Indian Ocean Territory": "Britanski Indijskooceanski teritorij", 126 | "Brunei Darussalam": "Brunej", 127 | "Bulgaria": "Bugarska", 128 | "Burkina Faso": "Burkina Faso", 129 | "Burundi": "Burundi", 130 | "Cambodia": "Kambodža", 131 | "Cameroon": "Kamerun", 132 | "Canada": "Kanada", 133 | "Cape Verde": "Zelenortska Republika", 134 | "Cayman Islands": "Kajmanski otoci", 135 | "Central African Republic": "Srednjoafrička Republika", 136 | "Chad": "Čad", 137 | "Chile": "Čile", 138 | "China": "Kina", 139 | "Christmas Island": "Božićni otok", 140 | "Cocos (Keeling) Islands": "Kokosovi (Keelingovi) otoci", 141 | "Colombia": "Kolumbija", 142 | "Comoros": "Komori", 143 | "Congo": "Kongo - Brazzaville", 144 | "Congo, Democratic Republic": "Kongo - Kinshasa", 145 | "Cook Islands": "Cookovi Otoci", 146 | "Costa Rica": "Kostarika", 147 | "Cote D'Ivoire": "Obala Bjelokosti", 148 | "Croatia": "Hrvatska", 149 | "Cuba": "Kuba", 150 | "Curaçao": "Curaçao", 151 | "Cyprus": "Cipar", 152 | "Czech Republic": "Češka", 153 | "Denmark": "Danska", 154 | "Djibouti": "Džibuti", 155 | "Dominica": "Dominika", 156 | "Dominican Republic": "Dominikanska Republika", 157 | "Ecuador": "Ekvador", 158 | "Egypt": "Egipat", 159 | "El Salvador": "Salvador", 160 | "Equatorial Guinea": "Ekvatorska Gvineja", 161 | "Eritrea": "Eritreja", 162 | "Estonia": "Estonija", 163 | "Ethiopia": "Etiopija", 164 | "Falkland Islands (Malvinas)": "Falklandski otoci", 165 | "Faroe Islands": "Farski otoci", 166 | "Fiji": "Fidži", 167 | "Finland": "Finska", 168 | "France": "Francuska", 169 | "French Guiana": "Francuska Gijana", 170 | "French Polynesia": "Francuska Polinezija", 171 | "French Southern Territories": "Francuski južni i antarktički teritoriji", 172 | "Gabon": "Gabon", 173 | "Gambia": "Gambija", 174 | "Georgia": "Gruzija", 175 | "Germany": "Njemačka", 176 | "Ghana": "Gana", 177 | "Gibraltar": "Gibraltar", 178 | "Greece": "Grčka", 179 | "Greenland": "Grenland", 180 | "Grenada": "Grenada", 181 | "Guadeloupe": "Guadalupe", 182 | "Guam": "Guam", 183 | "Guatemala": "Gvatemala", 184 | "Guernsey": "Guernsey", 185 | "Guinea": "Gvineja", 186 | "Guinea-Bissau": "Gvineja Bisau", 187 | "Guyana": "Gvajana", 188 | "Haiti": "Haiti", 189 | "Heard Island & Mcdonald Islands": "Otoci Heard i McDonald", 190 | "Holy See (Vatican City State)": "Vatikanski Grad", 191 | "Honduras": "Honduras", 192 | "Hong Kong": "PUP Hong Kong Kina", 193 | "Hungary": "Mađarska", 194 | "Iceland": "Island", 195 | "India": "Indija", 196 | "Indonesia": "Indonezija", 197 | "Iran, Islamic Republic Of": "Iran", 198 | "Iraq": "Irak", 199 | "Ireland": "Irska", 200 | "Isle Of Man": "Otok Man", 201 | "Israel": "Izrael", 202 | "Italy": "Italija", 203 | "Jamaica": "Jamajka", 204 | "Japan": "Japan", 205 | "Jersey": "Jersey", 206 | "Jordan": "Jordan", 207 | "Kazakhstan": "Kazahstan", 208 | "Kenya": "Kenija", 209 | "Kiribati": "Kiribati", 210 | "Korea, Democratic People's Republic of": "Sjeverna Koreja", 211 | "Korea": "Južna Koreja", 212 | "Kosovo": "Kosovo", 213 | "Kuwait": "Kuvajt", 214 | "Kyrgyzstan": "Kirgistan", 215 | "Lao People's Democratic Republic": "Laos", 216 | "Latvia": "Latvija", 217 | "Lebanon": "Libanon", 218 | "Lesotho": "Lesoto", 219 | "Liberia": "Liberija", 220 | "Libyan Arab Jamahiriya": "Libija", 221 | "Liechtenstein": "Lihtenštajn", 222 | "Lithuania": "Litva", 223 | "Luxembourg": "Luksemburg", 224 | "Macao": "PUP Makao Kina", 225 | "Macedonia": "Sjeverna Makedonija", 226 | "Madagascar": "Madagaskar", 227 | "Malawi": "Malavi", 228 | "Malaysia": "Malezija", 229 | "Maldives": "Maldivi", 230 | "Mali": "Mali", 231 | "Malta": "Malta", 232 | "Marshall Islands": "Maršalovi Otoci", 233 | "Martinique": "Martinique", 234 | "Mauritania": "Mauretanija", 235 | "Mauritius": "Mauricijus", 236 | "Mayotte": "Mayotte", 237 | "Mexico": "Meksiko", 238 | "Micronesia, Federated States Of": "Mikronezija", 239 | "Moldova": "Moldavija", 240 | "Monaco": "Monako", 241 | "Mongolia": "Mongolija", 242 | "Montenegro": "Crna Gora", 243 | "Montserrat": "Montserrat", 244 | "Morocco": "Maroko", 245 | "Mozambique": "Mozambik", 246 | "Myanmar": "Mjanmar (Burma)", 247 | "Namibia": "Namibija", 248 | "Nauru": "Nauru", 249 | "Nepal": "Nepal", 250 | "Netherlands": "Nizozemska", 251 | "New Caledonia": "Nova Kaledonija", 252 | "New Zealand": "Novi Zeland", 253 | "Nicaragua": "Nikaragva", 254 | "Niger": "Niger", 255 | "Nigeria": "Nigerija", 256 | "Niue": "Niue", 257 | "Norfolk Island": "Otok Norfolk", 258 | "Northern Mariana Islands": "Sjevernomarijanski otoci", 259 | "Norway": "Norveška", 260 | "Oman": "Oman", 261 | "Pakistan": "Pakistan", 262 | "Palau": "Palau", 263 | "Palestinian Territory, Occupied": "Palestinsko područje", 264 | "Panama": "Panama", 265 | "Papua New Guinea": "Papua Nova Gvineja", 266 | "Paraguay": "Paragvaj", 267 | "Peru": "Peru", 268 | "Philippines": "Filipini", 269 | "Pitcairn": "Otoci Pitcairn", 270 | "Poland": "Poljska", 271 | "Portugal": "Portugal", 272 | "Puerto Rico": "Portoriko", 273 | "Qatar": "Katar", 274 | "Reunion": "Réunion", 275 | "Romania": "Rumunjska", 276 | "Russian Federation": "Rusija", 277 | "Rwanda": "Ruanda", 278 | "Saint Barthelemy": "Saint Barthélemy", 279 | "Saint Helena": "Sveta Helena", 280 | "Saint Kitts And Nevis": "Sveti Kristofor i Nevis", 281 | "Saint Lucia": "Sveta Lucija", 282 | "Saint Martin": "Saint Martin", 283 | "Saint Pierre And Miquelon": "Saint-Pierre-et-Miquelon", 284 | "Saint Vincent And Grenadines": "Sveti Vincent i Grenadini", 285 | "Samoa": "Samoa", 286 | "San Marino": "San Marino", 287 | "Sao Tome And Principe": "Sveti Toma i Princip", 288 | "Saudi Arabia": "Saudijska Arabija", 289 | "Senegal": "Senegal", 290 | "Serbia": "Srbija", 291 | "Seychelles": "Sejšeli", 292 | "Sierra Leone": "Sijera Leone", 293 | "Singapore": "Singapur", 294 | "Sint Maarten (Dutch part)": "Sint Maarten", 295 | "Slovakia": "Slovačka", 296 | "Slovenia": "Slovenija", 297 | "Solomon Islands": "Salomonski Otoci", 298 | "Somalia": "Somalija", 299 | "South Africa": "Južnoafrička Republika", 300 | "South Georgia And Sandwich Isl.": "Južna Georgija i Južni Sendvički Otoci", 301 | "South Sudan": "Južni Sudan", 302 | "Spain": "Španjolska", 303 | "Sri Lanka": "Šri Lanka", 304 | "Sudan": "Sudan", 305 | "Suriname": "Surinam", 306 | "Svalbard And Jan Mayen": "Svalbard i Jan Mayen", 307 | "Swaziland": "Esvatini", 308 | "Sweden": "Švedska", 309 | "Switzerland": "Švicarska", 310 | "Syrian Arab Republic": "Sirija", 311 | "Taiwan": "Tajvan", 312 | "Tajikistan": "Tadžikistan", 313 | "Tanzania": "Tanzanija", 314 | "Thailand": "Tajland", 315 | "Timor-Leste": "Timor-Leste", 316 | "Togo": "Togo", 317 | "Tokelau": "Tokelau", 318 | "Tonga": "Tonga", 319 | "Trinidad And Tobago": "Trinidad i Tobago", 320 | "Tunisia": "Tunis", 321 | "Turkey": "Turska", 322 | "Turkmenistan": "Turkmenistan", 323 | "Turks And Caicos Islands": "Otoci Turks i Caicos", 324 | "Tuvalu": "Tuvalu", 325 | "Uganda": "Uganda", 326 | "Ukraine": "Ukrajina", 327 | "United Arab Emirates": "Ujedinjeni Arapski Emirati", 328 | "United Kingdom": "Ujedinjeno Kraljevstvo", 329 | "United States": "Sjedinjene Američke Države", 330 | "United States Outlying Islands": "Mali udaljeni otoci SAD-a", 331 | "Uruguay": "Urugvaj", 332 | "Uzbekistan": "Uzbekistan", 333 | "Vanuatu": "Vanuatu", 334 | "Venezuela": "Venezuela", 335 | "Viet Nam": "Vijetnam", 336 | "Virgin Islands, British": "Britanski Djevičanski otoci", 337 | "Virgin Islands, U.S.": "Američki Djevičanski otoci", 338 | "Wallis And Futuna": "Wallis i Futuna", 339 | "Western Sahara": "Zapadna Sahara", 340 | "Yemen": "Jemen", 341 | "Zambia": "Zambija", 342 | "Zimbabwe": "Zimbabve", 343 | "Yes": "Da", 344 | "No": "Ne", 345 | "Action Status": "Status", 346 | "The :resource was created!": "Ovaj :resource je kreiran!", 347 | "Download": "Preuzimanje" 348 | } 349 | -------------------------------------------------------------------------------- /resources/lang/sr-Latn.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Postupci", 3 | "Details": "Detalji", 4 | "If you did not request a password reset, no further action is required.": "Ako niste zahtevali resetovanje lozinke, nema potrebe za daljim postupanjem.", 5 | "Reset Password": "Resetovanje lozinke", 6 | "Sorry! You are not authorized to perform this action.": "Žao nam je! Vi niste autorizovani da izvršite ovaj postupak.", 7 | "You are receiving this email because we received a password reset request for your account.": "Dobijate ovaj mejl zato što smo dobili zahtev za resetovanje lozinke za vaš nalog.", 8 | "Confirm Password": "Potvrdite lozinku", 9 | "Dashboard": "Komandna tabla", 10 | "Email Address": "Imejl adresa", 11 | "Forgot Password": "Zaboravili ste vašu lozinku?", 12 | "Forgot your password?": "Zaboravili ste lozinku?", 13 | "Log In": "Prijava", 14 | "Logout": "Odjava", 15 | "Password": "Lozinka", 16 | "Remember me": "Zapamti me", 17 | "Resources": "Resursi", 18 | "Send Password Reset Link": "Pošalji link za resetovanje lozinke", 19 | "Welcome Back!": "Dobrodošli nazad!", 20 | "Delete Resource": "Obriši resurs", 21 | "Delete": "Obriši", 22 | "Detach Resource": "Otkači resurs", 23 | "Detach": "Otkači", 24 | "Detach Selected": "Otkači izabrano", 25 | "Delete Selected": "Obriši izabrano", 26 | "Force Delete Selected": "Obrišite izabrano na silu", 27 | "Restore Selected": "Oporavi izabrano", 28 | "Restore Resource": "Oporavi resurs", 29 | "Restore": "Oporavi", 30 | "Force Delete Resource": "Obriši resurs na silu", 31 | "Force Delete": "Obriši na silu", 32 | "Are you sure you want to delete this resource?": "Da li ste sigurni da želite da obrišete ovaj resurs?", 33 | "Are you sure you want to delete the selected resources?": "Da li ste sigurni da želite da obrišete izabrane resurse?", 34 | "Are you sure you want to detach this resource?": "Da li ste sigurni da želite da otkačite ovaj resurs?", 35 | "Are you sure you want to detach the selected resources?": "Da li ste sigurni da želite da otkačite izabrane resurse?", 36 | "Are you sure you want to force delete this resource?": "Da li ste sigurni da želite da obrišete ovaj resurs sa silu?", 37 | "Are you sure you want to force delete the selected resources?": "Da li ste sigutni da želite da obrišete izabrane resurse na silu?", 38 | "Are you sure you want to restore this resource?": "Da li ste sigurni da želite da oporavite ovaj resurs?", 39 | "Are you sure you want to restore the selected resources?": "Da li ste sigurni da želite da oporavite izabrane resurse?", 40 | "No :resource matched the given criteria.": "Ni jedan :resource se ne poklapa sa datim kriterijumima.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Drugi korisnik je ažurirao ovaj resurs otkad je ova strana učitana. Molimo vas da osvežite stranicu i pokušate ponovo.", 42 | "Are you sure you want to delete this file?": "Da li ste sigurni da želite da obrišete ovu datoteku?", 43 | "Are you sure you want to run this action?": "Da li ste sigurni da želite da pokrenete ovaj postupak?", 44 | "Attach": "Prikači", 45 | "Attach & Attach Another": "Prikači i prikači još jedan", 46 | "Cancel": "Obustavi", 47 | "Choose": "Izaberi", 48 | "Choose File": "Izaberi datoteku", 49 | "Choose Type": "Izaberi tip", 50 | "Choose an option": "Izaberi neku opciju", 51 | "Click to choose": "Klikni da izabereš", 52 | "Create": "Napravi", 53 | "Create & Add Another": "Napravi i napravi još jedan", 54 | "Delete File": "Obriši datoteku", 55 | "Edit": "Izmeni", 56 | "Edit Attached": "Izmeni prikačeno", 57 | "Go Home": "Nazad na Početnu", 58 | "Hold Up!": "Molimo sačekajte!", 59 | "Lens": "Objektiv", 60 | "New": "Novo", 61 | "Next": "Dalje", 62 | "Only Trashed": "Samo obrisano", 63 | "Per Page": "Po strani", 64 | "Preview": "Pregled", 65 | "Previous": "Prošli", 66 | "Run Action": "Pokreni postupak", 67 | "Select Action": "Izabrani postupak", 68 | "Select all": "Izaberi sve", 69 | "Something went wrong.": "Nešto nije kako treba.", 70 | "The action was executed successfully.": "Postupak je uspešno pokrenut!", 71 | "The government won't let us show you what's behind these doors": "Vlada nam ne dozvoljava da Vam prikažemo šta je iza ovih vrata", 72 | "Update": "Ažuriraj", 73 | "Update & Continue Editing": "Ažuriraj i nastavi sa izmenama", 74 | "View": "Vidi", 75 | "We're lost in space. The page you were trying to view does not exist.": "Izgubljeni smo u svemiru. Strana koju pokušavate da vidite ne postoji.", 76 | "Whoops": "Ups", 77 | "Whoops!": "Ups!", 78 | "With Trashed": "Sa obrisanim", 79 | "Write": "Piši", 80 | "total": "ukupno", 81 | "January": "Januar", 82 | "February": "Februar", 83 | "March": "Mart", 84 | "April": "April", 85 | "May": "Maj", 86 | "June": "Jun", 87 | "July": "Jul", 88 | "August": "Avgust", 89 | "September": "Septembar", 90 | "October": "Oktobar", 91 | "November": "Novembar", 92 | "December": "Decembar", 93 | "Afghanistan": "Avganistan", 94 | "Aland Islands": "Olandska Ostrva", 95 | "Albania": "Albanija", 96 | "Algeria": "Alžir", 97 | "American Samoa": "Američka Samoa", 98 | "Andorra": "Andora", 99 | "Angola": "Angola", 100 | "Anguilla": "Angvila", 101 | "Antarctica": "Antarktik", 102 | "Antigua And Barbuda": "Antigva i Barbuda", 103 | "Argentina": "Argentina", 104 | "Armenia": "Jermenija", 105 | "Aruba": "Aruba", 106 | "Australia": "Australija", 107 | "Austria": "Austrija", 108 | "Azerbaijan": "Azerbejdžan", 109 | "Bahamas": "Bahami", 110 | "Bahrain": "Bahrein", 111 | "Bangladesh": "Bangladeš", 112 | "Barbados": "Barbados", 113 | "Belarus": "Belorusija", 114 | "Belgium": "Belgija", 115 | "Belize": "Belize", 116 | "Benin": "Benin", 117 | "Bermuda": "Bermuda", 118 | "Bhutan": "Butan", 119 | "Bolivia": "Bolivija", 120 | "Bonaire, Sint Eustatius and Saba": "Karipska Holandija", 121 | "Bosnia And Herzegovina": "Bosna i Hercegovina", 122 | "Botswana": "Bocvana", 123 | "Bouvet Island": "Ostrvo Buve", 124 | "Brazil": "Brazil", 125 | "British Indian Ocean Territory": "Britanska teritorija Indijskog okeana", 126 | "Brunei Darussalam": "Brunej", 127 | "Bulgaria": "Bugarska", 128 | "Burkina Faso": "Burkina Faso", 129 | "Burundi": "Burundi", 130 | "Cambodia": "Kambodža", 131 | "Cameroon": "Kamerun", 132 | "Canada": "Kanada", 133 | "Cape Verde": "Zelenortska Ostrva", 134 | "Cayman Islands": "Kajmanska Ostrva", 135 | "Central African Republic": "Centralnoafrička Republika", 136 | "Chad": "Čad", 137 | "Chile": "Čile", 138 | "China": "Kina", 139 | "Christmas Island": "Božićno Ostrvo", 140 | "Cocos (Keeling) Islands": "Kokosova (Kilingova) Ostrva", 141 | "Colombia": "Kolumbija", 142 | "Comoros": "Komorska Ostrva", 143 | "Congo": "Kongo - Brazavil", 144 | "Congo, Democratic Republic": "Kongo - Kinšasa", 145 | "Cook Islands": "Kukova Ostrva", 146 | "Costa Rica": "Kostarika", 147 | "Cote D'Ivoire": "Obala Slonovače (Kot d’Ivoar)", 148 | "Croatia": "Hrvatska", 149 | "Cuba": "Kuba", 150 | "Curaçao": "Kurasao", 151 | "Cyprus": "Kipar", 152 | "Czech Republic": "Češka", 153 | "Denmark": "Danska", 154 | "Djibouti": "Džibuti", 155 | "Dominica": "Dominika", 156 | "Dominican Republic": "Dominikanska Republika", 157 | "Ecuador": "Ekvador", 158 | "Egypt": "Egipat", 159 | "El Salvador": "Salvador", 160 | "Equatorial Guinea": "Ekvatorijalna Gvineja", 161 | "Eritrea": "Eritreja", 162 | "Estonia": "Estonija", 163 | "Ethiopia": "Etiopija", 164 | "Falkland Islands (Malvinas)": "Foklandska Ostrva", 165 | "Faroe Islands": "Farska Ostrva", 166 | "Fiji": "Fidži", 167 | "Finland": "Finska", 168 | "France": "Francuska", 169 | "French Guiana": "Francuska Gvajana", 170 | "French Polynesia": "Francuska Polinezija", 171 | "French Southern Territories": "Francuske Južne Teritorije", 172 | "Gabon": "Gabon", 173 | "Gambia": "Gambija", 174 | "Georgia": "Gruzija", 175 | "Germany": "Nemačka", 176 | "Ghana": "Gana", 177 | "Gibraltar": "Gibraltar", 178 | "Greece": "Grčka", 179 | "Greenland": "Grenland", 180 | "Grenada": "Grenada", 181 | "Guadeloupe": "Gvadelup", 182 | "Guam": "Guam", 183 | "Guatemala": "Gvatemala", 184 | "Guernsey": "Gernzi", 185 | "Guinea": "Gvineja", 186 | "Guinea-Bissau": "Gvineja-Bisao", 187 | "Guyana": "Gvajana", 188 | "Haiti": "Haiti", 189 | "Heard Island & Mcdonald Islands": "Ostrvo Herd i Mekdonaldova ostrva", 190 | "Holy See (Vatican City State)": "Vatikan", 191 | "Honduras": "Honduras", 192 | "Hong Kong": "Hongkong", 193 | "Hungary": "Mađarska", 194 | "Iceland": "Island", 195 | "India": "Indija", 196 | "Indonesia": "Indonezija", 197 | "Iran, Islamic Republic Of": "Iran", 198 | "Iraq": "Irak", 199 | "Ireland": "Irska", 200 | "Isle Of Man": "Ostrvo Man", 201 | "Israel": "Izrael", 202 | "Italy": "Italija", 203 | "Jamaica": "Jamajka", 204 | "Japan": "Japan", 205 | "Jersey": "Džerzi", 206 | "Jordan": "Jordan", 207 | "Kazakhstan": "Kazahstan", 208 | "Kenya": "Kenija", 209 | "Kiribati": "Kiribati", 210 | "Korea, Democratic People's Republic of": "Severna Koreja", 211 | "Korea": "Južna Koreja", 212 | "Kosovo": "Kosovo", 213 | "Kuwait": "Kuvajt", 214 | "Kyrgyzstan": "Kirgistan", 215 | "Lao People's Democratic Republic": "Laos", 216 | "Latvia": "Letonija", 217 | "Lebanon": "Liban", 218 | "Lesotho": "Lesoto", 219 | "Liberia": "Liberija", 220 | "Libyan Arab Jamahiriya": "Libija", 221 | "Liechtenstein": "Lihtenštajn", 222 | "Lithuania": "Litvanija", 223 | "Luxembourg": "Luksemburg", 224 | "Macao": "Makao", 225 | "Macedonia": "Severna Makedonija", 226 | "Madagascar": "Madagaskar", 227 | "Malawi": "Malavi", 228 | "Malaysia": "Malezija", 229 | "Maldives": "Maldivi", 230 | "Mali": "Mali", 231 | "Malta": "Malta", 232 | "Marshall Islands": "Maršalska Ostrva", 233 | "Martinique": "Martinik", 234 | "Mauritania": "Mauritanija", 235 | "Mauritius": "Mauricijus", 236 | "Mayotte": "Majot", 237 | "Mexico": "Meksiko", 238 | "Micronesia, Federated States Of": "Mikronezija", 239 | "Moldova": "Moldavija", 240 | "Monaco": "Monako", 241 | "Mongolia": "Mongolija", 242 | "Montenegro": "Crna Gora", 243 | "Montserrat": "Monserat", 244 | "Morocco": "Maroko", 245 | "Mozambique": "Mozambik", 246 | "Myanmar": "Mijanmar (Burma)", 247 | "Namibia": "Namibija", 248 | "Nauru": "Nauru", 249 | "Nepal": "Nepal", 250 | "Netherlands": "Holandija", 251 | "New Caledonia": "Nova Kaledonija", 252 | "New Zealand": "Novi Zeland", 253 | "Nicaragua": "Nikaragva", 254 | "Niger": "Niger", 255 | "Nigeria": "Nigerija", 256 | "Niue": "Niue", 257 | "Norfolk Island": "Ostrvo Norfok", 258 | "Northern Mariana Islands": "Severna Marijanska Ostrva", 259 | "Norway": "Norveška", 260 | "Oman": "Oman", 261 | "Pakistan": "Pakistan", 262 | "Palau": "Palau", 263 | "Palestinian Territory, Occupied": "Palestinske teritorije", 264 | "Panama": "Panama", 265 | "Papua New Guinea": "Papua Nova Gvineja", 266 | "Paraguay": "Paragvaj", 267 | "Peru": "Peru", 268 | "Philippines": "Filipini", 269 | "Pitcairn": "Pitkern", 270 | "Poland": "Poljska", 271 | "Portugal": "Portugalija", 272 | "Puerto Rico": "Portoriko", 273 | "Qatar": "Katar", 274 | "Reunion": "Reinion", 275 | "Romania": "Rumunija", 276 | "Russian Federation": "Rusija", 277 | "Rwanda": "Ruanda", 278 | "Saint Barthelemy": "Sveti Bartolomej", 279 | "Saint Helena": "Sveta Jelena", 280 | "Saint Kitts And Nevis": "Sent Kits i Nevis", 281 | "Saint Lucia": "Sveta Lucija", 282 | "Saint Martin": "Sveti Martin (Francuska)", 283 | "Saint Pierre And Miquelon": "Sen Pjer i Mikelon", 284 | "Saint Vincent And Grenadines": "Sent Vinsent i Grenadini", 285 | "Samoa": "Samoa", 286 | "San Marino": "San Marino", 287 | "Sao Tome And Principe": "Sao Tome i Principe", 288 | "Saudi Arabia": "Saudijska Arabija", 289 | "Senegal": "Senegal", 290 | "Serbia": "Srbija", 291 | "Seychelles": "Sejšeli", 292 | "Sierra Leone": "Sijera Leone", 293 | "Singapore": "Singapur", 294 | "Sint Maarten (Dutch part)": "Sveti Martin (Holandija)", 295 | "Slovakia": "Slovačka", 296 | "Slovenia": "Slovenija", 297 | "Solomon Islands": "Solomonska Ostrva", 298 | "Somalia": "Somalija", 299 | "South Africa": "Južnoafrička Republika", 300 | "South Georgia And Sandwich Isl.": "Južna Džordžija i Južna Sendvička Ostrva", 301 | "South Sudan": "Južni Sudan", 302 | "Spain": "Španija", 303 | "Sri Lanka": "Šri Lanka", 304 | "Sudan": "Sudan", 305 | "Suriname": "Surinam", 306 | "Svalbard And Jan Mayen": "Svalbard i Jan Majen", 307 | "Swaziland": "Svazilend", 308 | "Sweden": "Švedska", 309 | "Switzerland": "Švajcarska", 310 | "Syrian Arab Republic": "Sirija", 311 | "Taiwan": "Tajvan", 312 | "Tajikistan": "Tadžikistan", 313 | "Tanzania": "Tanzanija", 314 | "Thailand": "Tajland", 315 | "Timor-Leste": "Timor-Leste (Istočni Timor)", 316 | "Togo": "Togo", 317 | "Tokelau": "Tokelau", 318 | "Tonga": "Tonga", 319 | "Trinidad And Tobago": "Trinidad i Tobago", 320 | "Tunisia": "Tunis", 321 | "Turkey": "Turska", 322 | "Turkmenistan": "Turkmenistan", 323 | "Turks And Caicos Islands": "Ostrva Turks i Kaikos", 324 | "Tuvalu": "Tuvalu", 325 | "Uganda": "Uganda", 326 | "Ukraine": "Ukrajina", 327 | "United Arab Emirates": "Ujedinjeni Arapski Emirati", 328 | "United Kingdom": "Ujedinjeno Kraljevstvo", 329 | "United States": "Sjedinjene Države", 330 | "United States Outlying Islands": "Udaljena ostrva SAD", 331 | "Uruguay": "Urugvaj", 332 | "Uzbekistan": "Uzbekistan", 333 | "Vanuatu": "Vanuatu", 334 | "Venezuela": "Venecuela", 335 | "Viet Nam": "Vijetnam", 336 | "Virgin Islands, British": "Britanska Devičanska Ostrva", 337 | "Virgin Islands, U.S.": "Američka Devičanska Ostrva", 338 | "Wallis And Futuna": "Valis i Futuna", 339 | "Western Sahara": "Zapadna Sahara", 340 | "Yemen": "Jemen", 341 | "Zambia": "Zambija", 342 | "Zimbabwe": "Zimbabve", 343 | "Yes": "Da", 344 | "No": "Ne", 345 | "Action Status": "Status", 346 | "The :resource was created!": "Ovaj :resource je napravljen!", 347 | "Download": "Preuzimanje" 348 | } 349 | -------------------------------------------------------------------------------- /resources/lang/lt.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "Veiksmai", 3 | "Details": "Plačiau", 4 | "If you did not request a password reset, no further action is required.": "Jei nenorėjote keisti slaptažodžio, nieko daryti nereikia.", 5 | "Reset Password": "Keisti slaptažodį", 6 | "Sorry! You are not authorized to perform this action.": "Atsiprašome! Jūs neturite teisių atlikti šį veiksmą.", 7 | "You are receiving this email because we received a password reset request for your account.": "Jūs gavote šį laišką nes mes gavome prašymą atstatyti Jūsų paskyros slaptažodį.", 8 | "Confirm Password": "Patvirtinti slaptažodį", 9 | "Dashboard": "Valdymo skydas", 10 | "Email Address": "El. pašto adresas", 11 | "Forgot Password": "Pamiršote slaptažodį?", 12 | "Forgot your password?": "Pamiršote slaptažodį?", 13 | "Log In": "Prisijungti", 14 | "Logout": "Atsijungti", 15 | "Password": "Slaptažodis", 16 | "Remember me": "Prisiminti mane", 17 | "Resources": "Resursai", 18 | "Send Password Reset Link": "Siųsti slaptažodžio atstatymo nuorodą", 19 | "Welcome Back!": "Sveiki sugrįžę!", 20 | "Delete Resource": "Ištrinti resursą", 21 | "Delete": "Ištrinti", 22 | "Detach Resource": "Atskirti resursą", 23 | "Detach": "Atskirti", 24 | "Detach Selected": "Atskirti pasirinktą", 25 | "Delete Selected": "Ištrinti pasirinktą", 26 | "Force Delete Selected": "Priverstinai ištrinti pasirinktą", 27 | "Restore Selected": "Atkurti pasirinktą", 28 | "Restore Resource": "Atkurti resursą", 29 | "Restore": "Atkurti", 30 | "Force Delete Resource": "Priverstinai ištrinti resursą", 31 | "Force Delete": "Priverstinai ištrinti", 32 | "Are you sure you want to delete this resource?": "Ar tikrai norite ištrinti resursą?", 33 | "Are you sure you want to delete the selected resources?": "Ar tikrai norite ištrinti pasirinktus resursus?", 34 | "Are you sure you want to detach this resource?": "Ar tikrai norite atskirti resursą?", 35 | "Are you sure you want to detach the selected resources?": "Ar tikrai norite atskirti pasirinktus resursus?", 36 | "Are you sure you want to force delete this resource?": "Ar tikrai norite priverstinai ištrinti resursą?", 37 | "Are you sure you want to force delete the selected resources?": "Ar tikrai norite priverstinai ištrinti pasirinktus resursus?", 38 | "Are you sure you want to restore this resource?": "Ar tikrai norite atkurti resursą?", 39 | "Are you sure you want to restore the selected resources?": "Ar tikrai norite atkurti pasirinktus resursus?", 40 | "No :resource matched the given criteria.": "Nei vienas :resource neatitiko kriterijų.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Resursas buvo atnaujintas po puslapio perkrovimo. Perkraukite puslapį ir bandykite dar kartą.", 42 | "Are you sure you want to delete this file?": "Ar tikrai norite ištrinti failą?", 43 | "Are you sure you want to run this action?": "Ar tikrai norite vykdyti šį veiksmą?", 44 | "Attach": "Prisegti", 45 | "Attach & Attach Another": "Prisegti ir prisegti kitą", 46 | "Cancel": "Atšaukti", 47 | "Choose": "Pasirinkti", 48 | "Choose File": "Pasirinkti failą", 49 | "Choose Type": "Pasirinkti tipą", 50 | "Choose an option": "Pasirinkite", 51 | "Click to choose": "Pasirinkite", 52 | "Create": "Sukurti", 53 | "Create & Add Another": "Sukurti ir pridėti kitą", 54 | "Delete File": "Ištrinti failą", 55 | "Edit": "Redaguoti", 56 | "Edit Attached": "Redaguoti prisegtą", 57 | "Go Home": "Eiti į pradžią", 58 | "Hold Up!": "Palaukite!", 59 | "Lens": "Lęšis", 60 | "New": "Naujas", 61 | "Next": "Kitas", 62 | "Only Trashed": "Tik ištrinti", 63 | "Per Page": "Puslapyje", 64 | "Preview": "Peržiūra", 65 | "Previous": "Ankstesnis", 66 | "Run Action": "Vykdyti veiksmą", 67 | "Select Action": "Pasirinkti veiksmą", 68 | "Select all": "Pasirinkti visus", 69 | "Something went wrong.": "Įvyko klaida.", 70 | "The action was executed successfully.": "Įvykdyta sėkmingai!", 71 | "The government won't let us show you what's behind these doors": "Valdžia neleidžia atskleisti Jums kas už šių durų.", 72 | "Update": "Atnaujinti", 73 | "Update & Continue Editing": "Atnaujinti ir tęsti redagavimą", 74 | "View": "Peržiūrėti", 75 | "We're lost in space. The page you were trying to view does not exist.": "Pasiklydome kosmose. Puslapis neegzistuoja.", 76 | "Whoops": "Ups", 77 | "Whoops!": "Ups!", 78 | "With Trashed": "Su ištrintais", 79 | "Write": "Rašyti", 80 | "total": "viso", 81 | "January": "Sausis", 82 | "February": "Vasaris", 83 | "March": "Kovas", 84 | "April": "Balandis", 85 | "May": "Gegužė", 86 | "June": "Birželis", 87 | "July": "Liepa", 88 | "August": "Rugpjūtis", 89 | "September": "Rugsėjis", 90 | "October": "Spalis", 91 | "November": "Lapkritis", 92 | "December": "Gruodis", 93 | "Afghanistan": "Afganistanas", 94 | "Aland Islands": "Alandų Salos", 95 | "Albania": "Albanija", 96 | "Algeria": "Alžyras", 97 | "American Samoa": "Amerikos Samoa", 98 | "Andorra": "Andora", 99 | "Angola": "Angola", 100 | "Anguilla": "Angilija", 101 | "Antarctica": "Antarktida", 102 | "Antigua And Barbuda": "Antigva ir Barbuda", 103 | "Argentina": "Argentina", 104 | "Armenia": "Armėnija", 105 | "Aruba": "Aruba", 106 | "Australia": "Australija", 107 | "Austria": "Austrija", 108 | "Azerbaijan": "Azerbaidžanas", 109 | "Bahamas": "Bahamos", 110 | "Bahrain": "Bahreinas", 111 | "Bangladesh": "Bangladešas", 112 | "Barbados": "Barbadosas", 113 | "Belarus": "Baltarusija", 114 | "Belgium": "Belgija", 115 | "Belize": "Belizas", 116 | "Benin": "Beninas", 117 | "Bermuda": "Bermuda", 118 | "Bhutan": "Butanas", 119 | "Bolivia": "Bolivija", 120 | "Bonaire, Sint Eustatius and Saba": "Karibų Nyderlandai", 121 | "Bosnia And Herzegovina": "Bosnija ir Hercegovina", 122 | "Botswana": "Botsvana", 123 | "Bouvet Island": "Buvė Sala", 124 | "Brazil": "Brazilija", 125 | "British Indian Ocean Territory": "Indijos Vandenyno Britų Sritis", 126 | "Brunei Darussalam": "Brunėjus", 127 | "Bulgaria": "Bulgarija", 128 | "Burkina Faso": "Burkina Fasas", 129 | "Burundi": "Burundis", 130 | "Cambodia": "Kambodža", 131 | "Cameroon": "Kamerūnas", 132 | "Canada": "Kanada", 133 | "Cape Verde": "Žaliasis Kyšulys", 134 | "Cayman Islands": "Kaimanų Salos", 135 | "Central African Republic": "Centrinės Afrikos Respublika", 136 | "Chad": "Čadas", 137 | "Chile": "Čilė", 138 | "China": "Kinija", 139 | "Christmas Island": "Kalėdų Sala", 140 | "Cocos (Keeling) Islands": "Kokosų (Kilingo) Salos", 141 | "Colombia": "Kolumbija", 142 | "Comoros": "Komorai", 143 | "Congo": "Kongas-Brazavilis", 144 | "Congo, Democratic Republic": "Kongas-Kinšasa", 145 | "Cook Islands": "Kuko Salos", 146 | "Costa Rica": "Kosta Rika", 147 | "Cote D'Ivoire": "Dramblio Kaulo Krantas", 148 | "Croatia": "Kroatija", 149 | "Cuba": "Kuba", 150 | "Curaçao": "Kiurasao", 151 | "Cyprus": "Kipras", 152 | "Czech Republic": "Čekija", 153 | "Denmark": "Danija", 154 | "Djibouti": "Džibutis", 155 | "Dominica": "Dominika", 156 | "Dominican Republic": "Dominikos Respublika", 157 | "Ecuador": "Ekvadoras", 158 | "Egypt": "Egiptas", 159 | "El Salvador": "Salvadoras", 160 | "Equatorial Guinea": "Pusiaujo Gvinėja", 161 | "Eritrea": "Eritrėja", 162 | "Estonia": "Estija", 163 | "Ethiopia": "Etiopija", 164 | "Falkland Islands (Malvinas)": "Folklando Salos", 165 | "Faroe Islands": "Farerų Salos", 166 | "Fiji": "Fidžis", 167 | "Finland": "Suomija", 168 | "France": "Prancūzija", 169 | "French Guiana": "Prancūzijos Gviana", 170 | "French Polynesia": "Prancūzijos Polinezija", 171 | "French Southern Territories": "Prancūzijos Pietų sritys", 172 | "Gabon": "Gabonas", 173 | "Gambia": "Gambija", 174 | "Georgia": "Gruzija", 175 | "Germany": "Vokietija", 176 | "Ghana": "Gana", 177 | "Gibraltar": "Gibraltaras", 178 | "Greece": "Graikija", 179 | "Greenland": "Grenlandija", 180 | "Grenada": "Grenada", 181 | "Guadeloupe": "Gvadelupa", 182 | "Guam": "Guamas", 183 | "Guatemala": "Gvatemala", 184 | "Guernsey": "Gernsis", 185 | "Guinea": "Gvinėja", 186 | "Guinea-Bissau": "Bisau Gvinėja", 187 | "Guyana": "Gajana", 188 | "Haiti": "Haitis", 189 | "Heard Island & Mcdonald Islands": "Herdo ir Makdonaldo Salos", 190 | "Holy See (Vatican City State)": "Vatikano Miesto Valstybė", 191 | "Honduras": "Hondūras", 192 | "Hong Kong": "Ypatingasis Administracinis Kinijos Regionas Honkongas", 193 | "Hungary": "Vengrija", 194 | "Iceland": "Islandija", 195 | "India": "Indija", 196 | "Indonesia": "Indonezija", 197 | "Iran, Islamic Republic Of": "Iranas", 198 | "Iraq": "Irakas", 199 | "Ireland": "Airija", 200 | "Isle Of Man": "Meno Sala", 201 | "Israel": "Izraelis", 202 | "Italy": "Italija", 203 | "Jamaica": "Jamaika", 204 | "Japan": "Japonija", 205 | "Jersey": "Džersis", 206 | "Jordan": "Jordanija", 207 | "Kazakhstan": "Kazachstanas", 208 | "Kenya": "Kenija", 209 | "Kiribati": "Kiribatis", 210 | "Korea, Democratic People's Republic of": "Šiaurės Korėja", 211 | "Korea": "Pietų Korėja", 212 | "Kosovo": "Kosovas", 213 | "Kuwait": "Kuveitas", 214 | "Kyrgyzstan": "Kirgizija", 215 | "Lao People's Democratic Republic": "Laosas", 216 | "Latvia": "Latvija", 217 | "Lebanon": "Libanas", 218 | "Lesotho": "Lesotas", 219 | "Liberia": "Liberija", 220 | "Libyan Arab Jamahiriya": "Libija", 221 | "Liechtenstein": "Lichtenšteinas", 222 | "Lithuania": "Lietuva", 223 | "Luxembourg": "Liuksemburgas", 224 | "Macao": "Ypatingasis Administracinis Kinijos Regionas Makao", 225 | "Macedonia": "Šiaurės Makedonija", 226 | "Madagascar": "Madagaskaras", 227 | "Malawi": "Malavis", 228 | "Malaysia": "Malaizija", 229 | "Maldives": "Maldyvai", 230 | "Mali": "Malis", 231 | "Malta": "Malta", 232 | "Marshall Islands": "Maršalo Salos", 233 | "Martinique": "Martinika", 234 | "Mauritania": "Mauritanija", 235 | "Mauritius": "Mauricijus", 236 | "Mayotte": "Majotas", 237 | "Mexico": "Meksika", 238 | "Micronesia, Federated States Of": "Mikronezija", 239 | "Moldova": "Moldova", 240 | "Monaco": "Monakas", 241 | "Mongolia": "Mongolija", 242 | "Montenegro": "Juodkalnija", 243 | "Montserrat": "Montseratas", 244 | "Morocco": "Marokas", 245 | "Mozambique": "Mozambikas", 246 | "Myanmar": "Mianmaras (Birma)", 247 | "Namibia": "Namibija", 248 | "Nauru": "Nauru", 249 | "Nepal": "Nepalas", 250 | "Netherlands": "Nyderlandai", 251 | "New Caledonia": "Naujoji Kaledonija", 252 | "New Zealand": "Naujoji Zelandija", 253 | "Nicaragua": "Nikaragva", 254 | "Niger": "Nigeris", 255 | "Nigeria": "Nigerija", 256 | "Niue": "Niujė", 257 | "Norfolk Island": "Norfolko sala", 258 | "Northern Mariana Islands": "Marianos Šiaurinės Salos", 259 | "Norway": "Norvegija", 260 | "Oman": "Omanas", 261 | "Pakistan": "Pakistanas", 262 | "Palau": "Palau", 263 | "Palestinian Territory, Occupied": "Palestinos teritorija", 264 | "Panama": "Panama", 265 | "Papua New Guinea": "Papua Naujoji Gvinėja", 266 | "Paraguay": "Paragvajus", 267 | "Peru": "Peru", 268 | "Philippines": "Filipinai", 269 | "Pitcairn": "Pitkerno salos", 270 | "Poland": "Lenkija", 271 | "Portugal": "Portugalija", 272 | "Puerto Rico": "Puerto Rikas", 273 | "Qatar": "Kataras", 274 | "Reunion": "Reunjonas", 275 | "Romania": "Rumunija", 276 | "Russian Federation": "Rusija", 277 | "Rwanda": "Ruanda", 278 | "Saint Barthelemy": "Sen Bartelemi", 279 | "Saint Helena": "Šv. Elenos Sala", 280 | "Saint Kitts And Nevis": "Sent Kitsas ir Nevis", 281 | "Saint Lucia": "Sent Lusija", 282 | "Saint Martin": "Sen Martenas", 283 | "Saint Pierre And Miquelon": "Sen Pjeras ir Mikelonas", 284 | "Saint Vincent And Grenadines": "Šventasis Vincentas ir Grenadinai", 285 | "Samoa": "Samoa", 286 | "San Marino": "San Marinas", 287 | "Sao Tome And Principe": "San Tomė ir Prinsipė", 288 | "Saudi Arabia": "Saudo Arabija", 289 | "Senegal": "Senegalas", 290 | "Serbia": "Serbija", 291 | "Seychelles": "Seišeliai", 292 | "Sierra Leone": "Siera Leonė", 293 | "Singapore": "Singapūras", 294 | "Sint Maarten (Dutch part)": "Sint Martenas", 295 | "Slovakia": "Slovakija", 296 | "Slovenia": "Slovėnija", 297 | "Solomon Islands": "Saliamono Salos", 298 | "Somalia": "Somalis", 299 | "South Africa": "Pietų Afrika", 300 | "South Georgia And Sandwich Isl.": "Pietų Džordžija ir Pietų Sandvičo salos", 301 | "South Sudan": "Pietų Sudanas", 302 | "Spain": "Ispanija", 303 | "Sri Lanka": "Šri Lanka", 304 | "Sudan": "Sudanas", 305 | "Suriname": "Surinamas", 306 | "Svalbard And Jan Mayen": "Svalbardas ir Janas Majenas", 307 | "Swaziland": "Svazilandas", 308 | "Sweden": "Švedija", 309 | "Switzerland": "Šveicarija", 310 | "Syrian Arab Republic": "Sirija", 311 | "Taiwan": "Taivanas", 312 | "Tajikistan": "Tadžikija", 313 | "Tanzania": "Tanzanija", 314 | "Thailand": "Tailandas", 315 | "Timor-Leste": "Rytų Timoras", 316 | "Togo": "Togas", 317 | "Tokelau": "Tokelau", 318 | "Tonga": "Tonga", 319 | "Trinidad And Tobago": "Trinidadas ir Tobagas", 320 | "Tunisia": "Tunisas", 321 | "Turkey": "Turkija", 322 | "Turkmenistan": "Turkmėnistanas", 323 | "Turks And Caicos Islands": "Terkso ir Kaikoso Salos", 324 | "Tuvalu": "Tuvalu", 325 | "Uganda": "Uganda", 326 | "Ukraine": "Ukraina", 327 | "United Arab Emirates": "Jungtiniai Arabų Emyratai", 328 | "United Kingdom": "Jungtinė Karalystė", 329 | "United States": "Jungtinės Valstijos", 330 | "United States Outlying Islands": "Jungtinių Valstijų Mažosios Tolimosios Salos", 331 | "Uruguay": "Urugvajus", 332 | "Uzbekistan": "Uzbekistanas", 333 | "Vanuatu": "Vanuatu", 334 | "Venezuela": "Venesuela", 335 | "Viet Nam": "Vietnamas", 336 | "Virgin Islands, British": "Didžiosios Britanijos Mergelių Salos", 337 | "Virgin Islands, U.S.": "Jungtinių Valstijų Mergelių Salos", 338 | "Wallis And Futuna": "Volisas ir Futūna", 339 | "Western Sahara": "Vakarų Sachara", 340 | "Yemen": "Jemenas", 341 | "Zambia": "Zambija", 342 | "Zimbabwe": "Zimbabvė", 343 | "Yes": "Taip", 344 | "No": "Ne", 345 | "Action Status": "Būsena", 346 | "The :resource was created!": "Resursas :resource sukurtas!" 347 | } 348 | -------------------------------------------------------------------------------- /resources/lang/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "Actions": "アクション", 3 | "Details": "詳細", 4 | "If you did not request a password reset, no further action is required.": "もしパスワードのリセットをリクエストしていないなら, これ以上のアクションは必要ありません.", 5 | "Reset Password": "パスワードをリセット", 6 | "Sorry! You are not authorized to perform this action.": "申し訳ありません! このアクションを実行する権限がありません.", 7 | "You are receiving this email because we received a password reset request for your account.": "あなたのアカウントでのパスワードリセットのリクエストがありましたのでこのメールを送っています.", 8 | "Confirm Password": "パスワード確認", 9 | "Dashboard": "ダッシュボード", 10 | "Email Address": "eメールアドレス", 11 | "Forgot Password": "パスワードをお忘れですか?", 12 | "Forgot your password?": "パスワードをお忘れですか?", 13 | "Log In": "ログイン", 14 | "Logout": "ログアウト", 15 | "Password": "パスワード", 16 | "Remember me": "私を覚えておく", 17 | "Resources": "リソース", 18 | "Send Password Reset Link": "パスワードリセットのリンクを送る", 19 | "Welcome Back!": "おかえりなさい!", 20 | "Delete Resource": "リソースの削除", 21 | "Delete": "削除", 22 | "Detach Resource": "リソースの切り離し", 23 | "Detach": "切り離し", 24 | "Detach Selected": "選択済みの切り離し", 25 | "Delete Selected": "選択済みの削除", 26 | "Force Delete Selected": "選択済みの強制削除", 27 | "Restore Selected": "選択済みの復元", 28 | "Restore Resource": "リソースの復元", 29 | "Restore": "復元", 30 | "Force Delete Resource": "リソースの強制削除", 31 | "Force Delete": "強制削除", 32 | "Are you sure you want to delete this resource?": "本当にこのリソースを削除しますか?", 33 | "Are you sure you want to delete the selected resources?": "本当にこの選択済みのリソースを削除しますか?", 34 | "Are you sure you want to detach this resource?": "本当にこのリソースを切り離しますか?", 35 | "Are you sure you want to detach the selected resources?": "本当にこの選択済みのリソースを切り離しますか?", 36 | "Are you sure you want to force delete this resource?": "本当にこのリソースを強制削除しますか?", 37 | "Are you sure you want to force delete the selected resources?": "本当にこの選択済みのリソースを強制削除しますか?", 38 | "Are you sure you want to restore this resource?": "本当にこのリソースを復元しますか?", 39 | "Are you sure you want to restore the selected resources?": "本当にこの選択済みのリソースを復元しますか?", 40 | "No :resource matched the given criteria.": "いいえ :resource は与えられた基準にマッチします.", 41 | "Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "他のユーザーがこのリソースを更新したのでページがロードされます. ページをリフレッシュして再度お試しください.", 42 | "Are you sure you want to delete this file?": "本当にこのファイルを削除しますか?", 43 | "Are you sure you want to run this action?": "本当にこのアクションを実行しますか?", 44 | "Attach": "アタッチ", 45 | "Attach & Attach Another": "アタッチ & もう一つアタッチ", 46 | "Cancel": "キャンセル", 47 | "Choose": "選択", 48 | "Choose File": "ファイルを選択", 49 | "Choose Type": "タイプを選択", 50 | "Choose an option": "オプションを選択", 51 | "Click to choose": "クリックして選択", 52 | "Reset Filters": "フィルタをリセット", 53 | "Create": "作成", 54 | "Create & Add Another": "作成 & もう一つ追加", 55 | "Delete File": "ファイル削除", 56 | "Edit": "編集", 57 | "Edit Attached": "アタッチされたものを編集", 58 | "Go Home": "ホームへ", 59 | "Hold Up!": "ちょっと待った!", 60 | "Lens": "レンズ", 61 | "New": "新", 62 | "Next": "次", 63 | "Only Trashed": "ゴミのみ", 64 | "Per Page": "ページごと", 65 | "Preview": "プレビュー", 66 | "Previous": "前", 67 | "No Data": "データなし", 68 | "No Current Data": "現在のデータなし", 69 | "No Prior Data": "初期データなし", 70 | "No Increase": "増加なし", 71 | "No Results Found.": "結果が見つかりません.", 72 | "Run Action": "アクションを実行", 73 | "Select Action": "アクションを選択", 74 | "Search": "探す", 75 | "Press / to search": "押す / 探すために", 76 | "Select all": "全選択", 77 | "Something went wrong.": "何かが違います.", 78 | "The action was executed successfully.": "アクションの実行が成功しました!", 79 | "The government won't let us show you what's behind these doors": "行政はこのドアの後ろにあるものをあなたに見せることを許さないでしょう", 80 | "Update": "更新", 81 | "Update & Continue Editing": "更新 & 編集を続ける", 82 | "View": "閲覧", 83 | "We're lost in space. The page you were trying to view does not exist.": "我々は宇宙で迷子になりました. 閲覧しようとしていたページが存在しません.", 84 | "Show Content": "コンテンツを表示", 85 | "Hide Content": "コンテンツを隠す", 86 | "Whoops": "おっと", 87 | "Whoops!": "おっと!", 88 | "With Trashed": "ゴミと", 89 | "Trashed": "ゴミ", 90 | "Write": "書く", 91 | "total": "トータル", 92 | "January": "1月", 93 | "February": "2月", 94 | "March": "3月", 95 | "April": "4月", 96 | "May": "5月", 97 | "June": "6月", 98 | "July": "7月", 99 | "August": "8月", 100 | "September": "9月", 101 | "October": "10月", 102 | "November": "11月", 103 | "December": "12月", 104 | "Afghanistan": "アフガニスタン", 105 | "Aland Islands": "オーランド諸島", 106 | "Albania": "アルバニア", 107 | "Algeria": "アルジェリア", 108 | "American Samoa": "米領サモア", 109 | "Andorra": "アンドラ", 110 | "Angola": "アンゴラ", 111 | "Anguilla": "アンギラ", 112 | "Antarctica": "南極", 113 | "Antigua And Barbuda": "アンティグア・バーブーダ", 114 | "Argentina": "アルゼンチン", 115 | "Armenia": "アルメニア", 116 | "Aruba": "アルバ", 117 | "Australia": "オーストラリア", 118 | "Austria": "オーストリア", 119 | "Azerbaijan": "アゼルバイジャン", 120 | "Bahamas": "バハマ", 121 | "Bahrain": "バーレーン", 122 | "Bangladesh": "バングラデシュ", 123 | "Barbados": "バルバドス", 124 | "Belarus": "ベラルーシ", 125 | "Belgium": "ベルギー", 126 | "Belize": "ベリーズ", 127 | "Benin": "ベナン", 128 | "Bermuda": "バミューダ", 129 | "Bhutan": "ブータン", 130 | "Bolivia": "ボリビア", 131 | "Bonaire, Sint Eustatius and Saba": "オランダ領カリブ", 132 | "Bosnia And Herzegovina": "ボスニア・ヘルツェゴビナ", 133 | "Botswana": "ボツワナ", 134 | "Bouvet Island": "ブーベ島", 135 | "Brazil": "ブラジル", 136 | "British Indian Ocean Territory": "英領インド洋地域", 137 | "Brunei Darussalam": "ブルネイ", 138 | "Bulgaria": "ブルガリア", 139 | "Burkina Faso": "ブルキナファソ", 140 | "Burundi": "ブルンジ", 141 | "Cambodia": "カンボジア", 142 | "Cameroon": "カメルーン", 143 | "Canada": "カナダ", 144 | "Cape Verde": "カーボベルデ", 145 | "Cayman Islands": "ケイマン諸島", 146 | "Central African Republic": "中央アフリカ共和国", 147 | "Chad": "チャド", 148 | "Chile": "チリ", 149 | "China": "中国", 150 | "Christmas Island": "クリスマス島", 151 | "Cocos (Keeling) Islands": "ココス(キーリング)諸島", 152 | "Colombia": "コロンビア", 153 | "Comoros": "コモロ", 154 | "Congo": "コンゴ共和国(ブラザビル)", 155 | "Congo, Democratic Republic": "コンゴ民主共和国(キンシャサ)", 156 | "Cook Islands": "クック諸島", 157 | "Costa Rica": "コスタリカ", 158 | "Cote D'Ivoire": "コートジボワール", 159 | "Croatia": "クロアチア", 160 | "Cuba": "キューバ", 161 | "Curaçao": "キュラソー", 162 | "Cyprus": "キプロス", 163 | "Czech Republic": "チェコ", 164 | "Denmark": "デンマーク", 165 | "Djibouti": "ジブチ", 166 | "Dominica": "ドミニカ国", 167 | "Dominican Republic": "ドミニカ共和国", 168 | "Ecuador": "エクアドル", 169 | "Egypt": "エジプト", 170 | "El Salvador": "エルサルバドル", 171 | "Equatorial Guinea": "赤道ギニア", 172 | "Eritrea": "エリトリア", 173 | "Estonia": "エストニア", 174 | "Ethiopia": "エチオピア", 175 | "Falkland Islands (Malvinas)": "フォークランド諸島", 176 | "Faroe Islands": "フェロー諸島", 177 | "Fiji": "フィジー", 178 | "Finland": "フィンランド", 179 | "France": "フランス", 180 | "French Guiana": "仏領ギアナ", 181 | "French Polynesia": "仏領ポリネシア", 182 | "French Southern Territories": "仏領極南諸島", 183 | "Gabon": "ガボン", 184 | "Gambia": "ガンビア", 185 | "Georgia": "ジョージア", 186 | "Germany": "ドイツ", 187 | "Ghana": "ガーナ", 188 | "Gibraltar": "ジブラルタル", 189 | "Greece": "ギリシャ", 190 | "Greenland": "グリーンランド", 191 | "Grenada": "グレナダ", 192 | "Guadeloupe": "グアドループ", 193 | "Guam": "グアム", 194 | "Guatemala": "グアテマラ", 195 | "Guernsey": "ガーンジー", 196 | "Guinea": "ギニア", 197 | "Guinea-Bissau": "ギニアビサウ", 198 | "Guyana": "ガイアナ", 199 | "Haiti": "ハイチ", 200 | "Heard Island & Mcdonald Islands": "ハード島・マクドナルド諸島", 201 | "Holy See (Vatican City State)": "バチカン市国", 202 | "Honduras": "ホンジュラス", 203 | "Hong Kong": "中華人民共和国香港特別行政区", 204 | "Hungary": "ハンガリー", 205 | "Iceland": "アイスランド", 206 | "India": "インド", 207 | "Indonesia": "インドネシア", 208 | "Iran, Islamic Republic Of": "イラン", 209 | "Iraq": "イラク", 210 | "Ireland": "アイルランド", 211 | "Isle Of Man": "マン島", 212 | "Israel": "イスラエル", 213 | "Italy": "イタリア", 214 | "Jamaica": "ジャマイカ", 215 | "Japan": "日本", 216 | "Jersey": "ジャージー", 217 | "Jordan": "ヨルダン", 218 | "Kazakhstan": "カザフスタン", 219 | "Kenya": "ケニア", 220 | "Kiribati": "キリバス", 221 | "Korea, Democratic People's Republic of": "北朝鮮", 222 | "Korea": "韓国", 223 | "Kosovo": "コソボ", 224 | "Kuwait": "クウェート", 225 | "Kyrgyzstan": "キルギス", 226 | "Lao People's Democratic Republic": "ラオス", 227 | "Latvia": "ラトビア", 228 | "Lebanon": "レバノン", 229 | "Lesotho": "レソト", 230 | "Liberia": "リベリア", 231 | "Libyan Arab Jamahiriya": "リビア", 232 | "Liechtenstein": "リヒテンシュタイン", 233 | "Lithuania": "リトアニア", 234 | "Luxembourg": "ルクセンブルク", 235 | "Macao": "中華人民共和国マカオ特別行政区", 236 | "Macedonia": "北マケドニア", 237 | "Madagascar": "マダガスカル", 238 | "Malawi": "マラウイ", 239 | "Malaysia": "マレーシア", 240 | "Maldives": "モルディブ", 241 | "Mali": "マリ", 242 | "Malta": "マルタ", 243 | "Marshall Islands": "マーシャル諸島", 244 | "Martinique": "マルティニーク", 245 | "Mauritania": "モーリタニア", 246 | "Mauritius": "モーリシャス", 247 | "Mayotte": "マヨット", 248 | "Mexico": "メキシコ", 249 | "Micronesia, Federated States Of": "ミクロネシア連邦", 250 | "Moldova": "モルドバ", 251 | "Monaco": "モナコ", 252 | "Mongolia": "モンゴル", 253 | "Montenegro": "モンテネグロ", 254 | "Montserrat": "モントセラト", 255 | "Morocco": "モロッコ", 256 | "Mozambique": "モザンビーク", 257 | "Myanmar": "ミャンマー (ビルマ)", 258 | "Namibia": "ナミビア", 259 | "Nauru": "ナウル", 260 | "Nepal": "ネパール", 261 | "Netherlands": "オランダ", 262 | "New Caledonia": "ニューカレドニア", 263 | "New Zealand": "ニュージーランド", 264 | "Nicaragua": "ニカラグア", 265 | "Niger": "ニジェール", 266 | "Nigeria": "ナイジェリア", 267 | "Niue": "ニウエ", 268 | "Norfolk Island": "ノーフォーク島", 269 | "Northern Mariana Islands": "北マリアナ諸島", 270 | "Norway": "ノルウェー", 271 | "Oman": "オマーン", 272 | "Pakistan": "パキスタン", 273 | "Palau": "パラオ", 274 | "Palestinian Territory, Occupied": "パレスチナ自治区", 275 | "Panama": "パナマ", 276 | "Papua New Guinea": "パプアニューギニア", 277 | "Paraguay": "パラグアイ", 278 | "Peru": "ペルー", 279 | "Philippines": "フィリピン", 280 | "Pitcairn": "ピトケアン諸島", 281 | "Poland": "ポーランド", 282 | "Portugal": "ポルトガル", 283 | "Puerto Rico": "プエルトリコ", 284 | "Qatar": "カタール", 285 | "Reunion": "レユニオン", 286 | "Romania": "ルーマニア", 287 | "Russian Federation": "ロシア", 288 | "Rwanda": "ルワンダ", 289 | "Saint Barthelemy": "サン・バルテルミー", 290 | "Saint Helena": "セントヘレナ", 291 | "Saint Kitts And Nevis": "セントクリストファー・ネーヴィス", 292 | "Saint Lucia": "セントルシア", 293 | "Saint Martin": "サン・マルタン", 294 | "Saint Pierre And Miquelon": "サンピエール島・ミクロン島", 295 | "Saint Vincent And Grenadines": "セントビンセント及びグレナディーン諸島", 296 | "Samoa": "サモア", 297 | "San Marino": "サンマリノ", 298 | "Sao Tome And Principe": "サントメ・プリンシペ", 299 | "Saudi Arabia": "サウジアラビア", 300 | "Senegal": "セネガル", 301 | "Serbia": "セルビア", 302 | "Seychelles": "セーシェル", 303 | "Sierra Leone": "シエラレオネ", 304 | "Singapore": "シンガポール", 305 | "Sint Maarten (Dutch part)": "シント・マールテン", 306 | "Slovakia": "スロバキア", 307 | "Slovenia": "スロベニア", 308 | "Solomon Islands": "ソロモン諸島", 309 | "Somalia": "ソマリア", 310 | "South Africa": "南アフリカ", 311 | "South Georgia And Sandwich Isl.": "サウスジョージア・サウスサンドウィッチ諸島", 312 | "South Sudan": "南スーダン", 313 | "Spain": "スペイン", 314 | "Sri Lanka": "スリランカ", 315 | "Sudan": "スーダン", 316 | "Suriname": "スリナム", 317 | "Svalbard And Jan Mayen": "スバールバル諸島・ヤンマイエン島", 318 | "Swaziland": "エスワティニ", 319 | "Sweden": "スウェーデン", 320 | "Switzerland": "スイス", 321 | "Syrian Arab Republic": "シリア", 322 | "Taiwan": "台湾", 323 | "Tajikistan": "タジキスタン", 324 | "Tanzania": "タンザニア", 325 | "Thailand": "タイ", 326 | "Timor-Leste": "東ティモール", 327 | "Togo": "トーゴ", 328 | "Tokelau": "トケラウ", 329 | "Tonga": "トンガ", 330 | "Trinidad And Tobago": "トリニダード・トバゴ", 331 | "Tunisia": "チュニジア", 332 | "Turkey": "トルコ", 333 | "Turkmenistan": "トルクメニスタン", 334 | "Turks And Caicos Islands": "タークス・カイコス諸島", 335 | "Tuvalu": "ツバル", 336 | "Uganda": "ウガンダ", 337 | "Ukraine": "ウクライナ", 338 | "United Arab Emirates": "アラブ首長国連邦", 339 | "United Kingdom": "イギリス", 340 | "United States": "アメリカ合衆国", 341 | "United States Outlying Islands": "合衆国領有小離島", 342 | "Uruguay": "ウルグアイ", 343 | "Uzbekistan": "ウズベキスタン", 344 | "Vanuatu": "バヌアツ", 345 | "Venezuela": "ベネズエラ", 346 | "Viet Nam": "ベトナム", 347 | "Virgin Islands, British": "英領ヴァージン諸島", 348 | "Virgin Islands, U.S.": "米領ヴァージン諸島", 349 | "Wallis And Futuna": "ウォリス・フツナ", 350 | "Western Sahara": "西サハラ", 351 | "Yemen": "イエメン", 352 | "Zambia": "ザンビア", 353 | "Zimbabwe": "ジンバブエ", 354 | "Yes": "はい", 355 | "No": "いいえ", 356 | "Action Name": "名前", 357 | "Action Initiated By": "開始者", 358 | "Action Target": "アクションターゲット", 359 | "Action Status": "アクションステータス", 360 | "Action Happened At": "ここでアクションが発生", 361 | "resource": "リソース", 362 | "resources": "リソース", 363 | "Choose date": "日付を選択", 364 | "The :resource was created!": ":resource が作成されました!", 365 | "The :resource was updated!": ":resource が更新されました!", 366 | "The resource was updated!": "リソースが更新されました!", 367 | "The :resource was deleted!": ":resource が削除されました!", 368 | "The :resource was restored!": ":resource が復元されました!", 369 | "Increase": "増やす", 370 | "Constant": "一定", 371 | "Decrease": "減らす", 372 | "Reset Password Notification": "パスワード通知をリセットする", 373 | "Nova User": "Novaユーザー", 374 | "of": "の", 375 | "no file selected": "ファイルが選択されていません", 376 | "Sorry, your session has expired.": "申し訳ありません,セッションが時間切れとなりました.", 377 | "Reload": "再読み込み", 378 | "Key": "キー", 379 | "Value": "バリュー", 380 | "Add row": "行を追加", 381 | "Attach :resource": "アタッチ :resource", 382 | "Create :resource": ":resource を作成", 383 | "Choose :resource": ":resource を選択", 384 | "New :resource": "新しい :resource", 385 | "Edit :resource": ":resource を編集", 386 | "Update :resource": ":resource を更新", 387 | "Choose :field": ":field を選択", 388 | "Download": "ダウンロード", 389 | "Action": "アクション", 390 | "Changes": "変更", 391 | "Original": "オリジナル", 392 | "This resource no longer exists": "このリソースはもう存在しません", 393 | ":resource Details": ":resource の詳細", 394 | "There are no available options for this resource.": "このリソースに利用可能なオプションはありません.", 395 | "All resources loaded.": "ロードされたすべてのリソース.", 396 | "Load :perPage More": "もっと :perPage を読み込む", 397 | ":amount Total": "合計 :amount", 398 | "Show All Fields": "すべてのフィールドを表示する", 399 | "There was a problem submitting the form.": "フォームで送信する際に問題が発生しました", 400 | "There was a problem executing the action.": "アクションの実行中に問題が発生しました." 401 | } 402 | --------------------------------------------------------------------------------