diff --git a/.gitignore b/.gitignore index 2d5f7e4f63..e023064558 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ package-lock.json _ide_helper.php .phpunit.result.cache nbproject +.phpstorm.meta.php # Project /bootstrap/compiled.php diff --git a/README.md b/README.md index 2371a89e93..2d8aad64ec 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,8 @@ The best place to learn October CMS is by [reading the documentation](https://oc You may also watch this [introductory video](https://www.youtube.com/watch?v=yLZTOeOS7wI). Make sure to check out our [official YouTube channel](https://www.youtube.com/c/OctoberCMSOfficial). There is also the excellent video series by [Watch & Learn](https://watch-learn.com/series/making-websites-with-october-cms). +For code examples of building with October CMS, visit the [RainLab Plugin Suite](https://github.com/rainlab) or the [October Demos Repo](https://github.com/octoberdemos). + ## Coding Standards Please follow the following guides and code standards: diff --git a/composer.json b/composer.json index bb7075c4e6..fdbb4a3aee 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "license": "proprietary", "require": { "php": "^8.0.2", - "october/rain": "^3.0", + "october/rain": "dev-develop", "laravel/framework": "^9.0" }, "require-dev": { diff --git a/config/app.php b/config/app.php index b12f4b7f22..a1b2bc5a6c 100644 --- a/config/app.php +++ b/config/app.php @@ -150,9 +150,9 @@ | | Before you change this value, consider carefully if that is actually | what you want to do. It is highly recommended that this is always set - | to UTC (as your server & DB timezone should be as well) and instead you - | use backend.timezone to set the default timezone used in the backend - | to display dates & times. + | to UTC (as your server & DB timezone should be as well) and instead + | you can use backend.timezone or cms.timezone to set the default + | timezone used to display dates & times. | */ diff --git a/config/cms.php b/config/cms.php index 42689789cc..23c656df06 100644 --- a/config/cms.php +++ b/config/cms.php @@ -56,6 +56,18 @@ 'strict_components' => env('CMS_STRICT_COMPONENTS', false), + /* + |-------------------------------------------------------------------------- + | Frontend Timezone + |-------------------------------------------------------------------------- + | + | This acts as the default setting for a frontend user's timezone used when + | converting dates from the system setting, typically set to UTC. + | + */ + + 'timezone' => 'UTC', + /* |-------------------------------------------------------------------------- | Template Caching diff --git a/config/filesystems.php b/config/filesystems.php index 8614557f1c..8e2979e3be 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -33,8 +33,29 @@ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), - 'url' => '/storage/app', + 'throw' => false, + ], + + 'uploads' => [ + 'driver' => 'local', + 'root' => storage_path('app/uploads'), + 'url' => '/storage/app/uploads', + 'throw' => false, + ], + + 'media' => [ + 'driver' => 'local', + 'root' => storage_path('app/media'), + 'url' => '/storage/app/media', 'visibility' => 'public', + 'throw' => false, + ], + + 'resources' => [ + 'driver' => 'local', + 'root' => storage_path('app/resources'), + 'url' => '/storage/app/resources', + 'throw' => false, ], 's3' => [ @@ -45,6 +66,8 @@ 'bucket' => env('AWS_BUCKET'), 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, ], ], diff --git a/config/system.php b/config/system.php index b47dce7669..17cc25df15 100644 --- a/config/system.php +++ b/config/system.php @@ -91,54 +91,8 @@ */ 'default_mask' => [ - 'file' => env('DEFAULT_FILE_MASK'), - 'folder' => env('DEFAULT_FOLDER_MASK'), - - ], - - /* - |-------------------------------------------------------------------------- - | Resource storage - |-------------------------------------------------------------------------- - | - | Specifies the configuration for resource storage, such as media and - | upload files. These resources are used: - | - | media - generated by the media manager. - | uploads - generated by attachment model relationships. - | resources - generated by combiner and resizer services. - | - | For each resource you can specify: - | - | disk - filesystem disk, as specified in filesystems.php config. - | folder - a folder prefix for storing all generated files inside. - | path - the public path relative to the application base URL, - | or you can specify a full URL path. - | - */ - - 'storage' => [ - - 'uploads' => [ - 'disk' => 'local', - 'folder' => 'uploads', - 'path' => '/storage/app/uploads', - ], - - 'media' => [ - 'disk' => 'local', - 'folder' => 'media', - 'path' => '/storage/app/media', - ], - - 'resources' => [ - 'disk' => 'local', - 'folder' => 'resources', - 'path' => '/storage/app/resources', - ], - ], /* diff --git a/modules/backend/lang/ar.json b/modules/backend/lang/ar.json index 7c0677ebe2..466bc6a14f 100644 --- a/modules/backend/lang/ar.json +++ b/modules/backend/lang/ar.json @@ -91,5 +91,21 @@ "Settings": "إعدادات", "Background Color": "لون الخلفية", "Allow users to create new roles and edit or delete roles lower than their highest role.": "اسمح للمستخدمين بإنشاء أدوار جديدة وتعديل الأدوار الأقل من أعلى مستوى لهم أو حذفها.", - "Save Changes": "حفظ التغييرات" + "Save Changes": "حفظ التغييرات", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "يعرض هذا السجل قائمة بمحاولات تسجيل الدخول الناجحة بواسطة المسؤولين. يتم الاحتفاظ بالسجلات لما مجموعه: أيام أيام.", + "Access Log": "سجل الوصول", + "View a list of successful back-end user sign ins.": "اعرض قائمة بعمليات تسجيل دخول المستخدم الخلفية الناجحة.", + "ID": "بطاقة تعريف", + "Date & Time": "التاريخ والوقت", + "Type": "يكتب", + "IP address": "عنوان IP", + "Login": "تسجيل الدخول", + "First name": "الاسم الاول", + "Last name": "اللقب", + "Email": "البريد الإلكتروني", + "Translated for locale: :value": "مترجمة للغة:: القيمة", + "Translated for site: :value": "مترجم للموقع:: القيمة", + "A custom schema is used for this file format.": "يتم استخدام مخطط مخصص لتنسيق الملف هذا.", + "Select": "يختار", + "Replace": "يحل محل" } \ No newline at end of file diff --git a/modules/backend/lang/be.json b/modules/backend/lang/be.json index bd2716f597..e52246f9dc 100644 --- a/modules/backend/lang/be.json +++ b/modules/backend/lang/be.json @@ -1,104 +1,111 @@ { - "Cancel": "Адмяніць", - "You are viewing as": "Вы праглядаеце як", - "Preview Role": "Папярэдні прагляд ролі", - "This lets you test the actions this role can perform.": "Гэта дазваляе праверыць дзеянні, якія можа выконваць гэтая роля.", - "View As Role": "Прагляд у ролі", - "Return to Role Settings": "Вярнуцца да налады роляў", - "Password must have a minimum of length of :min characters": "Пароль павінен мець мінімум сімвалаў :min", - "Password must contain at least one uppercase character.": "Пароль павінен утрымліваць прынамсі адзін вялікі рэгістр.", - "Password must contain at least one lowercase character.": "Пароль павінен утрымліваць прынамсі адзін сімвал ніжняга рэгістра.", - "Password must contain at least one number.": "Пароль павінен утрымліваць прынамсі адну лічбу.", - "Password must contain at least one nonalphanumeric character.": "Пароль павінен утрымліваць прынамсі адзін нелітарны сімвал.", - "Welcome to your Administration Area, :name": "Сардэчна запрашаем у вашу адміністрацыйную зону, :name", - "Duplicate": "Дубляваць", - "Expand": "Разгарнуць", - "Collapse": "Згарнуць", - "Move Up": "Рухайцеся ўверх", - "Move Down": "Рухайцеся ўніз", - "Remove": "Выдаліць", - "Manage Item": "Кіраваць прадметам", - "Clear Filters": "Ачысціць фільтры", - "Filter Setup": "Налада фільтра", - "Apply": "Ужыць", - "Clear": "Ясна", - "is equal to": "роўна", - "is between": "знаходзіцца паміж", - "contains": "змяшчае", - "is before": "гэта раней", - "is after": "пасля", - "is greater than": "больш, чым", - "is less than": "менш чым", - "1. Export output format": "1. Фармат выходнага файлу экспарту", - "File Format": "Фармат файлу", - "Delimiter Character": "Сімвал для абмежавання", - "Enclosure Character": "Сімвал для абгароджвання", - "Escape Character": "Сімвал для экранавання", - "2. Select columns to export": "2. Выберыце слупкі для экспарту", - "Columns": "Слупкі", - "3. Set export options": "3. Налады экспарту", - "CSV Custom": "Фармат карыстальніка", - "1. Upload an Import File": "1. Загрузіць CSV файл", - "Import File": "Імпартаваць файл", - "File Encoding": "Кадзіроўка файла", - "First row contains column titles": "Першы радок утрымлівае назвы слупкоў", - "Leave this checked if the first row in the CSV is used as the column titles.": "Пакіньце гэтую пазнаку, калі першы радок утрымлівае назвы слупкоў", - "2. Match the file columns to database fields": "2. Суаднесці слупкі з палямі ў табліцы базы дадзеных", - "File columns": "Слупкі файла", - "Database fields": "Палі базы дадзеных", - "3. Set import options": "3. Налады імпарту", - "Export progress": "Прагрэс экспарту", - "Processing": "Абработка", - "Import progress": "Прагрэс імпарту", - "Import error": "Памылка імпарту", - "Export error": "Памылка экспарту", - "Column preview": "Прагляд слупкоў", - "Column": "Слупок", - "Disable": "Адключыць", - "Enable": "Уключыць", - "Delete": "Выдаліць", - "Export": "Экспарт", - "Import": "Імпарт", - "Select Action": "Выберыце Дзеянне", - "Please create a new account for logging in to the Administration Area.": "Калі ласка, стварыце новы ўліковы запіс для ўваходу ў Адміністрацыйную зону.", - "First Name": "Імя", - "Last Name": "Прозвішча", - "Email Address": "Адрас электроннай пошты", - "Pick a Username": "Выберыце імя карыстальніка", - "Enter New Password": "Увядзіце новы пароль", - "Confirm Password": "Пацвердзіце пароль", - "Create Account": "Стварыць уліковы запіс", - "Getting Ready": "Рыхтавацца", - "Just a few more minutes": "Яшчэ некалькі хвілін", - "Migrating Database": "Міграцыя базы даных", - "Access the Backend Panel": "Доступ да бэкэнд-панэлі", - "View Backend During Maintenance": "Прагляд бэкэнд падчас тэхнічнага абслугоўвання", - "Perform Software Updates": "Выканайце абнаўленне праграмнага забеспячэння", - "In Maintenance": "У абслугоўванні", - "The site is currently in maintenance mode, please check back later.": "Зараз сайт знаходзіцца ў рэжыме абслугоўвання, праверце пазней.", - "Dashboard": "Прыборная панэль", - "Administrators": "Адміністратары", - "Manage Admins": "Кіраванне адміністратарамі", - "Create Admins": "Стварыць адміністратараў", - "Moderate Admins": "Умераныя адміністратары", - "Manage account suspension and ban admin accounts": "Кіруйце прыпыненнем уліковых запісаў і забаронай уліковых запісаў адміністратара", - "Manage Roles": "Кіраванне ролямі", - "Manage Groups": "Кіраванне групамі", - "Manage Other Admins": "Кіраванне іншымі адміністратарамі", - "Allow users to reset passwords and update emails.": "Дазваляе скідаць паролі і абнавіць электронную пошту", - "Delete Admins": "Выдаліць адміністратараў", - "Preferences": "Перавагі", - "Settings": "Налады", - "Background Color": "Колер фону", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Дазволіць карыстальнікам ствараць новыя ролі і рэдагаваць або выдаляць ролі ніжэйшыя за іх вышэйшую ролю.", - "Save Changes": "Захаваць змены", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Гэты ліст паказвае паспяховыя спробы ўваходу адміністратараў. Запісы захоўваюцца на працягу :days д", - "Access Log": "Дзеннік доступаў", - "View a list of successful back-end user sign ins.": "Прагледзець ліст паспяховых уваходаў у панэль кіравання", - "Date & Time": "Дата і час", - "IP address": "IP адрас", - "Login": "Лагін", - "First name": "Імя", - "Last name": "Прозвішча", - "Email": "Электронная пошта" + "Cancel": "Адмяніць", + "You are viewing as": "Вы праглядаеце як", + "Preview Role": "Папярэдні прагляд ролі", + "This lets you test the actions this role can perform.": "Гэта дазваляе праверыць дзеянні, якія можа выконваць гэтая роля.", + "View As Role": "Прагляд у ролі", + "Return to Role Settings": "Вярнуцца да налады роляў", + "Password must have a minimum of length of :min characters": "Пароль павінен мець мінімум сімвалаў :min", + "Password must contain at least one uppercase character.": "Пароль павінен утрымліваць прынамсі адзін вялікі рэгістр.", + "Password must contain at least one lowercase character.": "Пароль павінен утрымліваць прынамсі адзін сімвал ніжняга рэгістра.", + "Password must contain at least one number.": "Пароль павінен утрымліваць прынамсі адну лічбу.", + "Password must contain at least one nonalphanumeric character.": "Пароль павінен утрымліваць прынамсі адзін нелітарны сімвал.", + "Welcome to your Administration Area, :name": "Сардэчна запрашаем у вашу адміністрацыйную зону, :name", + "Duplicate": "Дубляваць", + "Expand": "Разгарнуць", + "Collapse": "Згарнуць", + "Move Up": "Рухайцеся ўверх", + "Move Down": "Рухайцеся ўніз", + "Remove": "Выдаліць", + "Manage Item": "Кіраваць прадметам", + "Clear Filters": "Ачысціць фільтры", + "Filter Setup": "Налада фільтра", + "Apply": "Ужыць", + "Clear": "Ясна", + "is equal to": "роўна", + "is between": "знаходзіцца паміж", + "contains": "змяшчае", + "is before": "гэта раней", + "is after": "пасля", + "is greater than": "больш, чым", + "is less than": "менш чым", + "1. Export output format": "1. Фармат выходнага файлу экспарту", + "File Format": "Фармат файлу", + "Delimiter Character": "Сімвал для абмежавання", + "Enclosure Character": "Сімвал для абгароджвання", + "Escape Character": "Сімвал для экранавання", + "2. Select columns to export": "2. Выберыце слупкі для экспарту", + "Columns": "Слупкі", + "3. Set export options": "3. Налады экспарту", + "CSV Custom": "Фармат карыстальніка", + "1. Upload an Import File": "1. Загрузіць CSV файл", + "Import File": "Імпартаваць файл", + "File Encoding": "Кадзіроўка файла", + "First row contains column titles": "Першы радок утрымлівае назвы слупкоў", + "Leave this checked if the first row in the CSV is used as the column titles.": "Пакіньце гэтую пазнаку, калі першы радок утрымлівае назвы слупкоў", + "2. Match the file columns to database fields": "2. Суаднесці слупкі з палямі ў табліцы базы дадзеных", + "File columns": "Слупкі файла", + "Database fields": "Палі базы дадзеных", + "3. Set import options": "3. Налады імпарту", + "Export progress": "Прагрэс экспарту", + "Processing": "Абработка", + "Import progress": "Прагрэс імпарту", + "Import error": "Памылка імпарту", + "Export error": "Памылка экспарту", + "Column preview": "Прагляд слупкоў", + "Column": "Слупок", + "Disable": "Адключыць", + "Enable": "Уключыць", + "Delete": "Выдаліць", + "Export": "Экспарт", + "Import": "Імпарт", + "Select Action": "Выберыце Дзеянне", + "Please create a new account for logging in to the Administration Area.": "Калі ласка, стварыце новы ўліковы запіс для ўваходу ў Адміністрацыйную зону.", + "First Name": "Імя", + "Last Name": "Прозвішча", + "Email Address": "Адрас электроннай пошты", + "Pick a Username": "Выберыце імя карыстальніка", + "Enter New Password": "Увядзіце новы пароль", + "Confirm Password": "Пацвердзіце пароль", + "Create Account": "Стварыць уліковы запіс", + "Getting Ready": "Рыхтавацца", + "Just a few more minutes": "Яшчэ некалькі хвілін", + "Migrating Database": "Міграцыя базы даных", + "Access the Backend Panel": "Доступ да бэкэнд-панэлі", + "View Backend During Maintenance": "Прагляд бэкэнд падчас тэхнічнага абслугоўвання", + "Perform Software Updates": "Выканайце абнаўленне праграмнага забеспячэння", + "In Maintenance": "У абслугоўванні", + "The site is currently in maintenance mode, please check back later.": "Зараз сайт знаходзіцца ў рэжыме абслугоўвання, праверце пазней.", + "Dashboard": "Прыборная панэль", + "Administrators": "Адміністратары", + "Manage Admins": "Кіраванне адміністратарамі", + "Create Admins": "Стварыць адміністратараў", + "Moderate Admins": "Умераныя адміністратары", + "Manage account suspension and ban admin accounts": "Кіруйце прыпыненнем уліковых запісаў і забаронай уліковых запісаў адміністратара", + "Manage Roles": "Кіраванне ролямі", + "Manage Groups": "Кіраванне групамі", + "Manage Other Admins": "Кіраванне іншымі адміністратарамі", + "Allow users to reset passwords and update emails.": "Дазваляе скідаць паролі і абнавіць электронную пошту", + "Delete Admins": "Выдаліць адміністратараў", + "Preferences": "Перавагі", + "Settings": "Налады", + "Background Color": "Колер фону", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Дазволіць карыстальнікам ствараць новыя ролі і рэдагаваць або выдаляць ролі ніжэйшыя за іх вышэйшую ролю.", + "Save Changes": "Захаваць змены", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Гэты ліст паказвае паспяховыя спробы ўваходу адміністратараў. Запісы захоўваюцца на працягу :days д", + "Access Log": "Дзеннік доступаў", + "View a list of successful back-end user sign ins.": "Прагледзець ліст паспяховых уваходаў у панэль кіравання", + "ID": "ID", + "Date & Time": "Дата і час", + "Type": "Тып", + "IP address": "IP адрас", + "Login": "Лагін", + "First name": "Імя", + "Last name": "Прозвішча", + "Email": "Электронная пошта", + "Translated for locale: :value": "Пераклад для лакалі: :значэнне", + "Translated for site: :value": "Пераклад для сайта: :value", + "A custom schema is used for this file format.": "Для гэтага фармату файла выкарыстоўваецца спецыяльная схема.", + "Select": "Выберыце", + "Replace": "Замяніць" } \ No newline at end of file diff --git a/modules/backend/lang/bg.json b/modules/backend/lang/bg.json index fc96686996..78969c9aa0 100644 --- a/modules/backend/lang/bg.json +++ b/modules/backend/lang/bg.json @@ -1,104 +1,111 @@ { - "Cancel": "Отмяна", - "You are viewing as": "Вие гледате като", - "Preview Role": "Преглед на ролята", - "This lets you test the actions this role can perform.": "Това ви позволява да тествате действията, които тази роля може да изпълнява.", - "View As Role": "Преглед като роля", - "Return to Role Settings": "Върнете се към настройките на ролята", - "Password must have a minimum of length of :min characters": "Паролата трябва да има минимална дължина от :min символи", - "Password must contain at least one uppercase character.": "Паролата трябва да съдържа поне един главни букви.", - "Password must contain at least one lowercase character.": "Паролата трябва да съдържа поне един знак с малки букви.", - "Password must contain at least one number.": "Паролата трябва да съдържа поне една цифра.", - "Password must contain at least one nonalphanumeric character.": "Паролата трябва да съдържа поне един небуквено-цифров знак.", - "Welcome to your Administration Area, :name": "Добре дошли във вашата административна зона, :name", - "Duplicate": "Дублиране", - "Expand": "Разгънете", - "Collapse": "Свиване", - "Move Up": "Премести се нагоре", - "Move Down": "Премести надолу", - "Remove": "Премахване", - "Manage Item": "Управление на артикула", - "Clear Filters": "Изчистване на филтрите", - "Filter Setup": "Настройка на филтъра", - "Apply": "Приложи", - "Clear": "Ясно", - "is equal to": "е равно на", - "is between": "е между", - "contains": "съдържа", - "is before": "е преди", - "is after": "е след", - "is greater than": "е по-голямо от", - "is less than": "е по-малко от", - "1. Export output format": "1. Изнесете изходен формат", - "File Format": "Формат за файла", - "Delimiter Character": "Разделителeн знак", - "Enclosure Character": "Затварящ знак", - "Escape Character": "Специален знак за избягване", - "2. Select columns to export": "2. Изберете колони за изнасяне", - "Columns": "Колони", - "3. Set export options": "3. Задайте опций за изнасяне", - "CSV Custom": "Персонализиран формат", - "1. Upload an Import File": "1. Качи CSV файл", - "Import File": "Внеси файл", - "File Encoding": "Кодиране на файлове", - "First row contains column titles": "Първия ред съдържа заглавията на колините ", - "Leave this checked if the first row in the CSV is used as the column titles.": "Оставете това тикче ако на първия ред в CSV се използват като заглавията на колоните.", - "2. Match the file columns to database fields": "2. Съчетайте колоните от файла с полетата на базата", - "File columns": "Колони от файла", - "Database fields": "Полета на базата", - "3. Set import options": "3. Задаване на опции за внасяне", - "Export progress": "Прогрес на изнасянето", - "Processing": "Обработване", - "Import progress": "Прогрес на внасянето", - "Import error": "Грешка при внасяне", - "Export error": "Грешка при изнасяне", - "Column preview": "Преглед колона", - "Column": "Колона", - "Disable": "Деактивирайте", - "Enable": "Активирайте", - "Delete": "Изтрий", - "Export": "Експортиране", - "Import": "Импортиране", - "Select Action": "Изберете Действие", - "Please create a new account for logging in to the Administration Area.": "Моля, създайте нов акаунт за влизане в Административната област.", - "First Name": "Първо име", - "Last Name": "Фамилия", - "Email Address": "Имейл адрес", - "Pick a Username": "Изберете потребителско име", - "Enter New Password": "Въведете нова парола", - "Confirm Password": "потвърди парола", - "Create Account": "Създай акаунт", - "Getting Ready": "Приготвям се", - "Just a few more minutes": "Само още няколко минути", - "Migrating Database": "Мигриране на база данни", - "Access the Backend Panel": "Достъп до задния панел", - "View Backend During Maintenance": "Преглед на бекенда по време на поддръжка", - "Perform Software Updates": "Извършване на актуализации на софтуера", - "In Maintenance": "В поддръжка", - "The site is currently in maintenance mode, please check back later.": "В момента сайтът е в режим на поддръжка, моля, проверете отново по-късно.", - "Dashboard": "Табло", - "Administrators": "Администратори", - "Manage Admins": "Управление на администратори", - "Create Admins": "Създаване на администратори", - "Moderate Admins": "Умерени администратори", - "Manage account suspension and ban admin accounts": "Управлявайте спирането на акаунти и забраняването на администраторски акаунти", - "Manage Roles": "Управление на ролите", - "Manage Groups": "Управление на групи", - "Manage Other Admins": "Управление на други администратори", - "Allow users to reset passwords and update emails.": "Позволява нулиране на пароли и актуализиране на имейли", - "Delete Admins": "Изтриване на администратори", - "Preferences": "Предпочитания", - "Settings": "Настройки", - "Background Color": "Цвят на фона", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Позволете на потребителите да създават нови роли и да редактират или изтриват роли, по-ниски от най-високата им роля.", - "Save Changes": "Запазите промените", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Този дневник показва списък на успешните опити за влизане от администраторите. Записите се съхраняват в продължение на общо :days дни.", - "Access Log": "Дневник (регистър) на влизанията", - "View a list of successful back-end user sign ins.": "Преглед на списък с успешни влизания на потребители в администраторския-панел.", - "Date & Time": "Дата и Час", - "IP address": "ИП адрес", - "Login": "Влизане", - "First name": "Име", - "Last name": "Фамилия name", - "Email": "Имейл" + "Cancel": "Отмяна", + "You are viewing as": "Вие гледате като", + "Preview Role": "Преглед на ролята", + "This lets you test the actions this role can perform.": "Това ви позволява да тествате действията, които тази роля може да изпълнява.", + "View As Role": "Преглед като роля", + "Return to Role Settings": "Върнете се към настройките на ролята", + "Password must have a minimum of length of :min characters": "Паролата трябва да има минимална дължина от :min символи", + "Password must contain at least one uppercase character.": "Паролата трябва да съдържа поне един главни букви.", + "Password must contain at least one lowercase character.": "Паролата трябва да съдържа поне един знак с малки букви.", + "Password must contain at least one number.": "Паролата трябва да съдържа поне една цифра.", + "Password must contain at least one nonalphanumeric character.": "Паролата трябва да съдържа поне един небуквено-цифров знак.", + "Welcome to your Administration Area, :name": "Добре дошли във вашата административна зона, :name", + "Duplicate": "Дублиране", + "Expand": "Разгънете", + "Collapse": "Свиване", + "Move Up": "Премести се нагоре", + "Move Down": "Премести надолу", + "Remove": "Премахване", + "Manage Item": "Управление на артикула", + "Clear Filters": "Изчистване на филтрите", + "Filter Setup": "Настройка на филтъра", + "Apply": "Приложи", + "Clear": "Ясно", + "is equal to": "е равно на", + "is between": "е между", + "contains": "съдържа", + "is before": "е преди", + "is after": "е след", + "is greater than": "е по-голямо от", + "is less than": "е по-малко от", + "1. Export output format": "1. Изнесете изходен формат", + "File Format": "Формат за файла", + "Delimiter Character": "Разделителeн знак", + "Enclosure Character": "Затварящ знак", + "Escape Character": "Специален знак за избягване", + "2. Select columns to export": "2. Изберете колони за изнасяне", + "Columns": "Колони", + "3. Set export options": "3. Задайте опций за изнасяне", + "CSV Custom": "Персонализиран формат", + "1. Upload an Import File": "1. Качи CSV файл", + "Import File": "Внеси файл", + "File Encoding": "Кодиране на файлове", + "First row contains column titles": "Първия ред съдържа заглавията на колините ", + "Leave this checked if the first row in the CSV is used as the column titles.": "Оставете това тикче ако на първия ред в CSV се използват като заглавията на колоните.", + "2. Match the file columns to database fields": "2. Съчетайте колоните от файла с полетата на базата", + "File columns": "Колони от файла", + "Database fields": "Полета на базата", + "3. Set import options": "3. Задаване на опции за внасяне", + "Export progress": "Прогрес на изнасянето", + "Processing": "Обработване", + "Import progress": "Прогрес на внасянето", + "Import error": "Грешка при внасяне", + "Export error": "Грешка при изнасяне", + "Column preview": "Преглед колона", + "Column": "Колона", + "Disable": "Деактивирайте", + "Enable": "Активирайте", + "Delete": "Изтрий", + "Export": "Експортиране", + "Import": "Импортиране", + "Select Action": "Изберете Действие", + "Please create a new account for logging in to the Administration Area.": "Моля, създайте нов акаунт за влизане в Административната област.", + "First Name": "Първо име", + "Last Name": "Фамилия", + "Email Address": "Имейл адрес", + "Pick a Username": "Изберете потребителско име", + "Enter New Password": "Въведете нова парола", + "Confirm Password": "потвърди парола", + "Create Account": "Създай акаунт", + "Getting Ready": "Приготвям се", + "Just a few more minutes": "Само още няколко минути", + "Migrating Database": "Мигриране на база данни", + "Access the Backend Panel": "Достъп до задния панел", + "View Backend During Maintenance": "Преглед на бекенда по време на поддръжка", + "Perform Software Updates": "Извършване на актуализации на софтуера", + "In Maintenance": "В поддръжка", + "The site is currently in maintenance mode, please check back later.": "В момента сайтът е в режим на поддръжка, моля, проверете отново по-късно.", + "Dashboard": "Табло", + "Administrators": "Администратори", + "Manage Admins": "Управление на администратори", + "Create Admins": "Създаване на администратори", + "Moderate Admins": "Умерени администратори", + "Manage account suspension and ban admin accounts": "Управлявайте спирането на акаунти и забраняването на администраторски акаунти", + "Manage Roles": "Управление на ролите", + "Manage Groups": "Управление на групи", + "Manage Other Admins": "Управление на други администратори", + "Allow users to reset passwords and update emails.": "Позволява нулиране на пароли и актуализиране на имейли", + "Delete Admins": "Изтриване на администратори", + "Preferences": "Предпочитания", + "Settings": "Настройки", + "Background Color": "Цвят на фона", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Позволете на потребителите да създават нови роли и да редактират или изтриват роли, по-ниски от най-високата им роля.", + "Save Changes": "Запазите промените", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Този дневник показва списък на успешните опити за влизане от администраторите. Записите се съхраняват в продължение на общо :days дни.", + "Access Log": "Дневник (регистър) на влизанията", + "View a list of successful back-end user sign ins.": "Преглед на списък с успешни влизания на потребители в администраторския-панел.", + "ID": "документ за самоличност", + "Date & Time": "Дата и Час", + "Type": "Тип", + "IP address": "ИП адрес", + "Login": "Влизане", + "First name": "Име", + "Last name": "Фамилия name", + "Email": "Имейл", + "Translated for locale: :value": "Преведено за локал: :стойност", + "Translated for site: :value": "Преведено за сайт: :value", + "A custom schema is used for this file format.": "За този файлов формат се използва персонализирана схема.", + "Select": "Изберете", + "Replace": "Сменете" } \ No newline at end of file diff --git a/modules/backend/lang/ca.json b/modules/backend/lang/ca.json index 99bdc4bd8e..b6c55f7297 100644 --- a/modules/backend/lang/ca.json +++ b/modules/backend/lang/ca.json @@ -1,104 +1,111 @@ { - "Cancel": "Cancel · lar", - "You are viewing as": "Estàs veient com", - "Preview Role": "Rol de vista prèvia", - "This lets you test the actions this role can perform.": "Això us permet provar les accions que aquesta funció pot realitzar.", - "View As Role": "Veure com a rol", - "Return to Role Settings": "Torna a la configuració del rol", - "Password must have a minimum of length of :min characters": "La contrasenya ha de tenir una longitud mínima de :min caràcters", - "Password must contain at least one uppercase character.": "La contrasenya ha de contenir almenys un caràcter en majúscula.", - "Password must contain at least one lowercase character.": "La contrasenya ha de contenir almenys un caràcter en minúscula.", - "Password must contain at least one number.": "La contrasenya ha de contenir com a mínim un número.", - "Password must contain at least one nonalphanumeric character.": "La contrasenya ha de contenir almenys un caràcter no alfanumèric.", - "Welcome to your Administration Area, :name": "Benvingut a la vostra àrea d'administració, :name", - "Duplicate": "Duplicar", - "Expand": "Ampliar", - "Collapse": "Col·lapse", - "Move Up": "Mou-te", - "Move Down": "Moure cap avall", - "Remove": "Eliminar", - "Manage Item": "Gestiona l'element", - "Clear Filters": "Esborra els filtres", - "Filter Setup": "Configuració del filtre", - "Apply": "Aplicar", - "Clear": "Clar", - "is equal to": "és igual a", - "is between": "està entre", - "contains": "conté", - "is before": "és abans", - "is after": "és després", - "is greater than": "és més gran que", - "is less than": "és menys que", - "1. Export output format": "1. Format de sortida de l'exportació", - "File Format": "Format de l'arxiu", - "Delimiter Character": "Caràcter delimitador", - "Enclosure Character": "Caràcter de tancament de cadena", - "Escape Character": "Caràcter d'escapament", - "2. Select columns to export": "2. Seleccionar columnes per exportar", - "Columns": "Columnes", - "3. Set export options": "3. Establir les opcions d'exportació", - "CSV Custom": "Personalitzat", - "1. Upload an Import File": "1. Pujar un arxiu CSV", - "Import File": "Importar arxiu", - "File Encoding": "Codificació d'arxiu", - "First row contains column titles": "La primera fila conté els títols de columnes", - "Leave this checked if the first row in the CSV is used as the column titles.": "Deixa això marcat si la primera fila del CSV s'utilitza pels títols de les columnes.", - "2. Match the file columns to database fields": "2. Emparellar les columnes de l'arxiu amb camps de la base de dades", - "File columns": "Columnes de l'arxiu", - "Database fields": "Camps de la base de dades", - "3. Set import options": "3. Establir les opcions d'importació", - "Export progress": "Progrès d'exportació", - "Processing": "Processant", - "Import progress": "Progrés d'importació", - "Import error": "Error en la importació", - "Export error": "Error en l'exportació", - "Column preview": "Previsualitzar columna", - "Column": "Columna", - "Disable": "Desactivar", - "Enable": "Activa", - "Delete": "Suprimeix", - "Export": "Exporta", - "Import": "Importar", - "Select Action": "Seleccioneu Acció", - "Please create a new account for logging in to the Administration Area.": "Creeu un compte nou per iniciar sessió a l'àrea d'administració.", - "First Name": "Nom", - "Last Name": "Cognom", - "Email Address": "Correu electrònic", - "Pick a Username": "Trieu un nom d'usuari", - "Enter New Password": "Introduïu una nova contrasenya", - "Confirm Password": "Confirma la contrassenya", - "Create Account": "Crear compte", - "Getting Ready": "Preparant-se", - "Just a few more minutes": "Només uns minuts més", - "Migrating Database": "Base de dades en migració", - "Access the Backend Panel": "Accediu al panell de fons", - "View Backend During Maintenance": "Veure el backend durant el manteniment", - "Perform Software Updates": "Realitzar actualitzacions de programari", - "In Maintenance": "En Manteniment", - "The site is currently in maintenance mode, please check back later.": "El lloc està actualment en mode de manteniment, si us plau, torneu a comprovar-ho més tard.", - "Dashboard": "panell", - "Administrators": "Administradors", - "Manage Admins": "Gestionar administradors", - "Create Admins": "Crear administradors", - "Moderate Admins": "Administradors moderats", - "Manage account suspension and ban admin accounts": "Gestioneu la suspensió del compte i prohibeu els comptes d'administrador", - "Manage Roles": "Gestionar rols", - "Manage Groups": "Gestionar grups", - "Manage Other Admins": "Gestionar altres administradors", - "Allow users to reset passwords and update emails.": "Permet restablir contrasenyes i actualitzar correus electrònics", - "Delete Admins": "Elimina els administradors", - "Preferences": "Preferències", - "Settings": "Configuració", - "Background Color": "Color de fons", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Permet als usuaris crear rols nous i editar o suprimir rols inferiors al seu rol més alt.", - "Save Changes": "Guardar canvis", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Aquest registre mostra una llista dels accessos d'administradors. Els registres es guarden durant :days dies.", - "Access Log": "Registre d'accés", - "View a list of successful back-end user sign ins.": "Veure una llista d'accessos correctes al panell.", - "Date & Time": "Data i Hora", - "IP address": "Adreça IP", - "Login": "Login", - "First name": "Nom", - "Last name": "Cognom", - "Email": "Email" + "Cancel": "Cancel · lar", + "You are viewing as": "Estàs veient com", + "Preview Role": "Rol de vista prèvia", + "This lets you test the actions this role can perform.": "Això us permet provar les accions que aquesta funció pot realitzar.", + "View As Role": "Veure com a rol", + "Return to Role Settings": "Torna a la configuració del rol", + "Password must have a minimum of length of :min characters": "La contrasenya ha de tenir una longitud mínima de :min caràcters", + "Password must contain at least one uppercase character.": "La contrasenya ha de contenir almenys un caràcter en majúscula.", + "Password must contain at least one lowercase character.": "La contrasenya ha de contenir almenys un caràcter en minúscula.", + "Password must contain at least one number.": "La contrasenya ha de contenir com a mínim un número.", + "Password must contain at least one nonalphanumeric character.": "La contrasenya ha de contenir almenys un caràcter no alfanumèric.", + "Welcome to your Administration Area, :name": "Benvingut a la vostra àrea d'administració, :name", + "Duplicate": "Duplicar", + "Expand": "Ampliar", + "Collapse": "Col·lapse", + "Move Up": "Mou-te", + "Move Down": "Moure cap avall", + "Remove": "Eliminar", + "Manage Item": "Gestiona l'element", + "Clear Filters": "Esborra els filtres", + "Filter Setup": "Configuració del filtre", + "Apply": "Aplicar", + "Clear": "Clar", + "is equal to": "és igual a", + "is between": "està entre", + "contains": "conté", + "is before": "és abans", + "is after": "és després", + "is greater than": "és més gran que", + "is less than": "és menys que", + "1. Export output format": "1. Format de sortida de l'exportació", + "File Format": "Format de l'arxiu", + "Delimiter Character": "Caràcter delimitador", + "Enclosure Character": "Caràcter de tancament de cadena", + "Escape Character": "Caràcter d'escapament", + "2. Select columns to export": "2. Seleccionar columnes per exportar", + "Columns": "Columnes", + "3. Set export options": "3. Establir les opcions d'exportació", + "CSV Custom": "Personalitzat", + "1. Upload an Import File": "1. Pujar un arxiu CSV", + "Import File": "Importar arxiu", + "File Encoding": "Codificació d'arxiu", + "First row contains column titles": "La primera fila conté els títols de columnes", + "Leave this checked if the first row in the CSV is used as the column titles.": "Deixa això marcat si la primera fila del CSV s'utilitza pels títols de les columnes.", + "2. Match the file columns to database fields": "2. Emparellar les columnes de l'arxiu amb camps de la base de dades", + "File columns": "Columnes de l'arxiu", + "Database fields": "Camps de la base de dades", + "3. Set import options": "3. Establir les opcions d'importació", + "Export progress": "Progrès d'exportació", + "Processing": "Processant", + "Import progress": "Progrés d'importació", + "Import error": "Error en la importació", + "Export error": "Error en l'exportació", + "Column preview": "Previsualitzar columna", + "Column": "Columna", + "Disable": "Desactivar", + "Enable": "Activa", + "Delete": "Suprimeix", + "Export": "Exporta", + "Import": "Importar", + "Select Action": "Seleccioneu Acció", + "Please create a new account for logging in to the Administration Area.": "Creeu un compte nou per iniciar sessió a l'àrea d'administració.", + "First Name": "Nom", + "Last Name": "Cognom", + "Email Address": "Correu electrònic", + "Pick a Username": "Trieu un nom d'usuari", + "Enter New Password": "Introduïu una nova contrasenya", + "Confirm Password": "Confirma la contrassenya", + "Create Account": "Crear compte", + "Getting Ready": "Preparant-se", + "Just a few more minutes": "Només uns minuts més", + "Migrating Database": "Base de dades en migració", + "Access the Backend Panel": "Accediu al panell de fons", + "View Backend During Maintenance": "Veure el backend durant el manteniment", + "Perform Software Updates": "Realitzar actualitzacions de programari", + "In Maintenance": "En Manteniment", + "The site is currently in maintenance mode, please check back later.": "El lloc està actualment en mode de manteniment, si us plau, torneu a comprovar-ho més tard.", + "Dashboard": "panell", + "Administrators": "Administradors", + "Manage Admins": "Gestionar administradors", + "Create Admins": "Crear administradors", + "Moderate Admins": "Administradors moderats", + "Manage account suspension and ban admin accounts": "Gestioneu la suspensió del compte i prohibeu els comptes d'administrador", + "Manage Roles": "Gestionar rols", + "Manage Groups": "Gestionar grups", + "Manage Other Admins": "Gestionar altres administradors", + "Allow users to reset passwords and update emails.": "Permet restablir contrasenyes i actualitzar correus electrònics", + "Delete Admins": "Elimina els administradors", + "Preferences": "Preferències", + "Settings": "Configuració", + "Background Color": "Color de fons", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Permet als usuaris crear rols nous i editar o suprimir rols inferiors al seu rol més alt.", + "Save Changes": "Guardar canvis", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Aquest registre mostra una llista dels accessos d'administradors. Els registres es guarden durant :days dies.", + "Access Log": "Registre d'accés", + "View a list of successful back-end user sign ins.": "Veure una llista d'accessos correctes al panell.", + "ID": "ID", + "Date & Time": "Data i Hora", + "Type": "Tipus", + "IP address": "Adreça IP", + "Login": "Login", + "First name": "Nom", + "Last name": "Cognom", + "Email": "Email", + "Translated for locale: :value": "Traduït per localització: :value", + "Translated for site: :value": "Traduït per al lloc: :value", + "A custom schema is used for this file format.": "S'utilitza un esquema personalitzat per a aquest format de fitxer.", + "Select": "Seleccioneu", + "Replace": "Substitueix" } \ No newline at end of file diff --git a/modules/backend/lang/cs.json b/modules/backend/lang/cs.json index 49550d022e..cada2bfddd 100644 --- a/modules/backend/lang/cs.json +++ b/modules/backend/lang/cs.json @@ -1,104 +1,111 @@ { - "Cancel": "Zrušit", - "You are viewing as": "Prohlížíte si jako", - "Preview Role": "Náhled role", - "This lets you test the actions this role can perform.": "To vám umožní otestovat akce, které tato role může provádět.", - "View As Role": "Zobrazit jako roli", - "Return to Role Settings": "Návrat do nastavení rolí", - "Password must have a minimum of length of :min characters": "Heslo musí mít minimální délku :min znaků", - "Password must contain at least one uppercase character.": "Heslo musí obsahovat alespoň jedno velké písmeno.", - "Password must contain at least one lowercase character.": "Heslo musí obsahovat alespoň jedno malé písmeno.", - "Password must contain at least one number.": "Heslo musí obsahovat alespoň jedno číslo.", - "Password must contain at least one nonalphanumeric character.": "Heslo musí obsahovat alespoň jeden nealfanumerický znak.", - "Welcome to your Administration Area, :name": "Vítejte ve své administrativní oblasti, :name", - "Duplicate": "Duplikát", - "Expand": "Rozšířit", - "Collapse": "Kolaps", - "Move Up": "Posunout nahoru", - "Move Down": "Posunout dolů", - "Remove": "Odstranit", - "Manage Item": "Spravovat položku", - "Clear Filters": "Vymazat filtry", - "Filter Setup": "Nastavení filtru", - "Apply": "Aplikovat", - "Clear": "Vymazat", - "is equal to": "je rovný", - "is between": "je mezi", - "contains": "obsahuje", - "is before": "je dříve", - "is after": "je po", - "is greater than": "je větší než", - "is less than": "je méně než", - "1. Export output format": "1. Nastavit formát exportu", - "File Format": "Formát souboru", - "Delimiter Character": " Oddělovací znak", - "Enclosure Character": "Znak pro ohraničení (enclosure character)", - "Escape Character": "Uvozovací znak (escape character)", - "2. Select columns to export": "2. Vybrat exportované sloupce", - "Columns": "Sloupce", - "3. Set export options": "3. Nastavit vlastnosti importu", - "CSV Custom": "Vlastní", - "1. Upload an Import File": "1. Nahrajte CSV soubor", - "Import File": "Soubor pro import", - "File Encoding": "Kódování souboru", - "First row contains column titles": "První řádek obsahuje názvy sloupců", - "Leave this checked if the first row in the CSV is used as the column titles.": "Nechte zaškrtnuto, pokud první řádek obsahuje názvy sloupců.", - "2. Match the file columns to database fields": "2. Vytvořit vazbu mezi sloupci v souboru a v databázi", - "File columns": "Sloupce souboru", - "Database fields": "Sloupce v databázi", - "3. Set import options": "3. Nastavit vlastnosti importu", - "Export progress": "Průběh exportu", - "Processing": "Zpracovávám", - "Import progress": "Průběh importu", - "Import error": "Chyba importu", - "Export error": "Chyba exportu", - "Column preview": "Náhled sloupce", - "Column": "Sloupec", - "Disable": "Zakázat", - "Enable": "Umožnit", - "Delete": "Vymazat", - "Export": "Export", - "Import": "Import", - "Select Action": "Vyberte možnost Akce", - "Please create a new account for logging in to the Administration Area.": "Vytvořte si prosím nový účet pro přihlášení do Administrační oblasti.", - "First Name": "Jméno", - "Last Name": "Příjmení", - "Email Address": "Emailová adresa", - "Pick a Username": "Vyberte si uživatelské jméno", - "Enter New Password": "Zadejte nové heslo", - "Confirm Password": "Potvrďte heslo", - "Create Account": "Vytvořit účet", - "Getting Ready": "Připravovat se", - "Just a few more minutes": "Ještě pár minut", - "Migrating Database": "Migrace databáze", - "Access the Backend Panel": "Otevřete panel Backend", - "View Backend During Maintenance": "Zobrazit backend během údržby", - "Perform Software Updates": "Provádějte aktualizace softwaru", - "In Maintenance": "V údržbě", - "The site is currently in maintenance mode, please check back later.": "Stránka je momentálně v režimu údržby, vraťte se prosím později.", - "Dashboard": "Přístrojová deska", - "Administrators": "Správci", - "Manage Admins": "Spravovat administrátory", - "Create Admins": "Vytvořit správce", - "Moderate Admins": "Umírnění správci", - "Manage account suspension and ban admin accounts": "Spravujte pozastavení účtu a zakažte účty administrátorů", - "Manage Roles": "Správa rolí", - "Manage Groups": "Spravovat skupiny", - "Manage Other Admins": "Spravovat ostatní administrátory", - "Allow users to reset passwords and update emails.": "Umožňuje resetování hesel a aktualizaci e-mailů", - "Delete Admins": "Smazat správce", - "Preferences": "Předvolby", - "Settings": "Nastavení", - "Background Color": "Barva pozadí", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Umožněte uživatelům vytvářet nové role a upravovat nebo mazat role nižší, než je jejich nejvyšší role.", - "Save Changes": "Uložit změny", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Tento záznam zobrazuje seznam úspěšných přihlášení do administrace. Záznamy jsou uchovávány :days dní.", - "Access Log": "Protokol přístupů", - "View a list of successful back-end user sign ins.": "Zobrazit seznam úspěšných přihlášení do administrace.", - "Date & Time": "Datum & čas", - "IP address": "IP adresa", - "Login": "Login", - "First name": "Jméno", - "Last name": "Příjmení", - "Email": "E-mail" + "Cancel": "Zrušit", + "You are viewing as": "Prohlížíte si jako", + "Preview Role": "Náhled role", + "This lets you test the actions this role can perform.": "To vám umožní otestovat akce, které tato role může provádět.", + "View As Role": "Zobrazit jako roli", + "Return to Role Settings": "Návrat do nastavení rolí", + "Password must have a minimum of length of :min characters": "Heslo musí mít minimální délku :min znaků", + "Password must contain at least one uppercase character.": "Heslo musí obsahovat alespoň jedno velké písmeno.", + "Password must contain at least one lowercase character.": "Heslo musí obsahovat alespoň jedno malé písmeno.", + "Password must contain at least one number.": "Heslo musí obsahovat alespoň jedno číslo.", + "Password must contain at least one nonalphanumeric character.": "Heslo musí obsahovat alespoň jeden nealfanumerický znak.", + "Welcome to your Administration Area, :name": "Vítejte ve své administrativní oblasti, :name", + "Duplicate": "Duplikát", + "Expand": "Rozšířit", + "Collapse": "Kolaps", + "Move Up": "Posunout nahoru", + "Move Down": "Posunout dolů", + "Remove": "Odstranit", + "Manage Item": "Spravovat položku", + "Clear Filters": "Vymazat filtry", + "Filter Setup": "Nastavení filtru", + "Apply": "Aplikovat", + "Clear": "Vymazat", + "is equal to": "je rovný", + "is between": "je mezi", + "contains": "obsahuje", + "is before": "je dříve", + "is after": "je po", + "is greater than": "je větší než", + "is less than": "je méně než", + "1. Export output format": "1. Nastavit formát exportu", + "File Format": "Formát souboru", + "Delimiter Character": " Oddělovací znak", + "Enclosure Character": "Znak pro ohraničení (enclosure character)", + "Escape Character": "Uvozovací znak (escape character)", + "2. Select columns to export": "2. Vybrat exportované sloupce", + "Columns": "Sloupce", + "3. Set export options": "3. Nastavit vlastnosti importu", + "CSV Custom": "Vlastní", + "1. Upload an Import File": "1. Nahrajte CSV soubor", + "Import File": "Soubor pro import", + "File Encoding": "Kódování souboru", + "First row contains column titles": "První řádek obsahuje názvy sloupců", + "Leave this checked if the first row in the CSV is used as the column titles.": "Nechte zaškrtnuto, pokud první řádek obsahuje názvy sloupců.", + "2. Match the file columns to database fields": "2. Vytvořit vazbu mezi sloupci v souboru a v databázi", + "File columns": "Sloupce souboru", + "Database fields": "Sloupce v databázi", + "3. Set import options": "3. Nastavit vlastnosti importu", + "Export progress": "Průběh exportu", + "Processing": "Zpracovávám", + "Import progress": "Průběh importu", + "Import error": "Chyba importu", + "Export error": "Chyba exportu", + "Column preview": "Náhled sloupce", + "Column": "Sloupec", + "Disable": "Zakázat", + "Enable": "Umožnit", + "Delete": "Vymazat", + "Export": "Export", + "Import": "Import", + "Select Action": "Vyberte možnost Akce", + "Please create a new account for logging in to the Administration Area.": "Vytvořte si prosím nový účet pro přihlášení do Administrační oblasti.", + "First Name": "Jméno", + "Last Name": "Příjmení", + "Email Address": "Emailová adresa", + "Pick a Username": "Vyberte si uživatelské jméno", + "Enter New Password": "Zadejte nové heslo", + "Confirm Password": "Potvrďte heslo", + "Create Account": "Vytvořit účet", + "Getting Ready": "Připravovat se", + "Just a few more minutes": "Ještě pár minut", + "Migrating Database": "Migrace databáze", + "Access the Backend Panel": "Otevřete panel Backend", + "View Backend During Maintenance": "Zobrazit backend během údržby", + "Perform Software Updates": "Provádějte aktualizace softwaru", + "In Maintenance": "V údržbě", + "The site is currently in maintenance mode, please check back later.": "Stránka je momentálně v režimu údržby, vraťte se prosím později.", + "Dashboard": "Přístrojová deska", + "Administrators": "Správci", + "Manage Admins": "Spravovat administrátory", + "Create Admins": "Vytvořit správce", + "Moderate Admins": "Umírnění správci", + "Manage account suspension and ban admin accounts": "Spravujte pozastavení účtu a zakažte účty administrátorů", + "Manage Roles": "Správa rolí", + "Manage Groups": "Spravovat skupiny", + "Manage Other Admins": "Spravovat ostatní administrátory", + "Allow users to reset passwords and update emails.": "Umožňuje resetování hesel a aktualizaci e-mailů", + "Delete Admins": "Smazat správce", + "Preferences": "Předvolby", + "Settings": "Nastavení", + "Background Color": "Barva pozadí", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Umožněte uživatelům vytvářet nové role a upravovat nebo mazat role nižší, než je jejich nejvyšší role.", + "Save Changes": "Uložit změny", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Tento záznam zobrazuje seznam úspěšných přihlášení do administrace. Záznamy jsou uchovávány :days dní.", + "Access Log": "Protokol přístupů", + "View a list of successful back-end user sign ins.": "Zobrazit seznam úspěšných přihlášení do administrace.", + "ID": "ID", + "Date & Time": "Datum & čas", + "Type": "Typ", + "IP address": "IP adresa", + "Login": "Login", + "First name": "Jméno", + "Last name": "Příjmení", + "Email": "E-mail", + "Translated for locale: :value": "Přeloženo pro národní prostředí: :value", + "Translated for site: :value": "Přeloženo pro web: :value", + "A custom schema is used for this file format.": "Pro tento formát souboru se používá vlastní schéma.", + "Select": "Vybrat", + "Replace": "Nahradit" } \ No newline at end of file diff --git a/modules/backend/lang/da.json b/modules/backend/lang/da.json index f0f96d7d28..b11f0085cc 100644 --- a/modules/backend/lang/da.json +++ b/modules/backend/lang/da.json @@ -1,104 +1,111 @@ { - "Cancel": "Afbestille", - "You are viewing as": "Du ser som", - "Preview Role": "Forhåndsvisningsrolle", - "This lets you test the actions this role can perform.": "Dette lader dig teste de handlinger, som denne rolle kan udføre.", - "View As Role": "Se som rolle", - "Return to Role Settings": "Vend tilbage til rolleindstillinger", - "Password must have a minimum of length of :min characters": "Adgangskoden skal have en minimumslængde på :min tegn", - "Password must contain at least one uppercase character.": "Adgangskoden skal indeholde mindst ét stort tegn.", - "Password must contain at least one lowercase character.": "Adgangskoden skal indeholde mindst ét lille bogstav.", - "Password must contain at least one number.": "Kodeord skal indeholde mindst et tal.", - "Password must contain at least one nonalphanumeric character.": "Adgangskoden skal indeholde mindst ét ikke-alfanumerisk tegn.", - "Welcome to your Administration Area, :name": "Velkommen til dit administrationsområde, :name", - "Duplicate": "Duplikere", - "Expand": "Udvide", - "Collapse": "Falde sammen", - "Move Up": "Flyt op", - "Move Down": "Flyt ned", - "Remove": "Fjerne", - "Manage Item": "Administrer vare", - "Clear Filters": "Ryd filtre", - "Filter Setup": "Filteropsætning", - "Apply": "ansøge", - "Clear": "Klar", - "is equal to": "er lig med", - "is between": "er mellem", - "contains": "indeholder", - "is before": "er før", - "is after": "er efter", - "is greater than": "er større end", - "is less than": "er mindre end", - "1. Export output format": "1. Eksporter output format", - "File Format": "Filformat", - "Delimiter Character": "Adskillelseskarakter", - "Enclosure Character": "Indramningskarakter", - "Escape Character": "Escapekarakter", - "2. Select columns to export": "2. Vælg kolonner der skal eksporteres", - "Columns": "Kolonner", - "3. Set export options": "3. Sæt eksport indstillinger", - "CSV Custom": "CSV Custom", - "1. Upload an Import File": "1. Upload en CSV fil", - "Import File": "Importer fil", - "File Encoding": "Filindkodning", - "First row contains column titles": "Første række indeholder kolonnetitler", - "Leave this checked if the first row in the CSV is used as the column titles.": "Lad denne være krydset hvis første række i CSV filen er brugt til kolonnetitler.", - "2. Match the file columns to database fields": "2. Match the filkolonnerne til databasekolonner", - "File columns": "Filkolonner", - "Database fields": "Databasekolonner", - "3. Set import options": "3. Sæt import indstillinger", - "Export progress": "Eksporteringprocess", - "Processing": "Arbejder", - "Import progress": "Import progress", - "Import error": "Import fejl", - "Export error": "Eksporteringsfejl", - "Column preview": "Kolonne forhåndsvisning", - "Column": "Kolonne", - "Disable": "Deaktiver", - "Enable": "Aktiver", - "Delete": "Slet", - "Export": "Eksport", - "Import": "Importere", - "Select Action": "Vælg Handling", - "Please create a new account for logging in to the Administration Area.": "Opret en ny konto for at logge ind på administrationsområdet.", - "First Name": "Fornavn", - "Last Name": "Efternavn", - "Email Address": "Email adresse", - "Pick a Username": "Vælg et brugernavn", - "Enter New Password": "Indtast ny adgangskode", - "Confirm Password": "Bekræft kodeord", - "Create Account": "Opret konto", - "Getting Ready": "Gøre sig klar", - "Just a few more minutes": "Bare et par minutter mere", - "Migrating Database": "Migrering af database", - "Access the Backend Panel": "Få adgang til Backend-panelet", - "View Backend During Maintenance": "Se backend under vedligeholdelse", - "Perform Software Updates": "Udfør softwareopdateringer", - "In Maintenance": "Ved vedligeholdelse", - "The site is currently in maintenance mode, please check back later.": "Siden er i øjeblikket i vedligeholdelsestilstand, tjek venligst tilbage senere.", - "Dashboard": "Dashboard", - "Administrators": "Administratorer", - "Manage Admins": "Administrer administratorer", - "Create Admins": "Opret administratorer", - "Moderate Admins": "Moderate administratorer", - "Manage account suspension and ban admin accounts": "Administrer kontosuspendering og udelukk administratorkonti", - "Manage Roles": "Administrer roller", - "Manage Groups": "Administrer grupper", - "Manage Other Admins": "Administrer andre administratorer", - "Allow users to reset passwords and update emails.": "Tillader nulstilling af adgangskoder og opdatering af e-mails", - "Delete Admins": "Slet administratorer", - "Preferences": "Præferencer", - "Settings": "Indstillinger", - "Background Color": "Baggrundsfarve", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Tillad brugere at oprette nye roller og redigere eller slette roller lavere end deres højeste rolle.", - "Save Changes": "Gem ændringer", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Denne log viser en liste af successfulde administratorlogins. Records bliver gemt i :days dage.", - "Access Log": "Access log", - "View a list of successful back-end user sign ins.": "Se en liste af successfulde backendbruger logins.", - "Date & Time": "Dato & Tid", - "IP address": "IP addresse", - "Login": "Login", - "First name": "Fornavn", - "Last name": "Efternavn", - "Email": "Email" + "Cancel": "Afbestille", + "You are viewing as": "Du ser som", + "Preview Role": "Forhåndsvisningsrolle", + "This lets you test the actions this role can perform.": "Dette lader dig teste de handlinger, som denne rolle kan udføre.", + "View As Role": "Se som rolle", + "Return to Role Settings": "Vend tilbage til rolleindstillinger", + "Password must have a minimum of length of :min characters": "Adgangskoden skal have en minimumslængde på :min tegn", + "Password must contain at least one uppercase character.": "Adgangskoden skal indeholde mindst ét stort tegn.", + "Password must contain at least one lowercase character.": "Adgangskoden skal indeholde mindst ét lille bogstav.", + "Password must contain at least one number.": "Kodeord skal indeholde mindst et tal.", + "Password must contain at least one nonalphanumeric character.": "Adgangskoden skal indeholde mindst ét ikke-alfanumerisk tegn.", + "Welcome to your Administration Area, :name": "Velkommen til dit administrationsområde, :name", + "Duplicate": "Duplikere", + "Expand": "Udvide", + "Collapse": "Falde sammen", + "Move Up": "Flyt op", + "Move Down": "Flyt ned", + "Remove": "Fjerne", + "Manage Item": "Administrer vare", + "Clear Filters": "Ryd filtre", + "Filter Setup": "Filteropsætning", + "Apply": "ansøge", + "Clear": "Klar", + "is equal to": "er lig med", + "is between": "er mellem", + "contains": "indeholder", + "is before": "er før", + "is after": "er efter", + "is greater than": "er større end", + "is less than": "er mindre end", + "1. Export output format": "1. Eksporter output format", + "File Format": "Filformat", + "Delimiter Character": "Adskillelseskarakter", + "Enclosure Character": "Indramningskarakter", + "Escape Character": "Escapekarakter", + "2. Select columns to export": "2. Vælg kolonner der skal eksporteres", + "Columns": "Kolonner", + "3. Set export options": "3. Sæt eksport indstillinger", + "CSV Custom": "CSV Custom", + "1. Upload an Import File": "1. Upload en CSV fil", + "Import File": "Importer fil", + "File Encoding": "Filindkodning", + "First row contains column titles": "Første række indeholder kolonnetitler", + "Leave this checked if the first row in the CSV is used as the column titles.": "Lad denne være krydset hvis første række i CSV filen er brugt til kolonnetitler.", + "2. Match the file columns to database fields": "2. Match the filkolonnerne til databasekolonner", + "File columns": "Filkolonner", + "Database fields": "Databasekolonner", + "3. Set import options": "3. Sæt import indstillinger", + "Export progress": "Eksporteringprocess", + "Processing": "Arbejder", + "Import progress": "Import progress", + "Import error": "Import fejl", + "Export error": "Eksporteringsfejl", + "Column preview": "Kolonne forhåndsvisning", + "Column": "Kolonne", + "Disable": "Deaktiver", + "Enable": "Aktiver", + "Delete": "Slet", + "Export": "Eksport", + "Import": "Importere", + "Select Action": "Vælg Handling", + "Please create a new account for logging in to the Administration Area.": "Opret en ny konto for at logge ind på administrationsområdet.", + "First Name": "Fornavn", + "Last Name": "Efternavn", + "Email Address": "Email adresse", + "Pick a Username": "Vælg et brugernavn", + "Enter New Password": "Indtast ny adgangskode", + "Confirm Password": "Bekræft kodeord", + "Create Account": "Opret konto", + "Getting Ready": "Gøre sig klar", + "Just a few more minutes": "Bare et par minutter mere", + "Migrating Database": "Migrering af database", + "Access the Backend Panel": "Få adgang til Backend-panelet", + "View Backend During Maintenance": "Se backend under vedligeholdelse", + "Perform Software Updates": "Udfør softwareopdateringer", + "In Maintenance": "Ved vedligeholdelse", + "The site is currently in maintenance mode, please check back later.": "Siden er i øjeblikket i vedligeholdelsestilstand, tjek venligst tilbage senere.", + "Dashboard": "Dashboard", + "Administrators": "Administratorer", + "Manage Admins": "Administrer administratorer", + "Create Admins": "Opret administratorer", + "Moderate Admins": "Moderate administratorer", + "Manage account suspension and ban admin accounts": "Administrer kontosuspendering og udelukk administratorkonti", + "Manage Roles": "Administrer roller", + "Manage Groups": "Administrer grupper", + "Manage Other Admins": "Administrer andre administratorer", + "Allow users to reset passwords and update emails.": "Tillader nulstilling af adgangskoder og opdatering af e-mails", + "Delete Admins": "Slet administratorer", + "Preferences": "Præferencer", + "Settings": "Indstillinger", + "Background Color": "Baggrundsfarve", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Tillad brugere at oprette nye roller og redigere eller slette roller lavere end deres højeste rolle.", + "Save Changes": "Gem ændringer", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Denne log viser en liste af successfulde administratorlogins. Records bliver gemt i :days dage.", + "Access Log": "Access log", + "View a list of successful back-end user sign ins.": "Se en liste af successfulde backendbruger logins.", + "ID": "ID", + "Date & Time": "Dato & Tid", + "Type": "Type", + "IP address": "IP addresse", + "Login": "Login", + "First name": "Fornavn", + "Last name": "Efternavn", + "Email": "Email", + "Translated for locale: :value": "Oversat til lokalitet: :value", + "Translated for site: :value": "Oversat til site: :value", + "A custom schema is used for this file format.": "Et brugerdefineret skema bruges til dette filformat.", + "Select": "Vælg", + "Replace": "Erstatte" } \ No newline at end of file diff --git a/modules/backend/lang/de.json b/modules/backend/lang/de.json index a0f9b0c1e4..1a2538205f 100644 --- a/modules/backend/lang/de.json +++ b/modules/backend/lang/de.json @@ -1,104 +1,111 @@ { - "Cancel": "Abbrechen", - "You are viewing as": "Sie sehen als", - "Preview Role": "Vorschau der Rolle", - "This lets you test the actions this role can perform.": "Auf diese Weise können Sie die Aktionen testen, die diese Rolle ausführen kann.", - "View As Role": "Als Rolle ansehen", - "Return to Role Settings": "Zurück zu den Rolleneinstellungen", - "Password must have a minimum of length of :min characters": "Das Passwort muss eine Mindestlänge von :min Zeichen haben", - "Password must contain at least one uppercase character.": "Das Kennwort muss mindestens einen Großbuchstaben enthalten.", - "Password must contain at least one lowercase character.": "Das Passwort muss mindestens einen Kleinbuchstaben enthalten.", - "Password must contain at least one number.": "Das Passwort muss mindestens eine Ziffer enthalten.", - "Password must contain at least one nonalphanumeric character.": "Das Kennwort muss mindestens ein nicht alphanumerisches Zeichen enthalten.", - "Welcome to your Administration Area, :name": "Willkommen in Ihrem Administrationsbereich, :name", - "Duplicate": "Duplizieren", - "Expand": "Aufklappen", - "Collapse": "Einklappen", - "Move Up": "Nach oben", - "Move Down": "Nach unten", - "Remove": "Entfernen", - "Manage Item": "Artikel verwalten", - "Clear Filters": "Filter leeren", - "Filter Setup": "Filtereinrichtung", - "Apply": "Anwenden", - "Clear": "Zurücksetzen", - "is equal to": "ist gleich", - "is between": "ist zwischen", - "contains": "enthält", - "is before": "ist vor", - "is after": "ist danach", - "is greater than": "ist größer als", - "is less than": "ist weniger als", - "1. Export output format": "1. Exportformat wählen", - "File Format": "Dateiformat", - "Delimiter Character": "Trennzeichen", - "Enclosure Character": "Textqualifizierer", - "Escape Character": "Escape-Zeichen", - "2. Select columns to export": "2. Spalten für den Export auswählen", - "Columns": "Spalten", - "3. Set export options": "3. Exportoptionen festlegen", - "CSV Custom": "Benutzerdefiniertes Format", - "1. Upload an Import File": "1. CSV-Datei hochladen", - "Import File": "Datei importieren", - "File Encoding": "Datei encoding", - "First row contains column titles": "Erste Zeile enthält Spaltentitel", - "Leave this checked if the first row in the CSV is used as the column titles.": "Aktiviert lassen, falls erste Zeile Spaltentitel enthält.", - "2. Match the file columns to database fields": "2. Spalten der Datei den Datenbankfeldern zuordnen", - "File columns": "Spalten der Datei", - "Database fields": "Datenbankfelder", - "3. Set import options": "3. Importoptionen festlegen", - "Export progress": "Export-Fortschritt", - "Processing": "Verarbeite", - "Import progress": "Import-Fortschritt", - "Import error": "Import-Fehler", - "Export error": "Export-Fehler", - "Column preview": "Spaltenvorschau", - "Column": "Spalte", - "Disable": "Deaktivieren", - "Enable": "Aktivieren", - "Delete": "Löschen", - "Export": "Export", - "Import": "Import", - "Select Action": "Aktion auswählen", - "Please create a new account for logging in to the Administration Area.": "Bitte erstellen Sie ein neues Konto, um sich im Administrationsbereich anzumelden.", - "First Name": "Vorname", - "Last Name": "Nachname", - "Email Address": "E-Mail-Addresse", - "Pick a Username": "Wählen Sie einen Benutzernamen", - "Enter New Password": "Neues Passwort eingeben", - "Confirm Password": "Bestätigen Sie das Passwort", - "Create Account": "Benutzerkonto anlegen", - "Getting Ready": "Abschluss", - "Just a few more minutes": "Nur noch ein paar Minuten", - "Migrating Database": "Datenbank migrieren", - "Access the Backend Panel": "Greifen Sie auf das Backend-Panel zu", - "View Backend During Maintenance": "Backend während der Wartung anzeigen", - "Perform Software Updates": "Führen Sie Software-Updates durch", - "In Maintenance": "In Wartung", - "The site is currently in maintenance mode, please check back later.": "Die Seite befindet sich derzeit im Wartungsmodus, bitte versuchen Sie es später erneut.", - "Dashboard": "Dashboard", - "Administrators": "Administratoren", - "Manage Admins": "Administratoren verwalten", - "Create Admins": "Administratoren erstellen", - "Moderate Admins": "Moderierte Administratoren", - "Manage account suspension and ban admin accounts": "Verwalten Sie die Kontosperrung und sperren Sie Administratorkonten", - "Manage Roles": "Rollen verwalten", - "Manage Groups": "Gruppen verwalten", - "Manage Other Admins": "Andere Administratoren verwalten", - "Allow users to reset passwords and update emails.": "Ermöglicht das Zurücksetzen von Passwörtern und das Aktualisieren von E-Mails", - "Delete Admins": "Administratoren löschen", - "Preferences": "Einstellungen", - "Settings": "Einstellungen", - "Background Color": "Hintergrundfarbe", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Erlauben Sie Benutzern, neue Rollen zu erstellen und Rollen zu bearbeiten oder zu löschen, die niedriger als ihre höchste Rolle sind.", - "Save Changes": "Änderungen speichern", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Dieses Log zeigt eine Liste mit erfolgreichen Anmelde-Versuchen von Administratoren. Die Aufzeichnungen bleiben erhalten für :days Tage.", - "Access Log": "Zugriffslog", - "View a list of successful back-end user sign ins.": "Sehen Sie sich eine Liste mit erfolgreichen Backend Benutzeranmeldungen an.", - "Date & Time": "Datum & Uhrzeit", - "IP address": "IP Adresse", - "Login": "Anmeldung", - "First name": "Vorname", - "Last name": "Nachname", - "Email": "E-Mail" + "Cancel": "Abbrechen", + "You are viewing as": "Sie sehen als", + "Preview Role": "Vorschau der Rolle", + "This lets you test the actions this role can perform.": "Auf diese Weise können Sie die Aktionen testen, die diese Rolle ausführen kann.", + "View As Role": "Als Rolle ansehen", + "Return to Role Settings": "Zurück zu den Rolleneinstellungen", + "Password must have a minimum of length of :min characters": "Das Passwort muss eine Mindestlänge von :min Zeichen haben", + "Password must contain at least one uppercase character.": "Das Kennwort muss mindestens einen Großbuchstaben enthalten.", + "Password must contain at least one lowercase character.": "Das Passwort muss mindestens einen Kleinbuchstaben enthalten.", + "Password must contain at least one number.": "Das Passwort muss mindestens eine Ziffer enthalten.", + "Password must contain at least one nonalphanumeric character.": "Das Kennwort muss mindestens ein nicht alphanumerisches Zeichen enthalten.", + "Welcome to your Administration Area, :name": "Willkommen in Ihrem Administrationsbereich, :name", + "Duplicate": "Duplizieren", + "Expand": "Aufklappen", + "Collapse": "Einklappen", + "Move Up": "Nach oben", + "Move Down": "Nach unten", + "Remove": "Entfernen", + "Manage Item": "Artikel verwalten", + "Clear Filters": "Filter leeren", + "Filter Setup": "Filtereinrichtung", + "Apply": "Anwenden", + "Clear": "Zurücksetzen", + "is equal to": "ist gleich", + "is between": "ist zwischen", + "contains": "enthält", + "is before": "ist vor", + "is after": "ist danach", + "is greater than": "ist größer als", + "is less than": "ist weniger als", + "1. Export output format": "1. Exportformat wählen", + "File Format": "Dateiformat", + "Delimiter Character": "Trennzeichen", + "Enclosure Character": "Textqualifizierer", + "Escape Character": "Escape-Zeichen", + "2. Select columns to export": "2. Spalten für den Export auswählen", + "Columns": "Spalten", + "3. Set export options": "3. Exportoptionen festlegen", + "CSV Custom": "Benutzerdefiniertes Format", + "1. Upload an Import File": "1. CSV-Datei hochladen", + "Import File": "Datei importieren", + "File Encoding": "Datei encoding", + "First row contains column titles": "Erste Zeile enthält Spaltentitel", + "Leave this checked if the first row in the CSV is used as the column titles.": "Aktiviert lassen, falls erste Zeile Spaltentitel enthält.", + "2. Match the file columns to database fields": "2. Spalten der Datei den Datenbankfeldern zuordnen", + "File columns": "Spalten der Datei", + "Database fields": "Datenbankfelder", + "3. Set import options": "3. Importoptionen festlegen", + "Export progress": "Export-Fortschritt", + "Processing": "Verarbeite", + "Import progress": "Import-Fortschritt", + "Import error": "Import-Fehler", + "Export error": "Export-Fehler", + "Column preview": "Spaltenvorschau", + "Column": "Spalte", + "Disable": "Deaktivieren", + "Enable": "Aktivieren", + "Delete": "Löschen", + "Export": "Export", + "Import": "Import", + "Select Action": "Aktion auswählen", + "Please create a new account for logging in to the Administration Area.": "Bitte erstellen Sie ein neues Konto, um sich im Administrationsbereich anzumelden.", + "First Name": "Vorname", + "Last Name": "Nachname", + "Email Address": "E-Mail-Addresse", + "Pick a Username": "Wählen Sie einen Benutzernamen", + "Enter New Password": "Neues Passwort eingeben", + "Confirm Password": "Bestätigen Sie das Passwort", + "Create Account": "Benutzerkonto anlegen", + "Getting Ready": "Abschluss", + "Just a few more minutes": "Nur noch ein paar Minuten", + "Migrating Database": "Datenbank migrieren", + "Access the Backend Panel": "Greifen Sie auf das Backend-Panel zu", + "View Backend During Maintenance": "Backend während der Wartung anzeigen", + "Perform Software Updates": "Führen Sie Software-Updates durch", + "In Maintenance": "In Wartung", + "The site is currently in maintenance mode, please check back later.": "Die Seite befindet sich derzeit im Wartungsmodus, bitte versuchen Sie es später erneut.", + "Dashboard": "Dashboard", + "Administrators": "Administratoren", + "Manage Admins": "Administratoren verwalten", + "Create Admins": "Administratoren erstellen", + "Moderate Admins": "Moderierte Administratoren", + "Manage account suspension and ban admin accounts": "Verwalten Sie die Kontosperrung und sperren Sie Administratorkonten", + "Manage Roles": "Rollen verwalten", + "Manage Groups": "Gruppen verwalten", + "Manage Other Admins": "Andere Administratoren verwalten", + "Allow users to reset passwords and update emails.": "Ermöglicht das Zurücksetzen von Passwörtern und das Aktualisieren von E-Mails", + "Delete Admins": "Administratoren löschen", + "Preferences": "Einstellungen", + "Settings": "Einstellungen", + "Background Color": "Hintergrundfarbe", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Erlauben Sie Benutzern, neue Rollen zu erstellen und Rollen zu bearbeiten oder zu löschen, die niedriger als ihre höchste Rolle sind.", + "Save Changes": "Änderungen speichern", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Dieses Log zeigt eine Liste mit erfolgreichen Anmelde-Versuchen von Administratoren. Die Aufzeichnungen bleiben erhalten für :days Tage.", + "Access Log": "Zugriffslog", + "View a list of successful back-end user sign ins.": "Sehen Sie sich eine Liste mit erfolgreichen Backend Benutzeranmeldungen an.", + "ID": "ICH WÜRDE", + "Date & Time": "Datum & Uhrzeit", + "Type": "Typ", + "IP address": "IP Adresse", + "Login": "Anmeldung", + "First name": "Vorname", + "Last name": "Nachname", + "Email": "E-Mail", + "Translated for locale: :value": "Übersetzt für Gebietsschema: :value", + "Translated for site: :value": "Übersetzt für site: :value", + "A custom schema is used for this file format.": "Für dieses Dateiformat wird ein benutzerdefiniertes Schema verwendet.", + "Select": "Auswählen", + "Replace": "Ersetzen" } \ No newline at end of file diff --git a/modules/backend/lang/de/lang.php b/modules/backend/lang/de/lang.php index 525eaf51f5..dfa067fd63 100644 --- a/modules/backend/lang/de/lang.php +++ b/modules/backend/lang/de/lang.php @@ -201,14 +201,15 @@ 'last_page' => 'Letzte Seite', 'prev_page' => 'Vorherige Seite', 'next_page' => 'Nächste Seite', - 'refresh' => 'Erneuern', + 'refresh' => 'Aktualisieren', 'updating' => 'Aktualisiere...', 'loading' => 'Laden...', 'setup_title' => 'Listen Setup', 'setup_help' => 'Benutzen Sie Checkboxen, um Spalten auszuwählen, welche Sie in den Listen sehen möchten. Sie können die Position der Spalten ändern, indem Sie diese hinauf oder hinunter ziehen.', 'records_per_page' => 'Aufzeichnungen pro Seite', 'records_per_page_help' => 'Wählen Sie, wieviele Aufzeichnungen pro Seite dargestellt werden sollen. Bitte beachten Sie, dass eine hohe Anzahl pro Seite die Performance negativ beeinflussen kann.', - 'check' => 'Gesetzt', + 'check' => 'Auswählen', + 'create_button' => ':name erstellen', 'delete_selected' => 'Markierte löschen', 'delete_selected_empty' => 'Keine Einträge zum Löschen markiert.', 'delete_selected_confirm' => 'Markierte Einträge löschen?', diff --git a/modules/backend/lang/el.json b/modules/backend/lang/el.json index cb6bccd0a1..1b7007bbec 100644 --- a/modules/backend/lang/el.json +++ b/modules/backend/lang/el.json @@ -1,104 +1,111 @@ { - "Cancel": "Ματαίωση", - "You are viewing as": "Προβάλλετε ως", - "Preview Role": "Ρόλος προεπισκόπησης", - "This lets you test the actions this role can perform.": "Αυτό σας επιτρέπει να δοκιμάσετε τις ενέργειες που μπορεί να εκτελέσει αυτός ο ρόλος.", - "View As Role": "Προβολή ως ρόλος", - "Return to Role Settings": "Επιστρέψτε στις Ρυθμίσεις Ρόλων", - "Password must have a minimum of length of :min characters": "Ο κωδικός πρόσβασης πρέπει να έχει ελάχιστο μήκος :min χαρακτήρων", - "Password must contain at least one uppercase character.": "Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον έναν κεφαλαίο χαρακτήρα.", - "Password must contain at least one lowercase character.": "Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον έναν πεζό χαρακτήρα.", - "Password must contain at least one number.": "Ο κωδικός πρέπει να περιέχει τουλάχιστον έναν αριθμό.", - "Password must contain at least one nonalphanumeric character.": "Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον έναν μη αλφαριθμητικό χαρακτήρα.", - "Welcome to your Administration Area, :name": "Καλώς ορίσατε στην περιοχή διαχείρισης, :name", - "Duplicate": "Αντίγραφο", - "Expand": "Επεκτείνουν", - "Collapse": "Κατάρρευση", - "Move Up": "Μετακίνηση επάνω", - "Move Down": "Μετακινηθείτε προς τα κάτω", - "Remove": "Αφαιρώ", - "Manage Item": "Διαχείριση αντικειμένου", - "Clear Filters": "Διαγραφή φίλτρων", - "Filter Setup": "Ρύθμιση φίλτρου", - "Apply": "Ισχύουν", - "Clear": "Σαφή", - "is equal to": "είναι ίσο με", - "is between": "είναι μεταξύ", - "contains": "περιέχει", - "is before": "είναι πριν", - "is after": "είναι μετά", - "is greater than": "είναι μεγαλύτερο από", - "is less than": "είναι λιγότερο από", - "1. Export output format": "1. Μορφή τύπου εξόδου", - "File Format": "Μορφή αρχείου", - "Delimiter Character": "Χαρακτήρας Διαχωριστικού", - "Enclosure Character": "Χαρακτήρας Enclosure", - "Escape Character": "Χαρακτήρας Escape", - "2. Select columns to export": "2. Επιλέξτε τις στήλες που θα εξαχθούν", - "Columns": "Στήλες", - "3. Set export options": "3. Ορισμός επιλογών εξαγωγής", - "CSV Custom": "Προσαρμοσμένη μορφή", - "1. Upload an Import File": "1. Ανέβασμα ενός CSV αρχείου", - "Import File": "Εισαγωγή αρχείου", - "File Encoding": "Κωδικοποίηση αρχείου", - "First row contains column titles": "Η πρώτη γραμμή περιέχει τους τίτλούς των στηλων", - "Leave this checked if the first row in the CSV is used as the column titles.": "Αφήστε το αυτό επιλεγμένο εάν η πρώτη γραμμή στο CSV χρησιμοποιείται για τον τίτλο των στηλών.", - "2. Match the file columns to database fields": "2. Αντιστοίχιση των στηλών του αρχείου με τα πεδία στην βάση δεδομένων", - "File columns": "Στήλες αρχείου", - "Database fields": "Πεδία βάσης δεδομένων", - "3. Set import options": "3. Ορισμός επίλογων εισαγωγής", - "Export progress": "Πρόοδος εξαγωγής", - "Processing": "Επεξεργασία", - "Import progress": "Πρόοδός εισαγωγής", - "Import error": "Λάθος εισαγωγής", - "Export error": "Εξαγωγή λάθους", - "Column preview": "Προεπισκόπηση στήλης", - "Column": "Στήλη", - "Disable": "Καθιστώ ανίκανο", - "Enable": "επιτρέπω", - "Delete": "Διαγράφω", - "Export": "Εξαγωγή", - "Import": "Εισαγωγή", - "Select Action": "Επιλέξτε Ενέργεια", - "Please create a new account for logging in to the Administration Area.": "Δημιουργήστε έναν νέο λογαριασμό για να συνδεθείτε στην περιοχή διαχείρισης.", - "First Name": "Ονομα", - "Last Name": "Επίθετο", - "Email Address": "Διεύθυνση ηλεκτρονικού ταχυδρομείου", - "Pick a Username": "ΔΙΑΛΕΞΕ ΟΝΟΜΑ ΧΡΗΣΤΗ", - "Enter New Password": "Εισάγετε νέο κωδικό", - "Confirm Password": "Επιβεβαίωση Κωδικού", - "Create Account": "Δημιουργήστε λογαριασμό", - "Getting Ready": "Ετοιμάζομαι", - "Just a few more minutes": "Λίγα λεπτά ακόμα", - "Migrating Database": "Μετανάστευση βάσης δεδομένων", - "Access the Backend Panel": "Πρόσβαση στον πίνακα υποστήριξης", - "View Backend During Maintenance": "Προβολή Backend κατά τη διάρκεια της συντήρησης", - "Perform Software Updates": "Εκτελέστε ενημερώσεις λογισμικού", - "In Maintenance": "Στη Συντήρηση", - "The site is currently in maintenance mode, please check back later.": "Ο ιστότοπος βρίσκεται σε λειτουργία συντήρησης, ελέγξτε ξανά αργότερα.", - "Dashboard": "Ταμπλό", - "Administrators": "Διαχειριστές", - "Manage Admins": "Διαχείριση Διαχειριστών", - "Create Admins": "Δημιουργία διαχειριστών", - "Moderate Admins": "Μέτριοι Διαχειριστές", - "Manage account suspension and ban admin accounts": "Διαχείριση αναστολής λογαριασμού και αποκλεισμός λογαριασμών διαχειριστή", - "Manage Roles": "Διαχείριση ρόλων", - "Manage Groups": "Διαχείριση ομάδων", - "Manage Other Admins": "Διαχείριση άλλων διαχειριστών", - "Allow users to reset passwords and update emails.": "Επιτρέπει την επαναφορά κωδικών πρόσβασης και την ενημέρωση email", - "Delete Admins": "Διαγραφή διαχειριστών", - "Preferences": "Προτιμήσεις", - "Settings": "Ρυθμίσεις", - "Background Color": "Χρώμα του φόντου", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Να επιτρέπεται στους χρήστες να δημιουργούν νέους ρόλους και να επεξεργάζονται ή να διαγράφουν ρόλους χαμηλότερους από τον υψηλότερο ρόλο τους.", - "Save Changes": "Αποθήκευσε τις αλλαγές", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Αυτό το αρχείο εμφανίζει μια λίστα με τις επιτυχημένες προσπάθειες σύνδεσης από τους διαχειριστές. Οι εγγραφές διατηρούνται για :days ημέρες.", - "Access Log": "Αρχείο καταγραφής προσβάσεων", - "View a list of successful back-end user sign ins.": "Λίστα με τις επιτυχημένες προσβάσεις στο back-end.", - "Date & Time": "Ημερομηνία & Ώρα", - "IP address": "Διεύθυνση IP", - "Login": "Σύνδεση", - "First name": "Όνομα", - "Last name": "Επώνυμο", - "Email": "Email" + "Cancel": "Ματαίωση", + "You are viewing as": "Προβάλλετε ως", + "Preview Role": "Ρόλος προεπισκόπησης", + "This lets you test the actions this role can perform.": "Αυτό σας επιτρέπει να δοκιμάσετε τις ενέργειες που μπορεί να εκτελέσει αυτός ο ρόλος.", + "View As Role": "Προβολή ως ρόλος", + "Return to Role Settings": "Επιστρέψτε στις Ρυθμίσεις Ρόλων", + "Password must have a minimum of length of :min characters": "Ο κωδικός πρόσβασης πρέπει να έχει ελάχιστο μήκος :min χαρακτήρων", + "Password must contain at least one uppercase character.": "Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον έναν κεφαλαίο χαρακτήρα.", + "Password must contain at least one lowercase character.": "Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον έναν πεζό χαρακτήρα.", + "Password must contain at least one number.": "Ο κωδικός πρέπει να περιέχει τουλάχιστον έναν αριθμό.", + "Password must contain at least one nonalphanumeric character.": "Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον έναν μη αλφαριθμητικό χαρακτήρα.", + "Welcome to your Administration Area, :name": "Καλώς ορίσατε στην περιοχή διαχείρισης, :name", + "Duplicate": "Αντίγραφο", + "Expand": "Επεκτείνουν", + "Collapse": "Κατάρρευση", + "Move Up": "Μετακίνηση επάνω", + "Move Down": "Μετακινηθείτε προς τα κάτω", + "Remove": "Αφαιρώ", + "Manage Item": "Διαχείριση αντικειμένου", + "Clear Filters": "Διαγραφή φίλτρων", + "Filter Setup": "Ρύθμιση φίλτρου", + "Apply": "Ισχύουν", + "Clear": "Σαφή", + "is equal to": "είναι ίσο με", + "is between": "είναι μεταξύ", + "contains": "περιέχει", + "is before": "είναι πριν", + "is after": "είναι μετά", + "is greater than": "είναι μεγαλύτερο από", + "is less than": "είναι λιγότερο από", + "1. Export output format": "1. Μορφή τύπου εξόδου", + "File Format": "Μορφή αρχείου", + "Delimiter Character": "Χαρακτήρας Διαχωριστικού", + "Enclosure Character": "Χαρακτήρας Enclosure", + "Escape Character": "Χαρακτήρας Escape", + "2. Select columns to export": "2. Επιλέξτε τις στήλες που θα εξαχθούν", + "Columns": "Στήλες", + "3. Set export options": "3. Ορισμός επιλογών εξαγωγής", + "CSV Custom": "Προσαρμοσμένη μορφή", + "1. Upload an Import File": "1. Ανέβασμα ενός CSV αρχείου", + "Import File": "Εισαγωγή αρχείου", + "File Encoding": "Κωδικοποίηση αρχείου", + "First row contains column titles": "Η πρώτη γραμμή περιέχει τους τίτλούς των στηλων", + "Leave this checked if the first row in the CSV is used as the column titles.": "Αφήστε το αυτό επιλεγμένο εάν η πρώτη γραμμή στο CSV χρησιμοποιείται για τον τίτλο των στηλών.", + "2. Match the file columns to database fields": "2. Αντιστοίχιση των στηλών του αρχείου με τα πεδία στην βάση δεδομένων", + "File columns": "Στήλες αρχείου", + "Database fields": "Πεδία βάσης δεδομένων", + "3. Set import options": "3. Ορισμός επίλογων εισαγωγής", + "Export progress": "Πρόοδος εξαγωγής", + "Processing": "Επεξεργασία", + "Import progress": "Πρόοδός εισαγωγής", + "Import error": "Λάθος εισαγωγής", + "Export error": "Εξαγωγή λάθους", + "Column preview": "Προεπισκόπηση στήλης", + "Column": "Στήλη", + "Disable": "Καθιστώ ανίκανο", + "Enable": "επιτρέπω", + "Delete": "Διαγράφω", + "Export": "Εξαγωγή", + "Import": "Εισαγωγή", + "Select Action": "Επιλέξτε Ενέργεια", + "Please create a new account for logging in to the Administration Area.": "Δημιουργήστε έναν νέο λογαριασμό για να συνδεθείτε στην περιοχή διαχείρισης.", + "First Name": "Ονομα", + "Last Name": "Επίθετο", + "Email Address": "Διεύθυνση ηλεκτρονικού ταχυδρομείου", + "Pick a Username": "ΔΙΑΛΕΞΕ ΟΝΟΜΑ ΧΡΗΣΤΗ", + "Enter New Password": "Εισάγετε νέο κωδικό", + "Confirm Password": "Επιβεβαίωση Κωδικού", + "Create Account": "Δημιουργήστε λογαριασμό", + "Getting Ready": "Ετοιμάζομαι", + "Just a few more minutes": "Λίγα λεπτά ακόμα", + "Migrating Database": "Μετανάστευση βάσης δεδομένων", + "Access the Backend Panel": "Πρόσβαση στον πίνακα υποστήριξης", + "View Backend During Maintenance": "Προβολή Backend κατά τη διάρκεια της συντήρησης", + "Perform Software Updates": "Εκτελέστε ενημερώσεις λογισμικού", + "In Maintenance": "Στη Συντήρηση", + "The site is currently in maintenance mode, please check back later.": "Ο ιστότοπος βρίσκεται σε λειτουργία συντήρησης, ελέγξτε ξανά αργότερα.", + "Dashboard": "Ταμπλό", + "Administrators": "Διαχειριστές", + "Manage Admins": "Διαχείριση Διαχειριστών", + "Create Admins": "Δημιουργία διαχειριστών", + "Moderate Admins": "Μέτριοι Διαχειριστές", + "Manage account suspension and ban admin accounts": "Διαχείριση αναστολής λογαριασμού και αποκλεισμός λογαριασμών διαχειριστή", + "Manage Roles": "Διαχείριση ρόλων", + "Manage Groups": "Διαχείριση ομάδων", + "Manage Other Admins": "Διαχείριση άλλων διαχειριστών", + "Allow users to reset passwords and update emails.": "Επιτρέπει την επαναφορά κωδικών πρόσβασης και την ενημέρωση email", + "Delete Admins": "Διαγραφή διαχειριστών", + "Preferences": "Προτιμήσεις", + "Settings": "Ρυθμίσεις", + "Background Color": "Χρώμα του φόντου", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Να επιτρέπεται στους χρήστες να δημιουργούν νέους ρόλους και να επεξεργάζονται ή να διαγράφουν ρόλους χαμηλότερους από τον υψηλότερο ρόλο τους.", + "Save Changes": "Αποθήκευσε τις αλλαγές", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Αυτό το αρχείο εμφανίζει μια λίστα με τις επιτυχημένες προσπάθειες σύνδεσης από τους διαχειριστές. Οι εγγραφές διατηρούνται για :days ημέρες.", + "Access Log": "Αρχείο καταγραφής προσβάσεων", + "View a list of successful back-end user sign ins.": "Λίστα με τις επιτυχημένες προσβάσεις στο back-end.", + "ID": "ταυτότητα", + "Date & Time": "Ημερομηνία & Ώρα", + "Type": "Τύπος", + "IP address": "Διεύθυνση IP", + "Login": "Σύνδεση", + "First name": "Όνομα", + "Last name": "Επώνυμο", + "Email": "Email", + "Translated for locale: :value": "Μεταφράστηκε για τοπικές ρυθμίσεις: :value", + "Translated for site: :value": "Μεταφράστηκε για τον ιστότοπο: :value", + "A custom schema is used for this file format.": "Για αυτήν τη μορφή αρχείου χρησιμοποιείται ένα προσαρμοσμένο σχήμα.", + "Select": "Επιλέγω", + "Replace": "Αντικαθιστώ" } \ No newline at end of file diff --git a/modules/backend/lang/en.json b/modules/backend/lang/en.json index 26c622a62c..5b22ec6398 100644 --- a/modules/backend/lang/en.json +++ b/modules/backend/lang/en.json @@ -102,5 +102,10 @@ "Login": "Login", "First name": "First name", "Last name": "Last name", - "Email": "Email" -} \ No newline at end of file + "Email": "Email", + "Translated for locale: :value": "Translated for locale: :value", + "Translated for site: :value": "Translated for site: :value", + "A custom schema is used for this file format.": "A custom schema is used for this file format.", + "Select": "Select", + "Replace": "Replace" +} diff --git a/modules/backend/lang/en/lang.php b/modules/backend/lang/en/lang.php index 74683dff50..53d9477cc5 100644 --- a/modules/backend/lang/en/lang.php +++ b/modules/backend/lang/en/lang.php @@ -472,7 +472,7 @@ 'paragraph_formats_comment' => 'The options that will appear in the Paragraph Format dropdown.', ], 'tooltips' => [ - 'preview_website' => 'Preview the website', + 'preview_website' => 'Preview the Website', ], 'mysettings' => [ 'menu_label' => 'My Settings', diff --git a/modules/backend/lang/es.json b/modules/backend/lang/es.json index ce469cd43f..fe960fc9fc 100644 --- a/modules/backend/lang/es.json +++ b/modules/backend/lang/es.json @@ -1,104 +1,111 @@ { - "Cancel": "Cancelar", - "You are viewing as": "Estás viendo como", - "Preview Role": "Rol de vista previa", - "This lets you test the actions this role can perform.": "Esto le permite probar las acciones que puede realizar este rol.", - "View As Role": "Ver como rol", - "Return to Role Settings": "Volver a la configuración de roles", - "Password must have a minimum of length of :min characters": "La contraseña debe tener una longitud mínima de :min caracteres", - "Password must contain at least one uppercase character.": "La contraseña debe contener al menos un carácter en mayúscula.", - "Password must contain at least one lowercase character.": "La contraseña debe contener al menos un carácter en minúscula.", - "Password must contain at least one number.": "La contraseña debe contener al menos un número.", - "Password must contain at least one nonalphanumeric character.": "La contraseña debe contener al menos un carácter no alfanumérico.", - "Welcome to your Administration Area, :name": "Bienvenido a su Área de Administración, :name", - "Duplicate": "Duplicar", - "Expand": "Expandir", - "Collapse": "Colapso", - "Move Up": "Ascender", - "Move Down": "Mover hacia abajo", - "Remove": "Eliminar", - "Manage Item": "Administrar elemento", - "Clear Filters": "Borrar filtros", - "Filter Setup": "Configuración del filtro", - "Apply": "Aplicar", - "Clear": "Claro", - "is equal to": "es igual a", - "is between": "está entre", - "contains": "contiene", - "is before": "es antes", - "is after": "es despues", - "is greater than": "es mayor que", - "is less than": "es menos que", - "1. Export output format": "1. Formato de salida de la exportación", - "File Format": "Formato de archivo", - "Delimiter Character": "Carácter delimitador", - "Enclosure Character": "Carácter recinto", - "Escape Character": "Carácter de escape", - "2. Select columns to export": "2. Seleccionar columnas a exportar", - "Columns": "Columnas", - "3. Set export options": "3. Establecer opciones de exportación", - "CSV Custom": "Formato personalizado", - "1. Upload an Import File": "1. Subir un archivo CSV", - "Import File": "Importar archivo", - "File Encoding": "Codificación de archivo", - "First row contains column titles": "Primera fila contiene títulos de columna", - "Leave this checked if the first row in the CSV is used as the column titles.": "Dejelo activado si la primera fila en el CSV se utiliza como los títulos de columna.", - "2. Match the file columns to database fields": "2. Hacer coincidir las columnas del archivo con los campos de la base de datos", - "File columns": "Archivo de columnas", - "Database fields": "Campos de base de datos", - "3. Set import options": "3. Establecer opciones de importación", - "Export progress": "Progreso de exportación", - "Processing": "Procesando", - "Import progress": "Progreso de Importación", - "Import error": "Error de importación", - "Export error": "Error de exportación", - "Column preview": "Previsualización de la columna", - "Column": "Columna", - "Disable": "Desactivar", - "Enable": "Permitir", - "Delete": "Borrar", - "Export": "Exportar", - "Import": "Importar", - "Select Action": "Seleccione la acción", - "Please create a new account for logging in to the Administration Area.": "Cree una nueva cuenta para iniciar sesión en el Área de administración.", - "First Name": "Primer nombre", - "Last Name": "Apellido", - "Email Address": "Dirección de correo electrónico", - "Pick a Username": "Elige un nombre de usuario", - "Enter New Password": "Ingrese nueva clave", - "Confirm Password": "confirmar Contraseña", - "Create Account": "Crear una cuenta", - "Getting Ready": "preparándose", - "Just a few more minutes": "Solo unos minutos más", - "Migrating Database": "Migración de base de datos", - "Access the Backend Panel": "Acceder al panel de back-end", - "View Backend During Maintenance": "Ver backend durante el mantenimiento", - "Perform Software Updates": "Realizar actualizaciones de software", - "In Maintenance": "En mantenimiento", - "The site is currently in maintenance mode, please check back later.": "El sitio se encuentra actualmente en modo de mantenimiento, vuelva a consultar más tarde.", - "Dashboard": "Panel", - "Administrators": "Administradores", - "Manage Admins": "Administrar administradores", - "Create Admins": "Crear administradores", - "Moderate Admins": "Administradores moderados", - "Manage account suspension and ban admin accounts": "Administrar la suspensión de la cuenta y prohibir las cuentas de administrador", - "Manage Roles": "Administrar roles", - "Manage Groups": "Administrar grupos", - "Manage Other Admins": "Administrar otros administradores", - "Allow users to reset passwords and update emails.": "Permite restablecer contraseñas y actualizar correos electrónicos", - "Delete Admins": "Eliminar administradores", - "Preferences": "preferencias", - "Settings": "Ajustes", - "Background Color": "Color de fondo", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Permita que los usuarios creen nuevos roles y editen o eliminen roles inferiores a su rol más alto.", - "Save Changes": "Guardar cambios", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Este registro muestra la lista de ingresos al panel de administración. Los registros se mantienen por un total de :days días.", - "Access Log": "Registro de acceso", - "View a list of successful back-end user sign ins.": "Ver registro de ingresos al panel de administracion.", - "Date & Time": "Fecha y hora", - "IP address": "IP", - "Login": "Entrar", - "First name": "Nombre", - "Last name": "Apellido", - "Email": "Correo" + "Cancel": "Cancelar", + "You are viewing as": "Estás viendo como", + "Preview Role": "Rol de vista previa", + "This lets you test the actions this role can perform.": "Esto le permite probar las acciones que puede realizar este rol.", + "View As Role": "Ver como rol", + "Return to Role Settings": "Volver a la configuración de roles", + "Password must have a minimum of length of :min characters": "La contraseña debe tener una longitud mínima de :min caracteres", + "Password must contain at least one uppercase character.": "La contraseña debe contener al menos un carácter en mayúscula.", + "Password must contain at least one lowercase character.": "La contraseña debe contener al menos un carácter en minúscula.", + "Password must contain at least one number.": "La contraseña debe contener al menos un número.", + "Password must contain at least one nonalphanumeric character.": "La contraseña debe contener al menos un carácter no alfanumérico.", + "Welcome to your Administration Area, :name": "Bienvenido a su Área de Administración, :name", + "Duplicate": "Duplicar", + "Expand": "Expandir", + "Collapse": "Colapso", + "Move Up": "Ascender", + "Move Down": "Mover hacia abajo", + "Remove": "Eliminar", + "Manage Item": "Administrar elemento", + "Clear Filters": "Borrar filtros", + "Filter Setup": "Configuración del filtro", + "Apply": "Aplicar", + "Clear": "Claro", + "is equal to": "es igual a", + "is between": "está entre", + "contains": "contiene", + "is before": "es antes", + "is after": "es despues", + "is greater than": "es mayor que", + "is less than": "es menos que", + "1. Export output format": "1. Formato de salida de la exportación", + "File Format": "Formato de archivo", + "Delimiter Character": "Carácter delimitador", + "Enclosure Character": "Carácter recinto", + "Escape Character": "Carácter de escape", + "2. Select columns to export": "2. Seleccionar columnas a exportar", + "Columns": "Columnas", + "3. Set export options": "3. Establecer opciones de exportación", + "CSV Custom": "Formato personalizado", + "1. Upload an Import File": "1. Subir un archivo CSV", + "Import File": "Importar archivo", + "File Encoding": "Codificación de archivo", + "First row contains column titles": "Primera fila contiene títulos de columna", + "Leave this checked if the first row in the CSV is used as the column titles.": "Dejelo activado si la primera fila en el CSV se utiliza como los títulos de columna.", + "2. Match the file columns to database fields": "2. Hacer coincidir las columnas del archivo con los campos de la base de datos", + "File columns": "Archivo de columnas", + "Database fields": "Campos de base de datos", + "3. Set import options": "3. Establecer opciones de importación", + "Export progress": "Progreso de exportación", + "Processing": "Procesando", + "Import progress": "Progreso de Importación", + "Import error": "Error de importación", + "Export error": "Error de exportación", + "Column preview": "Previsualización de la columna", + "Column": "Columna", + "Disable": "Desactivar", + "Enable": "Permitir", + "Delete": "Borrar", + "Export": "Exportar", + "Import": "Importar", + "Select Action": "Seleccione la acción", + "Please create a new account for logging in to the Administration Area.": "Cree una nueva cuenta para iniciar sesión en el Área de administración.", + "First Name": "Primer nombre", + "Last Name": "Apellido", + "Email Address": "Dirección de correo electrónico", + "Pick a Username": "Elige un nombre de usuario", + "Enter New Password": "Ingrese nueva clave", + "Confirm Password": "confirmar Contraseña", + "Create Account": "Crear una cuenta", + "Getting Ready": "preparándose", + "Just a few more minutes": "Solo unos minutos más", + "Migrating Database": "Migración de base de datos", + "Access the Backend Panel": "Acceder al panel de back-end", + "View Backend During Maintenance": "Ver backend durante el mantenimiento", + "Perform Software Updates": "Realizar actualizaciones de software", + "In Maintenance": "En mantenimiento", + "The site is currently in maintenance mode, please check back later.": "El sitio se encuentra actualmente en modo de mantenimiento, vuelva a consultar más tarde.", + "Dashboard": "Panel", + "Administrators": "Administradores", + "Manage Admins": "Administrar administradores", + "Create Admins": "Crear administradores", + "Moderate Admins": "Administradores moderados", + "Manage account suspension and ban admin accounts": "Administrar la suspensión de la cuenta y prohibir las cuentas de administrador", + "Manage Roles": "Administrar roles", + "Manage Groups": "Administrar grupos", + "Manage Other Admins": "Administrar otros administradores", + "Allow users to reset passwords and update emails.": "Permite restablecer contraseñas y actualizar correos electrónicos", + "Delete Admins": "Eliminar administradores", + "Preferences": "preferencias", + "Settings": "Ajustes", + "Background Color": "Color de fondo", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Permita que los usuarios creen nuevos roles y editen o eliminen roles inferiores a su rol más alto.", + "Save Changes": "Guardar cambios", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Este registro muestra la lista de ingresos al panel de administración. Los registros se mantienen por un total de :days días.", + "Access Log": "Registro de acceso", + "View a list of successful back-end user sign ins.": "Ver registro de ingresos al panel de administracion.", + "ID": "IDENTIFICACIÓN", + "Date & Time": "Fecha y hora", + "Type": "Escribe", + "IP address": "IP", + "Login": "Entrar", + "First name": "Nombre", + "Last name": "Apellido", + "Email": "Correo", + "Translated for locale: :value": "Traducido para la configuración regional: :valor", + "Translated for site: :value": "Traducido para el sitio: :valor", + "A custom schema is used for this file format.": "Se utiliza un esquema personalizado para este formato de archivo.", + "Select": "Seleccione", + "Replace": "Reemplazar" } \ No newline at end of file diff --git a/modules/backend/lang/et.json b/modules/backend/lang/et.json index f34f17d5da..b1356e115e 100644 --- a/modules/backend/lang/et.json +++ b/modules/backend/lang/et.json @@ -1,104 +1,111 @@ { - "Cancel": "Tühista", - "You are viewing as": "Te vaatate kui", - "Preview Role": "Rolli eelvaade", - "This lets you test the actions this role can perform.": "See võimaldab teil testida toiminguid, mida see roll teha saab.", - "View As Role": "Vaata rollina", - "Return to Role Settings": "Naaske rolliseadetesse", - "Password must have a minimum of length of :min characters": "Parooli pikkus peab olema vähemalt :min tähemärki", - "Password must contain at least one uppercase character.": "Parool peab sisaldama vähemalt ühte suurtähte.", - "Password must contain at least one lowercase character.": "Parool peab sisaldama vähemalt ühte väiketähte.", - "Password must contain at least one number.": "Parool peab sisaldama vähemalt üht numbrit.", - "Password must contain at least one nonalphanumeric character.": "Parool peab sisaldama vähemalt ühte mittetähtnumbrilist märki.", - "Welcome to your Administration Area, :name": "Tere tulemast oma haldusalasse :name", - "Duplicate": "Duplikaat", - "Expand": "Laienda", - "Collapse": "Ahenda", - "Move Up": "Üles liikuma", - "Move Down": "Liigu alla", - "Remove": "Eemalda", - "Manage Item": "Üksuse haldamine", - "Clear Filters": "Tühjenda filtrid", - "Filter Setup": "Filtri seadistamine", - "Apply": "Rakenda", - "Clear": "Selge", - "is equal to": "on võrdne", - "is between": "on vahel", - "contains": "sisaldab", - "is before": "on enne", - "is after": "on pärast", - "is greater than": "on suurem kui", - "is less than": "on vähem kui", - "1. Export output format": "1. Ekspordi väljundi formaat", - "File Format": "Failiformaat", - "Delimiter Character": "Veergude eraldaja", - "Enclosure Character": "Veerud on ümbritsetud", - "Escape Character": "Paomärk", - "2. Select columns to export": "2. Vali veerud, mida eksportida", - "Columns": "Veerud", - "3. Set export options": "3. Määra ekspordi valikud", - "CSV Custom": "Kohandatud", - "1. Upload an Import File": "1. Lae üles CSV fail", - "Import File": "Impordi fail", - "File Encoding": "Faili kodeering", - "First row contains column titles": "Esimene rida sisaldab veerupäiseid", - "Leave this checked if the first row in the CSV is used as the column titles.": "Märgi see kast kui üleslaetavas CSV failis on esimesel real veergude nimed.", - "2. Match the file columns to database fields": "2. Ühenda failis olevad veerud andmebaasi väljadega", - "File columns": "Faili veerud", - "Database fields": "Andmebaasi väljad", - "3. Set import options": "3. Määra impordi valikud", - "Export progress": "Ekspordi progress", - "Processing": "Töötlen", - "Import progress": "Impordi progress", - "Import error": "Impordi viga", - "Export error": "Ekspordi viga", - "Column preview": "Veeru eelvaade", - "Column": "Veerg", - "Disable": "Keela", - "Enable": "Luba", - "Delete": "Kustuta", - "Export": "Ekspordi", - "Import": "Import", - "Select Action": "Valige Toiming", - "Please create a new account for logging in to the Administration Area.": "Haldusalasse sisselogimiseks looge uus konto.", - "First Name": "Eesnimi", - "Last Name": "Perekonnanimi", - "Email Address": "E-posti aadress", - "Pick a Username": "Vali kasutajanimi", - "Enter New Password": "Sisestage uus parool", - "Confirm Password": "Kinnita salasõna", - "Create Account": "Loo konto", - "Getting Ready": "Valmis seadma", - "Just a few more minutes": "Veel paar minutit", - "Migrating Database": "Andmebaasi migreerimine", - "Access the Backend Panel": "Juurdepääs taustapaneelile", - "View Backend During Maintenance": "Vaata taustaprogrammi hoolduse ajal", - "Perform Software Updates": "Tehke tarkvaravärskendused", - "In Maintenance": "Hoolduses", - "The site is currently in maintenance mode, please check back later.": "Sait on praegu hooldusrežiimis, palun vaadake hiljem uuesti.", - "Dashboard": "Armatuurlaud", - "Administrators": "Administraatorid", - "Manage Admins": "Administraatorite haldamine", - "Create Admins": "Looge administraatorid", - "Moderate Admins": "Mõõdukad administraatorid", - "Manage account suspension and ban admin accounts": "Hallake konto peatamist ja blokeerige administraatorikontod", - "Manage Roles": "Halda rolle", - "Manage Groups": "Gruppide haldamine", - "Manage Other Admins": "Teiste administraatorite haldamine", - "Allow users to reset passwords and update emails.": "Võimaldab paroole lähtestada ja e-kirju värskendada", - "Delete Admins": "Kustuta administraatorid", - "Preferences": "Eelistused", - "Settings": "Seaded", - "Background Color": "Taustavärv", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Lubage kasutajatel luua uusi rolle ja muuta või kustutada rolle, mis on madalamad kui nende kõrgeim roll.", - "Save Changes": "Salvesta muudatused", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "See logi sisaldab kõiki edukaid sisselogimisi haldusliidesesse. Andmeid hoitakse maksimaalselt :days päeva.", - "Access Log": "Juurdepääsu logi", - "View a list of successful back-end user sign ins.": "Näita kõiki õnnestunud sisselogimisi.", - "Date & Time": "Kuupäev", - "IP address": "IP aaddress", - "Login": "Kasutjanimi", - "First name": "Eesnimi", - "Last name": "Perenimi", - "Email": "E-post" + "Cancel": "Tühista", + "You are viewing as": "Te vaatate kui", + "Preview Role": "Rolli eelvaade", + "This lets you test the actions this role can perform.": "See võimaldab teil testida toiminguid, mida see roll teha saab.", + "View As Role": "Vaata rollina", + "Return to Role Settings": "Naaske rolliseadetesse", + "Password must have a minimum of length of :min characters": "Parooli pikkus peab olema vähemalt :min tähemärki", + "Password must contain at least one uppercase character.": "Parool peab sisaldama vähemalt ühte suurtähte.", + "Password must contain at least one lowercase character.": "Parool peab sisaldama vähemalt ühte väiketähte.", + "Password must contain at least one number.": "Parool peab sisaldama vähemalt üht numbrit.", + "Password must contain at least one nonalphanumeric character.": "Parool peab sisaldama vähemalt ühte mittetähtnumbrilist märki.", + "Welcome to your Administration Area, :name": "Tere tulemast oma haldusalasse :name", + "Duplicate": "Duplikaat", + "Expand": "Laienda", + "Collapse": "Ahenda", + "Move Up": "Üles liikuma", + "Move Down": "Liigu alla", + "Remove": "Eemalda", + "Manage Item": "Üksuse haldamine", + "Clear Filters": "Tühjenda filtrid", + "Filter Setup": "Filtri seadistamine", + "Apply": "Rakenda", + "Clear": "Selge", + "is equal to": "on võrdne", + "is between": "on vahel", + "contains": "sisaldab", + "is before": "on enne", + "is after": "on pärast", + "is greater than": "on suurem kui", + "is less than": "on vähem kui", + "1. Export output format": "1. Ekspordi väljundi formaat", + "File Format": "Failiformaat", + "Delimiter Character": "Veergude eraldaja", + "Enclosure Character": "Veerud on ümbritsetud", + "Escape Character": "Paomärk", + "2. Select columns to export": "2. Vali veerud, mida eksportida", + "Columns": "Veerud", + "3. Set export options": "3. Määra ekspordi valikud", + "CSV Custom": "Kohandatud", + "1. Upload an Import File": "1. Lae üles CSV fail", + "Import File": "Impordi fail", + "File Encoding": "Faili kodeering", + "First row contains column titles": "Esimene rida sisaldab veerupäiseid", + "Leave this checked if the first row in the CSV is used as the column titles.": "Märgi see kast kui üleslaetavas CSV failis on esimesel real veergude nimed.", + "2. Match the file columns to database fields": "2. Ühenda failis olevad veerud andmebaasi väljadega", + "File columns": "Faili veerud", + "Database fields": "Andmebaasi väljad", + "3. Set import options": "3. Määra impordi valikud", + "Export progress": "Ekspordi progress", + "Processing": "Töötlen", + "Import progress": "Impordi progress", + "Import error": "Impordi viga", + "Export error": "Ekspordi viga", + "Column preview": "Veeru eelvaade", + "Column": "Veerg", + "Disable": "Keela", + "Enable": "Luba", + "Delete": "Kustuta", + "Export": "Ekspordi", + "Import": "Import", + "Select Action": "Valige Toiming", + "Please create a new account for logging in to the Administration Area.": "Haldusalasse sisselogimiseks looge uus konto.", + "First Name": "Eesnimi", + "Last Name": "Perekonnanimi", + "Email Address": "E-posti aadress", + "Pick a Username": "Vali kasutajanimi", + "Enter New Password": "Sisestage uus parool", + "Confirm Password": "Kinnita salasõna", + "Create Account": "Loo konto", + "Getting Ready": "Valmis seadma", + "Just a few more minutes": "Veel paar minutit", + "Migrating Database": "Andmebaasi migreerimine", + "Access the Backend Panel": "Juurdepääs taustapaneelile", + "View Backend During Maintenance": "Vaata taustaprogrammi hoolduse ajal", + "Perform Software Updates": "Tehke tarkvaravärskendused", + "In Maintenance": "Hoolduses", + "The site is currently in maintenance mode, please check back later.": "Sait on praegu hooldusrežiimis, palun vaadake hiljem uuesti.", + "Dashboard": "Armatuurlaud", + "Administrators": "Administraatorid", + "Manage Admins": "Administraatorite haldamine", + "Create Admins": "Looge administraatorid", + "Moderate Admins": "Mõõdukad administraatorid", + "Manage account suspension and ban admin accounts": "Hallake konto peatamist ja blokeerige administraatorikontod", + "Manage Roles": "Halda rolle", + "Manage Groups": "Gruppide haldamine", + "Manage Other Admins": "Teiste administraatorite haldamine", + "Allow users to reset passwords and update emails.": "Võimaldab paroole lähtestada ja e-kirju värskendada", + "Delete Admins": "Kustuta administraatorid", + "Preferences": "Eelistused", + "Settings": "Seaded", + "Background Color": "Taustavärv", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Lubage kasutajatel luua uusi rolle ja muuta või kustutada rolle, mis on madalamad kui nende kõrgeim roll.", + "Save Changes": "Salvesta muudatused", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "See logi sisaldab kõiki edukaid sisselogimisi haldusliidesesse. Andmeid hoitakse maksimaalselt :days päeva.", + "Access Log": "Juurdepääsu logi", + "View a list of successful back-end user sign ins.": "Näita kõiki õnnestunud sisselogimisi.", + "ID": "ID", + "Date & Time": "Kuupäev", + "Type": "Tüüp", + "IP address": "IP aaddress", + "Login": "Kasutjanimi", + "First name": "Eesnimi", + "Last name": "Perenimi", + "Email": "E-post", + "Translated for locale: :value": "Tõlgitud lokaadi jaoks: :value", + "Translated for site: :value": "Tõlgitud saidile: :value", + "A custom schema is used for this file format.": "Selle failivormingu jaoks kasutatakse kohandatud skeemi.", + "Select": "Valige", + "Replace": "Asenda" } \ No newline at end of file diff --git a/modules/backend/lang/fa.json b/modules/backend/lang/fa.json index 80b5d0f6c3..adc762a02f 100644 --- a/modules/backend/lang/fa.json +++ b/modules/backend/lang/fa.json @@ -1,104 +1,111 @@ { - "Cancel": "لغو کنید", - "You are viewing as": "شما به عنوان مشاهده می کنید", - "Preview Role": "نقش پیش نمایش", - "This lets you test the actions this role can perform.": "این به شما امکان می دهد اقداماتی را که این نقش می تواند انجام دهد را آزمایش کنید.", - "View As Role": "مشاهده به عنوان نقش", - "Return to Role Settings": "به تنظیمات نقش بازگردید", - "Password must have a minimum of length of :min characters": "رمز عبور باید حداقل دارای طول :min کاراکتر باشد", - "Password must contain at least one uppercase character.": "رمز عبور باید حداقل یک کاراکتر بزرگ داشته باشد.", - "Password must contain at least one lowercase character.": "رمز عبور باید حداقل یک نویسه کوچک داشته باشد.", - "Password must contain at least one number.": "رمز عبور باید حداقل یک عدد داشته باشد.", - "Password must contain at least one nonalphanumeric character.": "رمز عبور باید حداقل یک نویسه غیر الفبایی داشته باشد.", - "Welcome to your Administration Area, :name": "به منطقه مدیریت خود، :name خوش آمدید", - "Duplicate": "تکراری", - "Expand": "بسط دادن", - "Collapse": "سقوط - فروپاشی", - "Move Up": "حرکت به بالا", - "Move Down": "حرکت به پایین", - "Remove": "برداشتن", - "Manage Item": "مدیریت آیتم", - "Clear Filters": "پاک کردن فیلترها", - "Filter Setup": "راه اندازی فیلتر", - "Apply": "درخواست دادن", - "Clear": "پاک کردن", - "is equal to": "برابر است با", - "is between": "بین است", - "contains": "شامل", - "is before": "قبل است", - "is after": "پس از آن است", - "is greater than": "بزرگتر است از", - "is less than": "کمتر است از", - "1. Export output format": "1. قالب خروجی برون ریزی", - "File Format": "نوع فایل", - "Delimiter Character": "کاراکار جدا کننده", - "Enclosure Character": "کاراکتر Enclosure", - "Escape Character": "کاراکتر Escape", - "2. Select columns to export": "2. انتخاب ستون ها جهت برون ریزی", - "Columns": "ستون ها", - "3. Set export options": "3. تنظیم گزینه های برون ریزی", - "CSV Custom": "قالب سفارشی", - "1. Upload an Import File": "1. ارسال فایل CSV.", - "Import File": "درورن ریزی فایل", - "File Encoding": "کدینگ فایل", - "First row contains column titles": "سطر اول شامل عنوان ستون ها می باشد", - "Leave this checked if the first row in the CSV is used as the column titles.": "اگر سطر اول فایل CSV حاوی عنوان ستون ها می باشد این گزینه را انتخاب نمایید.", - "2. Match the file columns to database fields": "2. مطابقت سازی ستون های فایل با فیلد های پایگاه داده", - "File columns": "ستون های فایل", - "Database fields": "فیلد های پایگاه داده", - "3. Set import options": "3. تنظیم گزینه های درون ریزی", - "Export progress": "پردازش برون ریزی", - "Processing": "در حال پردازش", - "Import progress": "پردازش درون ریزی", - "Import error": "خطا در درون ریزی", - "Export error": "خطا در ایجاد خروجی", - "Column preview": "پیش نمایش ستون", - "Column": "ستون", - "Disable": "غیر فعال کردن", - "Enable": "فعال کردن", - "Delete": "حذف", - "Export": "صادرات", - "Import": "وارد كردن", - "Select Action": "Action را انتخاب کنید", - "Please create a new account for logging in to the Administration Area.": "لطفا یک حساب کاربری جدید برای ورود به بخش مدیریت ایجاد کنید.", - "First Name": "نام کوچک", - "Last Name": "نام خانوادگی", - "Email Address": "آدرس ایمیل", - "Pick a Username": "یک نام کاربری انتخاب کن", - "Enter New Password": "رمز عبور جدید را وارد کنید", - "Confirm Password": "رمز عبور را تایید کنید", - "Create Account": "ایجاد حساب کاربری", - "Getting Ready": "آماده شدن", - "Just a few more minutes": "فقط چند دقیقه دیگر", - "Migrating Database": "پایگاه داده مهاجرت", - "Access the Backend Panel": "به پنل Backend دسترسی پیدا کنید", - "View Backend During Maintenance": "مشاهده Backend در حین تعمیر و نگهداری", - "Perform Software Updates": "انجام به روز رسانی نرم افزار", - "In Maintenance": "در تعمیر و نگهداری", - "The site is currently in maintenance mode, please check back later.": "سایت در حال حاضر در حالت تعمیر و نگهداری است، لطفاً بعداً دوباره بررسی کنید.", - "Dashboard": "داشبورد", - "Administrators": "مدیران", - "Manage Admins": "مدیریت ادمین ها", - "Create Admins": "ایجاد ادمین ها", - "Moderate Admins": "مدیران معتدل", - "Manage account suspension and ban admin accounts": "مدیریت تعلیق حساب و ممنوع کردن حساب های مدیریت", - "Manage Roles": "نقش ها را مدیریت کنید", - "Manage Groups": "مدیریت گروه ها", - "Manage Other Admins": "مدیریت سایر ادمین ها", - "Allow users to reset passwords and update emails.": "امکان بازنشانی رمزهای عبور و به‌روزرسانی ایمیل‌ها را می‌دهد", - "Delete Admins": "ادمین ها را حذف کنید", - "Preferences": "اولویت ها", - "Settings": "تنظیمات", - "Background Color": "رنگ پس زمینه", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "به کاربران اجازه ایجاد نقش های جدید و ویرایش یا حذف نقش های پایین تر از بالاترین نقش خود را بدهید.", - "Save Changes": "ذخیره تغییرات", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "این لیست نشاندهنده ورود کاربران مدیر به سیستم می باشد. موارد برای مدت :days روز نگهداری می شوند.", - "Access Log": "ثبت دسترسی ها", - "View a list of successful back-end user sign ins.": "نمایش لیست ورود موفقیت آمیز کاربران مدیر.", - "Date & Time": "زمان و تاریخ", - "IP address": "نشانی IP", - "Login": "ورود", - "First name": "نام", - "Last name": "نام خانوادگی", - "Email": "پست الکترونیکی" + "Cancel": "لغو کنید", + "You are viewing as": "شما به عنوان مشاهده می کنید", + "Preview Role": "نقش پیش نمایش", + "This lets you test the actions this role can perform.": "این به شما امکان می دهد اقداماتی را که این نقش می تواند انجام دهد را آزمایش کنید.", + "View As Role": "مشاهده به عنوان نقش", + "Return to Role Settings": "به تنظیمات نقش بازگردید", + "Password must have a minimum of length of :min characters": "رمز عبور باید حداقل دارای طول :min کاراکتر باشد", + "Password must contain at least one uppercase character.": "رمز عبور باید حداقل یک کاراکتر بزرگ داشته باشد.", + "Password must contain at least one lowercase character.": "رمز عبور باید حداقل یک نویسه کوچک داشته باشد.", + "Password must contain at least one number.": "رمز عبور باید حداقل یک عدد داشته باشد.", + "Password must contain at least one nonalphanumeric character.": "رمز عبور باید حداقل یک نویسه غیر الفبایی داشته باشد.", + "Welcome to your Administration Area, :name": "به منطقه مدیریت خود، :name خوش آمدید", + "Duplicate": "تکراری", + "Expand": "بسط دادن", + "Collapse": "سقوط - فروپاشی", + "Move Up": "حرکت به بالا", + "Move Down": "حرکت به پایین", + "Remove": "برداشتن", + "Manage Item": "مدیریت آیتم", + "Clear Filters": "پاک کردن فیلترها", + "Filter Setup": "راه اندازی فیلتر", + "Apply": "درخواست دادن", + "Clear": "پاک کردن", + "is equal to": "برابر است با", + "is between": "بین است", + "contains": "شامل", + "is before": "قبل است", + "is after": "پس از آن است", + "is greater than": "بزرگتر است از", + "is less than": "کمتر است از", + "1. Export output format": "1. قالب خروجی برون ریزی", + "File Format": "نوع فایل", + "Delimiter Character": "کاراکار جدا کننده", + "Enclosure Character": "کاراکتر Enclosure", + "Escape Character": "کاراکتر Escape", + "2. Select columns to export": "2. انتخاب ستون ها جهت برون ریزی", + "Columns": "ستون ها", + "3. Set export options": "3. تنظیم گزینه های برون ریزی", + "CSV Custom": "قالب سفارشی", + "1. Upload an Import File": "1. ارسال فایل CSV.", + "Import File": "درورن ریزی فایل", + "File Encoding": "کدینگ فایل", + "First row contains column titles": "سطر اول شامل عنوان ستون ها می باشد", + "Leave this checked if the first row in the CSV is used as the column titles.": "اگر سطر اول فایل CSV حاوی عنوان ستون ها می باشد این گزینه را انتخاب نمایید.", + "2. Match the file columns to database fields": "2. مطابقت سازی ستون های فایل با فیلد های پایگاه داده", + "File columns": "ستون های فایل", + "Database fields": "فیلد های پایگاه داده", + "3. Set import options": "3. تنظیم گزینه های درون ریزی", + "Export progress": "پردازش برون ریزی", + "Processing": "در حال پردازش", + "Import progress": "پردازش درون ریزی", + "Import error": "خطا در درون ریزی", + "Export error": "خطا در ایجاد خروجی", + "Column preview": "پیش نمایش ستون", + "Column": "ستون", + "Disable": "غیر فعال کردن", + "Enable": "فعال کردن", + "Delete": "حذف", + "Export": "صادرات", + "Import": "وارد كردن", + "Select Action": "Action را انتخاب کنید", + "Please create a new account for logging in to the Administration Area.": "لطفا یک حساب کاربری جدید برای ورود به بخش مدیریت ایجاد کنید.", + "First Name": "نام کوچک", + "Last Name": "نام خانوادگی", + "Email Address": "آدرس ایمیل", + "Pick a Username": "یک نام کاربری انتخاب کن", + "Enter New Password": "رمز عبور جدید را وارد کنید", + "Confirm Password": "رمز عبور را تایید کنید", + "Create Account": "ایجاد حساب کاربری", + "Getting Ready": "آماده شدن", + "Just a few more minutes": "فقط چند دقیقه دیگر", + "Migrating Database": "پایگاه داده مهاجرت", + "Access the Backend Panel": "به پنل Backend دسترسی پیدا کنید", + "View Backend During Maintenance": "مشاهده Backend در حین تعمیر و نگهداری", + "Perform Software Updates": "انجام به روز رسانی نرم افزار", + "In Maintenance": "در تعمیر و نگهداری", + "The site is currently in maintenance mode, please check back later.": "سایت در حال حاضر در حالت تعمیر و نگهداری است، لطفاً بعداً دوباره بررسی کنید.", + "Dashboard": "داشبورد", + "Administrators": "مدیران", + "Manage Admins": "مدیریت ادمین ها", + "Create Admins": "ایجاد ادمین ها", + "Moderate Admins": "مدیران معتدل", + "Manage account suspension and ban admin accounts": "مدیریت تعلیق حساب و ممنوع کردن حساب های مدیریت", + "Manage Roles": "نقش ها را مدیریت کنید", + "Manage Groups": "مدیریت گروه ها", + "Manage Other Admins": "مدیریت سایر ادمین ها", + "Allow users to reset passwords and update emails.": "امکان بازنشانی رمزهای عبور و به‌روزرسانی ایمیل‌ها را می‌دهد", + "Delete Admins": "ادمین ها را حذف کنید", + "Preferences": "اولویت ها", + "Settings": "تنظیمات", + "Background Color": "رنگ پس زمینه", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "به کاربران اجازه ایجاد نقش های جدید و ویرایش یا حذف نقش های پایین تر از بالاترین نقش خود را بدهید.", + "Save Changes": "ذخیره تغییرات", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "این لیست نشاندهنده ورود کاربران مدیر به سیستم می باشد. موارد برای مدت :days روز نگهداری می شوند.", + "Access Log": "ثبت دسترسی ها", + "View a list of successful back-end user sign ins.": "نمایش لیست ورود موفقیت آمیز کاربران مدیر.", + "ID": "شناسه", + "Date & Time": "زمان و تاریخ", + "Type": "تایپ کنید", + "IP address": "نشانی IP", + "Login": "ورود", + "First name": "نام", + "Last name": "نام خانوادگی", + "Email": "پست الکترونیکی", + "Translated for locale: :value": "ترجمه شده برای محلی: :value", + "Translated for site: :value": "ترجمه شده برای سایت: :value", + "A custom schema is used for this file format.": "یک طرح سفارشی برای این فرمت فایل استفاده می شود.", + "Select": "انتخاب کنید", + "Replace": "جایگزین کردن" } \ No newline at end of file diff --git a/modules/backend/lang/fi.json b/modules/backend/lang/fi.json index 4cdc63a2df..de6057bf08 100644 --- a/modules/backend/lang/fi.json +++ b/modules/backend/lang/fi.json @@ -1,104 +1,111 @@ { - "Cancel": "Peruuta", - "You are viewing as": "Tarkasteluroolisi on", - "Preview Role": "Esikatselurooli", - "This lets you test the actions this role can perform.": "Tämän avulla voit tarkastella toimenpiteitä, joita rooli voi tehdä.", - "View As Role": "Katsele roolissa", - "Return to Role Settings": "Palaa rooli-asetuksiin", - "Password must have a minimum of length of :min characters": "Salasanassa on oltava vähintään :min merkkiä", - "Password must contain at least one uppercase character.": "Salasanassa on oltava vähintään yksi ISO kirjain.", - "Password must contain at least one lowercase character.": "Salasanassa on oltava vähintään yksi pieni kirjain.", - "Password must contain at least one number.": "Salasanassa on oltava vähintään yksi numero.", - "Password must contain at least one nonalphanumeric character.": "Salasanassa on oltava vähintään yksi erikoismerkki.", - "Welcome to your Administration Area, :name": "Tervetuloa ylläpitoon, :name", - "Duplicate": "Kopioi", - "Expand": "Laajenna", - "Collapse": "Sulje", - "Move Up": "Siirrä ylös", - "Move Down": "Siirrä alas", - "Remove": "Poista", - "Manage Item": "Hallitse kohdetta", - "Clear Filters": "Tyhjennä suodattimet", - "Filter Setup": "Suodattimen asetukset", - "Apply": "Käytä", - "Clear": "Asia selvä", - "is equal to": "on yhtä suuri kuin", - "is between": "on välissä", - "contains": "sisältää", - "is before": "on ennen", - "is after": "on perässä", - "is greater than": "on suurempi kuin", - "is less than": "on vähemmän kuin", - "1. Export output format": "1. Vientiformaatti", - "File Format": "Tiedostoformaatti", - "Delimiter Character": "Erotinmerkki", - "Enclosure Character": "Sisällytysmerkki", - "Escape Character": "Escape-merkki", - "2. Select columns to export": "2. Valitse sarakkeet vientiin", - "Columns": "Sarakkeet", - "3. Set export options": "3. Aseta vientiasetukset", - "CSV Custom": "Oma formaatti", - "1. Upload an Import File": "1. Vie CSV-tiedosto", - "Import File": "Tuo tiedosto", - "File Encoding": "Tiedoston koodaus", - "First row contains column titles": "Ensimmäinen rivi sisältää sarakkeiden nimet", - "Leave this checked if the first row in the CSV is used as the column titles.": "Jätä tämä valituksi jos ensimmäinen rivi on käytössä sarakkeiden nimiin.", - "2. Match the file columns to database fields": "2. Sovita tiedostosarakkeet tietokannan kenttiin", - "File columns": "Tiedostosarakkeet", - "Database fields": "Tietokannan kentät", - "3. Set import options": "3. Aseta tuontiasetukset", - "Export progress": "Vienti käynnissä", - "Processing": "Prosessoidaan", - "Import progress": "Tuontiprosessi", - "Import error": "Virhe tuonnissa", - "Export error": "Virhe viennissä", - "Column preview": "Sarakkeen esikatselu", - "Column": "Sarake", - "Disable": "Poista käytöstä", - "Enable": "ota käyttöön", - "Delete": "Poistaa", - "Export": "Viedä", - "Import": "Tuonti", - "Select Action": "Valitse Toiminto", - "Please create a new account for logging in to the Administration Area.": "Luo uusi tili hallinta-alueelle kirjautumiseksi.", - "First Name": "Etunimi", - "Last Name": "Sukunimi", - "Email Address": "Sähköpostiosoite", - "Pick a Username": "Valitse käyttäjänimi", - "Enter New Password": "Syötä uusi salasana", - "Confirm Password": "Vahvista salasana", - "Create Account": "Luo tili", - "Getting Ready": "Valmistautua", - "Just a few more minutes": "Vielä muutama minuutti", - "Migrating Database": "Tietokannan siirtäminen", - "Access the Backend Panel": "Siirry taustapaneeliin", - "View Backend During Maintenance": "Näytä taustakuva ylläpidon aikana", - "Perform Software Updates": "Suorita ohjelmistopäivitykset", - "In Maintenance": "Huollossa", - "The site is currently in maintenance mode, please check back later.": "Sivusto on tällä hetkellä ylläpitotilassa, tarkista myöhemmin uudelleen.", - "Dashboard": "Kojelauta", - "Administrators": "Järjestelmänvalvojat", - "Manage Admins": "Hallinnoi järjestelmänvalvojia", - "Create Admins": "Luo järjestelmänvalvojat", - "Moderate Admins": "Maltilliset järjestelmänvalvojat", - "Manage account suspension and ban admin accounts": "Hallinnoi tilin jäädyttämistä ja estä järjestelmänvalvojatilejä", - "Manage Roles": "Hallitse rooleja", - "Manage Groups": "Hallitse ryhmiä", - "Manage Other Admins": "Hallitse muita järjestelmänvalvojia", - "Allow users to reset passwords and update emails.": "Mahdollistaa salasanojen nollauksen ja sähköpostien päivittämisen", - "Delete Admins": "Poista järjestelmänvalvojat", - "Preferences": "Asetukset", - "Settings": "asetukset", - "Background Color": "Taustaväri", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Salli käyttäjien luoda uusia rooleja ja muokata tai poistaa korkeinta rooliaan alempia rooleja.", - "Save Changes": "Tallenna muutokset", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Tämä loki näyttää listan onnistuneista kirjautumisista järjestelmänvalvojilta. Tiedot pidetään tallessa :days päivää.", - "Access Log": "Käyttöloki", - "View a list of successful back-end user sign ins.": "Näytä lista onnistuneista kirjautumisista hallintapaneeliin.", - "Date & Time": "Pvm & aika", - "IP address": "IP-osoite", - "Login": "Kirjautuminen", - "First name": "Etunimi", - "Last name": "Sukunimi", - "Email": "Sähköposti" + "Cancel": "Peruuta", + "You are viewing as": "Tarkasteluroolisi on", + "Preview Role": "Esikatselurooli", + "This lets you test the actions this role can perform.": "Tämän avulla voit tarkastella toimenpiteitä, joita rooli voi tehdä.", + "View As Role": "Katsele roolissa", + "Return to Role Settings": "Palaa rooli-asetuksiin", + "Password must have a minimum of length of :min characters": "Salasanassa on oltava vähintään :min merkkiä", + "Password must contain at least one uppercase character.": "Salasanassa on oltava vähintään yksi ISO kirjain.", + "Password must contain at least one lowercase character.": "Salasanassa on oltava vähintään yksi pieni kirjain.", + "Password must contain at least one number.": "Salasanassa on oltava vähintään yksi numero.", + "Password must contain at least one nonalphanumeric character.": "Salasanassa on oltava vähintään yksi erikoismerkki.", + "Welcome to your Administration Area, :name": "Tervetuloa ylläpitoon, :name", + "Duplicate": "Kopioi", + "Expand": "Laajenna", + "Collapse": "Sulje", + "Move Up": "Siirrä ylös", + "Move Down": "Siirrä alas", + "Remove": "Poista", + "Manage Item": "Hallitse kohdetta", + "Clear Filters": "Tyhjennä suodattimet", + "Filter Setup": "Suodattimen asetukset", + "Apply": "Käytä", + "Clear": "Asia selvä", + "is equal to": "on yhtä suuri kuin", + "is between": "on välissä", + "contains": "sisältää", + "is before": "on ennen", + "is after": "on perässä", + "is greater than": "on suurempi kuin", + "is less than": "on vähemmän kuin", + "1. Export output format": "1. Vientiformaatti", + "File Format": "Tiedostoformaatti", + "Delimiter Character": "Erotinmerkki", + "Enclosure Character": "Sisällytysmerkki", + "Escape Character": "Escape-merkki", + "2. Select columns to export": "2. Valitse sarakkeet vientiin", + "Columns": "Sarakkeet", + "3. Set export options": "3. Aseta vientiasetukset", + "CSV Custom": "Oma formaatti", + "1. Upload an Import File": "1. Vie CSV-tiedosto", + "Import File": "Tuo tiedosto", + "File Encoding": "Tiedoston koodaus", + "First row contains column titles": "Ensimmäinen rivi sisältää sarakkeiden nimet", + "Leave this checked if the first row in the CSV is used as the column titles.": "Jätä tämä valituksi jos ensimmäinen rivi on käytössä sarakkeiden nimiin.", + "2. Match the file columns to database fields": "2. Sovita tiedostosarakkeet tietokannan kenttiin", + "File columns": "Tiedostosarakkeet", + "Database fields": "Tietokannan kentät", + "3. Set import options": "3. Aseta tuontiasetukset", + "Export progress": "Vienti käynnissä", + "Processing": "Prosessoidaan", + "Import progress": "Tuontiprosessi", + "Import error": "Virhe tuonnissa", + "Export error": "Virhe viennissä", + "Column preview": "Sarakkeen esikatselu", + "Column": "Sarake", + "Disable": "Poista käytöstä", + "Enable": "ota käyttöön", + "Delete": "Poistaa", + "Export": "Viedä", + "Import": "Tuonti", + "Select Action": "Valitse Toiminto", + "Please create a new account for logging in to the Administration Area.": "Luo uusi tili hallinta-alueelle kirjautumiseksi.", + "First Name": "Etunimi", + "Last Name": "Sukunimi", + "Email Address": "Sähköpostiosoite", + "Pick a Username": "Valitse käyttäjänimi", + "Enter New Password": "Syötä uusi salasana", + "Confirm Password": "Vahvista salasana", + "Create Account": "Luo tili", + "Getting Ready": "Valmistautua", + "Just a few more minutes": "Vielä muutama minuutti", + "Migrating Database": "Tietokannan siirtäminen", + "Access the Backend Panel": "Siirry taustapaneeliin", + "View Backend During Maintenance": "Näytä taustakuva ylläpidon aikana", + "Perform Software Updates": "Suorita ohjelmistopäivitykset", + "In Maintenance": "Huollossa", + "The site is currently in maintenance mode, please check back later.": "Sivusto on tällä hetkellä ylläpitotilassa, tarkista myöhemmin uudelleen.", + "Dashboard": "Kojelauta", + "Administrators": "Järjestelmänvalvojat", + "Manage Admins": "Hallinnoi järjestelmänvalvojia", + "Create Admins": "Luo järjestelmänvalvojat", + "Moderate Admins": "Maltilliset järjestelmänvalvojat", + "Manage account suspension and ban admin accounts": "Hallinnoi tilin jäädyttämistä ja estä järjestelmänvalvojatilejä", + "Manage Roles": "Hallitse rooleja", + "Manage Groups": "Hallitse ryhmiä", + "Manage Other Admins": "Hallitse muita järjestelmänvalvojia", + "Allow users to reset passwords and update emails.": "Mahdollistaa salasanojen nollauksen ja sähköpostien päivittämisen", + "Delete Admins": "Poista järjestelmänvalvojat", + "Preferences": "Asetukset", + "Settings": "asetukset", + "Background Color": "Taustaväri", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Salli käyttäjien luoda uusia rooleja ja muokata tai poistaa korkeinta rooliaan alempia rooleja.", + "Save Changes": "Tallenna muutokset", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Tämä loki näyttää listan onnistuneista kirjautumisista järjestelmänvalvojilta. Tiedot pidetään tallessa :days päivää.", + "Access Log": "Käyttöloki", + "View a list of successful back-end user sign ins.": "Näytä lista onnistuneista kirjautumisista hallintapaneeliin.", + "ID": "ID", + "Date & Time": "Pvm & aika", + "Type": "Tyyppi", + "IP address": "IP-osoite", + "Login": "Kirjautuminen", + "First name": "Etunimi", + "Last name": "Sukunimi", + "Email": "Sähköposti", + "Translated for locale: :value": "Käännetty maa-alueelle: :value", + "Translated for site: :value": "Käännetty sivustolle: :value", + "A custom schema is used for this file format.": "Tässä tiedostomuodossa käytetään mukautettua mallia.", + "Select": "Valitse", + "Replace": "Korvata" } \ No newline at end of file diff --git a/modules/backend/lang/fr.json b/modules/backend/lang/fr.json index 3fbabb33b4..cc6a2ad2ca 100644 --- a/modules/backend/lang/fr.json +++ b/modules/backend/lang/fr.json @@ -1,106 +1,111 @@ { - "Cancel": "Annuler", - "You are viewing as": "Vous regardez comme", - "Preview Role": "Aperçu du rôle", - "This lets you test the actions this role can perform.": "Cela vous permet de tester les actions que ce rôle peut effectuer.", - "View As Role": "Afficher en tant que rôle", - "Return to Role Settings": "Revenir aux paramètres de rôle", - "Password must have a minimum of length of :min characters": "Le mot de passe doit avoir une longueur minimale de :min caractères", - "Password must contain at least one uppercase character.": "Le mot de passe doit contenir au moins un caractère majuscule.", - "Password must contain at least one lowercase character.": "Le mot de passe doit contenir au moins un caractère minuscule.", - "Password must contain at least one number.": "Le mot de passe doit contenir au moins un chiffre.", - "Password must contain at least one nonalphanumeric character.": "Le mot de passe doit contenir au moins un caractère non alphanumérique.", - "Welcome to your Administration Area, :name": "Bienvenue dans votre espace d'administration, :name", - "Duplicate": "Dupliquer", - "Expand": "Développer", - "Collapse": "S'effondrer", - "Move Up": "Déplacer vers le haut", - "Move Down": "Descendre", - "Remove": "Retirer", - "Manage Item": "Gérer l'élément", - "Clear Filters": "Effacer les filtres", - "Filter Setup": "Configuration du filtre", - "Apply": "Appliquer", - "Clear": "Dégager", - "is equal to": "est égal à", - "is between": "est entre", - "contains": "contient", - "is before": "est avant", - "is after": "est après", - "is greater than": "est supérieur à", - "is less than": "est inférieur à", - "1. Export output format": "1. Format de sortie de l’export", - "File Format": "Format du fichier", - "Delimiter Character": "Caractère séparateur", - "Enclosure Character": "Caractère d’encadrement", - "Escape Character": "Caractère d’échappement", - "2. Select columns to export": "2. Choisissez les colonnes à exporter", - "Columns": "Colonnes", - "3. Set export options": "3. Définir les options d’exportation", - "CSV Custom": "Format Personnalisé", - "1. Upload an Import File": "1. Envoyer un fichier CSV", - "Import File": "Importer un fichier", - "File Encoding": "Encodage du fichier", - "First row contains column titles": "La première ligne contient les titres des colonnes", - "Leave this checked if the first row in the CSV is used as the column titles.": "Laissez coché si la première ligne du fichier CSV contient les titres des colonnes.", - "2. Match the file columns to database fields": "2. Faire correspondre les colonnes du fichier avec les champs du modèle de données", - "File columns": "Colonnes du fichier", - "Database fields": "Champs de la base de données", - "3. Set import options": "3. Fixer les options d’importation", - "Export progress": "Progression de l’export", - "Processing": "Traitement", - "Import progress": "Progression de l’import", - "Import error": "Erreur d’import", - "Export error": "Erreur d’export", - "Column preview": "Prévisualisation des colonnes", - "Column": "Colonne", - "Disable": "Désactiver", - "Enable": "Permettre", - "Delete": "Supprimer", - "Export": "Exporter", - "Import": "Importer", - "Select Action": "Sélectionnez l'action", - "Please create a new account for logging in to the Administration Area.": "Veuillez créer un nouveau compte pour vous connecter à la zone d'administration.", - "First Name": "Prénom", - "Last Name": "Nom de famille", - "Email Address": "Adresse e-mail", - "Pick a Username": "Choisis un nom d'utilisateur", - "Enter New Password": "Entrez un nouveau mot de passe", - "Confirm Password": "Confirmez le mot de passe", - "Create Account": "Créer un compte", - "Getting Ready": "Se préparer", - "Just a few more minutes": "Encore quelques minutes", - "Migrating Database": "Migration de la base de données", - "Access the Backend Panel": "Accéder au panneau principal", - "View Backend During Maintenance": "Afficher le backend pendant la maintenance", - "Perform Software Updates": "Effectuer des mises à jour logicielles", - "In Maintenance": "En maintenance", - "The site is currently in maintenance mode, please check back later.": "Le site est actuellement en mode maintenance, merci de revenir plus tard.", - "Dashboard": "Tableau de bord", - "Administrators": "Administrateurs", - "Manage Admins": "Gérer les administrateurs", - "Create Admins": "Créer des administrateurs", - "Moderate Admins": "Administrateurs modérés", - "Manage account suspension and ban admin accounts": "Gérer la suspension des comptes et bannir les comptes administrateur", - "Manage Roles": "Gérer les rôles", - "Manage Groups": "Gérer les groupes", - "Manage Other Admins": "Gérer les autres administrateurs", - "Allow users to reset passwords and update emails.": "Permet de réinitialiser les mots de passe et de mettre à jour les e-mails", - "Delete Admins": "Supprimer les administrateurs", - "Preferences": "Préférences", - "Settings": "Réglages", - "Background Color": "Couleur de l'arrière plan", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Autoriser les utilisateurs à créer de nouveaux rôles et à modifier ou supprimer des rôles inférieurs à leur rôle le plus élevé.", - "Save Changes": "Sauvegarder les modifications", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Ce journal affiche la liste des tentatives d’authentification réussies des administrateurs. Les données sont sauvegardées pendant :days jours.", - "Access Log": "Journal des accès", - "View a list of successful back-end user sign ins.": "Affiche la liste des authentifications réussies des utilisateurs de l’interface d’administration.", - "ID": "ID", - "Date & Time": "Date et heure", - "Type": "Type", - "IP address": "Adresse IP", - "Login": "Identifiant", - "First name": "Prénom", - "Last name": "Nom", - "Email": "Adresse e-mail" + "Cancel": "Annuler", + "You are viewing as": "Vous regardez comme", + "Preview Role": "Aperçu du rôle", + "This lets you test the actions this role can perform.": "Cela vous permet de tester les actions que ce rôle peut effectuer.", + "View As Role": "Afficher en tant que rôle", + "Return to Role Settings": "Revenir aux paramètres de rôle", + "Password must have a minimum of length of :min characters": "Le mot de passe doit avoir une longueur minimale de :min caractères", + "Password must contain at least one uppercase character.": "Le mot de passe doit contenir au moins un caractère majuscule.", + "Password must contain at least one lowercase character.": "Le mot de passe doit contenir au moins un caractère minuscule.", + "Password must contain at least one number.": "Le mot de passe doit contenir au moins un chiffre.", + "Password must contain at least one nonalphanumeric character.": "Le mot de passe doit contenir au moins un caractère non alphanumérique.", + "Welcome to your Administration Area, :name": "Bienvenue dans votre espace d'administration, :name", + "Duplicate": "Dupliquer", + "Expand": "Développer", + "Collapse": "S'effondrer", + "Move Up": "Déplacer vers le haut", + "Move Down": "Descendre", + "Remove": "Retirer", + "Manage Item": "Gérer l'élément", + "Clear Filters": "Effacer les filtres", + "Filter Setup": "Configuration du filtre", + "Apply": "Appliquer", + "Clear": "Dégager", + "is equal to": "est égal à", + "is between": "est entre", + "contains": "contient", + "is before": "est avant", + "is after": "est après", + "is greater than": "est supérieur à", + "is less than": "est inférieur à", + "1. Export output format": "1. Format de sortie de l’export", + "File Format": "Format du fichier", + "Delimiter Character": "Caractère séparateur", + "Enclosure Character": "Caractère d’encadrement", + "Escape Character": "Caractère d’échappement", + "2. Select columns to export": "2. Choisissez les colonnes à exporter", + "Columns": "Colonnes", + "3. Set export options": "3. Définir les options d’exportation", + "CSV Custom": "Format Personnalisé", + "1. Upload an Import File": "1. Envoyer un fichier CSV", + "Import File": "Importer un fichier", + "File Encoding": "Encodage du fichier", + "First row contains column titles": "La première ligne contient les titres des colonnes", + "Leave this checked if the first row in the CSV is used as the column titles.": "Laissez coché si la première ligne du fichier CSV contient les titres des colonnes.", + "2. Match the file columns to database fields": "2. Faire correspondre les colonnes du fichier avec les champs du modèle de données", + "File columns": "Colonnes du fichier", + "Database fields": "Champs de la base de données", + "3. Set import options": "3. Fixer les options d’importation", + "Export progress": "Progression de l’export", + "Processing": "Traitement", + "Import progress": "Progression de l’import", + "Import error": "Erreur d’import", + "Export error": "Erreur d’export", + "Column preview": "Prévisualisation des colonnes", + "Column": "Colonne", + "Disable": "Désactiver", + "Enable": "Permettre", + "Delete": "Supprimer", + "Export": "Exporter", + "Import": "Importer", + "Select Action": "Sélectionnez l'action", + "Please create a new account for logging in to the Administration Area.": "Veuillez créer un nouveau compte pour vous connecter à la zone d'administration.", + "First Name": "Prénom", + "Last Name": "Nom de famille", + "Email Address": "Adresse e-mail", + "Pick a Username": "Choisis un nom d'utilisateur", + "Enter New Password": "Entrez un nouveau mot de passe", + "Confirm Password": "Confirmez le mot de passe", + "Create Account": "Créer un compte", + "Getting Ready": "Se préparer", + "Just a few more minutes": "Encore quelques minutes", + "Migrating Database": "Migration de la base de données", + "Access the Backend Panel": "Accéder au panneau principal", + "View Backend During Maintenance": "Afficher le backend pendant la maintenance", + "Perform Software Updates": "Effectuer des mises à jour logicielles", + "In Maintenance": "En maintenance", + "The site is currently in maintenance mode, please check back later.": "Le site est actuellement en mode maintenance, merci de revenir plus tard.", + "Dashboard": "Tableau de bord", + "Administrators": "Administrateurs", + "Manage Admins": "Gérer les administrateurs", + "Create Admins": "Créer des administrateurs", + "Moderate Admins": "Administrateurs modérés", + "Manage account suspension and ban admin accounts": "Gérer la suspension des comptes et bannir les comptes administrateur", + "Manage Roles": "Gérer les rôles", + "Manage Groups": "Gérer les groupes", + "Manage Other Admins": "Gérer les autres administrateurs", + "Allow users to reset passwords and update emails.": "Permet de réinitialiser les mots de passe et de mettre à jour les e-mails", + "Delete Admins": "Supprimer les administrateurs", + "Preferences": "Préférences", + "Settings": "Réglages", + "Background Color": "Couleur de l'arrière plan", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Autoriser les utilisateurs à créer de nouveaux rôles et à modifier ou supprimer des rôles inférieurs à leur rôle le plus élevé.", + "Save Changes": "Sauvegarder les modifications", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Ce journal affiche la liste des tentatives d’authentification réussies des administrateurs. Les données sont sauvegardées pendant :days jours.", + "Access Log": "Journal des accès", + "View a list of successful back-end user sign ins.": "Affiche la liste des authentifications réussies des utilisateurs de l’interface d’administration.", + "ID": "ID", + "Date & Time": "Date et heure", + "Type": "Type", + "IP address": "Adresse IP", + "Login": "Identifiant", + "First name": "Prénom", + "Last name": "Nom", + "Email": "Adresse e-mail", + "Translated for locale: :value": "Traduit pour les paramètres régionaux : :value", + "Translated for site: :value": "Traduit pour le site : :value", + "A custom schema is used for this file format.": "Un schéma personnalisé est utilisé pour ce format de fichier.", + "Select": "Sélectionner", + "Replace": "Remplacer" } \ No newline at end of file diff --git a/modules/backend/lang/hu.json b/modules/backend/lang/hu.json index 7839d2c156..1fd1741391 100644 --- a/modules/backend/lang/hu.json +++ b/modules/backend/lang/hu.json @@ -1,106 +1,111 @@ { - "Cancel": "Mégsem", - "You are viewing as": "Bejelentkezve mint:", - "Preview Role": "Szerep előnézete", - "This lets you test the actions this role can perform.": "Lehetővé teszi a szerepkör által végrehajtható műveletek tesztelését.", - "View As Role": "Átjelentkezés", - "Return to Role Settings": "Vissza a beállításokhoz", - "Password must have a minimum of length of :min characters": "A jelszónak legalább :min karakter hosszúságúnak kell lennie", - "Password must contain at least one uppercase character.": "A jelszónak legalább egy nagybetűt kell tartalmaznia.", - "Password must contain at least one lowercase character.": "A jelszónak legalább egy kisbetűt kell tartalmaznia.", - "Password must contain at least one number.": "A jelszónak tartalmaznia kell legalább egy számot.", - "Password must contain at least one nonalphanumeric character.": "A jelszónak legalább egy nem alfanumerikus karaktert kell tartalmaznia.", - "Welcome to your Administration Area, :name": "Üdvözöljük az adminisztrációs felületen, :name", - "Duplicate": "Másolás", - "Expand": "Kinyitás", - "Collapse": "Összecsukás", - "Move Up": "Mozgatás fel", - "Move Down": "Mozgatás le", - "Remove": "Eltávolítás", - "Manage Item": "Elem kezelése", - "Clear Filters": "Szűrők törlése", - "Filter Setup": "Szűrő beállítása", - "Apply": "Alkalmaz", - "Clear": "Alaphelyzet", - "is equal to": "egyenlő", - "is between": "között van", - "contains": "tartalmazza", - "is before": "előtte van", - "is after": "utána van", - "is greater than": "nagyobb mint", - "is less than": "kevesebb mint", - "1. Export output format": "1. CSV fájl", - "File Format": "Fájl formátuma", - "Delimiter Character": "Határoló karakter", - "Enclosure Character": "Elválasztó karakter", - "Escape Character": "Végjel karakter", - "2. Select columns to export": "2. Oszlopok kiválasztása", - "Columns": "Oszlopok", - "3. Set export options": "3. Exportálási beállítások", - "CSV Custom": "Egyedi formátum", - "1. Upload an Import File": "1. CSV fájl", - "Import File": "Fájl feltöltése", - "File Encoding": "Fájl kódolása", - "First row contains column titles": "Az első sor tartalmazza az oszlop neveit", - "Leave this checked if the first row in the CSV is used as the column titles.": "Hagyja bejelölve, amennyiben a CSV fájl első sora az oszlop neveket tartalmazza.", - "2. Match the file columns to database fields": "2. Oszlopok párosítása", - "File columns": "Fájl oszlopok", - "Database fields": "Adatbázis oszlopok", - "3. Set import options": "3. További beállítások", - "Export progress": "Exportálás folyamatban", - "Processing": "Folyamatban", - "Import progress": "Importálás folyamatban...", - "Import error": "Importálási hiba", - "Export error": "Exportálási hiba", - "Column preview": "Oszlop előnézete", - "Column": "Oszlop", - "Disable": "Letiltás", - "Enable": "Engedélyezze", - "Delete": "Töröl", - "Export": "Export", - "Import": "Importálás", - "Select Action": "Válassza a Művelet lehetőséget", - "Please create a new account for logging in to the Administration Area.": "Kérjük, hozzon létre egy új fiókot az Adminisztrációs területre való bejelentkezéshez.", - "First Name": "Keresztnév", - "Last Name": "Vezetéknév", - "Email Address": "Email cím", - "Pick a Username": "Válasszon felhasználónevet", - "Enter New Password": "Adjon meg új jelszót", - "Confirm Password": "Jelszó megerősítése", - "Create Account": "Fiók létrehozása", - "Getting Ready": "Készülődni", - "Just a few more minutes": "Csak még néhány perc", - "Migrating Database": "Adatbázis áttelepítése", - "Access the Backend Panel": "Nyissa meg a háttérpanelt", - "View Backend During Maintenance": "Háttér megtekintése a karbantartás során", - "Perform Software Updates": "Hajtsa végre a szoftverfrissítéseket", - "In Maintenance": "Karbantartásban", - "The site is currently in maintenance mode, please check back later.": "Az oldal jelenleg karbantartási módban van, kérjük, nézzen vissza később.", - "Dashboard": "Irányítópult", - "Administrators": "Rendszergazdák", - "Manage Admins": "Adminisztrátorok kezelése", - "Create Admins": "Adminisztrátorok létrehozása", - "Moderate Admins": "Mérsékelt rendszergazdák", - "Manage account suspension and ban admin accounts": "Fiókfelfüggesztés kezelése és adminisztrátori fiókok kitiltása", - "Manage Roles": "Szerepek kezelése", - "Manage Groups": "Csoportok kezelése", - "Manage Other Admins": "Más rendszergazdák kezelése", - "Allow users to reset passwords and update emails.": "Lehetővé teszi a jelszavak visszaállítását és az e-mailek frissítését", - "Delete Admins": "Adminisztrátorok törlése", - "Preferences": "preferenciák", - "Settings": "Beállítások", - "Background Color": "Háttérszín", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Lehetővé teszi a felhasználók számára, hogy új szerepköröket hozzanak létre, és szerkesszenek vagy töröljenek olyan szerepköröket, amelyek alacsonyabbak a legmagasabb szerepüknél.", - "Save Changes": "Változtatások mentése", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Ez a napló a felhasználók sikeres bejelentkezési kísérleteit listázza ki. A bejegyzéseket :days napig őrzi meg a rendszer.", - "Access Log": "Hozzáférés napló", - "View a list of successful back-end user sign ins.": "A felhasználók sikeres bejelentkezéseinek megtekintése.", - "ID": "ID", - "Date & Time": "Időpont", - "Type": "Típus", - "IP address": "IP cím", - "Login": "Felhasználónév", - "First name": "Keresztnév", - "Last name": "Vezetéknév", - "Email": "E-mail cím" + "Cancel": "Mégsem", + "You are viewing as": "Bejelentkezve mint:", + "Preview Role": "Szerep előnézete", + "This lets you test the actions this role can perform.": "Lehetővé teszi a szerepkör által végrehajtható műveletek tesztelését.", + "View As Role": "Átjelentkezés", + "Return to Role Settings": "Vissza a beállításokhoz", + "Password must have a minimum of length of :min characters": "A jelszónak legalább :min karakter hosszúságúnak kell lennie", + "Password must contain at least one uppercase character.": "A jelszónak legalább egy nagybetűt kell tartalmaznia.", + "Password must contain at least one lowercase character.": "A jelszónak legalább egy kisbetűt kell tartalmaznia.", + "Password must contain at least one number.": "A jelszónak tartalmaznia kell legalább egy számot.", + "Password must contain at least one nonalphanumeric character.": "A jelszónak legalább egy nem alfanumerikus karaktert kell tartalmaznia.", + "Welcome to your Administration Area, :name": "Üdvözöljük az adminisztrációs felületen, :name", + "Duplicate": "Másolás", + "Expand": "Kinyitás", + "Collapse": "Összecsukás", + "Move Up": "Mozgatás fel", + "Move Down": "Mozgatás le", + "Remove": "Eltávolítás", + "Manage Item": "Elem kezelése", + "Clear Filters": "Szűrők törlése", + "Filter Setup": "Szűrő beállítása", + "Apply": "Alkalmaz", + "Clear": "Alaphelyzet", + "is equal to": "egyenlő", + "is between": "között van", + "contains": "tartalmazza", + "is before": "előtte van", + "is after": "utána van", + "is greater than": "nagyobb mint", + "is less than": "kevesebb mint", + "1. Export output format": "1. CSV fájl", + "File Format": "Fájl formátuma", + "Delimiter Character": "Határoló karakter", + "Enclosure Character": "Elválasztó karakter", + "Escape Character": "Végjel karakter", + "2. Select columns to export": "2. Oszlopok kiválasztása", + "Columns": "Oszlopok", + "3. Set export options": "3. Exportálási beállítások", + "CSV Custom": "Egyedi formátum", + "1. Upload an Import File": "1. CSV fájl", + "Import File": "Fájl feltöltése", + "File Encoding": "Fájl kódolása", + "First row contains column titles": "Az első sor tartalmazza az oszlop neveit", + "Leave this checked if the first row in the CSV is used as the column titles.": "Hagyja bejelölve, amennyiben a CSV fájl első sora az oszlop neveket tartalmazza.", + "2. Match the file columns to database fields": "2. Oszlopok párosítása", + "File columns": "Fájl oszlopok", + "Database fields": "Adatbázis oszlopok", + "3. Set import options": "3. További beállítások", + "Export progress": "Exportálás folyamatban", + "Processing": "Folyamatban", + "Import progress": "Importálás folyamatban...", + "Import error": "Importálási hiba", + "Export error": "Exportálási hiba", + "Column preview": "Oszlop előnézete", + "Column": "Oszlop", + "Disable": "Letiltás", + "Enable": "Engedélyezze", + "Delete": "Töröl", + "Export": "Export", + "Import": "Importálás", + "Select Action": "Válassza a Művelet lehetőséget", + "Please create a new account for logging in to the Administration Area.": "Kérjük, hozzon létre egy új fiókot az Adminisztrációs területre való bejelentkezéshez.", + "First Name": "Keresztnév", + "Last Name": "Vezetéknév", + "Email Address": "Email cím", + "Pick a Username": "Válasszon felhasználónevet", + "Enter New Password": "Adjon meg új jelszót", + "Confirm Password": "Jelszó megerősítése", + "Create Account": "Fiók létrehozása", + "Getting Ready": "Készülődni", + "Just a few more minutes": "Csak még néhány perc", + "Migrating Database": "Adatbázis áttelepítése", + "Access the Backend Panel": "Nyissa meg a háttérpanelt", + "View Backend During Maintenance": "Háttér megtekintése a karbantartás során", + "Perform Software Updates": "Hajtsa végre a szoftverfrissítéseket", + "In Maintenance": "Karbantartásban", + "The site is currently in maintenance mode, please check back later.": "Az oldal jelenleg karbantartási módban van, kérjük, nézzen vissza később.", + "Dashboard": "Irányítópult", + "Administrators": "Rendszergazdák", + "Manage Admins": "Adminisztrátorok kezelése", + "Create Admins": "Adminisztrátorok létrehozása", + "Moderate Admins": "Mérsékelt rendszergazdák", + "Manage account suspension and ban admin accounts": "Fiókfelfüggesztés kezelése és adminisztrátori fiókok kitiltása", + "Manage Roles": "Szerepek kezelése", + "Manage Groups": "Csoportok kezelése", + "Manage Other Admins": "Más rendszergazdák kezelése", + "Allow users to reset passwords and update emails.": "Lehetővé teszi a jelszavak visszaállítását és az e-mailek frissítését", + "Delete Admins": "Adminisztrátorok törlése", + "Preferences": "preferenciák", + "Settings": "Beállítások", + "Background Color": "Háttérszín", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Lehetővé teszi a felhasználók számára, hogy új szerepköröket hozzanak létre, és szerkesszenek vagy töröljenek olyan szerepköröket, amelyek alacsonyabbak a legmagasabb szerepüknél.", + "Save Changes": "Változtatások mentése", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Ez a napló a felhasználók sikeres bejelentkezési kísérleteit listázza ki. A bejegyzéseket :days napig őrzi meg a rendszer.", + "Access Log": "Hozzáférés napló", + "View a list of successful back-end user sign ins.": "A felhasználók sikeres bejelentkezéseinek megtekintése.", + "ID": "ID", + "Date & Time": "Időpont", + "Type": "Típus", + "IP address": "IP cím", + "Login": "Felhasználónév", + "First name": "Keresztnév", + "Last name": "Vezetéknév", + "Email": "E-mail cím", + "Translated for locale: :value": "Lefordítva a következő nyelvre: :value", + "Translated for site: :value": "Lefordítva a következő webhelyre: :value", + "A custom schema is used for this file format.": "Ehhez a fájlformátumhoz egyéni séma használatos.", + "Select": "Válassza ki", + "Replace": "Cserélje ki" } \ No newline at end of file diff --git a/modules/backend/lang/id.json b/modules/backend/lang/id.json index 1671e5f1bb..7ee732fccf 100644 --- a/modules/backend/lang/id.json +++ b/modules/backend/lang/id.json @@ -1,104 +1,111 @@ { - "Cancel": "Membatalkan", - "You are viewing as": "Anda melihat sebagai", - "Preview Role": "Pratinjau Peran", - "This lets you test the actions this role can perform.": "Ini memungkinkan Anda menguji tindakan yang dapat dilakukan peran ini.", - "View As Role": "Lihat Sebagai Peran", - "Return to Role Settings": "Kembali ke Pengaturan Peran", - "Password must have a minimum of length of :min characters": "Kata sandi harus memiliki panjang minimal :min karakter", - "Password must contain at least one uppercase character.": "Kata sandi harus mengandung setidaknya satu karakter huruf besar.", - "Password must contain at least one lowercase character.": "Kata sandi harus mengandung setidaknya satu karakter huruf kecil.", - "Password must contain at least one number.": "Kata sandi harus berisi setidaknya satu nomor.", - "Password must contain at least one nonalphanumeric character.": "Kata sandi harus mengandung setidaknya satu karakter nonalfanumerik.", - "Welcome to your Administration Area, :name": "Selamat datang di Area Administrasi Anda, :nama", - "Duplicate": "Duplikat", - "Expand": "Mengembangkan", - "Collapse": "Runtuh", - "Move Up": "Pindah ke atas", - "Move Down": "Turunkan", - "Remove": "Menghapus", - "Manage Item": "Kelola Barang", - "Clear Filters": "Hapus Filter", - "Filter Setup": "Pengaturan Filter", - "Apply": "Berlaku", - "Clear": "Jernih", - "is equal to": "adalah sama dengan", - "is between": "adalah antara", - "contains": "mengandung", - "is before": "adalah sebelum", - "is after": "adalah setelah", - "is greater than": "lebih besar dari", - "is less than": "kurang dari", - "1. Export output format": "1. Ekspor format keluaran", - "File Format": "Format Berkas", - "Delimiter Character": "Karakter Pembatas", - "Enclosure Character": "Karakter Kandang", - "Escape Character": "karakter pelarian", - "2. Select columns to export": "2. Pilih kolom untuk diekspor", - "Columns": "kolom", - "3. Set export options": "3. Atur opsi ekspor", - "CSV Custom": "Kustom CSV", - "1. Upload an Import File": "1. Unggah File Impor", - "Import File": "Impor Berkas", - "File Encoding": "Pengkodean File", - "First row contains column titles": "Baris pertama berisi judul kolom", - "Leave this checked if the first row in the CSV is used as the column titles.": "Biarkan ini dicentang jika baris pertama dalam CSV digunakan sebagai judul kolom.", - "2. Match the file columns to database fields": "2. Cocokkan kolom file dengan bidang database", - "File columns": "Kolom file", - "Database fields": "Bidang basis data", - "3. Set import options": "3. Atur opsi impor", - "Export progress": "Kemajuan ekspor", - "Processing": "Pengolahan", - "Import progress": "Kemajuan impor", - "Import error": "Kesalahan impor", - "Export error": "Ekspor kesalahan", - "Column preview": "Pratinjau kolom", - "Column": "Kolom", - "Disable": "Cacat", - "Enable": "Memungkinkan", - "Delete": "Menghapus", - "Export": "Ekspor", - "Import": "Impor", - "Select Action": "Pilih Tindakan", - "Please create a new account for logging in to the Administration Area.": "Silakan buat akun baru untuk masuk ke Area Administrasi.", - "First Name": "Nama depan", - "Last Name": "Nama keluarga", - "Email Address": "Alamat email", - "Pick a Username": "Pilih Nama Pengguna", - "Enter New Password": "Masukan kata sandi baru", - "Confirm Password": "konfirmasi sandi", - "Create Account": "Buat Akun", - "Getting Ready": "Bersiap-siap", - "Just a few more minutes": "Hanya beberapa menit lagi", - "Migrating Database": "Migrasi Basis Data", - "Access the Backend Panel": "Akses Panel Backend", - "View Backend During Maintenance": "Lihat Backend Selama Pemeliharaan", - "Perform Software Updates": "Lakukan Pembaruan Perangkat Lunak", - "In Maintenance": "Dalam Pemeliharaan", - "The site is currently in maintenance mode, please check back later.": "Situs sedang dalam mode pemeliharaan, silakan periksa kembali nanti.", - "Dashboard": "Dasbor", - "Administrators": "Administrator", - "Manage Admins": "Kelola Admin", - "Create Admins": "Buat Admin", - "Moderate Admins": "Admin Sedang", - "Manage account suspension and ban admin accounts": "Kelola penangguhan akun dan blokir akun admin", - "Manage Roles": "Kelola Peran", - "Manage Groups": "Kelola Grup", - "Manage Other Admins": "Kelola Admin Lain", - "Allow users to reset passwords and update emails.": "Memungkinkan mengatur ulang kata sandi dan memperbarui email", - "Delete Admins": "Hapus Admin", - "Preferences": "Preferensi", - "Settings": "Pengaturan", - "Background Color": "Warna latar belakang", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Izinkan pengguna membuat peran baru dan mengedit atau menghapus peran yang lebih rendah dari peran tertingginya.", - "Save Changes": "Simpan perubahan", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Catatan ini menampilkan senarai percobaan masuk yang berhasil oleh administrator. Rekam akan disimpan selama :days hari.", - "Access Log": "Catatan akses", - "View a list of successful back-end user sign ins.": "Tampilan senarai pengguna back-end yang berhasil masuk.", - "Date & Time": "Tanggal & Waktu", - "IP address": "Alamat IP", - "Login": "Nama Pengguna", - "First name": "Nama depan", - "Last name": "Nama belakang", - "Email": "Surel" + "Cancel": "Membatalkan", + "You are viewing as": "Anda melihat sebagai", + "Preview Role": "Pratinjau Peran", + "This lets you test the actions this role can perform.": "Ini memungkinkan Anda menguji tindakan yang dapat dilakukan peran ini.", + "View As Role": "Lihat Sebagai Peran", + "Return to Role Settings": "Kembali ke Pengaturan Peran", + "Password must have a minimum of length of :min characters": "Kata sandi harus memiliki panjang minimal :min karakter", + "Password must contain at least one uppercase character.": "Kata sandi harus mengandung setidaknya satu karakter huruf besar.", + "Password must contain at least one lowercase character.": "Kata sandi harus mengandung setidaknya satu karakter huruf kecil.", + "Password must contain at least one number.": "Kata sandi harus berisi setidaknya satu nomor.", + "Password must contain at least one nonalphanumeric character.": "Kata sandi harus mengandung setidaknya satu karakter nonalfanumerik.", + "Welcome to your Administration Area, :name": "Selamat datang di Area Administrasi Anda, :nama", + "Duplicate": "Duplikat", + "Expand": "Mengembangkan", + "Collapse": "Runtuh", + "Move Up": "Pindah ke atas", + "Move Down": "Turunkan", + "Remove": "Menghapus", + "Manage Item": "Kelola Barang", + "Clear Filters": "Hapus Filter", + "Filter Setup": "Pengaturan Filter", + "Apply": "Berlaku", + "Clear": "Jernih", + "is equal to": "adalah sama dengan", + "is between": "adalah antara", + "contains": "mengandung", + "is before": "adalah sebelum", + "is after": "adalah setelah", + "is greater than": "lebih besar dari", + "is less than": "kurang dari", + "1. Export output format": "1. Ekspor format keluaran", + "File Format": "Format Berkas", + "Delimiter Character": "Karakter Pembatas", + "Enclosure Character": "Karakter Kandang", + "Escape Character": "karakter pelarian", + "2. Select columns to export": "2. Pilih kolom untuk diekspor", + "Columns": "kolom", + "3. Set export options": "3. Atur opsi ekspor", + "CSV Custom": "Kustom CSV", + "1. Upload an Import File": "1. Unggah File Impor", + "Import File": "Impor Berkas", + "File Encoding": "Pengkodean File", + "First row contains column titles": "Baris pertama berisi judul kolom", + "Leave this checked if the first row in the CSV is used as the column titles.": "Biarkan ini dicentang jika baris pertama dalam CSV digunakan sebagai judul kolom.", + "2. Match the file columns to database fields": "2. Cocokkan kolom file dengan bidang database", + "File columns": "Kolom file", + "Database fields": "Bidang basis data", + "3. Set import options": "3. Atur opsi impor", + "Export progress": "Kemajuan ekspor", + "Processing": "Pengolahan", + "Import progress": "Kemajuan impor", + "Import error": "Kesalahan impor", + "Export error": "Ekspor kesalahan", + "Column preview": "Pratinjau kolom", + "Column": "Kolom", + "Disable": "Cacat", + "Enable": "Memungkinkan", + "Delete": "Menghapus", + "Export": "Ekspor", + "Import": "Impor", + "Select Action": "Pilih Tindakan", + "Please create a new account for logging in to the Administration Area.": "Silakan buat akun baru untuk masuk ke Area Administrasi.", + "First Name": "Nama depan", + "Last Name": "Nama keluarga", + "Email Address": "Alamat email", + "Pick a Username": "Pilih Nama Pengguna", + "Enter New Password": "Masukan kata sandi baru", + "Confirm Password": "konfirmasi sandi", + "Create Account": "Buat Akun", + "Getting Ready": "Bersiap-siap", + "Just a few more minutes": "Hanya beberapa menit lagi", + "Migrating Database": "Migrasi Basis Data", + "Access the Backend Panel": "Akses Panel Backend", + "View Backend During Maintenance": "Lihat Backend Selama Pemeliharaan", + "Perform Software Updates": "Lakukan Pembaruan Perangkat Lunak", + "In Maintenance": "Dalam Pemeliharaan", + "The site is currently in maintenance mode, please check back later.": "Situs sedang dalam mode pemeliharaan, silakan periksa kembali nanti.", + "Dashboard": "Dasbor", + "Administrators": "Administrator", + "Manage Admins": "Kelola Admin", + "Create Admins": "Buat Admin", + "Moderate Admins": "Admin Sedang", + "Manage account suspension and ban admin accounts": "Kelola penangguhan akun dan blokir akun admin", + "Manage Roles": "Kelola Peran", + "Manage Groups": "Kelola Grup", + "Manage Other Admins": "Kelola Admin Lain", + "Allow users to reset passwords and update emails.": "Memungkinkan mengatur ulang kata sandi dan memperbarui email", + "Delete Admins": "Hapus Admin", + "Preferences": "Preferensi", + "Settings": "Pengaturan", + "Background Color": "Warna latar belakang", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Izinkan pengguna membuat peran baru dan mengedit atau menghapus peran yang lebih rendah dari peran tertingginya.", + "Save Changes": "Simpan perubahan", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Catatan ini menampilkan senarai percobaan masuk yang berhasil oleh administrator. Rekam akan disimpan selama :days hari.", + "Access Log": "Catatan akses", + "View a list of successful back-end user sign ins.": "Tampilan senarai pengguna back-end yang berhasil masuk.", + "ID": "PENGENAL", + "Date & Time": "Tanggal & Waktu", + "Type": "Jenis", + "IP address": "Alamat IP", + "Login": "Nama Pengguna", + "First name": "Nama depan", + "Last name": "Nama belakang", + "Email": "Surel", + "Translated for locale: :value": "Diterjemahkan untuk lokal: :value", + "Translated for site: :value": "Diterjemahkan untuk situs: :value", + "A custom schema is used for this file format.": "Skema kustom digunakan untuk format file ini.", + "Select": "Pilih", + "Replace": "Mengganti" } \ No newline at end of file diff --git a/modules/backend/lang/it.json b/modules/backend/lang/it.json index 0396c646f5..e70c245ef1 100644 --- a/modules/backend/lang/it.json +++ b/modules/backend/lang/it.json @@ -1,104 +1,111 @@ { - "Cancel": "Annulla", - "You are viewing as": "Stai visualizzando come", - "Preview Role": "Anteprima ruolo", - "This lets you test the actions this role can perform.": "Ciò consente di testare le azioni che questo ruolo può eseguire.", - "View As Role": "Visualizza come ruolo", - "Return to Role Settings": "Torna alle impostazioni del ruolo", - "Password must have a minimum of length of :min characters": "La password deve avere una lunghezza minima di :min caratteri", - "Password must contain at least one uppercase character.": "La password deve contenere almeno un carattere maiuscolo.", - "Password must contain at least one lowercase character.": "La password deve contenere almeno un carattere minuscolo.", - "Password must contain at least one number.": "La password deve contenere almeno un numero.", - "Password must contain at least one nonalphanumeric character.": "La password deve contenere almeno un carattere non alfanumerico.", - "Welcome to your Administration Area, :name": "Benvenuto nella tua Area Amministrazione, :name", - "Duplicate": "Duplicare", - "Expand": "Espandere", - "Collapse": "Crollo", - "Move Up": "Andare avanti", - "Move Down": "Abbassati", - "Remove": "Rimuovere", - "Manage Item": "Gestisci articolo", - "Clear Filters": "Cancella filtri", - "Filter Setup": "Configurazione del filtro", - "Apply": "Applicare", - "Clear": "Chiaro", - "is equal to": "è uguale a", - "is between": "è tra", - "contains": "contiene", - "is before": "è prima", - "is after": "è dopo", - "is greater than": "è più grande di", - "is less than": "è meno di", - "1. Export output format": "1. Formato di output dell'esportazione", - "File Format": "Formato del file", - "Delimiter Character": "Carattere delimitatore", - "Enclosure Character": "Qualificatore di testo", - "Escape Character": "Carattere di escape", - "2. Select columns to export": "2. Seleziona le colonne da esportare", - "Columns": "Colonne", - "3. Set export options": "3. Imposta opzioni di esportazione", - "CSV Custom": "Formato personalizzato", - "1. Upload an Import File": "1. Carica un file CSV", - "Import File": "Importa file", - "File Encoding": "Codifica del file", - "First row contains column titles": "La prima riga contiene i titoli delle colonne", - "Leave this checked if the first row in the CSV is used as the column titles.": "Lasciare selezionato se la prima riga nel file CSV è utilizzata come nome di colonna.", - "2. Match the file columns to database fields": "2. Abbina le colonne del file ai campi del database", - "File columns": "Colonne del file", - "Database fields": "Campi del database", - "3. Set import options": "3. Imposta opzioni di importazione", - "Export progress": "Progresso esportazione", - "Processing": "Elaborazione", - "Import progress": "Progresso importazione", - "Import error": "Errore di importazione", - "Export error": "Errore di esportazione", - "Column preview": "Anteprima colonna", - "Column": "Colonna", - "Disable": "disattivare", - "Enable": "Abilitare", - "Delete": "Eliminare", - "Export": "Esportare", - "Import": "Importare", - "Select Action": "Seleziona Azione", - "Please create a new account for logging in to the Administration Area.": "Crea un nuovo account per accedere all'Area Amministrazione.", - "First Name": "Nome di battesimo", - "Last Name": "Cognome", - "Email Address": "Indirizzo e-mail", - "Pick a Username": "Scegli un nome utente", - "Enter New Password": "Inserire una nuova password", - "Confirm Password": "Conferma password", - "Create Account": "Creare un account", - "Getting Ready": "Prepararsi", - "Just a few more minutes": "Solo qualche minuto in più", - "Migrating Database": "Migrazione del database", - "Access the Backend Panel": "Accedi al pannello di backend", - "View Backend During Maintenance": "Visualizza back-end durante la manutenzione", - "Perform Software Updates": "Eseguire aggiornamenti software", - "In Maintenance": "In manutenzione", - "The site is currently in maintenance mode, please check back later.": "Il sito è attualmente in modalità di manutenzione, per favore ricontrolla più tardi.", - "Dashboard": "Pannello", - "Administrators": "Amministratori", - "Manage Admins": "Gestisci gli amministratori", - "Create Admins": "Crea amministratori", - "Moderate Admins": "Amministratori moderati", - "Manage account suspension and ban admin accounts": "Gestisci la sospensione dell'account ed escludi gli account amministratore", - "Manage Roles": "Gestisci ruoli", - "Manage Groups": "Gestisci gruppi", - "Manage Other Admins": "Gestisci altri amministratori", - "Allow users to reset passwords and update emails.": "Consente di reimpostare le password e aggiornare le e-mail", - "Delete Admins": "Elimina gli amministratori", - "Preferences": "Preferenze", - "Settings": "Impostazioni", - "Background Color": "Colore di sfondo", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Consenti agli utenti di creare nuovi ruoli e modificare o eliminare ruoli inferiori al loro ruolo più alto.", - "Save Changes": "Salvare le modifiche", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Questo registro visualizza un elenco dei tentativi di accesso di un amministratore avvenuti con successo. I record sono mantenuti per un totale di :days giorni.", - "Access Log": "Registro accessi", - "View a list of successful back-end user sign ins.": "Visualizza una lista degli accessi da parte degli amministratori.", - "Date & Time": "Data e ora", - "IP address": "Indirizzo IP", - "Login": "Login", - "First name": "Nome", - "Last name": "Cognome", - "Email": "Indirizzo e-mail" + "Cancel": "Annulla", + "You are viewing as": "Stai visualizzando come", + "Preview Role": "Anteprima ruolo", + "This lets you test the actions this role can perform.": "Ciò consente di testare le azioni che questo ruolo può eseguire.", + "View As Role": "Visualizza come ruolo", + "Return to Role Settings": "Torna alle impostazioni del ruolo", + "Password must have a minimum of length of :min characters": "La password deve avere una lunghezza minima di :min caratteri", + "Password must contain at least one uppercase character.": "La password deve contenere almeno un carattere maiuscolo.", + "Password must contain at least one lowercase character.": "La password deve contenere almeno un carattere minuscolo.", + "Password must contain at least one number.": "La password deve contenere almeno un numero.", + "Password must contain at least one nonalphanumeric character.": "La password deve contenere almeno un carattere non alfanumerico.", + "Welcome to your Administration Area, :name": "Benvenuto nella tua Area Amministrazione, :name", + "Duplicate": "Duplicare", + "Expand": "Espandere", + "Collapse": "Crollo", + "Move Up": "Andare avanti", + "Move Down": "Abbassati", + "Remove": "Rimuovere", + "Manage Item": "Gestisci articolo", + "Clear Filters": "Cancella filtri", + "Filter Setup": "Configurazione del filtro", + "Apply": "Applicare", + "Clear": "Chiaro", + "is equal to": "è uguale a", + "is between": "è tra", + "contains": "contiene", + "is before": "è prima", + "is after": "è dopo", + "is greater than": "è più grande di", + "is less than": "è meno di", + "1. Export output format": "1. Formato di output dell'esportazione", + "File Format": "Formato del file", + "Delimiter Character": "Carattere delimitatore", + "Enclosure Character": "Qualificatore di testo", + "Escape Character": "Carattere di escape", + "2. Select columns to export": "2. Seleziona le colonne da esportare", + "Columns": "Colonne", + "3. Set export options": "3. Imposta opzioni di esportazione", + "CSV Custom": "Formato personalizzato", + "1. Upload an Import File": "1. Carica un file CSV", + "Import File": "Importa file", + "File Encoding": "Codifica del file", + "First row contains column titles": "La prima riga contiene i titoli delle colonne", + "Leave this checked if the first row in the CSV is used as the column titles.": "Lasciare selezionato se la prima riga nel file CSV è utilizzata come nome di colonna.", + "2. Match the file columns to database fields": "2. Abbina le colonne del file ai campi del database", + "File columns": "Colonne del file", + "Database fields": "Campi del database", + "3. Set import options": "3. Imposta opzioni di importazione", + "Export progress": "Progresso esportazione", + "Processing": "Elaborazione", + "Import progress": "Progresso importazione", + "Import error": "Errore di importazione", + "Export error": "Errore di esportazione", + "Column preview": "Anteprima colonna", + "Column": "Colonna", + "Disable": "disattivare", + "Enable": "Abilitare", + "Delete": "Eliminare", + "Export": "Esportare", + "Import": "Importare", + "Select Action": "Seleziona Azione", + "Please create a new account for logging in to the Administration Area.": "Crea un nuovo account per accedere all'Area Amministrazione.", + "First Name": "Nome di battesimo", + "Last Name": "Cognome", + "Email Address": "Indirizzo e-mail", + "Pick a Username": "Scegli un nome utente", + "Enter New Password": "Inserire una nuova password", + "Confirm Password": "Conferma password", + "Create Account": "Creare un account", + "Getting Ready": "Prepararsi", + "Just a few more minutes": "Solo qualche minuto in più", + "Migrating Database": "Migrazione del database", + "Access the Backend Panel": "Accedi al pannello di backend", + "View Backend During Maintenance": "Visualizza back-end durante la manutenzione", + "Perform Software Updates": "Eseguire aggiornamenti software", + "In Maintenance": "In manutenzione", + "The site is currently in maintenance mode, please check back later.": "Il sito è attualmente in modalità di manutenzione, per favore ricontrolla più tardi.", + "Dashboard": "Pannello", + "Administrators": "Amministratori", + "Manage Admins": "Gestisci gli amministratori", + "Create Admins": "Crea amministratori", + "Moderate Admins": "Amministratori moderati", + "Manage account suspension and ban admin accounts": "Gestisci la sospensione dell'account ed escludi gli account amministratore", + "Manage Roles": "Gestisci ruoli", + "Manage Groups": "Gestisci gruppi", + "Manage Other Admins": "Gestisci altri amministratori", + "Allow users to reset passwords and update emails.": "Consente di reimpostare le password e aggiornare le e-mail", + "Delete Admins": "Elimina gli amministratori", + "Preferences": "Preferenze", + "Settings": "Impostazioni", + "Background Color": "Colore di sfondo", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Consenti agli utenti di creare nuovi ruoli e modificare o eliminare ruoli inferiori al loro ruolo più alto.", + "Save Changes": "Salvare le modifiche", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Questo registro visualizza un elenco dei tentativi di accesso di un amministratore avvenuti con successo. I record sono mantenuti per un totale di :days giorni.", + "Access Log": "Registro accessi", + "View a list of successful back-end user sign ins.": "Visualizza una lista degli accessi da parte degli amministratori.", + "ID": "ID", + "Date & Time": "Data e ora", + "Type": "Tipo", + "IP address": "Indirizzo IP", + "Login": "Login", + "First name": "Nome", + "Last name": "Cognome", + "Email": "Indirizzo e-mail", + "Translated for locale: :value": "Tradotto per locale: :value", + "Translated for site: :value": "Tradotto per il sito: :valore", + "A custom schema is used for this file format.": "Per questo formato di file viene utilizzato uno schema personalizzato.", + "Select": "Selezionare", + "Replace": "Sostituire" } \ No newline at end of file diff --git a/modules/backend/lang/ja.json b/modules/backend/lang/ja.json index d9bcfd3a84..e48255c807 100644 --- a/modules/backend/lang/ja.json +++ b/modules/backend/lang/ja.json @@ -1,104 +1,111 @@ { - "Cancel": "キャンセル", - "You are viewing as": "あなたはとして見ています", - "Preview Role": "プレビューの役割", - "This lets you test the actions this role can perform.": "これにより、このロールが実行できるアクションをテストできます。", - "View As Role": "役割として表示", - "Return to Role Settings": "役割設定に戻る", - "Password must have a minimum of length of :min characters": "パスワードの長さは最小:min文字である必要があります", - "Password must contain at least one uppercase character.": "パスワードには、少なくとも1つの大文字が含まれている必要があります。", - "Password must contain at least one lowercase character.": "パスワードには、少なくとも1つの小文字が含まれている必要があります。", - "Password must contain at least one number.": "パスワードは、少なくとも1つの番号が含まれている必要があります。", - "Password must contain at least one nonalphanumeric character.": "パスワードには、少なくとも1つの英数字以外の文字が含まれている必要があります。", - "Welcome to your Administration Area, :name": "管理エリアへようこそ、:name", - "Duplicate": "複製", - "Expand": "拡大", - "Collapse": "崩壊", - "Move Up": "上に移動", - "Move Down": "下に移動", - "Remove": "削除", - "Manage Item": "アイテムの管理", - "Clear Filters": "フィルターをクリア", - "Filter Setup": "フィルタの設定", - "Apply": "申し込み", - "Clear": "クリア", - "is equal to": "に等しい", - "is between": "は間に", - "contains": "含む", - "is before": "前です", - "is after": "後です", - "is greater than": "より大きい", - "is less than": "より少ない", - "1. Export output format": "1.出力形式をエクスポートします", - "File Format": "ファイル形式", - "Delimiter Character": "区切り文字", - "Enclosure Character": "エンクロージャーキャラクター", - "Escape Character": "エスケープ文字", - "2. Select columns to export": "2.エクスポートする列を選択します", - "Columns": "列", - "3. Set export options": "3.エクスポートオプションを設定します", - "CSV Custom": "CSVカスタム", - "1. Upload an Import File": "1.インポートファイルをアップロードする", - "Import File": "インポートファイル", - "File Encoding": "ファイルエンコーディング", - "First row contains column titles": "最初の行には列のタイトルが含まれています", - "Leave this checked if the first row in the CSV is used as the column titles.": "CSVの最初の行が列のタイトルとして使用されている場合は、これをオンのままにします。", - "2. Match the file columns to database fields": "2.ファイル列をデータベースフィールドに一致させます", - "File columns": "ファイル列", - "Database fields": "データベースフィールド", - "3. Set import options": "3.インポートオプションを設定します", - "Export progress": "エクスポートの進捗状況", - "Processing": "処理", - "Import progress": "インポートの進行状況", - "Import error": "インポートエラー", - "Export error": "エクスポートエラー", - "Column preview": "カラムプレビュー", - "Column": "桁", - "Disable": "無効にする", - "Enable": "有効", - "Delete": "消去", - "Export": "書き出す", - "Import": "輸入", - "Select Action": "アクションを選択", - "Please create a new account for logging in to the Administration Area.": "管理エリアにログインするための新しいアカウントを作成してください。", - "First Name": "ファーストネーム", - "Last Name": "苗字", - "Email Address": "電子メールアドレス", - "Pick a Username": "ユーザー名を選択してください", - "Enter New Password": "新しいパスワードを入力してください", - "Confirm Password": "パスワードを認証する", - "Create Account": "アカウントを作成する", - "Getting Ready": "準備", - "Just a few more minutes": "あと数分", - "Migrating Database": "データベースの移行", - "Access the Backend Panel": "バックエンドパネルにアクセスする", - "View Backend During Maintenance": "メンテナンス中のバックエンドの表示", - "Perform Software Updates": "ソフトウェアアップデートを実行する", - "In Maintenance": "メンテナンス中", - "The site is currently in maintenance mode, please check back later.": "サイトは現在メンテナンスモードです。後でもう一度確認してください。", - "Dashboard": "ダッシュボード", - "Administrators": "管理者", - "Manage Admins": "管理者を管理する", - "Create Admins": "管理者を作成する", - "Moderate Admins": "中程度の管理者", - "Manage account suspension and ban admin accounts": "アカウントの停止を管理し、管理者アカウントを禁止する", - "Manage Roles": "役割の管理", - "Manage Groups": "グループの管理", - "Manage Other Admins": "他の管理者を管理する", - "Allow users to reset passwords and update emails.": "パスワードのリセットとメールの更新を許可します", - "Delete Admins": "管理者を削除", - "Preferences": "環境設定", - "Settings": "設定", - "Background Color": "背景色", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "ユーザーが新しい役割を作成し、最高の役割よりも低い役割を編集または削除できるようにします。", - "Save Changes": "変更内容を保存", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "このログは管理者のサインインが成功したリストです。記録は:days日間保持されます。", - "Access Log": "アクセスログ", - "View a list of successful back-end user sign ins.": "サインインに成功したバックエンドユーザーを表示します。", - "Date & Time": "日時", - "IP address": "IPアドレス", - "Login": "ログイン", - "First name": "名", - "Last name": "姓", - "Email": "メール" + "Cancel": "キャンセル", + "You are viewing as": "あなたはとして見ています", + "Preview Role": "プレビューの役割", + "This lets you test the actions this role can perform.": "これにより、このロールが実行できるアクションをテストできます。", + "View As Role": "役割として表示", + "Return to Role Settings": "役割設定に戻る", + "Password must have a minimum of length of :min characters": "パスワードの長さは最小:min文字である必要があります", + "Password must contain at least one uppercase character.": "パスワードには、少なくとも1つの大文字が含まれている必要があります。", + "Password must contain at least one lowercase character.": "パスワードには、少なくとも1つの小文字が含まれている必要があります。", + "Password must contain at least one number.": "パスワードは、少なくとも1つの番号が含まれている必要があります。", + "Password must contain at least one nonalphanumeric character.": "パスワードには、少なくとも1つの英数字以外の文字が含まれている必要があります。", + "Welcome to your Administration Area, :name": "管理エリアへようこそ、:name", + "Duplicate": "複製", + "Expand": "拡大", + "Collapse": "崩壊", + "Move Up": "上に移動", + "Move Down": "下に移動", + "Remove": "削除", + "Manage Item": "アイテムの管理", + "Clear Filters": "フィルターをクリア", + "Filter Setup": "フィルタの設定", + "Apply": "申し込み", + "Clear": "クリア", + "is equal to": "に等しい", + "is between": "は間に", + "contains": "含む", + "is before": "前です", + "is after": "後です", + "is greater than": "より大きい", + "is less than": "より少ない", + "1. Export output format": "1.出力形式をエクスポートします", + "File Format": "ファイル形式", + "Delimiter Character": "区切り文字", + "Enclosure Character": "エンクロージャーキャラクター", + "Escape Character": "エスケープ文字", + "2. Select columns to export": "2.エクスポートする列を選択します", + "Columns": "列", + "3. Set export options": "3.エクスポートオプションを設定します", + "CSV Custom": "CSVカスタム", + "1. Upload an Import File": "1.インポートファイルをアップロードする", + "Import File": "インポートファイル", + "File Encoding": "ファイルエンコーディング", + "First row contains column titles": "最初の行には列のタイトルが含まれています", + "Leave this checked if the first row in the CSV is used as the column titles.": "CSVの最初の行が列のタイトルとして使用されている場合は、これをオンのままにします。", + "2. Match the file columns to database fields": "2.ファイル列をデータベースフィールドに一致させます", + "File columns": "ファイル列", + "Database fields": "データベースフィールド", + "3. Set import options": "3.インポートオプションを設定します", + "Export progress": "エクスポートの進捗状況", + "Processing": "処理", + "Import progress": "インポートの進行状況", + "Import error": "インポートエラー", + "Export error": "エクスポートエラー", + "Column preview": "カラムプレビュー", + "Column": "桁", + "Disable": "無効にする", + "Enable": "有効", + "Delete": "消去", + "Export": "書き出す", + "Import": "輸入", + "Select Action": "アクションを選択", + "Please create a new account for logging in to the Administration Area.": "管理エリアにログインするための新しいアカウントを作成してください。", + "First Name": "ファーストネーム", + "Last Name": "苗字", + "Email Address": "電子メールアドレス", + "Pick a Username": "ユーザー名を選択してください", + "Enter New Password": "新しいパスワードを入力してください", + "Confirm Password": "パスワードを認証する", + "Create Account": "アカウントを作成する", + "Getting Ready": "準備", + "Just a few more minutes": "あと数分", + "Migrating Database": "データベースの移行", + "Access the Backend Panel": "バックエンドパネルにアクセスする", + "View Backend During Maintenance": "メンテナンス中のバックエンドの表示", + "Perform Software Updates": "ソフトウェアアップデートを実行する", + "In Maintenance": "メンテナンス中", + "The site is currently in maintenance mode, please check back later.": "サイトは現在メンテナンスモードです。後でもう一度確認してください。", + "Dashboard": "ダッシュボード", + "Administrators": "管理者", + "Manage Admins": "管理者を管理する", + "Create Admins": "管理者を作成する", + "Moderate Admins": "中程度の管理者", + "Manage account suspension and ban admin accounts": "アカウントの停止を管理し、管理者アカウントを禁止する", + "Manage Roles": "役割の管理", + "Manage Groups": "グループの管理", + "Manage Other Admins": "他の管理者を管理する", + "Allow users to reset passwords and update emails.": "パスワードのリセットとメールの更新を許可します", + "Delete Admins": "管理者を削除", + "Preferences": "環境設定", + "Settings": "設定", + "Background Color": "背景色", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "ユーザーが新しい役割を作成し、最高の役割よりも低い役割を編集または削除できるようにします。", + "Save Changes": "変更内容を保存", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "このログは管理者のサインインが成功したリストです。記録は:days日間保持されます。", + "Access Log": "アクセスログ", + "View a list of successful back-end user sign ins.": "サインインに成功したバックエンドユーザーを表示します。", + "ID": "ID", + "Date & Time": "日時", + "Type": "タイプ", + "IP address": "IPアドレス", + "Login": "ログイン", + "First name": "名", + "Last name": "姓", + "Email": "メール", + "Translated for locale: :value": "ロケール用に翻訳: :value", + "Translated for site: :value": "サイトの翻訳: :値", + "A custom schema is used for this file format.": "このファイル形式には、カスタム スキーマが使用されます。", + "Select": "選択する", + "Replace": "交換" } \ No newline at end of file diff --git a/modules/backend/lang/lt.json b/modules/backend/lang/lt.json index 0875359aab..89efaf8deb 100644 --- a/modules/backend/lang/lt.json +++ b/modules/backend/lang/lt.json @@ -1,104 +1,111 @@ { - "Cancel": "Atšaukti", - "You are viewing as": "Jūs žiūrite kaip", - "Preview Role": "Peržiūrėti vaidmenį", - "This lets you test the actions this role can perform.": "Tai leidžia išbandyti veiksmus, kuriuos gali atlikti šis vaidmuo.", - "View As Role": "Žiūrėti kaip vaidmenį", - "Return to Role Settings": "Grįžkite į vaidmenų nustatymus", - "Password must have a minimum of length of :min characters": "Slaptažodį turi sudaryti mažiausiai :min simbolių", - "Password must contain at least one uppercase character.": "Slaptažodyje turi būti bent viena didžioji raidė.", - "Password must contain at least one lowercase character.": "Slaptažodyje turi būti bent viena mažoji raidė.", - "Password must contain at least one number.": "Slaptažodyje turi būti bent vienas skaičius.", - "Password must contain at least one nonalphanumeric character.": "Slaptažodyje turi būti bent vienas ne raidinis ir skaitinis simbolis.", - "Welcome to your Administration Area, :name": "Sveiki atvykę į jūsų administravimo sritį, :name", - "Duplicate": "Pasikartoti", - "Expand": "Išskleisti", - "Collapse": "Sutraukti", - "Move Up": "Judėti aukštyn", - "Move Down": "Judėk žemyn", - "Remove": "Pašalinti", - "Manage Item": "Tvarkyti elementą", - "Clear Filters": "Išvalyti filtrus", - "Filter Setup": "Filtro sąranka", - "Apply": "Taikyti", - "Clear": "Aišku", - "is equal to": "yra lygus", - "is between": "yra tarp", - "contains": "yra", - "is before": "yra anksčiau", - "is after": "yra po", - "is greater than": "yra didesnis nei", - "is less than": "mažiau nei", - "1. Export output format": "1. Eksportavimo formatas", - "File Format": "Failo formatas", - "Delimiter Character": "Skirtuko simbolis", - "Enclosure Character": "Aptvėrimo simbolis", - "Escape Character": "Išėjimo simbolis", - "2. Select columns to export": "2. Pasirinkite stulpelius eksportavimui", - "Columns": "Stulpeliai", - "3. Set export options": "3. Nurodykite eksportavimo nustatymus", - "CSV Custom": "Individualus formatas", - "1. Upload an Import File": "1. Įkelkite CSV failą", - "Import File": "Importuoti failą", - "File Encoding": "Failo koduotė", - "First row contains column titles": "Pirma eilutė nurodo stulpelių pavadinimus", - "Leave this checked if the first row in the CSV is used as the column titles.": "Palikite pažymėtą jeigu norite naudoti pirmą eilutę kaip stulpelių pavadinimus.", - "2. Match the file columns to database fields": "2. Suderinkite failo stulpelius su duomenų bazės laukeliais", - "File columns": "Failo stulpeliai", - "Database fields": "Duombazės laukeliai", - "3. Set import options": "3. Nurodykite importavimo nustatymus", - "Export progress": "Eksportavimo progresas", - "Processing": "Vykdoma", - "Import progress": "Importavimo progresas", - "Import error": "Importavimo klaida", - "Export error": "Eksportavimo klaida", - "Column preview": "Stulpelio peržiūra", - "Column": "Stulpelis", - "Disable": "Išjungti", - "Enable": "Įgalinti", - "Delete": "Ištrinti", - "Export": "Eksportuoti", - "Import": "Importuoti", - "Select Action": "Pasirinkite Veiksmas", - "Please create a new account for logging in to the Administration Area.": "Norėdami prisijungti prie administravimo srities, susikurkite naują paskyrą.", - "First Name": "Pirmas vardas", - "Last Name": "Pavardė", - "Email Address": "Elektroninio pašto adresas", - "Pick a Username": "Pasirinkite slapyvardį", - "Enter New Password": "Įveskite naują slaptažodį", - "Confirm Password": "Patvirtinti slaptažodį", - "Create Account": "Sukurti paskyrą", - "Getting Ready": "Pasiruošimas", - "Just a few more minutes": "Dar kelios minutės", - "Migrating Database": "Perkeliama duomenų bazė", - "Access the Backend Panel": "Pasiekite pagrindinį skydelį", - "View Backend During Maintenance": "Žiūrėti atgalinę dalį priežiūros metu", - "Perform Software Updates": "Atlikite programinės įrangos atnaujinimus", - "In Maintenance": "Priežiūroje", - "The site is currently in maintenance mode, please check back later.": "Šiuo metu svetainė veikia priežiūros režimu, patikrinkite vėliau.", - "Dashboard": "Prietaisų skydelis", - "Administrators": "Administratoriai", - "Manage Admins": "Tvarkyti administratorius", - "Create Admins": "Sukurti administratorius", - "Moderate Admins": "Nuosaikūs administratoriai", - "Manage account suspension and ban admin accounts": "Tvarkyti paskyros sustabdymą ir uždrausti administratoriaus paskyras", - "Manage Roles": "Valdykite vaidmenis", - "Manage Groups": "Tvarkyti grupes", - "Manage Other Admins": "Tvarkyti kitus administratorius", - "Allow users to reset passwords and update emails.": "Leidžia iš naujo nustatyti slaptažodžius ir atnaujinti el", - "Delete Admins": "Ištrinti administratorius", - "Preferences": "Parinktys", - "Settings": "Nustatymai", - "Background Color": "Fono spalva", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Leiskite vartotojams kurti naujus vaidmenis ir redaguoti arba ištrinti vaidmenis, žemesnius nei jų aukščiausias vaidmuo.", - "Save Changes": "Išsaugoti pakeitimus", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Šis registras rodo sėkmingų administratoriaus prisijungimų sąrašą. Įrašai yra saugomi viso :days dienų.", - "Access Log": "Prieigos registras", - "View a list of successful back-end user sign ins.": "Žiūrėti sėkmingų administratoriaus prisijungimų sąrašą.", - "Date & Time": "Data ir Laikas", - "IP address": "IP adresas", - "Login": "Prisijungimas", - "First name": "Vardas", - "Last name": "Pavardė", - "Email": "El.paštas" + "Cancel": "Atšaukti", + "You are viewing as": "Jūs žiūrite kaip", + "Preview Role": "Peržiūrėti vaidmenį", + "This lets you test the actions this role can perform.": "Tai leidžia išbandyti veiksmus, kuriuos gali atlikti šis vaidmuo.", + "View As Role": "Žiūrėti kaip vaidmenį", + "Return to Role Settings": "Grįžkite į vaidmenų nustatymus", + "Password must have a minimum of length of :min characters": "Slaptažodį turi sudaryti mažiausiai :min simbolių", + "Password must contain at least one uppercase character.": "Slaptažodyje turi būti bent viena didžioji raidė.", + "Password must contain at least one lowercase character.": "Slaptažodyje turi būti bent viena mažoji raidė.", + "Password must contain at least one number.": "Slaptažodyje turi būti bent vienas skaičius.", + "Password must contain at least one nonalphanumeric character.": "Slaptažodyje turi būti bent vienas ne raidinis ir skaitinis simbolis.", + "Welcome to your Administration Area, :name": "Sveiki atvykę į jūsų administravimo sritį, :name", + "Duplicate": "Pasikartoti", + "Expand": "Išskleisti", + "Collapse": "Sutraukti", + "Move Up": "Judėti aukštyn", + "Move Down": "Judėk žemyn", + "Remove": "Pašalinti", + "Manage Item": "Tvarkyti elementą", + "Clear Filters": "Išvalyti filtrus", + "Filter Setup": "Filtro sąranka", + "Apply": "Taikyti", + "Clear": "Aišku", + "is equal to": "yra lygus", + "is between": "yra tarp", + "contains": "yra", + "is before": "yra anksčiau", + "is after": "yra po", + "is greater than": "yra didesnis nei", + "is less than": "mažiau nei", + "1. Export output format": "1. Eksportavimo formatas", + "File Format": "Failo formatas", + "Delimiter Character": "Skirtuko simbolis", + "Enclosure Character": "Aptvėrimo simbolis", + "Escape Character": "Išėjimo simbolis", + "2. Select columns to export": "2. Pasirinkite stulpelius eksportavimui", + "Columns": "Stulpeliai", + "3. Set export options": "3. Nurodykite eksportavimo nustatymus", + "CSV Custom": "Individualus formatas", + "1. Upload an Import File": "1. Įkelkite CSV failą", + "Import File": "Importuoti failą", + "File Encoding": "Failo koduotė", + "First row contains column titles": "Pirma eilutė nurodo stulpelių pavadinimus", + "Leave this checked if the first row in the CSV is used as the column titles.": "Palikite pažymėtą jeigu norite naudoti pirmą eilutę kaip stulpelių pavadinimus.", + "2. Match the file columns to database fields": "2. Suderinkite failo stulpelius su duomenų bazės laukeliais", + "File columns": "Failo stulpeliai", + "Database fields": "Duombazės laukeliai", + "3. Set import options": "3. Nurodykite importavimo nustatymus", + "Export progress": "Eksportavimo progresas", + "Processing": "Vykdoma", + "Import progress": "Importavimo progresas", + "Import error": "Importavimo klaida", + "Export error": "Eksportavimo klaida", + "Column preview": "Stulpelio peržiūra", + "Column": "Stulpelis", + "Disable": "Išjungti", + "Enable": "Įgalinti", + "Delete": "Ištrinti", + "Export": "Eksportuoti", + "Import": "Importuoti", + "Select Action": "Pasirinkite Veiksmas", + "Please create a new account for logging in to the Administration Area.": "Norėdami prisijungti prie administravimo srities, susikurkite naują paskyrą.", + "First Name": "Pirmas vardas", + "Last Name": "Pavardė", + "Email Address": "Elektroninio pašto adresas", + "Pick a Username": "Pasirinkite slapyvardį", + "Enter New Password": "Įveskite naują slaptažodį", + "Confirm Password": "Patvirtinti slaptažodį", + "Create Account": "Sukurti paskyrą", + "Getting Ready": "Pasiruošimas", + "Just a few more minutes": "Dar kelios minutės", + "Migrating Database": "Perkeliama duomenų bazė", + "Access the Backend Panel": "Pasiekite pagrindinį skydelį", + "View Backend During Maintenance": "Žiūrėti atgalinę dalį priežiūros metu", + "Perform Software Updates": "Atlikite programinės įrangos atnaujinimus", + "In Maintenance": "Priežiūroje", + "The site is currently in maintenance mode, please check back later.": "Šiuo metu svetainė veikia priežiūros režimu, patikrinkite vėliau.", + "Dashboard": "Prietaisų skydelis", + "Administrators": "Administratoriai", + "Manage Admins": "Tvarkyti administratorius", + "Create Admins": "Sukurti administratorius", + "Moderate Admins": "Nuosaikūs administratoriai", + "Manage account suspension and ban admin accounts": "Tvarkyti paskyros sustabdymą ir uždrausti administratoriaus paskyras", + "Manage Roles": "Valdykite vaidmenis", + "Manage Groups": "Tvarkyti grupes", + "Manage Other Admins": "Tvarkyti kitus administratorius", + "Allow users to reset passwords and update emails.": "Leidžia iš naujo nustatyti slaptažodžius ir atnaujinti el", + "Delete Admins": "Ištrinti administratorius", + "Preferences": "Parinktys", + "Settings": "Nustatymai", + "Background Color": "Fono spalva", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Leiskite vartotojams kurti naujus vaidmenis ir redaguoti arba ištrinti vaidmenis, žemesnius nei jų aukščiausias vaidmuo.", + "Save Changes": "Išsaugoti pakeitimus", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Šis registras rodo sėkmingų administratoriaus prisijungimų sąrašą. Įrašai yra saugomi viso :days dienų.", + "Access Log": "Prieigos registras", + "View a list of successful back-end user sign ins.": "Žiūrėti sėkmingų administratoriaus prisijungimų sąrašą.", + "ID": "ID", + "Date & Time": "Data ir Laikas", + "Type": "Tipas", + "IP address": "IP adresas", + "Login": "Prisijungimas", + "First name": "Vardas", + "Last name": "Pavardė", + "Email": "El.paštas", + "Translated for locale: :value": "Išversta pagal lokalę: :value", + "Translated for site: :value": "Išversta į svetainę: :value", + "A custom schema is used for this file format.": "Šiam failo formatui naudojama tinkinta schema.", + "Select": "Pasirinkite", + "Replace": "Pakeiskite" } \ No newline at end of file diff --git a/modules/backend/lang/lv.json b/modules/backend/lang/lv.json index 4a0cbc2b01..fe7cb916ff 100644 --- a/modules/backend/lang/lv.json +++ b/modules/backend/lang/lv.json @@ -1,104 +1,111 @@ { - "Cancel": "Atcelt", - "You are viewing as": "Jūs skatāties kā", - "Preview Role": "Priekšskatījuma loma", - "This lets you test the actions this role can perform.": "Tas ļauj pārbaudīt darbības, ko šī loma var veikt.", - "View As Role": "Skatīt kā lomu", - "Return to Role Settings": "Atgriezties uz lomu iestatījumiem", - "Password must have a minimum of length of :min characters": "Parolei ir jābūt vismaz :min rakstzīmēm", - "Password must contain at least one uppercase character.": "Parolē ir jābūt vismaz vienai lielajai rakstzīmei.", - "Password must contain at least one lowercase character.": "Parolē jāsatur vismaz viena mazā rakstzīme.", - "Password must contain at least one number.": "Parolei jāsastāv vismaz no viena cipara.", - "Password must contain at least one nonalphanumeric character.": "Parolē ir jāsatur vismaz viena rakstzīme, kas nav burtciparu.", - "Welcome to your Administration Area, :name": "Laipni lūdzam jūsu administrācijas apgabalā, :name", - "Duplicate": "Dublikāts", - "Expand": "Izvērst", - "Collapse": "Sakļaut", - "Move Up": "Pārvietot uz augšu", - "Move Down": "Pārvietot uz leju", - "Remove": "Noņemt", - "Manage Item": "Pārvaldīt vienumu", - "Clear Filters": "Notīrīt filtrus", - "Filter Setup": "Filtra iestatīšana", - "Apply": "Pieteikties", - "Clear": "Skaidrs", - "is equal to": "ir vienāds ar", - "is between": "ir starp", - "contains": "satur", - "is before": "ir pirms tam", - "is after": "ir pēc", - "is greater than": "ir labāks par", - "is less than": "ir mazāks par", - "1. Export output format": "1. Eksporta izvades formāts", - "File Format": "Faila formāts", - "Delimiter Character": "Delimiter rakstzīme (simbols)", - "Enclosure Character": "Enclosure rakstzīme (simbols)", - "Escape Character": "Escape rakstzīme (simbols)", - "2. Select columns to export": "2. Izvēlieties kolonnas, kuras ir jāeksportē", - "Columns": "Kolonnas", - "3. Set export options": "3. Iestatiet eksporta opcijas", - "CSV Custom": "Pielāgots formāts", - "1. Upload an Import File": "1. Augšupielādējiet CSV failu", - "Import File": "Importa fails", - "File Encoding": "Faila kodējums", - "First row contains column titles": "Pirmā rinda satur kolonnu nosaukumus \/ virsrakstus", - "Leave this checked if the first row in the CSV is used as the column titles.": "Atstājiet šo izvēles aili aktīvu, ja pirmā rinda Jūsu CSV failā satur kolonnu nosaukumus \/ virsrakstus.", - "2. Match the file columns to database fields": "2. Saskanējiet faila kolonnas ar datubāzes laukiem", - "File columns": "Faila kolonnas", - "Database fields": "Datubāzes lauki \/ kolonnas", - "3. Set import options": "3. Iestatiet importa opcijas", - "Export progress": "Eksporta progress", - "Processing": "Apstrāde", - "Import progress": "Importa progress", - "Import error": "Importa kļūda", - "Export error": "Eksporta kļūda", - "Column preview": "Kolonnas priekšskatījums", - "Column": "Kolonna", - "Disable": "Atspējot", - "Enable": "Iespējot", - "Delete": "Dzēst", - "Export": "Eksportēt", - "Import": "Importēt", - "Select Action": "Atlasiet Darbība", - "Please create a new account for logging in to the Administration Area.": "Lūdzu, izveidojiet jaunu kontu, lai pieteiktos administrācijas apgabalā.", - "First Name": "Vārds", - "Last Name": "Uzvārds", - "Email Address": "Epasta adrese", - "Pick a Username": "Izvēlieties lietotājvārdu", - "Enter New Password": "Ievadiet jauno paroli", - "Confirm Password": "apstipriniet paroli", - "Create Account": "Izveidot profilu", - "Getting Ready": "Sagatavoties", - "Just a few more minutes": "Vēl tikai dažas minūtes", - "Migrating Database": "Datu bāzes migrēšana", - "Access the Backend Panel": "Piekļūstiet aizmugures panelim", - "View Backend During Maintenance": "Apkopes laikā skatiet aizmuguri", - "Perform Software Updates": "Veiciet programmatūras atjauninājumus", - "In Maintenance": "In Apkope", - "The site is currently in maintenance mode, please check back later.": "Vietne pašlaik ir uzturēšanas režīmā, lūdzu, pārbaudiet vēlāk.", - "Dashboard": "Mērinstrumentu panelis", - "Administrators": "Administratori", - "Manage Admins": "Pārvaldīt administratorus", - "Create Admins": "Izveidot administratorus", - "Moderate Admins": "Vidēji administratori", - "Manage account suspension and ban admin accounts": "Pārvaldiet konta apturēšanu un bloķējiet administratora kontus", - "Manage Roles": "Pārvaldīt lomas", - "Manage Groups": "Pārvaldīt grupas", - "Manage Other Admins": "Pārvaldīt citus administratorus", - "Allow users to reset passwords and update emails.": "Ļauj atiestatīt paroles un atjaunināt e-pastus", - "Delete Admins": "Dzēst administratorus", - "Preferences": "Preferences", - "Settings": "Iestatījumi", - "Background Color": "Fona krāsa", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Ļaujiet lietotājiem izveidot jaunas lomas un rediģēt vai dzēst lomas, kas ir zemākas par viņu augstāko lomu.", - "Save Changes": "Saglabāt izmaiņas", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Šis žurnāls rāda sarakstu ar vieksmīgajiem ielogošanās mēģinājumiem no administrātoriem. Ieraksti tiek saglabāti :days dienas.", - "Access Log": "Autorizēšanās žurnāls", - "View a list of successful back-end user sign ins.": "Rāda sarakstu ar veiksmīgajiem back-end autorizēšanās mēģinājumiem.", - "Date & Time": "Datums & Laiks", - "IP address": "IP adrese", - "Login": "Lietotājvārds", - "First name": "Vārds", - "Last name": "Uzvārds", - "Email": "Epasts" + "Cancel": "Atcelt", + "You are viewing as": "Jūs skatāties kā", + "Preview Role": "Priekšskatījuma loma", + "This lets you test the actions this role can perform.": "Tas ļauj pārbaudīt darbības, ko šī loma var veikt.", + "View As Role": "Skatīt kā lomu", + "Return to Role Settings": "Atgriezties uz lomu iestatījumiem", + "Password must have a minimum of length of :min characters": "Parolei ir jābūt vismaz :min rakstzīmēm", + "Password must contain at least one uppercase character.": "Parolē ir jābūt vismaz vienai lielajai rakstzīmei.", + "Password must contain at least one lowercase character.": "Parolē jāsatur vismaz viena mazā rakstzīme.", + "Password must contain at least one number.": "Parolei jāsastāv vismaz no viena cipara.", + "Password must contain at least one nonalphanumeric character.": "Parolē ir jāsatur vismaz viena rakstzīme, kas nav burtciparu.", + "Welcome to your Administration Area, :name": "Laipni lūdzam jūsu administrācijas apgabalā, :name", + "Duplicate": "Dublikāts", + "Expand": "Izvērst", + "Collapse": "Sakļaut", + "Move Up": "Pārvietot uz augšu", + "Move Down": "Pārvietot uz leju", + "Remove": "Noņemt", + "Manage Item": "Pārvaldīt vienumu", + "Clear Filters": "Notīrīt filtrus", + "Filter Setup": "Filtra iestatīšana", + "Apply": "Pieteikties", + "Clear": "Skaidrs", + "is equal to": "ir vienāds ar", + "is between": "ir starp", + "contains": "satur", + "is before": "ir pirms tam", + "is after": "ir pēc", + "is greater than": "ir labāks par", + "is less than": "ir mazāks par", + "1. Export output format": "1. Eksporta izvades formāts", + "File Format": "Faila formāts", + "Delimiter Character": "Delimiter rakstzīme (simbols)", + "Enclosure Character": "Enclosure rakstzīme (simbols)", + "Escape Character": "Escape rakstzīme (simbols)", + "2. Select columns to export": "2. Izvēlieties kolonnas, kuras ir jāeksportē", + "Columns": "Kolonnas", + "3. Set export options": "3. Iestatiet eksporta opcijas", + "CSV Custom": "Pielāgots formāts", + "1. Upload an Import File": "1. Augšupielādējiet CSV failu", + "Import File": "Importa fails", + "File Encoding": "Faila kodējums", + "First row contains column titles": "Pirmā rinda satur kolonnu nosaukumus / virsrakstus", + "Leave this checked if the first row in the CSV is used as the column titles.": "Atstājiet šo izvēles aili aktīvu, ja pirmā rinda Jūsu CSV failā satur kolonnu nosaukumus / virsrakstus.", + "2. Match the file columns to database fields": "2. Saskanējiet faila kolonnas ar datubāzes laukiem", + "File columns": "Faila kolonnas", + "Database fields": "Datubāzes lauki / kolonnas", + "3. Set import options": "3. Iestatiet importa opcijas", + "Export progress": "Eksporta progress", + "Processing": "Apstrāde", + "Import progress": "Importa progress", + "Import error": "Importa kļūda", + "Export error": "Eksporta kļūda", + "Column preview": "Kolonnas priekšskatījums", + "Column": "Kolonna", + "Disable": "Atspējot", + "Enable": "Iespējot", + "Delete": "Dzēst", + "Export": "Eksportēt", + "Import": "Importēt", + "Select Action": "Atlasiet Darbība", + "Please create a new account for logging in to the Administration Area.": "Lūdzu, izveidojiet jaunu kontu, lai pieteiktos administrācijas apgabalā.", + "First Name": "Vārds", + "Last Name": "Uzvārds", + "Email Address": "Epasta adrese", + "Pick a Username": "Izvēlieties lietotājvārdu", + "Enter New Password": "Ievadiet jauno paroli", + "Confirm Password": "apstipriniet paroli", + "Create Account": "Izveidot profilu", + "Getting Ready": "Sagatavoties", + "Just a few more minutes": "Vēl tikai dažas minūtes", + "Migrating Database": "Datu bāzes migrēšana", + "Access the Backend Panel": "Piekļūstiet aizmugures panelim", + "View Backend During Maintenance": "Apkopes laikā skatiet aizmuguri", + "Perform Software Updates": "Veiciet programmatūras atjauninājumus", + "In Maintenance": "In Apkope", + "The site is currently in maintenance mode, please check back later.": "Vietne pašlaik ir uzturēšanas režīmā, lūdzu, pārbaudiet vēlāk.", + "Dashboard": "Mērinstrumentu panelis", + "Administrators": "Administratori", + "Manage Admins": "Pārvaldīt administratorus", + "Create Admins": "Izveidot administratorus", + "Moderate Admins": "Vidēji administratori", + "Manage account suspension and ban admin accounts": "Pārvaldiet konta apturēšanu un bloķējiet administratora kontus", + "Manage Roles": "Pārvaldīt lomas", + "Manage Groups": "Pārvaldīt grupas", + "Manage Other Admins": "Pārvaldīt citus administratorus", + "Allow users to reset passwords and update emails.": "Ļauj atiestatīt paroles un atjaunināt e-pastus", + "Delete Admins": "Dzēst administratorus", + "Preferences": "Preferences", + "Settings": "Iestatījumi", + "Background Color": "Fona krāsa", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Ļaujiet lietotājiem izveidot jaunas lomas un rediģēt vai dzēst lomas, kas ir zemākas par viņu augstāko lomu.", + "Save Changes": "Saglabāt izmaiņas", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Šis žurnāls rāda sarakstu ar vieksmīgajiem ielogošanās mēģinājumiem no administrātoriem. Ieraksti tiek saglabāti :days dienas.", + "Access Log": "Autorizēšanās žurnāls", + "View a list of successful back-end user sign ins.": "Rāda sarakstu ar veiksmīgajiem back-end autorizēšanās mēģinājumiem.", + "ID": "ID", + "Date & Time": "Datums & Laiks", + "Type": "Tips", + "IP address": "IP adrese", + "Login": "Lietotājvārds", + "First name": "Vārds", + "Last name": "Uzvārds", + "Email": "Epasts", + "Translated for locale: :value": "Tulkots vietnei: :value", + "Translated for site: :value": "Tulkots vietnei: :value", + "A custom schema is used for this file format.": "Šim faila formātam tiek izmantota pielāgota shēma.", + "Select": "Izvēlieties", + "Replace": "Aizvietot" } \ No newline at end of file diff --git a/modules/backend/lang/nl.json b/modules/backend/lang/nl.json index 17e1af5820..bfa964e776 100644 --- a/modules/backend/lang/nl.json +++ b/modules/backend/lang/nl.json @@ -1,106 +1,111 @@ { - "Cancel": "Annuleren", - "You are viewing as": "Je bekijkt als", - "Preview Role": "Voorbeeldrol", - "This lets you test the actions this role can perform.": "Hiermee kunt u de acties testen die deze rol kan uitvoeren.", - "View As Role": "Weergeven als rol", - "Return to Role Settings": "Keer terug naar rolinstellingen", - "Password must have a minimum of length of :min characters": "Wachtwoord moet minimaal :min tekens lang zijn", - "Password must contain at least one uppercase character.": "Wachtwoord moet ten minste één hoofdletter bevatten.", - "Password must contain at least one lowercase character.": "Wachtwoord moet ten minste één kleine letter bevatten.", - "Password must contain at least one number.": "Het wachtwoord moet minstens een nummer bevatten.", - "Password must contain at least one nonalphanumeric character.": "Wachtwoord moet ten minste één niet-alfanumeriek teken bevatten.", - "Welcome to your Administration Area, :name": "Welkom in jouw beheeromgeving, :name", - "Duplicate": "Dupliceren", - "Expand": "Uitklappen", - "Collapse": "Inklappen", - "Move Up": "Omhoog", - "Move Down": "Omlaag", - "Remove": "Verwijderen", - "Manage Item": "Beheer Item", - "Clear Filters": "Filters wissen", - "Filter Setup": "Filterinstellingen", - "Apply": "Van toepassing zijn", - "Clear": "Duidelijk", - "is equal to": "is gelijk aan", - "is between": "is tussen", - "contains": "bevat", - "is before": "is eerder", - "is after": "is na", - "is greater than": "is groter dan", - "is less than": "is minder dan", - "1. Export output format": "1. Export uitvoerformaat", - "File Format": "Bestandsformaat", - "Delimiter Character": "Scheidingsteken", - "Enclosure Character": "Tekstscheidingsteken", - "Escape Character": "Escape karakter", - "2. Select columns to export": "2. Selecteer kolommen om te exporteren", - "Columns": "Kolommen", - "3. Set export options": "3. Exporteer opties", - "CSV Custom": "Aangepast formaat", - "1. Upload an Import File": "1. Upload een CSV bestand", - "Import File": "Importeer bestand", - "File Encoding": "Bestandscodering", - "First row contains column titles": "De eerste regel bevat kolomtitels", - "Leave this checked if the first row in the CSV is used as the column titles.": "Vink aan als de eerste regel kolomtitels bevat die gebruikt moeten worden.", - "2. Match the file columns to database fields": "2. Vergelijk de kolommen met de database velden", - "File columns": "Bestand kolommen", - "Database fields": "Database velden", - "3. Set import options": "3. Importeer opties", - "Export progress": "Voortgang exporteren", - "Processing": "Bezig met verwerken", - "Import progress": "Voortgang importeren", - "Import error": "Importeer fout", - "Export error": "Fout bij exporteren", - "Column preview": "Kolom voorbeeldweergave", - "Column": "Kolom", - "Disable": "Uitzetten", - "Enable": "Inschakelen", - "Delete": "Verwijderen", - "Export": "Exporteren", - "Import": "Importeren", - "Select Action": "Selecteer actie", - "Please create a new account for logging in to the Administration Area.": "Maak een nieuw account aan om in te loggen op het beheergedeelte.", - "First Name": "Voornaam", - "Last Name": "Achternaam", - "Email Address": "E-mailadres", - "Pick a Username": "Kies een gebruikersnaam", - "Enter New Password": "Voer een nieuw wachtwoord in", - "Confirm Password": "bevestig wachtwoord", - "Create Account": "Account aanmaken", - "Getting Ready": "Klaar maken", - "Just a few more minutes": "Nog een paar minuten", - "Migrating Database": "Database migreren", - "Access the Backend Panel": "Toegang tot het backend-paneel", - "View Backend During Maintenance": "Backend bekijken tijdens onderhoud", - "Perform Software Updates": "Software-updates uitvoeren", - "In Maintenance": "In onderhoud", - "The site is currently in maintenance mode, please check back later.": "De site bevindt zich momenteel in de onderhoudsmodus, kom later nog eens terug.", - "Dashboard": "Dashboard", - "Administrators": "Beheerders", - "Manage Admins": "Beheer beheerders", - "Create Admins": "Beheerders maken", - "Moderate Admins": "Beheerders gematigd", - "Manage account suspension and ban admin accounts": "Beheer accountopschorting en verbied beheerdersaccounts", - "Manage Roles": "Rollen beheren", - "Manage Groups": "Groepen beheren", - "Manage Other Admins": "Andere beheerders beheren", - "Allow users to reset passwords and update emails.": "Maakt het opnieuw instellen van wachtwoorden en het bijwerken van e-mails mogelijk", - "Delete Admins": "Beheerders verwijderen", - "Preferences": "Voorkeuren", - "Settings": "Instellingen", - "Background Color": "Achtergrond kleur", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Sta gebruikers toe om nieuwe rollen aan te maken en rollen te bewerken of te verwijderen die lager zijn dan hun hoogste rol.", - "Save Changes": "Wijzigingen opslaan", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Dit logboek toont een lijst met succesvolle inlogpogingen door beheerders. Registraties blijven :days dagen bewaard.", - "Access Log": "Toegangslogboek", - "View a list of successful back-end user sign ins.": "Bekijk een lijst met succesvolle inlogpogingen van gebruikers.", - "ID": "ID", - "Date & Time": "Datum & tijd", - "Type": "Type", - "IP address": "IP-adres", - "Login": "Gebruikersnaam", - "First name": "Voornaam", - "Last name": "Achternaam", - "Email": "E-mailadres" + "Cancel": "Annuleren", + "You are viewing as": "Je bekijkt als", + "Preview Role": "Voorbeeldrol", + "This lets you test the actions this role can perform.": "Hiermee kunt u de acties testen die deze rol kan uitvoeren.", + "View As Role": "Weergeven als rol", + "Return to Role Settings": "Keer terug naar rolinstellingen", + "Password must have a minimum of length of :min characters": "Wachtwoord moet minimaal :min tekens lang zijn", + "Password must contain at least one uppercase character.": "Wachtwoord moet ten minste één hoofdletter bevatten.", + "Password must contain at least one lowercase character.": "Wachtwoord moet ten minste één kleine letter bevatten.", + "Password must contain at least one number.": "Het wachtwoord moet minstens een nummer bevatten.", + "Password must contain at least one nonalphanumeric character.": "Wachtwoord moet ten minste één niet-alfanumeriek teken bevatten.", + "Welcome to your Administration Area, :name": "Welkom in jouw beheeromgeving, :name", + "Duplicate": "Dupliceren", + "Expand": "Uitklappen", + "Collapse": "Inklappen", + "Move Up": "Omhoog", + "Move Down": "Omlaag", + "Remove": "Verwijderen", + "Manage Item": "Beheer Item", + "Clear Filters": "Filters wissen", + "Filter Setup": "Filterinstellingen", + "Apply": "Van toepassing zijn", + "Clear": "Duidelijk", + "is equal to": "is gelijk aan", + "is between": "is tussen", + "contains": "bevat", + "is before": "is eerder", + "is after": "is na", + "is greater than": "is groter dan", + "is less than": "is minder dan", + "1. Export output format": "1. Export uitvoerformaat", + "File Format": "Bestandsformaat", + "Delimiter Character": "Scheidingsteken", + "Enclosure Character": "Tekstscheidingsteken", + "Escape Character": "Escape karakter", + "2. Select columns to export": "2. Selecteer kolommen om te exporteren", + "Columns": "Kolommen", + "3. Set export options": "3. Exporteer opties", + "CSV Custom": "Aangepast formaat", + "1. Upload an Import File": "1. Upload een CSV bestand", + "Import File": "Importeer bestand", + "File Encoding": "Bestandscodering", + "First row contains column titles": "De eerste regel bevat kolomtitels", + "Leave this checked if the first row in the CSV is used as the column titles.": "Vink aan als de eerste regel kolomtitels bevat die gebruikt moeten worden.", + "2. Match the file columns to database fields": "2. Vergelijk de kolommen met de database velden", + "File columns": "Bestand kolommen", + "Database fields": "Database velden", + "3. Set import options": "3. Importeer opties", + "Export progress": "Voortgang exporteren", + "Processing": "Bezig met verwerken", + "Import progress": "Voortgang importeren", + "Import error": "Importeer fout", + "Export error": "Fout bij exporteren", + "Column preview": "Kolom voorbeeldweergave", + "Column": "Kolom", + "Disable": "Uitzetten", + "Enable": "Inschakelen", + "Delete": "Verwijderen", + "Export": "Exporteren", + "Import": "Importeren", + "Select Action": "Selecteer actie", + "Please create a new account for logging in to the Administration Area.": "Maak een nieuw account aan om in te loggen op het beheergedeelte.", + "First Name": "Voornaam", + "Last Name": "Achternaam", + "Email Address": "E-mailadres", + "Pick a Username": "Kies een gebruikersnaam", + "Enter New Password": "Voer een nieuw wachtwoord in", + "Confirm Password": "bevestig wachtwoord", + "Create Account": "Account aanmaken", + "Getting Ready": "Klaar maken", + "Just a few more minutes": "Nog een paar minuten", + "Migrating Database": "Database migreren", + "Access the Backend Panel": "Toegang tot het backend-paneel", + "View Backend During Maintenance": "Backend bekijken tijdens onderhoud", + "Perform Software Updates": "Software-updates uitvoeren", + "In Maintenance": "In onderhoud", + "The site is currently in maintenance mode, please check back later.": "De site bevindt zich momenteel in de onderhoudsmodus, kom later nog eens terug.", + "Dashboard": "Dashboard", + "Administrators": "Beheerders", + "Manage Admins": "Beheer beheerders", + "Create Admins": "Beheerders maken", + "Moderate Admins": "Beheerders gematigd", + "Manage account suspension and ban admin accounts": "Beheer accountopschorting en verbied beheerdersaccounts", + "Manage Roles": "Rollen beheren", + "Manage Groups": "Groepen beheren", + "Manage Other Admins": "Andere beheerders beheren", + "Allow users to reset passwords and update emails.": "Maakt het opnieuw instellen van wachtwoorden en het bijwerken van e-mails mogelijk", + "Delete Admins": "Beheerders verwijderen", + "Preferences": "Voorkeuren", + "Settings": "Instellingen", + "Background Color": "Achtergrond kleur", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Sta gebruikers toe om nieuwe rollen aan te maken en rollen te bewerken of te verwijderen die lager zijn dan hun hoogste rol.", + "Save Changes": "Wijzigingen opslaan", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Dit logboek toont een lijst met succesvolle inlogpogingen door beheerders. Registraties blijven :days dagen bewaard.", + "Access Log": "Toegangslogboek", + "View a list of successful back-end user sign ins.": "Bekijk een lijst met succesvolle inlogpogingen van gebruikers.", + "ID": "ID", + "Date & Time": "Datum & tijd", + "Type": "Type", + "IP address": "IP-adres", + "Login": "Gebruikersnaam", + "First name": "Voornaam", + "Last name": "Achternaam", + "Email": "E-mailadres", + "Translated for locale: :value": "Vertaald voor landinstelling: :waarde", + "Translated for site: :value": "Vertaald voor site: :waarde", + "A custom schema is used for this file format.": "Voor dit bestandsformaat wordt een aangepast schema gebruikt.", + "Select": "Selecteer", + "Replace": "Vervangen" } \ No newline at end of file diff --git a/modules/backend/lang/pl.json b/modules/backend/lang/pl.json index 51aa251c4b..543e70f6ce 100644 --- a/modules/backend/lang/pl.json +++ b/modules/backend/lang/pl.json @@ -1,106 +1,111 @@ { - "Cancel": "Anulować", - "You are viewing as": "Oglądasz jako", - "Preview Role": "Podgląd roli", - "This lets you test the actions this role can perform.": "Pozwala to przetestować działania, które może wykonywać ta rola.", - "View As Role": "Wyświetl jako rolę", - "Return to Role Settings": "Wróć do ustawień ról", - "Password must have a minimum of length of :min characters": "Hasło musi mieć minimalną długość :min znaków", - "Password must contain at least one uppercase character.": "Hasło musi zawierać co najmniej jedną wielką literę.", - "Password must contain at least one lowercase character.": "Hasło musi zawierać co najmniej jedną małą literę.", - "Password must contain at least one number.": "Hasło musi zawierać co najmniej jeden numer.", - "Password must contain at least one nonalphanumeric character.": "Hasło musi zawierać co najmniej jeden znak niealfanumeryczny.", - "Welcome to your Administration Area, :name": "Witamy w obszarze administracyjnym, :nazwa", - "Duplicate": "Duplikować", - "Expand": "Zwiększać", - "Collapse": "Zawalić się", - "Move Up": "Podnieść", - "Move Down": "Padnij", - "Remove": "Usunąć", - "Manage Item": "Zarządzaj przedmiotem", - "Clear Filters": "Wyczyść filtry", - "Filter Setup": "Konfiguracja filtra", - "Apply": "Zastosować", - "Clear": "Jasny", - "is equal to": "jest równe", - "is between": "jest pomiędzy", - "contains": "zawiera", - "is before": "jest przed", - "is after": "jest po", - "is greater than": "jest większy niż", - "is less than": "jest mniej niż", - "1. Export output format": "1. Format eksportowanego pliku", - "File Format": "Format pliku", - "Delimiter Character": "Znak rozdzielający (delimiter)", - "Enclosure Character": "Znak zawierający (enclosure)", - "Escape Character": "Znak unikania (escape)", - "2. Select columns to export": "2. Wybierz kolumny do eksportu", - "Columns": "Kolumny", - "3. Set export options": "3. Ustaw opcje eksportu", - "CSV Custom": "Niestandardowy", - "1. Upload an Import File": "1. Wgraj plik CSV", - "Import File": "Importuj Plik", - "File Encoding": "Kodowanie", - "First row contains column titles": "Pierwszy wiersz zawiera nazwy kolumn", - "Leave this checked if the first row in the CSV is used as the column titles.": "Zostaw to pole zaznaczone, jeżeli pierwszy wiersz w pliku CSV zawiera tytuły kolumn.", - "2. Match the file columns to database fields": "2. Przypisz kolumny z pliku do pól w bazie danych", - "File columns": "Kolumny w pliku", - "Database fields": "Pola w bazie", - "3. Set import options": "3. Ustaw opcje importu", - "Export progress": "Postęp eksportu", - "Processing": "Przetwarzanie", - "Import progress": "Postęp importu", - "Import error": "Błąd importu", - "Export error": "Błąd eksportu", - "Column preview": "Podgląd kolumny", - "Column": "Kolumna", - "Disable": "Wyłączyć", - "Enable": "Włączyć", - "Delete": "Usunąć", - "Export": "Eksport", - "Import": "Import", - "Select Action": "Wybierz akcję", - "Please create a new account for logging in to the Administration Area.": "Utwórz nowe konto, aby zalogować się do obszaru administracyjnego.", - "First Name": "Imię", - "Last Name": "Nazwisko", - "Email Address": "Adres e-mail", - "Pick a Username": "Wybierz nazwę użytkownika", - "Enter New Password": "Wprowadź nowe hasło", - "Confirm Password": "Potwierdź hasło", - "Create Account": "Utwórz konto", - "Getting Ready": "Przygotowywanie się", - "Just a few more minutes": "Jeszcze tylko kilka minut", - "Migrating Database": "Migracja bazy danych", - "Access the Backend Panel": "Uzyskaj dostęp do panelu zaplecza", - "View Backend During Maintenance": "Wyświetl zaplecze podczas konserwacji", - "Perform Software Updates": "Wykonaj aktualizacje oprogramowania", - "In Maintenance": "W naprawie", - "The site is currently in maintenance mode, please check back later.": "Witryna jest obecnie w trybie konserwacji, sprawdź ponownie później.", - "Dashboard": "Deska rozdzielcza", - "Administrators": "Administratorzy", - "Manage Admins": "Zarządzaj administratorami", - "Create Admins": "Utwórz administratorów", - "Moderate Admins": "Umiarkowani administratorzy", - "Manage account suspension and ban admin accounts": "Zarządzaj zawieszeniem konta i blokuj konta administratora", - "Manage Roles": "Zarządzaj rolami", - "Manage Groups": "Zarządzaj grupami", - "Manage Other Admins": "Zarządzaj innymi administratorami", - "Allow users to reset passwords and update emails.": "Umożliwia resetowanie haseł i aktualizowanie e-maili", - "Delete Admins": "Usuń administratorów", - "Preferences": "Preferencje", - "Settings": "Ustawienia", - "Background Color": "Kolor tła", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Zezwalaj użytkownikom na tworzenie nowych ról oraz edytowanie lub usuwanie ról niższych niż ich najwyższa rola.", - "Save Changes": "Zapisz zmiany", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Ten log wyświetla listę udanych logowań administratorów. Dane są przechowywane przez :days dni.", - "Access Log": "Dziennik zdarzeń", - "View a list of successful back-end user sign ins.": "Zobacz listę pomyślnych zalogowań do panelu administracyjnego.", - "ID": "ID", - "Date & Time": "Data & Czas", - "Type": "Typ", - "IP address": "Adres IP", - "Login": "Login", - "First name": "Imię", - "Last name": "Nazwisko", - "Email": "Email" + "Cancel": "Anulować", + "You are viewing as": "Oglądasz jako", + "Preview Role": "Podgląd roli", + "This lets you test the actions this role can perform.": "Pozwala to przetestować działania, które może wykonywać ta rola.", + "View As Role": "Wyświetl jako rolę", + "Return to Role Settings": "Wróć do ustawień ról", + "Password must have a minimum of length of :min characters": "Hasło musi mieć minimalną długość :min znaków", + "Password must contain at least one uppercase character.": "Hasło musi zawierać co najmniej jedną wielką literę.", + "Password must contain at least one lowercase character.": "Hasło musi zawierać co najmniej jedną małą literę.", + "Password must contain at least one number.": "Hasło musi zawierać co najmniej jeden numer.", + "Password must contain at least one nonalphanumeric character.": "Hasło musi zawierać co najmniej jeden znak niealfanumeryczny.", + "Welcome to your Administration Area, :name": "Witamy w obszarze administracyjnym, :nazwa", + "Duplicate": "Duplikować", + "Expand": "Zwiększać", + "Collapse": "Zawalić się", + "Move Up": "Podnieść", + "Move Down": "Padnij", + "Remove": "Usunąć", + "Manage Item": "Zarządzaj przedmiotem", + "Clear Filters": "Wyczyść filtry", + "Filter Setup": "Konfiguracja filtra", + "Apply": "Zastosować", + "Clear": "Jasny", + "is equal to": "jest równe", + "is between": "jest pomiędzy", + "contains": "zawiera", + "is before": "jest przed", + "is after": "jest po", + "is greater than": "jest większy niż", + "is less than": "jest mniej niż", + "1. Export output format": "1. Format eksportowanego pliku", + "File Format": "Format pliku", + "Delimiter Character": "Znak rozdzielający (delimiter)", + "Enclosure Character": "Znak zawierający (enclosure)", + "Escape Character": "Znak unikania (escape)", + "2. Select columns to export": "2. Wybierz kolumny do eksportu", + "Columns": "Kolumny", + "3. Set export options": "3. Ustaw opcje eksportu", + "CSV Custom": "Niestandardowy", + "1. Upload an Import File": "1. Wgraj plik CSV", + "Import File": "Importuj Plik", + "File Encoding": "Kodowanie", + "First row contains column titles": "Pierwszy wiersz zawiera nazwy kolumn", + "Leave this checked if the first row in the CSV is used as the column titles.": "Zostaw to pole zaznaczone, jeżeli pierwszy wiersz w pliku CSV zawiera tytuły kolumn.", + "2. Match the file columns to database fields": "2. Przypisz kolumny z pliku do pól w bazie danych", + "File columns": "Kolumny w pliku", + "Database fields": "Pola w bazie", + "3. Set import options": "3. Ustaw opcje importu", + "Export progress": "Postęp eksportu", + "Processing": "Przetwarzanie", + "Import progress": "Postęp importu", + "Import error": "Błąd importu", + "Export error": "Błąd eksportu", + "Column preview": "Podgląd kolumny", + "Column": "Kolumna", + "Disable": "Wyłączyć", + "Enable": "Włączyć", + "Delete": "Usunąć", + "Export": "Eksport", + "Import": "Import", + "Select Action": "Wybierz akcję", + "Please create a new account for logging in to the Administration Area.": "Utwórz nowe konto, aby zalogować się do obszaru administracyjnego.", + "First Name": "Imię", + "Last Name": "Nazwisko", + "Email Address": "Adres e-mail", + "Pick a Username": "Wybierz nazwę użytkownika", + "Enter New Password": "Wprowadź nowe hasło", + "Confirm Password": "Potwierdź hasło", + "Create Account": "Utwórz konto", + "Getting Ready": "Przygotowywanie się", + "Just a few more minutes": "Jeszcze tylko kilka minut", + "Migrating Database": "Migracja bazy danych", + "Access the Backend Panel": "Uzyskaj dostęp do panelu zaplecza", + "View Backend During Maintenance": "Wyświetl zaplecze podczas konserwacji", + "Perform Software Updates": "Wykonaj aktualizacje oprogramowania", + "In Maintenance": "W naprawie", + "The site is currently in maintenance mode, please check back later.": "Witryna jest obecnie w trybie konserwacji, sprawdź ponownie później.", + "Dashboard": "Deska rozdzielcza", + "Administrators": "Administratorzy", + "Manage Admins": "Zarządzaj administratorami", + "Create Admins": "Utwórz administratorów", + "Moderate Admins": "Umiarkowani administratorzy", + "Manage account suspension and ban admin accounts": "Zarządzaj zawieszeniem konta i blokuj konta administratora", + "Manage Roles": "Zarządzaj rolami", + "Manage Groups": "Zarządzaj grupami", + "Manage Other Admins": "Zarządzaj innymi administratorami", + "Allow users to reset passwords and update emails.": "Umożliwia resetowanie haseł i aktualizowanie e-maili", + "Delete Admins": "Usuń administratorów", + "Preferences": "Preferencje", + "Settings": "Ustawienia", + "Background Color": "Kolor tła", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Zezwalaj użytkownikom na tworzenie nowych ról oraz edytowanie lub usuwanie ról niższych niż ich najwyższa rola.", + "Save Changes": "Zapisz zmiany", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Ten log wyświetla listę udanych logowań administratorów. Dane są przechowywane przez :days dni.", + "Access Log": "Dziennik zdarzeń", + "View a list of successful back-end user sign ins.": "Zobacz listę pomyślnych zalogowań do panelu administracyjnego.", + "ID": "ID", + "Date & Time": "Data & Czas", + "Type": "Typ", + "IP address": "Adres IP", + "Login": "Login", + "First name": "Imię", + "Last name": "Nazwisko", + "Email": "Email", + "Translated for locale: :value": "Przetłumaczone na język: :wartość", + "Translated for site: :value": "Przetłumaczone dla witryny: :wartość", + "A custom schema is used for this file format.": "Dla tego formatu pliku używany jest schemat niestandardowy.", + "Select": "Wybierz", + "Replace": "Zastępować" } \ No newline at end of file diff --git a/modules/backend/lang/pt-br.json b/modules/backend/lang/pt-br.json index f3eada90f0..deb9aeb06c 100644 --- a/modules/backend/lang/pt-br.json +++ b/modules/backend/lang/pt-br.json @@ -11,6 +11,24 @@ "Password must contain at least one number.": "A senha deve conter pelo menos um número.", "Password must contain at least one nonalphanumeric character.": "A senha deve conter pelo menos um caractere não alfanumérico.", "Welcome to your Administration Area, :name": "Bem-vindo à sua área de administração,: nome", + "Duplicate": "Duplicar", + "Expand": "Expandir", + "Collapse": "Colapsar", + "Move Up": "Mover para cima", + "Move Down": "Mover para baixo", + "Remove": "Remover", + "Manage Item": "Gerenciar Item", + "Clear Filters": "Limpar Filtros", + "Filter Setup": "Configuração do filtro", + "Apply": "Aplicar", + "Clear": "Limpar", + "is equal to": "é igual a", + "is between": "está entre", + "contains": "contém", + "is before": "é antes", + "is after": "é depois", + "is greater than": "é maior que", + "is less than": "é menor do que", "1. Export output format": "1. Formato de saída da exportação", "File Format": "Formato do arquivo", "Delimiter Character": "Caracter delimitador", @@ -36,6 +54,44 @@ "Export error": "Erro de exportação", "Column preview": "Pré-visualizar coluna", "Column": "Coluna", + "Disable": "Desabilitar", + "Enable": "Habilitar", + "Delete": "Apagar", + "Export": "Exportar", + "Import": "Importar", + "Select Action": "Selecionar ação", + "Please create a new account for logging in to the Administration Area.": "Por favor, crie uma nova conta para fazer login na Área Administrativa.", + "First Name": "Primeiro Nome", + "Last Name": "Último Nome", + "Email Address": "Endereço de Email", + "Pick a Username": "Escolha um nome de usuário", + "Enter New Password": "Insira a nova senha", + "Confirm Password": "Confirma senha", + "Create Account": "Criar Conta", + "Getting Ready": "Se preparando", + "Just a few more minutes": "Apenas mais alguns minutos", + "Migrating Database": "Migrando banco de dados", + "Access the Backend Panel": "Acesse o painel administrativo", + "View Backend During Maintenance": "Vizualizar painel administrativo durante a manutenção", + "Perform Software Updates": "Realizar atualizações de software", + "In Maintenance": "Em manutenção", + "The site is currently in maintenance mode, please check back later.": "O site está atualmente em manutenção, por favor volte mais tarde.", + "Dashboard": "Painel", + "Administrators": "Administradores", + "Manage Admins": "Gerenciar Administradores", + "Create Admins": "Criar Administradores", + "Moderate Admins": "Moderar Administradores", + "Manage account suspension and ban admin accounts": "Gerenciar suspensão de conta e banir contas de administradores", + "Manage Roles": "Gerenciar funções", + "Manage Groups": "Gerenciar grupos", + "Manage Other Admins": "Gerenciar outros administradores", + "Allow users to reset passwords and update emails.": "Permitir que os usuários redefinam senhas e atualizem e-mails.", + "Delete Admins": "Excluir administradores", + "Preferences": "Preferências", + "Settings": "Configurações", + "Background Color": "Cor de fundo", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Permitir que os usuários criem novas funções e editem ou excluam funções inferiores à sua função mais alta.", + "Save Changes": "Salvar alterações", "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Este registro mostra a lista de acessos dos administradores. Os registros são mantidos por um período de :days dias.", "Access Log": "Registro de Acesso", "View a list of successful back-end user sign ins.": "Veja a lista de acessos à administração.", @@ -47,4 +103,4 @@ "First name": "Nome", "Last name": "Sobrenome", "Email": "E-mail" -} \ No newline at end of file +} diff --git a/modules/backend/lang/pt-br/lang.php b/modules/backend/lang/pt-br/lang.php index cbb77041bc..d50442b958 100644 --- a/modules/backend/lang/pt-br/lang.php +++ b/modules/backend/lang/pt-br/lang.php @@ -7,7 +7,6 @@ 'invalid_type' => 'Tipo de campo inválido :type.', 'options_method_invalid_model' => 'O atributo ":field" não resolve a classe. Tente especificar as opções do método para o modelo :model.', 'options_method_not_exists' => 'A classe :model deve definir um método :method() retornando opções para o campo ":field".', - 'options_static_method_invalid_value' => 'O método estático \':method()\' na :class não retornou um array de opções válidas.', 'colors_method_not_exists' => 'A classe de modelo :model deve definir um método :method() retornando códigos HEX de cor html para o campo de formulário ":field".', ], 'widget' => [ @@ -16,7 +15,7 @@ ], 'page' => [ 'untitled' => 'Sem Título', - 404 => [ + 'not_found' => [ 'label' => 'Página não encontrada', 'help' => 'Pesquisamos e pesquisamos, mas a URL solicitada simplesmente não foi encontrada. Será que você estava procurando outra coisa?', 'back_link' => 'Volte para a página anterior', @@ -60,6 +59,7 @@ 'reset' => 'Redefinir', 'restore' => 'Restaurar', 'login_placeholder' => 'Usuário', + 'password_restore' => 'Restaurar senha', 'password_placeholder' => 'Senha', 'remember_me' => 'Permaneça logado', 'forgot_password' => 'Esqueceu sua senha?', @@ -222,6 +222,7 @@ 'records_per_page' => 'Registros por página', 'records_per_page_help' => 'Selecione o número de registros a serem exibidos por página. Note que um número grande pode prejudicar a performance.', 'check' => 'Marcar', + 'create_button' => 'Criar :name', 'delete_selected' => 'Excluir selecionado', 'delete_selected_empty' => 'Não há registros selecionados para excluir.', 'delete_selected_confirm' => 'Excluir os registros selecionados?', @@ -229,6 +230,10 @@ 'column_switch_true' => 'Sim', 'column_switch_false' => 'Não', ], + 'object_list' => [ + 'prop_cant_be_empty' => 'Propriedade :property não pode estar vazia', + 'key_value_exists' => 'O valor já está definido: :property_value', + ], 'fileupload' => [ 'attachment' => 'Anexo', 'help' => 'Adicione um título e descrição a este anexo.', @@ -240,6 +245,10 @@ 'upload_error' => 'Erro ao enviar', 'remove_confirm' => 'Você tem certeza?', 'remove_file' => 'Remover arquivo', + 'clear' => 'Limpar', + 'delete_selected' => 'Excluir selecionados', + 'upload' => 'Carregar', + 'replace' => 'Substituir', ], 'repeater' => [ 'add_new_item' => 'Adicionar novo item', @@ -256,6 +265,7 @@ 'restore_success' => ':name restaurado', 'reset_success' => 'Reinicialização completada', 'missing_id' => 'O ID do registro não foi fornecido', + 'missing_tab' => 'Falta uma definição de aba válida.', 'missing_model' => 'Formulário utilizado na classe :class não tem um model definido.', 'missing_definition' => 'Formulário não contém um campo ":field".', 'not_found' => 'Nenhum registro encontrado com o ID :id', @@ -306,6 +316,23 @@ 'concurrency_file_changed_title' => 'O arquivo foi alterado', 'concurrency_file_changed_description' => 'O arquivo que você está editando foi alterado em disco. Você pode recarregá-lo e perder suas alterações ou sobrescrever o arquivo do disco.', 'return_to_list' => 'Retornar à lista', + 'no_options_found' => 'Nenhuma opção encontrada', + 'error' => 'Erro', + 'toggle_full_screen' => 'Alternar para tela cheia', + ], + 'tabs' => [ + 'close' => 'Fechar Aba', + 'close_all' => 'Fechar tudo', + 'close_others' => 'Fechar os outros', + 'close_saved' => 'Fechar Salvo', + 'full_screen' => 'Alternar para tela cheia', + ], + 'modal' => [ + 'close' => 'Fechar', + ], + 'dropdownmenu' => [ + 'go_back' => 'Voltar', + 'close_menu' => 'Fechar Menu', ], 'recordfinder' => [ 'find_record' => 'Localizar Registro', @@ -317,6 +344,10 @@ 'select_page' => 'Selecione uma página ...', ], 'relation' => [ + 'add_success' => ':name Adicionado(a)', + 'link_success' => ':name Vinculado(a)', + 'remove_success' => ':name Removido(a)', + 'unlink_success' => ':name Desvinculado(a)', 'missing_config' => 'Comportamento relation não tem uma configuração para ":config".', 'missing_definition' => 'Comportamento relation não contém uma definição para ":field".', 'missing_model' => 'Comportamento relation utilizado na classe :class não possui um model definido.', @@ -370,6 +401,8 @@ 'plugin_missing' => 'O plugin :name é uma dependência, mas não está instalado. Por favor, instale este plugin.', 'debug' => 'O modo de depuração está ativado. Isso não é recomendado para instalações de produção.', 'decompileBackendAssets' => 'Os assets no Backend estão atualmente descompilados. Isso não é recomendado para instalações de produção.', + 'backend_uri' => 'A URL do painel :name é muito genérica. Por favor, defina para algo mais exclusivo.', + 'backend_login' => 'Uma conta com e login genérica :name foi encontrada. Por favor, renomeie esta conta de administrador.', ], 'editor' => [ 'menu_label' => 'Definições do Editor', @@ -414,6 +447,8 @@ 'allowed_empty_tags_comment' => 'A lista de etiquetas não é removida quando não há conteúdo.', 'allowed_tags' => 'Etiquetas permitidas', 'allowed_tags_comment' => 'Lista de etiquetas permitidas.', + 'allowed_attrs' => 'Atributos permitidos', + 'allowed_attrs_comment' => ':ista de atributos HTML permitidos, além das permissões normais.', 'no_wrap' => 'Não agrupe as etiquetas', 'no_wrap_comment' => 'Lista de etiquetas que não devem ser agrupadas.', 'remove_tags' => 'Excluir etiqueta', @@ -456,18 +491,37 @@ 'app_name_description' => 'Este nome é mostrado no título da área administrativa.', 'app_tagline' => 'Slogan do Aplicativo', 'app_tagline_description' => 'Esta frase é mostrada na tela de login administrativo.', + 'login_prompt' => 'Mensagem de boas-vindas', + 'login_prompt_description' => 'Essa mensagem é exibida na tela de login do painel', 'colors' => 'Cores', 'primary_color' => 'Cor primária', 'secondary_color' => 'Cor secundária', - 'accent_color' => 'Accent color', + 'accent_color' => 'Cor de destaque', + 'selection_color' => 'Cor da Seleção', + 'login_background_type' => 'Tipo de Fundo', + 'background_flat_color' => 'Cor plana', + 'background_wallpaper' => 'Papel de parede', + 'login_page' => 'Página de login', + 'login_image' => 'Imagem', + 'login_page_image' => 'Imagem da página de login', + 'login_image_random_autumn_images' => 'Imagens aleatórias de outono', + 'login_image_custom' => 'Imagem customizada', + 'background_color' => 'Cor de fundo', + 'background_wallpaper_image' => 'Imagem de fundo', + 'background_wallpaper_image_size' => 'Tamanho do papel de parede', + 'background_wallpaper_size_auto' => 'Automático', + 'background_wallpaper_size_cover' => 'Capa', 'styles' => 'Estilos', 'custom_stylesheet' => 'CSS customizado', 'navigation' => 'Navegação', 'menu_mode' => 'Estilo de menu', 'menu_mode_inline' => 'Em linha', + 'menu_mode_text' => 'Texto', 'menu_mode_inline_no_icons' => 'Em linha (sem ícones)', 'menu_mode_tile' => 'Blocos', + 'menu_mode_icon' => 'Ícones', 'menu_mode_collapsed' => 'Colapsados', + 'menu_mode_left' => 'Lado esquerdo', ], 'backend_preferences' => [ 'menu_label' => 'Preferências da Administração', @@ -479,10 +533,10 @@ 'locale' => 'Idioma', 'locale_comment' => 'Selecione o idioma de sua preferência.', ], - 'access_log' => [], 'filter' => [ 'all' => 'todos', 'options_method_not_exists' => 'A classe modelo :model deve definir um método :method() retornando opções para o filtro \':filter\'.', + 'options_static_method_invalid_value' => 'O método estático \':method()\' na :class não retornou um array de opções válidas.', 'date_all' => 'todo o período', 'number_all' => 'todos os números', ], @@ -537,12 +591,15 @@ ], 'permissions' => [ 'manage_media' => 'Gerenciar mídias', - 'allow_unsafe_markdown' => 'Usar Markdown inseguro (pode incluir Javascript)', ], 'mediafinder' => [ 'label' => 'Localizador de Mídia', 'default_prompt' => 'Clique no botão %s para localizar um arquivo de mídia', 'no_image' => 'A imagem não foi encontrada', + 'select' => 'Selecionar', + 'replace' => 'Substituir', + 'not_an_image' => 'O arquivo selecionado não é uma imagem', + 'click_to_select_file' => 'Clique para selecionar um arquivo', ], 'media' => [ 'menu_label' => 'Mídias', @@ -607,4 +664,30 @@ 'image_size' => 'Tamanho da imagem:', 'selected_size' => 'Selecionado:', ], + 'table' => [ + 'add_item' => 'Adicionar item', + ], + 'dictionary' => [ + 'key_required' => 'O campo Chave é obrigatório', + 'value_required' => 'O campo Valor é obrigatório', + ], + 'uploader' => [ + 'uploading' => 'Enviando arquivos', + 'complete' => 'Envio concluído', + ], + 'richeditor' => [ + 'upload_from_computer' => 'Carregar do computador', + 'embedding_code' => 'Código incorporado', + 'url_required' => 'A URL é obrigatória', + 'url_validation' => 'A URL deve começar com http:// ou https://', + 'add_image' => 'Inserir Imagem', + 'add_video' => 'Inserir Vídeo', + 'add_audio' => 'Inserir Áudio', + 'add_file' => 'Inserir Arquivo', + 'embedding_code_required' => 'O código incorporado é obrigatório', + 'embedding_code_invalid' => 'Insira um código de incorporação HTML válido', + 'embedding_code_invalid_title' => 'Código inválido', + 'browse' => 'Procurar na Gerenciador de Mídia', + 'by_url' => 'Por URL', + ], ]; diff --git a/modules/backend/lang/ro.json b/modules/backend/lang/ro.json index f2077c099f..80cfcc6fd7 100644 --- a/modules/backend/lang/ro.json +++ b/modules/backend/lang/ro.json @@ -1,104 +1,111 @@ { - "Cancel": "Anulare", - "You are viewing as": "Vizionați ca", - "Preview Role": "Previzualizare rol", - "This lets you test the actions this role can perform.": "Acest lucru vă permite să testați acțiunile pe care le poate efectua acest rol.", - "View As Role": "Vedeți ca rol", - "Return to Role Settings": "Reveniți la Setări rol", - "Password must have a minimum of length of :min characters": "Parola trebuie să aibă o lungime minimă de :min caractere", - "Password must contain at least one uppercase character.": "Parola trebuie să conțină cel puțin un caracter majuscul.", - "Password must contain at least one lowercase character.": "Parola trebuie să conțină cel puțin un caracter mic.", - "Password must contain at least one number.": "Parola trebuie să conțină cel puțin un număr.", - "Password must contain at least one nonalphanumeric character.": "Parola trebuie să conțină cel puțin un caracter nealfanumeric.", - "Welcome to your Administration Area, :name": "Bun venit în zona dvs. de administrare, :name", - "Duplicate": "Duplicat", - "Expand": "Extinde", - "Collapse": "Colaps", - "Move Up": "Deplasați-vă în sus", - "Move Down": "Mutați în jos", - "Remove": "Elimina", - "Manage Item": "Gestionați elementul", - "Clear Filters": "Ștergeți filtrele", - "Filter Setup": "Configurarea filtrului", - "Apply": "aplica", - "Clear": "clar", - "is equal to": "este egal cu", - "is between": "este între", - "contains": "conţine", - "is before": "este înainte", - "is after": "este după", - "is greater than": "este mai mare decât", - "is less than": "e mai puțin decât", - "1. Export output format": "1. Export format de ieșire", - "File Format": "Tipul fisierului", - "Delimiter Character": "Caracter delimitator", - "Enclosure Character": "Caracter de incintă", - "Escape Character": "Escape Personaj", - "2. Select columns to export": "2. Selectați coloanele de exportat", - "Columns": "Coloane", - "3. Set export options": "3. Setați opțiunile de export", - "CSV Custom": "CSV personalizat", - "1. Upload an Import File": "1. Încărcați un fișier de import", - "Import File": "Fișier de import", - "File Encoding": "Codificarea fișierelor", - "First row contains column titles": "Primul rând conține titlurile coloanelor", - "Leave this checked if the first row in the CSV is used as the column titles.": "Lăsați bifată dacă primul rând din CSV este folosit ca titluri de coloană.", - "2. Match the file columns to database fields": "2. Potriviți coloanele fișierului cu câmpurile bazei de date", - "File columns": "Fișier coloane", - "Database fields": "Câmpurile bazei de date", - "3. Set import options": "3. Setați opțiunile de import", - "Export progress": "Progresul exportului", - "Processing": "Prelucrare", - "Import progress": "Progresul importului", - "Import error": "Eroare de import", - "Export error": "Eroare de export", - "Column preview": "Previzualizarea coloanei", - "Column": "Coloană", - "Disable": "Dezactivați", - "Enable": "Permite", - "Delete": "Șterge", - "Export": "Export", - "Import": "Import", - "Select Action": "Selectați Acțiune", - "Please create a new account for logging in to the Administration Area.": "Vă rugăm să creați un cont nou pentru a vă autentifica în Zona de administrare.", - "First Name": "Nume", - "Last Name": "Nume", - "Email Address": "Adresa de e-mail", - "Pick a Username": "Alege un nume de utilizator", - "Enter New Password": "Introduceți o nouă parolă", - "Confirm Password": "Confirmă parola", - "Create Account": "Creează cont", - "Getting Ready": "Se pregateste", - "Just a few more minutes": "Încă câteva minute", - "Migrating Database": "Migrarea bazei de date", - "Access the Backend Panel": "Accesați panoul de backend", - "View Backend During Maintenance": "Vizualizați backend-ul în timpul întreținerii", - "Perform Software Updates": "Efectuați actualizări software", - "In Maintenance": "În întreținere", - "The site is currently in maintenance mode, please check back later.": "Site-ul este momentan în modul de întreținere, vă rugăm să reveniți mai târziu.", - "Dashboard": "Bord", - "Administrators": "Administratorii", - "Manage Admins": "Gestionați administratorii", - "Create Admins": "Creați administratori", - "Moderate Admins": "Administratori moderati", - "Manage account suspension and ban admin accounts": "Gestionați suspendarea contului și interziceți conturile de administrator", - "Manage Roles": "Gestionați rolurile", - "Manage Groups": "Gestionați grupuri", - "Manage Other Admins": "Gestionați alți administratori", - "Allow users to reset passwords and update emails.": "Permite resetarea parolelor și actualizarea e-mailurilor", - "Delete Admins": "Ștergeți administratorii", - "Preferences": "Preferințe", - "Settings": "Setări", - "Background Color": "Culoare de fundal", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Permiteți utilizatorilor să creeze noi roluri și să editeze sau să șteargă roluri mai mici decât rolul lor cel mai înalt.", - "Save Changes": "Salvează modificările", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Acest jurnal afiseaza o lista de conectari reusite, realizate de catre administratori. Inregistrarile sunt pastrate pentru un numar total de :days zile.", - "Access Log": "Jurnal acces", - "View a list of successful back-end user sign ins.": "Vizualizati o lista de conectari reusite, realizate de catre administratori.", - "Date & Time": "Data & Ora", - "IP address": "Adresa IP", - "Login": "Login", - "First name": "Prenume", - "Last name": "Nume", - "Email": "Email" + "Cancel": "Anulare", + "You are viewing as": "Vizionați ca", + "Preview Role": "Previzualizare rol", + "This lets you test the actions this role can perform.": "Acest lucru vă permite să testați acțiunile pe care le poate efectua acest rol.", + "View As Role": "Vedeți ca rol", + "Return to Role Settings": "Reveniți la Setări rol", + "Password must have a minimum of length of :min characters": "Parola trebuie să aibă o lungime minimă de :min caractere", + "Password must contain at least one uppercase character.": "Parola trebuie să conțină cel puțin un caracter majuscul.", + "Password must contain at least one lowercase character.": "Parola trebuie să conțină cel puțin un caracter mic.", + "Password must contain at least one number.": "Parola trebuie să conțină cel puțin un număr.", + "Password must contain at least one nonalphanumeric character.": "Parola trebuie să conțină cel puțin un caracter nealfanumeric.", + "Welcome to your Administration Area, :name": "Bun venit în zona dvs. de administrare, :name", + "Duplicate": "Duplicat", + "Expand": "Extinde", + "Collapse": "Colaps", + "Move Up": "Deplasați-vă în sus", + "Move Down": "Mutați în jos", + "Remove": "Elimina", + "Manage Item": "Gestionați elementul", + "Clear Filters": "Ștergeți filtrele", + "Filter Setup": "Configurarea filtrului", + "Apply": "aplica", + "Clear": "clar", + "is equal to": "este egal cu", + "is between": "este între", + "contains": "conţine", + "is before": "este înainte", + "is after": "este după", + "is greater than": "este mai mare decât", + "is less than": "e mai puțin decât", + "1. Export output format": "1. Export format de ieșire", + "File Format": "Tipul fisierului", + "Delimiter Character": "Caracter delimitator", + "Enclosure Character": "Caracter de incintă", + "Escape Character": "Escape Personaj", + "2. Select columns to export": "2. Selectați coloanele de exportat", + "Columns": "Coloane", + "3. Set export options": "3. Setați opțiunile de export", + "CSV Custom": "CSV personalizat", + "1. Upload an Import File": "1. Încărcați un fișier de import", + "Import File": "Fișier de import", + "File Encoding": "Codificarea fișierelor", + "First row contains column titles": "Primul rând conține titlurile coloanelor", + "Leave this checked if the first row in the CSV is used as the column titles.": "Lăsați bifată dacă primul rând din CSV este folosit ca titluri de coloană.", + "2. Match the file columns to database fields": "2. Potriviți coloanele fișierului cu câmpurile bazei de date", + "File columns": "Fișier coloane", + "Database fields": "Câmpurile bazei de date", + "3. Set import options": "3. Setați opțiunile de import", + "Export progress": "Progresul exportului", + "Processing": "Prelucrare", + "Import progress": "Progresul importului", + "Import error": "Eroare de import", + "Export error": "Eroare de export", + "Column preview": "Previzualizarea coloanei", + "Column": "Coloană", + "Disable": "Dezactivați", + "Enable": "Permite", + "Delete": "Șterge", + "Export": "Export", + "Import": "Import", + "Select Action": "Selectați Acțiune", + "Please create a new account for logging in to the Administration Area.": "Vă rugăm să creați un cont nou pentru a vă autentifica în Zona de administrare.", + "First Name": "Nume", + "Last Name": "Nume", + "Email Address": "Adresa de e-mail", + "Pick a Username": "Alege un nume de utilizator", + "Enter New Password": "Introduceți o nouă parolă", + "Confirm Password": "Confirmă parola", + "Create Account": "Creează cont", + "Getting Ready": "Se pregateste", + "Just a few more minutes": "Încă câteva minute", + "Migrating Database": "Migrarea bazei de date", + "Access the Backend Panel": "Accesați panoul de backend", + "View Backend During Maintenance": "Vizualizați backend-ul în timpul întreținerii", + "Perform Software Updates": "Efectuați actualizări software", + "In Maintenance": "În întreținere", + "The site is currently in maintenance mode, please check back later.": "Site-ul este momentan în modul de întreținere, vă rugăm să reveniți mai târziu.", + "Dashboard": "Bord", + "Administrators": "Administratorii", + "Manage Admins": "Gestionați administratorii", + "Create Admins": "Creați administratori", + "Moderate Admins": "Administratori moderati", + "Manage account suspension and ban admin accounts": "Gestionați suspendarea contului și interziceți conturile de administrator", + "Manage Roles": "Gestionați rolurile", + "Manage Groups": "Gestionați grupuri", + "Manage Other Admins": "Gestionați alți administratori", + "Allow users to reset passwords and update emails.": "Permite resetarea parolelor și actualizarea e-mailurilor", + "Delete Admins": "Ștergeți administratorii", + "Preferences": "Preferințe", + "Settings": "Setări", + "Background Color": "Culoare de fundal", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Permiteți utilizatorilor să creeze noi roluri și să editeze sau să șteargă roluri mai mici decât rolul lor cel mai înalt.", + "Save Changes": "Salvează modificările", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Acest jurnal afiseaza o lista de conectari reusite, realizate de catre administratori. Inregistrarile sunt pastrate pentru un numar total de :days zile.", + "Access Log": "Jurnal acces", + "View a list of successful back-end user sign ins.": "Vizualizati o lista de conectari reusite, realizate de catre administratori.", + "ID": "ID", + "Date & Time": "Data & Ora", + "Type": "Tip", + "IP address": "Adresa IP", + "Login": "Login", + "First name": "Prenume", + "Last name": "Nume", + "Email": "Email", + "Translated for locale: :value": "Tradus pentru locale: :value", + "Translated for site: :value": "Tradus pentru site: :value", + "A custom schema is used for this file format.": "Pentru acest format de fișier este utilizată o schemă personalizată.", + "Select": "Selectați", + "Replace": "A inlocui" } \ No newline at end of file diff --git a/modules/backend/lang/ru.json b/modules/backend/lang/ru.json index fa6139d876..4599687fed 100644 --- a/modules/backend/lang/ru.json +++ b/modules/backend/lang/ru.json @@ -1,106 +1,111 @@ { - "Cancel": "Отмена", - "You are viewing as": "Вы просматриваете панель управления от роли", - "Preview Role": "Имперсонация роли", - "This lets you test the actions this role can perform.": "Это позволяет вам проверить как эта роль видит панель управления.", - "View As Role": "Имперсонация роли", - "Return to Role Settings": "Вернуться к настройкам ролей", - "Password must have a minimum of length of :min characters": "Пароль должен содержать минимум :min символов.", - "Password must contain at least one uppercase character.": "Пароль должен содержать хотя бы один символ верхнего регистра.", - "Password must contain at least one lowercase character.": "Пароль должен содержать хотя бы один символ нижнего регистра.", - "Password must contain at least one number.": "Пароль должен содержать как минимум одну цифру.", - "Password must contain at least one nonalphanumeric character.": "Пароль должен содержать хотя бы один не буквенно-цифровой символ.", - "Welcome to your Administration Area, :name": "Добро пожаловать в вашу административную зону :name", - "Duplicate": "Скопировать", - "Expand": "Раскрыть", - "Collapse": "Скрыть", - "Move Up": "Вверх", - "Move Down": "Вниз", - "Remove": "Удалить", - "Manage Item": "Настроить", - "Clear Filters": "Очистить фильтры", - "Filter Setup": "Настройка фильтра", - "Apply": "Применить", - "Clear": "Очистить", - "is equal to": "равно", - "is between": "между", - "contains": "содержит", - "is before": "до", - "is after": "после", - "is greater than": "больше, чем", - "is less than": "меньше чем", - "1. Export output format": "1. Выбор формата экспорта", - "File Format": "Формат файла", - "Delimiter Character": "Символ разделения полей", - "Enclosure Character": "Символ обрамления полей", - "Escape Character": "Экранирующий символ", - "2. Select columns to export": "2. Выберите колонки для экспорта", - "Columns": "Столбцы", - "3. Set export options": "3. Установка параметров экспорта", - "CSV Custom": "Пользовательский формат", - "1. Upload an Import File": "1. Загрузка CSV-файл", - "Import File": "Импорт файла", - "File Encoding": "Кодирование файлов", - "First row contains column titles": "Первая строка содержит заголовки столбцов", - "Leave this checked if the first row in the CSV is used as the column titles.": "Выберите эту опцию, если первая строка в CSV-файле используется как заголовки для столбцов.", - "2. Match the file columns to database fields": "2. Применение столбцов файла к полям базы данных", - "File columns": "Столбцы файла", - "Database fields": "Поля базы данных", - "3. Set import options": "3. Установка параметров импорта", - "Export progress": "Прогресс экспорта", - "Processing": "Обработка", - "Import progress": "Прогресс импорта", - "Import error": "Ошибка импорта", - "Export error": "Ошибка экспорта", - "Column preview": "Предпросмотр столбца", - "Column": "Столбец", - "Disable": "Запрещать", - "Enable": "Давать возможность", - "Delete": "Удалить", - "Export": "Экспорт", - "Import": "импорт", - "Select Action": "Выберите действие", - "Please create a new account for logging in to the Administration Area.": "Пожалуйста, создайте новую учетную запись для входа в административную зону.", - "First Name": "Имя", - "Last Name": "Фамилия", - "Email Address": "Адрес электронной почты", - "Pick a Username": "Выберите никнейм", - "Enter New Password": "Введите новый пароль", - "Confirm Password": "Подтвердить Пароль", - "Create Account": "Зарегистрироваться", - "Getting Ready": "Готовиться", - "Just a few more minutes": "Еще несколько минут", - "Migrating Database": "Миграция базы данных", - "Access the Backend Panel": "Доступ к внутренней панели", - "View Backend During Maintenance": "Просмотр серверной части во время обслуживания", - "Perform Software Updates": "Выполнение обновлений программного обеспечения", - "In Maintenance": "В обеспечении", - "The site is currently in maintenance mode, please check back later.": "В настоящее время сайт находится в режиме обслуживания, зайдите позже.", - "Dashboard": "Панель приборов", - "Administrators": "Администраторы", - "Manage Admins": "Управление администраторами", - "Create Admins": "Создать администраторов", - "Moderate Admins": "Умеренные администраторы", - "Manage account suspension and ban admin accounts": "Управляйте приостановкой учетной записи и блокируйте учетные записи администратора", - "Manage Roles": "Управление ролями", - "Manage Groups": "Управление группами", - "Manage Other Admins": "Управление другими администраторами", - "Allow users to reset passwords and update emails.": "Позволяет сбрасывать пароли и обновлять электронную почту", - "Delete Admins": "Удалить администраторов", - "Preferences": "Настройки", - "Settings": "Настройки", - "Background Color": "Фоновый цвет", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Разрешить пользователям создавать новые роли, а также изменять или удалять роли ниже их самой высокой роли.", - "Save Changes": "Сохранить изменения", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "В этом журнале отображается список успешных попыток авторизаций администраторов. Записи хранятся :days дней.", - "Access Log": "Журнал доступа", - "View a list of successful back-end user sign ins.": "Просмотр списка успешных авторизаций администраторов.", - "ID": "ID", - "Date & Time": "Дата & Время", - "Type": "Тип", - "IP address": "IP адрес", - "Login": "Логин", - "First name": "Имя", - "Last name": "Фамилия", - "Email": "Почта" + "Cancel": "Отмена", + "You are viewing as": "Вы просматриваете панель управления от роли", + "Preview Role": "Имперсонация роли", + "This lets you test the actions this role can perform.": "Это позволяет вам проверить как пользователь этой роли видит панель управления.", + "View As Role": "Имперсонация роли", + "Return to Role Settings": "Вернуться к настройкам ролей", + "Password must have a minimum of length of :min characters": "Пароль должен содержать минимум :min символов.", + "Password must contain at least one uppercase character.": "Пароль должен содержать хотя бы один символ верхнего регистра.", + "Password must contain at least one lowercase character.": "Пароль должен содержать хотя бы один символ нижнего регистра.", + "Password must contain at least one number.": "Пароль должен содержать как минимум одну цифру.", + "Password must contain at least one nonalphanumeric character.": "Пароль должен содержать хотя бы один не буквенно-цифровой символ.", + "Welcome to your Administration Area, :name": "Добро пожаловать в вашу административную зону :name", + "Duplicate": "Скопировать", + "Expand": "Раскрыть", + "Collapse": "Скрыть", + "Move Up": "Вверх", + "Move Down": "Вниз", + "Remove": "Удалить", + "Manage Item": "Настроить", + "Clear Filters": "Очистить фильтры", + "Filter Setup": "Настройка фильтра", + "Apply": "Применить", + "Clear": "Очистить", + "is equal to": "равно", + "is between": "между", + "contains": "содержит", + "is before": "до", + "is after": "после", + "is greater than": "больше, чем", + "is less than": "меньше чем", + "1. Export output format": "1. Выбор формата экспорта", + "File Format": "Формат файла", + "Delimiter Character": "Символ разделения полей", + "Enclosure Character": "Символ обрамления полей", + "Escape Character": "Экранирующий символ", + "2. Select columns to export": "2. Выберите столбцы для экспорта", + "Columns": "Столбцы", + "3. Set export options": "3. Установка параметров экспорта", + "CSV Custom": "Пользовательский CSV формат", + "1. Upload an Import File": "1. Загрузка файла импорта", + "Import File": "Импорт файла", + "File Encoding": "Кодировка файла", + "First row contains column titles": "Первая строка содержит заголовки столбцов", + "Leave this checked if the first row in the CSV is used as the column titles.": "Выберите эту опцию, если первая строка в CSV-файле используется как заголовки для столбцов.", + "2. Match the file columns to database fields": "2. Сопоставление столбцов файла к базе данных", + "File columns": "Столбцы файла", + "Database fields": "Поля базы данных", + "3. Set import options": "3. Установка параметров импорта", + "Export progress": "Прогресс экспорта", + "Processing": "Обработка", + "Import progress": "Прогресс импорта", + "Import error": "Ошибка импорта", + "Export error": "Ошибка экспорта", + "Column preview": "Предпросмотр столбца", + "Column": "Столбец", + "Disable": "Отключить", + "Enable": "Включить", + "Delete": "Удалить", + "Export": "Экспорт", + "Import": "Импорт", + "Select Action": "Выберите действие", + "Please create a new account for logging in to the Administration Area.": "Создайте новую учетную запись для входа в панель администратора.", + "First Name": "Имя", + "Last Name": "Фамилия", + "Email Address": "Адрес электронной почты", + "Pick a Username": "Выберите юзернейм", + "Enter New Password": "Введите новый пароль", + "Confirm Password": "Подтвердите пароль", + "Create Account": "Создать учетную запись", + "Getting Ready": "Готовимся к запуску", + "Just a few more minutes": "Еще несколько минут", + "Migrating Database": "Миграция базы данных", + "Access the Backend Panel": "Доступ к панели администратора", + "View Backend During Maintenance": "Просмотр панели администратора во время обслуживания", + "Perform Software Updates": "Обновить систему", + "In Maintenance": "В режиме обслуживания", + "The site is currently in maintenance mode, please check back later.": "В настоящее время сайт находится в режиме обслуживания, зайдите позже.", + "Dashboard": "Дашборд", + "Administrators": "Администраторы", + "Manage Admins": "Управление администраторами", + "Create Admins": "Создать администраторов", + "Moderate Admins": "Модерировать администраторов", + "Manage account suspension and ban admin accounts": "Управляйте блокироваками и пприостановками учетной записи администратора", + "Manage Roles": "Управление ролями", + "Manage Groups": "Управление группами", + "Manage Other Admins": "Управление другими администраторами", + "Allow users to reset passwords and update emails.": "Разрешить менять пароли и обновлять электронную почту", + "Delete Admins": "Удалить администраторов", + "Preferences": "Предпочтения", + "Settings": "Настройки", + "Background Color": "Фоновый цвет", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Разрешить пользователям создавать новые роли, а также изменять или удалять роли ниже их самой высокой роли.", + "Save Changes": "Сохранить изменения", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "В этом журнале отображается список успешных попыток авторизаций администраторов. Записи хранятся :days дней.", + "Access Log": "Журнал доступа", + "View a list of successful back-end user sign ins.": "Просмотр списка успешных авторизаций администраторов.", + "ID": "ID", + "Date & Time": "Дата и время", + "Type": "Тип", + "IP address": "IP адрес", + "Login": "Логин", + "First name": "Имя", + "Last name": "Фамилия", + "Email": "Почта", + "Translated for locale: :value": "Переведено для локали: :value", + "Translated for site: :value": "Переведено для сайта: :value", + "A custom schema is used for this file format.": "Для этого формата файла используется пользовательская схема.", + "Select": "Выбирать", + "Replace": "Заменять" } \ No newline at end of file diff --git a/modules/backend/lang/sk.json b/modules/backend/lang/sk.json index 1ffcd40b67..bd198052e8 100644 --- a/modules/backend/lang/sk.json +++ b/modules/backend/lang/sk.json @@ -1,104 +1,111 @@ { - "Cancel": "Zrušiť", - "You are viewing as": "Prezeráte si ako", - "Preview Role": "Úloha ukážky", - "This lets you test the actions this role can perform.": "To vám umožní otestovať akcie, ktoré môže táto rola vykonávať.", - "View As Role": "Zobraziť ako rolu", - "Return to Role Settings": "Vráťte sa na nastavenia roly", - "Password must have a minimum of length of :min characters": "Heslo musí mať minimálnu dĺžku :min znakov", - "Password must contain at least one uppercase character.": "Heslo musí obsahovať aspoň jedno veľké písmeno.", - "Password must contain at least one lowercase character.": "Heslo musí obsahovať aspoň jedno malé písmeno.", - "Password must contain at least one number.": "Heslo musí obsahovať aspoň jednu číslicu.", - "Password must contain at least one nonalphanumeric character.": "Heslo musí obsahovať aspoň jeden nealfanumerický znak.", - "Welcome to your Administration Area, :name": "Vitajte vo svojej administratívnej oblasti, :name", - "Duplicate": "Duplicitné", - "Expand": "Rozbaliť", - "Collapse": "Zbaliť", - "Move Up": "Posunúť hore", - "Move Down": "Posunúť nadol", - "Remove": "Odstrániť", - "Manage Item": "Spravovať položku", - "Clear Filters": "Vymazať filtre", - "Filter Setup": "Nastavenie filtra", - "Apply": "Použiť", - "Clear": "Zrušiť", - "is equal to": "rovná sa", - "is between": "je medzi", - "contains": "obsahuje", - "is before": "je predtým", - "is after": "je po", - "is greater than": "je väčší ako", - "is less than": "je menej než", - "1. Export output format": "1. Formát exportu", - "File Format": "Formát súboru", - "Delimiter Character": "Oddeľovací znak", - "Enclosure Character": "Znak pre ohraničenie (enclosure character)", - "Escape Character": "Ukončovací znak (escape character)", - "2. Select columns to export": "2. Vybrať exportované stĺpce", - "Columns": "Stĺpce", - "3. Set export options": "3. Nastaviť vlastnosti exportu", - "CSV Custom": "Vlastný formát", - "1. Upload an Import File": "1. Nahrať CSV súbor", - "Import File": "Importovať súbor", - "File Encoding": "Kódovanie súboru", - "First row contains column titles": "Prvý riadok obsahuje názvy stĺpcov", - "Leave this checked if the first row in the CSV is used as the column titles.": "Nechajte zaškrtnuté ak prvý riadok v CSV je použitý pre názvy stĺpcov.", - "2. Match the file columns to database fields": "2. Vytvoriť väzbu medzi stĺpcami v databáze a v súbore", - "File columns": "Sĺpce súboru", - "Database fields": "Polia v databáze", - "3. Set import options": "3. Nastavte možnosti importu", - "Export progress": "Priebeh exportu", - "Processing": "Spracovávam", - "Import progress": "Priebeh importu", - "Import error": "Chyba importu", - "Export error": "Chyba exportu", - "Column preview": "Náhľad stĺpa", - "Column": "Stĺpec", - "Disable": "Zakázať", - "Enable": "Povoliť", - "Delete": "Odstrániť", - "Export": "Export", - "Import": "Importovať", - "Select Action": "Vyberte položku Akcia", - "Please create a new account for logging in to the Administration Area.": "Vytvorte si nový účet na prihlásenie do Administračnej oblasti.", - "First Name": "Krstné meno", - "Last Name": "Priezvisko", - "Email Address": "Emailová adresa", - "Pick a Username": "Vybrať používateľské meno", - "Enter New Password": "Zadajte nové heslo", - "Confirm Password": "Potvrďte heslo", - "Create Account": "Vytvoriť účet", - "Getting Ready": "Pripravovať sa", - "Just a few more minutes": "Ešte pár minút", - "Migrating Database": "Migrácia databázy", - "Access the Backend Panel": "Prejdite na panel Backend", - "View Backend During Maintenance": "Zobraziť backend počas údržby", - "Perform Software Updates": "Vykonajte aktualizácie softvéru", - "In Maintenance": "V údržbe", - "The site is currently in maintenance mode, please check back later.": "Stránka je momentálne v režime údržby, vráťte sa sem neskôr.", - "Dashboard": "Dashboard", - "Administrators": "správcovia", - "Manage Admins": "Spravovať správcov", - "Create Admins": "Vytvoriť správcov", - "Moderate Admins": "Moderovať správcov", - "Manage account suspension and ban admin accounts": "Spravujte pozastavenie účtu a zablokujte účty správcu", - "Manage Roles": "Spravovať roly", - "Manage Groups": "Spravovať skupiny", - "Manage Other Admins": "Spravovať ostatných správcov", - "Allow users to reset passwords and update emails.": "Umožňuje obnovenie hesiel a aktualizáciu e-mailov", - "Delete Admins": "Odstrániť správcov", - "Preferences": "Predvoľby", - "Settings": "Nastavenia", - "Background Color": "Farba pozadia", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Umožnite používateľom vytvárať nové roly a upravovať alebo odstraňovať roly nižšie, ako je ich najvyššia rola.", - "Save Changes": "Uložiť zmeny", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Tento záznam zobrazuje zoznam úspešných administrátorských prihlásení. Záznamy sú uchovávané po dobu :days dní.", - "Access Log": "Záznam prihlásení", - "View a list of successful back-end user sign ins.": "Zobraziť zoznam úspešných prihlásení do administrácie.", - "Date & Time": "Čas a dátum", - "IP address": "IP adresa", - "Login": "Login", - "First name": "Meno", - "Last name": "Priezvisko", - "Email": "E-mail" + "Cancel": "Zrušiť", + "You are viewing as": "Prezeráte si ako", + "Preview Role": "Úloha ukážky", + "This lets you test the actions this role can perform.": "To vám umožní otestovať akcie, ktoré môže táto rola vykonávať.", + "View As Role": "Zobraziť ako rolu", + "Return to Role Settings": "Vráťte sa na nastavenia roly", + "Password must have a minimum of length of :min characters": "Heslo musí mať minimálnu dĺžku :min znakov", + "Password must contain at least one uppercase character.": "Heslo musí obsahovať aspoň jedno veľké písmeno.", + "Password must contain at least one lowercase character.": "Heslo musí obsahovať aspoň jedno malé písmeno.", + "Password must contain at least one number.": "Heslo musí obsahovať aspoň jednu číslicu.", + "Password must contain at least one nonalphanumeric character.": "Heslo musí obsahovať aspoň jeden nealfanumerický znak.", + "Welcome to your Administration Area, :name": "Vitajte vo svojej administratívnej oblasti, :name", + "Duplicate": "Duplicitné", + "Expand": "Rozbaliť", + "Collapse": "Zbaliť", + "Move Up": "Posunúť hore", + "Move Down": "Posunúť nadol", + "Remove": "Odstrániť", + "Manage Item": "Spravovať položku", + "Clear Filters": "Vymazať filtre", + "Filter Setup": "Nastavenie filtra", + "Apply": "Použiť", + "Clear": "Zrušiť", + "is equal to": "rovná sa", + "is between": "je medzi", + "contains": "obsahuje", + "is before": "je predtým", + "is after": "je po", + "is greater than": "je väčší ako", + "is less than": "je menej než", + "1. Export output format": "1. Formát exportu", + "File Format": "Formát súboru", + "Delimiter Character": "Oddeľovací znak", + "Enclosure Character": "Znak pre ohraničenie (enclosure character)", + "Escape Character": "Ukončovací znak (escape character)", + "2. Select columns to export": "2. Vybrať exportované stĺpce", + "Columns": "Stĺpce", + "3. Set export options": "3. Nastaviť vlastnosti exportu", + "CSV Custom": "Vlastný formát", + "1. Upload an Import File": "1. Nahrať CSV súbor", + "Import File": "Importovať súbor", + "File Encoding": "Kódovanie súboru", + "First row contains column titles": "Prvý riadok obsahuje názvy stĺpcov", + "Leave this checked if the first row in the CSV is used as the column titles.": "Nechajte zaškrtnuté ak prvý riadok v CSV je použitý pre názvy stĺpcov.", + "2. Match the file columns to database fields": "2. Vytvoriť väzbu medzi stĺpcami v databáze a v súbore", + "File columns": "Sĺpce súboru", + "Database fields": "Polia v databáze", + "3. Set import options": "3. Nastavte možnosti importu", + "Export progress": "Priebeh exportu", + "Processing": "Spracovávam", + "Import progress": "Priebeh importu", + "Import error": "Chyba importu", + "Export error": "Chyba exportu", + "Column preview": "Náhľad stĺpa", + "Column": "Stĺpec", + "Disable": "Zakázať", + "Enable": "Povoliť", + "Delete": "Odstrániť", + "Export": "Export", + "Import": "Importovať", + "Select Action": "Vyberte položku Akcia", + "Please create a new account for logging in to the Administration Area.": "Vytvorte si nový účet na prihlásenie do Administračnej oblasti.", + "First Name": "Krstné meno", + "Last Name": "Priezvisko", + "Email Address": "Emailová adresa", + "Pick a Username": "Vybrať používateľské meno", + "Enter New Password": "Zadajte nové heslo", + "Confirm Password": "Potvrďte heslo", + "Create Account": "Vytvoriť účet", + "Getting Ready": "Pripravovať sa", + "Just a few more minutes": "Ešte pár minút", + "Migrating Database": "Migrácia databázy", + "Access the Backend Panel": "Prejdite na panel Backend", + "View Backend During Maintenance": "Zobraziť backend počas údržby", + "Perform Software Updates": "Vykonajte aktualizácie softvéru", + "In Maintenance": "V údržbe", + "The site is currently in maintenance mode, please check back later.": "Stránka je momentálne v režime údržby, vráťte sa sem neskôr.", + "Dashboard": "Dashboard", + "Administrators": "Administrátory", + "Manage Admins": "Spravovať administrátorov", + "Create Admins": "Vytvoriť administrátorov", + "Moderate Admins": "Moderovať administrátorov", + "Manage account suspension and ban admin accounts": "Spravujte pozastavenie účtu a zablokujte účty správcu", + "Manage Roles": "Spravovať roly", + "Manage Groups": "Spravovať skupiny", + "Manage Other Admins": "Spravovať ostatných administrátorov", + "Allow users to reset passwords and update emails.": "Umožňuje obnovenie hesiel a aktualizáciu e-mailov", + "Delete Admins": "Odstrániť administrátora", + "Preferences": "Predvoľby", + "Settings": "Nastavenia", + "Background Color": "Farba pozadia", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Umožnite používateľom vytvárať nové roly a upravovať alebo odstraňovať roly nižšie, ako je ich najvyššia rola.", + "Save Changes": "Uložiť zmeny", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Tento záznam zobrazuje zoznam úspešných administrátorských prihlásení. Záznamy sú uchovávané po dobu :days dní.", + "Access Log": "Záznam prihlásení", + "View a list of successful back-end user sign ins.": "Zobraziť zoznam úspešných prihlásení do administrácie.", + "ID": "ID", + "Date & Time": "Čas a dátum", + "Type": "Typ", + "IP address": "IP adresa", + "Login": "Login", + "First name": "Meno", + "Last name": "Priezvisko", + "Email": "E-mail", + "Translated for locale: :value": "Preložené pre miestne nastavenie: :value", + "Translated for site: :value": "Preložené pre stránku: :value", + "A custom schema is used for this file format.": "Pre tento formát súboru sa používa vlastná schéma.", + "Select": "Vyberte", + "Replace": "Nahradiť" } \ No newline at end of file diff --git a/modules/backend/lang/sk/lang.php b/modules/backend/lang/sk/lang.php index 75ce2b0392..8624f0d630 100644 --- a/modules/backend/lang/sk/lang.php +++ b/modules/backend/lang/sk/lang.php @@ -117,7 +117,7 @@ 'name' => 'Administrátor', 'menu_label' => 'Administrátori', 'menu_description' => 'Správa administrátorov, skupín a oprávnení.', - 'list_title' => 'Spríva administrátorov', + 'list_title' => 'Správa administrátorov', 'new' => 'Nový administrátor', 'login' => 'Prihlasovacie meno', 'first_name' => 'Krstné meno', diff --git a/modules/backend/lang/sl.json b/modules/backend/lang/sl.json index 51c8df2ab1..30d423787c 100644 --- a/modules/backend/lang/sl.json +++ b/modules/backend/lang/sl.json @@ -1,106 +1,111 @@ { - "Cancel": "Prekliči", - "You are viewing as": "Ogeldujete si kot", - "Preview Role": "Vloga za predogled", - "This lets you test the actions this role can perform.": "S tem lahko preizkusite dejanja, ki jih lahko izvede ta vloga.", - "View As Role": "Poglej v vlogi", - "Return to Role Settings": "Vrnite se v nastavitve vlog", - "Password must have a minimum of length of :min characters": "Geslo mora vsebovati najmanj :min znakov", - "Password must contain at least one uppercase character.": "Geslo mora vsebovati vsaj eno veliko črko.", - "Password must contain at least one lowercase character.": "Geslo mora vsebovati vsaj eno malo črko.", - "Password must contain at least one number.": "Geslo mora vsebovati vsaj eno številko.", - "Password must contain at least one nonalphanumeric character.": "Geslo mora vsebovati vsaj en nealfanumerični znak.", - "Welcome to your Administration Area, :name": "Dobrodošli na vašem administrativnem območju, :name", - "Duplicate": "Podvoji", - "Expand": "Razširi", - "Collapse": "Podri", - "Move Up": "Pomakni gor", - "Move Down": "Pomakni dol", - "Remove": "Odstrani", - "Manage Item": "Upravljaj element", - "Clear Filters": "Počisti filtre", - "Filter Setup": "Nastavitve filtra", - "Apply": "Apliciraj", - "Clear": "Izprazni", - "is equal to": "je enako", - "is between": "je med", - "contains": "vsebuje", - "is before": "je pred", - "is after": "je po", - "is greater than": "je več od", - "is less than": "je manj od", - "1. Export output format": "1. Izberite format izvozne datoteke", - "File Format": "Format datoteke", - "Delimiter Character": "Ločilni znak", - "Enclosure Character": "Ovojni znak", - "Escape Character": "Ubežni znak", - "2. Select columns to export": "2. Označite stolpce za izvoz", - "Columns": "Stolpci", - "3. Set export options": "3. Nastavitve izvoza", - "CSV Custom": "Format po meri", - "1. Upload an Import File": "1. Naložite CSV datoteko", - "Import File": "Uvozi datoteko", - "File Encoding": "Kodiranje datoteke", - "First row contains column titles": "Prva vrstica vsebuje naslove stolpcev", - "Leave this checked if the first row in the CSV is used as the column titles.": "To polje pustite označeno, če prva vrstica v vaši CSV datoteki vsebuje naslove stolpcev.", - "2. Match the file columns to database fields": "2. Povežite stolpce v datoteki s polji v podatkovni zbirki", - "File columns": "Stolpci v datoteki", - "Database fields": "Polja v podatkovni zbirki", - "3. Set import options": "3. Nastavitve uvoza", - "Export progress": "Napredek izvoza", - "Processing": "Procesiranje", - "Import progress": "Napredek uvoza", - "Import error": "Napaka pri uvozu", - "Export error": "Napaka pri izvozu", - "Column preview": "Predogled stolpca", - "Column": "Stolpec", - "Disable": "Onemogoči", - "Enable": "Omogoči", - "Delete": "Izbriši", - "Export": "Izvozi", - "Import": "Uvozi", - "Select Action": "Izberite Dejanje", - "Please create a new account for logging in to the Administration Area.": "Ustvarite nov račun za prijavo v Upravno območje.", - "First Name": "Ime", - "Last Name": "Priimek", - "Email Address": "E-poštni naslov", - "Pick a Username": "Izberite uporabniško ime", - "Enter New Password": "Vnesite novo geslo", - "Confirm Password": "Potrdite geslo", - "Create Account": "Ustvari račun", - "Getting Ready": "Sistem se pripravlja", - "Just a few more minutes": "Samo še nekaj minut", - "Migrating Database": "Migracija baze podatkov", - "Access the Backend Panel": "Dostop do administracijskega vmesnika", - "View Backend During Maintenance": "Prikaži administracijki vmesnik med vzdrževanjem", - "Perform Software Updates": "Izvedi posodobitve programske opreme", - "In Maintenance": "V Vzdrževanju", - "The site is currently in maintenance mode, please check back later.": "Spletno mesto je trenutno v načinu vzdrževanja, preverite znova pozneje.", - "Dashboard": "Nadzorna plošča", - "Administrators": "Skrbniki", - "Manage Admins": "Upravljaj skrbnike", - "Create Admins": "Ustvari skrbnike", - "Moderate Admins": "Upravljaj z administratorji", - "Manage account suspension and ban admin accounts": "Upravljaj z blokado računa in onemogoči skrbniške račune", - "Manage Roles": "Upravljanje vlog", - "Manage Groups": "Upravljanje skupin", - "Manage Other Admins": "Upravljanje drugih skrbnikov", - "Allow users to reset passwords and update emails.": "Omogoča ponastavitev gesel in posodabljanje e-pošte", - "Delete Admins": "Izbriši skrbnike", - "Preferences": "Preference", - "Settings": "Nastavitve", - "Background Color": "Barva ozadja", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Uporabnikom dovoli ustvarjanje novih vlog ter urejanje ali brisanje vlog nižjih od najvišje lastne vloge.", - "Save Changes": "Shrani spremembe", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Ta dnevnik beleži seznam uspešnih prijav administratorjev. Zapisi se hranijo :days dni.", - "Access Log": "Dnevnik dostopov", - "View a list of successful back-end user sign ins.": "Prikaz seznama uspešnih prijav administratorjev.", - "ID": "ID", - "Date & Time": "Datum in čas", - "Type": "Tip", - "IP address": "IP naslov", - "Login": "Uporabniško ime", - "First name": "Ime", - "Last name": "Priimek", - "Email": "E-pošta" -} + "Cancel": "Prekliči", + "You are viewing as": "Ogeldujete si kot", + "Preview Role": "Vloga za predogled", + "This lets you test the actions this role can perform.": "S tem lahko preizkusite dejanja, ki jih lahko izvede ta vloga.", + "View As Role": "Poglej v vlogi", + "Return to Role Settings": "Vrnite se v nastavitve vlog", + "Password must have a minimum of length of :min characters": "Geslo mora vsebovati najmanj :min znakov", + "Password must contain at least one uppercase character.": "Geslo mora vsebovati vsaj eno veliko črko.", + "Password must contain at least one lowercase character.": "Geslo mora vsebovati vsaj eno malo črko.", + "Password must contain at least one number.": "Geslo mora vsebovati vsaj eno številko.", + "Password must contain at least one nonalphanumeric character.": "Geslo mora vsebovati vsaj en nealfanumerični znak.", + "Welcome to your Administration Area, :name": "Dobrodošli na vašem administrativnem območju, :name", + "Duplicate": "Podvoji", + "Expand": "Razširi", + "Collapse": "Podri", + "Move Up": "Pomakni gor", + "Move Down": "Pomakni dol", + "Remove": "Odstrani", + "Manage Item": "Upravljaj element", + "Clear Filters": "Počisti filtre", + "Filter Setup": "Nastavitve filtra", + "Apply": "Apliciraj", + "Clear": "Izprazni", + "is equal to": "je enako", + "is between": "je med", + "contains": "vsebuje", + "is before": "je pred", + "is after": "je po", + "is greater than": "je več od", + "is less than": "je manj od", + "1. Export output format": "1. Izberite format izvozne datoteke", + "File Format": "Format datoteke", + "Delimiter Character": "Ločilni znak", + "Enclosure Character": "Ovojni znak", + "Escape Character": "Ubežni znak", + "2. Select columns to export": "2. Označite stolpce za izvoz", + "Columns": "Stolpci", + "3. Set export options": "3. Nastavitve izvoza", + "CSV Custom": "Format po meri", + "1. Upload an Import File": "1. Naložite CSV datoteko", + "Import File": "Uvozi datoteko", + "File Encoding": "Kodiranje datoteke", + "First row contains column titles": "Prva vrstica vsebuje naslove stolpcev", + "Leave this checked if the first row in the CSV is used as the column titles.": "To polje pustite označeno, če prva vrstica v vaši CSV datoteki vsebuje naslove stolpcev.", + "2. Match the file columns to database fields": "2. Povežite stolpce v datoteki s polji v podatkovni zbirki", + "File columns": "Stolpci v datoteki", + "Database fields": "Polja v podatkovni zbirki", + "3. Set import options": "3. Nastavitve uvoza", + "Export progress": "Napredek izvoza", + "Processing": "Procesiranje", + "Import progress": "Napredek uvoza", + "Import error": "Napaka pri uvozu", + "Export error": "Napaka pri izvozu", + "Column preview": "Predogled stolpca", + "Column": "Stolpec", + "Disable": "Onemogoči", + "Enable": "Omogoči", + "Delete": "Izbriši", + "Export": "Izvozi", + "Import": "Uvozi", + "Select Action": "Izberite Dejanje", + "Please create a new account for logging in to the Administration Area.": "Ustvarite nov račun za prijavo v Upravno območje.", + "First Name": "Ime", + "Last Name": "Priimek", + "Email Address": "E-poštni naslov", + "Pick a Username": "Izberite uporabniško ime", + "Enter New Password": "Vnesite novo geslo", + "Confirm Password": "Potrdite geslo", + "Create Account": "Ustvari račun", + "Getting Ready": "Sistem se pripravlja", + "Just a few more minutes": "Samo še nekaj minut", + "Migrating Database": "Migracija baze podatkov", + "Access the Backend Panel": "Dostop do administracijskega vmesnika", + "View Backend During Maintenance": "Prikaži administracijki vmesnik med vzdrževanjem", + "Perform Software Updates": "Izvedi posodobitve programske opreme", + "In Maintenance": "V Vzdrževanju", + "The site is currently in maintenance mode, please check back later.": "Spletno mesto je trenutno v načinu vzdrževanja, preverite znova pozneje.", + "Dashboard": "Nadzorna plošča", + "Administrators": "Skrbniki", + "Manage Admins": "Upravljaj skrbnike", + "Create Admins": "Ustvari skrbnike", + "Moderate Admins": "Upravljaj z administratorji", + "Manage account suspension and ban admin accounts": "Upravljaj z blokado računa in onemogoči skrbniške račune", + "Manage Roles": "Upravljanje vlog", + "Manage Groups": "Upravljanje skupin", + "Manage Other Admins": "Upravljanje drugih skrbnikov", + "Allow users to reset passwords and update emails.": "Omogoča ponastavitev gesel in posodabljanje e-pošte", + "Delete Admins": "Izbriši skrbnike", + "Preferences": "Preference", + "Settings": "Nastavitve", + "Background Color": "Barva ozadja", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Uporabnikom dovoli ustvarjanje novih vlog ter urejanje ali brisanje vlog nižjih od najvišje lastne vloge.", + "Save Changes": "Shrani spremembe", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Ta dnevnik beleži seznam uspešnih prijav administratorjev. Zapisi se hranijo :days dni.", + "Access Log": "Dnevnik dostopov", + "View a list of successful back-end user sign ins.": "Prikaz seznama uspešnih prijav administratorjev.", + "ID": "ID", + "Date & Time": "Datum in čas", + "Type": "Tip", + "IP address": "IP naslov", + "Login": "Uporabniško ime", + "First name": "Ime", + "Last name": "Priimek", + "Email": "E-pošta", + "Translated for locale: :value": "Prevedeno za jezik: :vrednost", + "Translated for site: :value": "Prevedeno za spletno mesto: :value", + "A custom schema is used for this file format.": "Za to obliko datoteke je uporabljena shema po meri.", + "Select": "Izberite", + "Replace": "Zamenjati" +} \ No newline at end of file diff --git a/modules/backend/lang/sv.json b/modules/backend/lang/sv.json index 2ca60e1bad..b401f41347 100644 --- a/modules/backend/lang/sv.json +++ b/modules/backend/lang/sv.json @@ -1,104 +1,111 @@ { - "Cancel": "Annullera", - "You are viewing as": "Du ser som", - "Preview Role": "Förhandsgranska roll", - "This lets you test the actions this role can perform.": "Detta låter dig testa de åtgärder som den här rollen kan utföra.", - "View As Role": "Visa som roll", - "Return to Role Settings": "Återgå till Rollinställningar", - "Password must have a minimum of length of :min characters": "Lösenordet måste ha en minsta längd på :min tecken", - "Password must contain at least one uppercase character.": "Lösenordet måste innehålla minst en versal.", - "Password must contain at least one lowercase character.": "Lösenordet måste innehålla minst ett gement tecken.", - "Password must contain at least one number.": "Lösenordet måste innehålla minst en siffra.", - "Password must contain at least one nonalphanumeric character.": "Lösenordet måste innehålla minst ett icke-alfanumeriskt tecken.", - "Welcome to your Administration Area, :name": "Välkommen till ditt administrationsområde, :name", - "Duplicate": "Duplicera", - "Expand": "Bygga ut", - "Collapse": "Kollaps", - "Move Up": "Flytta upp", - "Move Down": "Flytta ner", - "Remove": "Ta bort", - "Manage Item": "Hantera objekt", - "Clear Filters": "Rensa filter", - "Filter Setup": "Filterinställningar", - "Apply": "Tillämpa", - "Clear": "Klar", - "is equal to": "är lika med", - "is between": "är mellan", - "contains": "innehåller", - "is before": "är innan", - "is after": "är efter", - "is greater than": "är större än", - "is less than": "är mindre än", - "1. Export output format": "1. Exportera utdataformat", - "File Format": "Filformat", - "Delimiter Character": "Avgränsningstecken", - "Enclosure Character": "Kapslingskaraktär", - "Escape Character": "Escape karaktär", - "2. Select columns to export": "2. Välj kolumner att exportera", - "Columns": "Kolumner", - "3. Set export options": "3. Ställ in exportalternativ", - "CSV Custom": "CSV anpassad", - "1. Upload an Import File": "1. Ladda upp en importfil", - "Import File": "Importera fil", - "File Encoding": "Filkodning", - "First row contains column titles": "Första raden innehåller kolumntitlar", - "Leave this checked if the first row in the CSV is used as the column titles.": "Låt detta vara markerat om den första raden i CSV-filen används som kolumnrubriker.", - "2. Match the file columns to database fields": "2. Matcha filkolumnerna med databasfält", - "File columns": "Fil kolumner", - "Database fields": "Databasfält", - "3. Set import options": "3. Ställ in importalternativ", - "Export progress": "Exportförlopp", - "Processing": "Bearbetning", - "Import progress": "Importförlopp", - "Import error": "Importfel", - "Export error": "Exportfel", - "Column preview": "Kolumnförhandsgranskning", - "Column": "Kolumn", - "Disable": "Inaktivera", - "Enable": "Gör det möjligt", - "Delete": "Radera", - "Export": "Exportera", - "Import": "Importera", - "Select Action": "Välj Åtgärd", - "Please create a new account for logging in to the Administration Area.": "Skapa ett nytt konto för att logga in på administrationsområdet.", - "First Name": "Förnamn", - "Last Name": "Efternamn", - "Email Address": "E-postadress", - "Pick a Username": "Välj ett användarnamn", - "Enter New Password": "Ange nytt lösenord", - "Confirm Password": "Bekräfta lösenord", - "Create Account": "Skapa konto", - "Getting Ready": "Gör mig i ordning", - "Just a few more minutes": "Bara några minuter till", - "Migrating Database": "Migrera databas", - "Access the Backend Panel": "Öppna Backend Panel", - "View Backend During Maintenance": "Se backend under underhåll", - "Perform Software Updates": "Utför programuppdateringar", - "In Maintenance": "I underhåll", - "The site is currently in maintenance mode, please check back later.": "Webbplatsen är för närvarande i underhållsläge, kom tillbaka senare.", - "Dashboard": "instrumentbräda", - "Administrators": "Administratörer", - "Manage Admins": "Hantera administratörer", - "Create Admins": "Skapa administratörer", - "Moderate Admins": "Moderata administratörer", - "Manage account suspension and ban admin accounts": "Hantera kontoavstängning och blockera administratörskonton", - "Manage Roles": "Hantera roller", - "Manage Groups": "Hantera grupper", - "Manage Other Admins": "Hantera andra administratörer", - "Allow users to reset passwords and update emails.": "Tillåter återställning av lösenord och uppdatering av e-post", - "Delete Admins": "Ta bort administratörer", - "Preferences": "Inställningar", - "Settings": "inställningar", - "Background Color": "Bakgrundsfärg", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Tillåt användare att skapa nya roller och redigera eller ta bort roller lägre än deras högsta roll.", - "Save Changes": "Spara ändringar", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Denna logg visar en lista över lyckade inloggningsförsök till administratrationen. Registret behålls i :days dagar.", - "Access Log": "Åtkomstlogg", - "View a list of successful back-end user sign ins.": "Visa en lista över framgångsrika inloggningar av back-end användare.", - "Date & Time": "Dataum och tid", - "IP address": "IP adress", - "Login": "Inloggning", - "First name": "Förnamn", - "Last name": "Efternamn", - "Email": "E-post" + "Cancel": "Annullera", + "You are viewing as": "Du ser som", + "Preview Role": "Förhandsgranska roll", + "This lets you test the actions this role can perform.": "Detta låter dig testa de åtgärder som den här rollen kan utföra.", + "View As Role": "Visa som roll", + "Return to Role Settings": "Återgå till Rollinställningar", + "Password must have a minimum of length of :min characters": "Lösenordet måste ha en minsta längd på :min tecken", + "Password must contain at least one uppercase character.": "Lösenordet måste innehålla minst en versal.", + "Password must contain at least one lowercase character.": "Lösenordet måste innehålla minst ett gement tecken.", + "Password must contain at least one number.": "Lösenordet måste innehålla minst en siffra.", + "Password must contain at least one nonalphanumeric character.": "Lösenordet måste innehålla minst ett icke-alfanumeriskt tecken.", + "Welcome to your Administration Area, :name": "Välkommen till ditt administrationsområde, :name", + "Duplicate": "Duplicera", + "Expand": "Bygga ut", + "Collapse": "Kollaps", + "Move Up": "Flytta upp", + "Move Down": "Flytta ner", + "Remove": "Ta bort", + "Manage Item": "Hantera objekt", + "Clear Filters": "Rensa filter", + "Filter Setup": "Filterinställningar", + "Apply": "Tillämpa", + "Clear": "Klar", + "is equal to": "är lika med", + "is between": "är mellan", + "contains": "innehåller", + "is before": "är innan", + "is after": "är efter", + "is greater than": "är större än", + "is less than": "är mindre än", + "1. Export output format": "1. Exportera utdataformat", + "File Format": "Filformat", + "Delimiter Character": "Avgränsningstecken", + "Enclosure Character": "Kapslingskaraktär", + "Escape Character": "Escape karaktär", + "2. Select columns to export": "2. Välj kolumner att exportera", + "Columns": "Kolumner", + "3. Set export options": "3. Ställ in exportalternativ", + "CSV Custom": "CSV anpassad", + "1. Upload an Import File": "1. Ladda upp en importfil", + "Import File": "Importera fil", + "File Encoding": "Filkodning", + "First row contains column titles": "Första raden innehåller kolumntitlar", + "Leave this checked if the first row in the CSV is used as the column titles.": "Låt detta vara markerat om den första raden i CSV-filen används som kolumnrubriker.", + "2. Match the file columns to database fields": "2. Matcha filkolumnerna med databasfält", + "File columns": "Fil kolumner", + "Database fields": "Databasfält", + "3. Set import options": "3. Ställ in importalternativ", + "Export progress": "Exportförlopp", + "Processing": "Bearbetning", + "Import progress": "Importförlopp", + "Import error": "Importfel", + "Export error": "Exportfel", + "Column preview": "Kolumnförhandsgranskning", + "Column": "Kolumn", + "Disable": "Inaktivera", + "Enable": "Gör det möjligt", + "Delete": "Radera", + "Export": "Exportera", + "Import": "Importera", + "Select Action": "Välj Åtgärd", + "Please create a new account for logging in to the Administration Area.": "Skapa ett nytt konto för att logga in på administrationsområdet.", + "First Name": "Förnamn", + "Last Name": "Efternamn", + "Email Address": "E-postadress", + "Pick a Username": "Välj ett användarnamn", + "Enter New Password": "Ange nytt lösenord", + "Confirm Password": "Bekräfta lösenord", + "Create Account": "Skapa konto", + "Getting Ready": "Gör mig i ordning", + "Just a few more minutes": "Bara några minuter till", + "Migrating Database": "Migrera databas", + "Access the Backend Panel": "Öppna Backend Panel", + "View Backend During Maintenance": "Se backend under underhåll", + "Perform Software Updates": "Utför programuppdateringar", + "In Maintenance": "I underhåll", + "The site is currently in maintenance mode, please check back later.": "Webbplatsen är för närvarande i underhållsläge, kom tillbaka senare.", + "Dashboard": "instrumentbräda", + "Administrators": "Administratörer", + "Manage Admins": "Hantera administratörer", + "Create Admins": "Skapa administratörer", + "Moderate Admins": "Moderata administratörer", + "Manage account suspension and ban admin accounts": "Hantera kontoavstängning och blockera administratörskonton", + "Manage Roles": "Hantera roller", + "Manage Groups": "Hantera grupper", + "Manage Other Admins": "Hantera andra administratörer", + "Allow users to reset passwords and update emails.": "Tillåter återställning av lösenord och uppdatering av e-post", + "Delete Admins": "Ta bort administratörer", + "Preferences": "Inställningar", + "Settings": "inställningar", + "Background Color": "Bakgrundsfärg", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Tillåt användare att skapa nya roller och redigera eller ta bort roller lägre än deras högsta roll.", + "Save Changes": "Spara ändringar", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Denna logg visar en lista över lyckade inloggningsförsök till administratrationen. Registret behålls i :days dagar.", + "Access Log": "Åtkomstlogg", + "View a list of successful back-end user sign ins.": "Visa en lista över framgångsrika inloggningar av back-end användare.", + "ID": "ID", + "Date & Time": "Dataum och tid", + "Type": "Typ", + "IP address": "IP adress", + "Login": "Inloggning", + "First name": "Förnamn", + "Last name": "Efternamn", + "Email": "E-post", + "Translated for locale: :value": "Översatt för locale: :value", + "Translated for site: :value": "Översatt för webbplats: :value", + "A custom schema is used for this file format.": "Ett anpassat schema används för detta filformat.", + "Select": "Välj", + "Replace": "Byta ut" } \ No newline at end of file diff --git a/modules/backend/lang/th.json b/modules/backend/lang/th.json index 50e360350a..5ec2a57aff 100644 --- a/modules/backend/lang/th.json +++ b/modules/backend/lang/th.json @@ -1,106 +1,111 @@ { - "Cancel": "ยกเลิก", - "You are viewing as": "คุณกำลังดูเป็น", - "Preview Role": "แสดงตัวอย่างบทบาท", - "This lets you test the actions this role can perform.": "ซึ่งช่วยให้คุณทดสอบการกระทำที่บทบาทนี้สามารถดำเนินการได้", - "View As Role": "ดูตามบทบาท", - "Return to Role Settings": "กลับไปที่การตั้งค่าบทบาท", - "Password must have a minimum of length of :min characters": "รหัสผ่านต้องมีความยาวอย่างน้อย :min ตัวอักษร", - "Password must contain at least one uppercase character.": "รหัสผ่านต้องมีตัวพิมพ์ใหญ่อย่างน้อยหนึ่งตัว", - "Password must contain at least one lowercase character.": "รหัสผ่านต้องมีอักขระตัวพิมพ์เล็กอย่างน้อยหนึ่งตัว", - "Password must contain at least one number.": "รหัสผ่านต้องมีตัวเลขอย่างน้อยหนึ่งตัว", - "Password must contain at least one nonalphanumeric character.": "รหัสผ่านต้องมีอักขระที่ไม่ใช่ตัวเลขและตัวอักษรอย่างน้อยหนึ่งตัว", - "Welcome to your Administration Area, :name": "ยินดีต้อนรับสู่เขตบริหารของคุณ :name", - "Duplicate": "ทำซ้ำ", - "Expand": "ขยาย", - "Collapse": "ทรุด", - "Move Up": "ขยับขึ้น", - "Move Down": "ย้ายลง", - "Remove": "ลบ", - "Manage Item": "จัดการรายการ", - "Clear Filters": "ล้างตัวกรอง", - "Filter Setup": "การตั้งค่าตัวกรอง", - "Apply": "นำมาใช้", - "Clear": "ชัดเจน", - "is equal to": "เท่ากับ", - "is between": "อยู่ระหว่าง", - "contains": "ประกอบด้วย", - "is before": "มาก่อน", - "is after": "คือหลังจาก", - "is greater than": "มีค่ามากกว่า", - "is less than": "น้อยกว่า", - "1. Export output format": "1. ส่งออกรูปแบบเอาต์พุต", - "File Format": "รูปแบบไฟล์", - "Delimiter Character": "ตัวคั่นอักขระ", - "Enclosure Character": "อักขระที่แนบมา", - "Escape Character": "ตัวละครหนี", - "2. Select columns to export": "2. เลือกคอลัมน์ที่จะส่งออก", - "Columns": "คอลัมน์", - "3. Set export options": "3. ตั้งค่าตัวเลือกการส่งออก", - "CSV Custom": "CSV กำหนดเอง", - "1. Upload an Import File": "1. อัพโหลดไฟล์ CSV", - "Import File": "นำเข้าไฟล์", - "File Encoding": "การเข้ารหัสไฟล์", - "First row contains column titles": "แถวแรกมีชื่อคอลัมน์", - "Leave this checked if the first row in the CSV is used as the column titles.": "ปล่อยช่องนี้ไว้หากใช้แถวแรกใน CSV เป็นชื่อคอลัมน์", - "2. Match the file columns to database fields": "2. จับคู่คอลัมน์ไฟล์กับช่องฐานข้อมูล", - "File columns": "คอลัมน์ไฟล์", - "Database fields": "ช่องฐานข้อมูล", - "3. Set import options": "3. ตั้งค่าตัวเลือกการนำเข้า", - "Export progress": "ความคืบหน้าการส่งออก", - "Processing": "กำลังประมวลผล", - "Import progress": "นำเข้าความคืบหน้า", - "Import error": "นำเข้าผิดพลาด", - "Export error": "ส่งออกผิดพลาด", - "Column preview": "ตัวอย่างคอลัมน์", - "Column": "คอลัมน์", - "Disable": "ปิดการใช้งาน", - "Enable": "เปิดใช้งาน", - "Delete": "ลบ", - "Export": "ส่งออก", - "Import": "นำเข้า", - "Select Action": "เลือกการดำเนินการ", - "Please create a new account for logging in to the Administration Area.": "โปรดสร้างบัญชีใหม่เพื่อเข้าสู่ระบบในเขตบริหาร", - "First Name": "ชื่อจริง", - "Last Name": "นามสกุล", - "Email Address": "ที่อยู่อีเมล", - "Pick a Username": "เลือกชื่อผู้ใช้", - "Enter New Password": "ใส่รหัสผ่านใหม่", - "Confirm Password": "ยืนยันรหัสผ่าน", - "Create Account": "สร้างบัญชี", - "Getting Ready": "เตรียมพร้อม", - "Just a few more minutes": "อีกไม่กี่นาที", - "Migrating Database": "การย้ายฐานข้อมูล", - "Access the Backend Panel": "เข้าถึงแผงแบ็กเอนด์", - "View Backend During Maintenance": "ดูแบ็กเอนด์ระหว่างการบำรุงรักษา", - "Perform Software Updates": "ดำเนินการอัปเดตซอฟต์แวร์", - "In Maintenance": "ในการบำรุงรักษา", - "The site is currently in maintenance mode, please check back later.": "ไซต์อยู่ในโหมดบำรุงรักษา โปรดกลับมาตรวจสอบในภายหลัง", - "Dashboard": "แผงควบคุม", - "Administrators": "ผู้ดูแลระบบ", - "Manage Admins": "จัดการผู้ดูแลระบบ", - "Create Admins": "สร้างผู้ดูแลระบบ", - "Moderate Admins": "ผู้ดูแลระบบระดับปานกลาง", - "Manage account suspension and ban admin accounts": "จัดการระงับบัญชีและแบนบัญชีผู้ดูแลระบบ", - "Manage Roles": "จัดการบทบาท", - "Manage Groups": "จัดการกลุ่ม", - "Manage Other Admins": "จัดการผู้ดูแลระบบคนอื่น", - "Allow users to reset passwords and update emails.": "อนุญาตให้รีเซ็ตรหัสผ่านและอัปเดตอีเมล", - "Delete Admins": "ลบผู้ดูแลระบบ", - "Preferences": "การตั้งค่า", - "Settings": "การตั้งค่า", - "Background Color": "สีพื้นหลัง", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "อนุญาตให้ผู้ใช้สร้างบทบาทใหม่และแก้ไขหรือลบบทบาทที่ต่ำกว่าบทบาทสูงสุดของพวกเขา", - "Save Changes": "บันทึกการเปลี่ยนแปลง", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "บันทึกนี้แสดงรายการการล็อกอินที่สำเร็จโดยผู้ดูแลระบบ บันทึกจะถูกเก็บไว้เป็นเวลา :days วัน", - "Access Log": "บันทึกการเข้าถึง", - "View a list of successful back-end user sign ins.": "แสดงรายการของการลงชื่อที่สำเร็จของผู้ใช้หลังบ้าน", - "ID": "ไอดี", - "Date & Time": "วันเวลา", - "Type": "ประเภท", - "IP address": "ไอพีแอดเดรส", - "Login": "ชื่อล็อกอิน", - "First name": "ชื่อ", - "Last name": "นามสกุล", - "Email": "อีเมล" + "Cancel": "ยกเลิก", + "You are viewing as": "คุณกำลังดูเป็น", + "Preview Role": "แสดงตัวอย่างบทบาท", + "This lets you test the actions this role can perform.": "ซึ่งช่วยให้คุณทดสอบการกระทำที่บทบาทนี้สามารถดำเนินการได้", + "View As Role": "ดูตามบทบาท", + "Return to Role Settings": "กลับไปที่การตั้งค่าบทบาท", + "Password must have a minimum of length of :min characters": "รหัสผ่านต้องมีความยาวอย่างน้อย :min ตัวอักษร", + "Password must contain at least one uppercase character.": "รหัสผ่านต้องมีตัวพิมพ์ใหญ่อย่างน้อยหนึ่งตัว", + "Password must contain at least one lowercase character.": "รหัสผ่านต้องมีอักขระตัวพิมพ์เล็กอย่างน้อยหนึ่งตัว", + "Password must contain at least one number.": "รหัสผ่านต้องมีตัวเลขอย่างน้อยหนึ่งตัว", + "Password must contain at least one nonalphanumeric character.": "รหัสผ่านต้องมีอักขระที่ไม่ใช่ตัวเลขและตัวอักษรอย่างน้อยหนึ่งตัว", + "Welcome to your Administration Area, :name": "ยินดีต้อนรับสู่เขตบริหารของคุณ :name", + "Duplicate": "ทำซ้ำ", + "Expand": "ขยาย", + "Collapse": "ทรุด", + "Move Up": "ขยับขึ้น", + "Move Down": "ย้ายลง", + "Remove": "ลบ", + "Manage Item": "จัดการรายการ", + "Clear Filters": "ล้างตัวกรอง", + "Filter Setup": "การตั้งค่าตัวกรอง", + "Apply": "นำมาใช้", + "Clear": "ชัดเจน", + "is equal to": "เท่ากับ", + "is between": "อยู่ระหว่าง", + "contains": "ประกอบด้วย", + "is before": "มาก่อน", + "is after": "คือหลังจาก", + "is greater than": "มีค่ามากกว่า", + "is less than": "น้อยกว่า", + "1. Export output format": "1. ส่งออกรูปแบบเอาต์พุต", + "File Format": "รูปแบบไฟล์", + "Delimiter Character": "ตัวคั่นอักขระ", + "Enclosure Character": "อักขระที่แนบมา", + "Escape Character": "ตัวละครหนี", + "2. Select columns to export": "2. เลือกคอลัมน์ที่จะส่งออก", + "Columns": "คอลัมน์", + "3. Set export options": "3. ตั้งค่าตัวเลือกการส่งออก", + "CSV Custom": "CSV กำหนดเอง", + "1. Upload an Import File": "1. อัพโหลดไฟล์ CSV", + "Import File": "นำเข้าไฟล์", + "File Encoding": "การเข้ารหัสไฟล์", + "First row contains column titles": "แถวแรกมีชื่อคอลัมน์", + "Leave this checked if the first row in the CSV is used as the column titles.": "ปล่อยช่องนี้ไว้หากใช้แถวแรกใน CSV เป็นชื่อคอลัมน์", + "2. Match the file columns to database fields": "2. จับคู่คอลัมน์ไฟล์กับช่องฐานข้อมูล", + "File columns": "คอลัมน์ไฟล์", + "Database fields": "ช่องฐานข้อมูล", + "3. Set import options": "3. ตั้งค่าตัวเลือกการนำเข้า", + "Export progress": "ความคืบหน้าการส่งออก", + "Processing": "กำลังประมวลผล", + "Import progress": "นำเข้าความคืบหน้า", + "Import error": "นำเข้าผิดพลาด", + "Export error": "ส่งออกผิดพลาด", + "Column preview": "ตัวอย่างคอลัมน์", + "Column": "คอลัมน์", + "Disable": "ปิดการใช้งาน", + "Enable": "เปิดใช้งาน", + "Delete": "ลบ", + "Export": "ส่งออก", + "Import": "นำเข้า", + "Select Action": "เลือกการดำเนินการ", + "Please create a new account for logging in to the Administration Area.": "โปรดสร้างบัญชีใหม่เพื่อเข้าสู่ระบบในเขตบริหาร", + "First Name": "ชื่อจริง", + "Last Name": "นามสกุล", + "Email Address": "ที่อยู่อีเมล", + "Pick a Username": "เลือกชื่อผู้ใช้", + "Enter New Password": "ใส่รหัสผ่านใหม่", + "Confirm Password": "ยืนยันรหัสผ่าน", + "Create Account": "สร้างบัญชี", + "Getting Ready": "เตรียมพร้อม", + "Just a few more minutes": "อีกไม่กี่นาที", + "Migrating Database": "การย้ายฐานข้อมูล", + "Access the Backend Panel": "เข้าถึงแผงแบ็กเอนด์", + "View Backend During Maintenance": "ดูแบ็กเอนด์ระหว่างการบำรุงรักษา", + "Perform Software Updates": "ดำเนินการอัปเดตซอฟต์แวร์", + "In Maintenance": "ในการบำรุงรักษา", + "The site is currently in maintenance mode, please check back later.": "ไซต์อยู่ในโหมดบำรุงรักษา โปรดกลับมาตรวจสอบในภายหลัง", + "Dashboard": "แผงควบคุม", + "Administrators": "ผู้ดูแลระบบ", + "Manage Admins": "จัดการผู้ดูแลระบบ", + "Create Admins": "สร้างผู้ดูแลระบบ", + "Moderate Admins": "ผู้ดูแลระบบระดับปานกลาง", + "Manage account suspension and ban admin accounts": "จัดการระงับบัญชีและแบนบัญชีผู้ดูแลระบบ", + "Manage Roles": "จัดการบทบาท", + "Manage Groups": "จัดการกลุ่ม", + "Manage Other Admins": "จัดการผู้ดูแลระบบคนอื่น", + "Allow users to reset passwords and update emails.": "อนุญาตให้รีเซ็ตรหัสผ่านและอัปเดตอีเมล", + "Delete Admins": "ลบผู้ดูแลระบบ", + "Preferences": "การตั้งค่า", + "Settings": "การตั้งค่า", + "Background Color": "สีพื้นหลัง", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "อนุญาตให้ผู้ใช้สร้างบทบาทใหม่และแก้ไขหรือลบบทบาทที่ต่ำกว่าบทบาทสูงสุดของพวกเขา", + "Save Changes": "บันทึกการเปลี่ยนแปลง", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "บันทึกนี้แสดงรายการการล็อกอินที่สำเร็จโดยผู้ดูแลระบบ บันทึกจะถูกเก็บไว้เป็นเวลา :days วัน", + "Access Log": "บันทึกการเข้าถึง", + "View a list of successful back-end user sign ins.": "แสดงรายการของการลงชื่อที่สำเร็จของผู้ใช้หลังบ้าน", + "ID": "ไอดี", + "Date & Time": "วันเวลา", + "Type": "ประเภท", + "IP address": "ไอพีแอดเดรส", + "Login": "ชื่อล็อกอิน", + "First name": "ชื่อ", + "Last name": "นามสกุล", + "Email": "อีเมล", + "Translated for locale: :value": "แปลสำหรับสถานที่: :value", + "Translated for site: :value": "แปลสำหรับไซต์: :value", + "A custom schema is used for this file format.": "สคีมาที่กำหนดเองใช้สำหรับรูปแบบไฟล์นี้", + "Select": "เลือก", + "Replace": "แทนที่" } \ No newline at end of file diff --git a/modules/backend/lang/tr.json b/modules/backend/lang/tr.json index c201351a5a..645e94bb10 100644 --- a/modules/backend/lang/tr.json +++ b/modules/backend/lang/tr.json @@ -1,106 +1,111 @@ { - "Cancel": "İptal", - "You are viewing as": "olarak görüntülüyorsunuz", - "Preview Role": "Önizleme Rolü", - "This lets you test the actions this role can perform.": "Bu, bu rolün gerçekleştirebileceği eylemleri test etmenizi sağlar.", - "View As Role": "Rol Olarak Görüntüle", - "Return to Role Settings": "Rol Ayarlarına Dön", - "Password must have a minimum of length of :min characters": "Parola en az :min karakter uzunluğunda olmalıdır", - "Password must contain at least one uppercase character.": "Parola en az bir büyük harf içermelidir.", - "Password must contain at least one lowercase character.": "Parola en az bir küçük harf içermelidir.", - "Password must contain at least one number.": "Şifre en az bir sayı içermelidir.", - "Password must contain at least one nonalphanumeric character.": "Parola en az bir alfasayısal olmayan karakter içermelidir.", - "Welcome to your Administration Area, :name": "Yönetim Alanınıza hoş geldiniz, :name", - "Duplicate": "Kopyalamak", - "Expand": "Genişletmek", - "Collapse": "Çöküş", - "Move Up": "Yukarı Taşı", - "Move Down": "Aşağı inmek", - "Remove": "Kaldırmak", - "Manage Item": "Öğeyi Yönet", - "Clear Filters": "Filtreleri Temizle", - "Filter Setup": "Filtre Kurulumu", - "Apply": "Uygulamak", - "Clear": "Temizlemek", - "is equal to": "eşittir", - "is between": "arasında", - "contains": "içerir", - "is before": "önce", - "is after": "sonra", - "is greater than": "daha büyüktür", - "is less than": "daha az", - "1. Export output format": "1. Dışarı aktarma formatı", - "File Format": "Dosya formatı", - "Delimiter Character": "Ayırıcı karakter", - "Enclosure Character": "Kapsayıcı karakter", - "Escape Character": "Kaçış karakteri", - "2. Select columns to export": "2. Dışarı aktarılacak sütunları seçin", - "Columns": "Sütunlar", - "3. Set export options": "3. Dışarı aktarmayı yapılandırın", - "CSV Custom": "Özel format", - "1. Upload an Import File": "1. Bir CSV dosyası yükleyin", - "Import File": "Dosya İçeri Aktar", - "File Encoding": "Dosya karakter kodlaması", - "First row contains column titles": "İlk satır, sütun isimlerini içermelidir", - "Leave this checked if the first row in the CSV is used as the column titles.": "Eğer CSV dosyanızda ilk satır, sütun isimlerini içeriyorsa bu seçeneği işaretleyin.", - "2. Match the file columns to database fields": "2. Veritabanı sütunları ile dosyanızdaki verileri eşleştirin", - "File columns": "Dosyadaki sütunlar", - "Database fields": "Veritabanındaki sütunlar", - "3. Set import options": "3. İçeri aktarmayı yapılandırın", - "Export progress": "Dışarı aktarma ilerlemesi", - "Processing": "İşleniyor", - "Import progress": "İçeri aktarma ilerlemesi", - "Import error": "İçeri aktarma hatası", - "Export error": "Dışarı aktarma hatası", - "Column preview": "Sütun önizlemesi", - "Column": "Sütun", - "Disable": "Devre dışı bırakmak", - "Enable": "Olanak vermek", - "Delete": "Silmek", - "Export": "İhracat", - "Import": "İçe aktarmak", - "Select Action": "Eylemi seç", - "Please create a new account for logging in to the Administration Area.": "Yönetim Alanına giriş yapmak için lütfen yeni bir hesap oluşturun.", - "First Name": "İlk adı", - "Last Name": "Soyadı", - "Email Address": "E", - "Pick a Username": "Bir kullanıcı adı seçin", - "Enter New Password": "Yeni Şifreyi Girin", - "Confirm Password": "Şifreyi Onayla", - "Create Account": "Hesap oluştur", - "Getting Ready": "Hazır olmak", - "Just a few more minutes": "Sadece birkaç dakika daha", - "Migrating Database": "Veritabanını Taşıma", - "Access the Backend Panel": "Arka Uç Paneline Erişin", - "View Backend During Maintenance": "Bakım Sırasında Arka Uç Görüntüle", - "Perform Software Updates": "Yazılım Güncellemelerini Gerçekleştirin", - "In Maintenance": "Bakımda", - "The site is currently in maintenance mode, please check back later.": "Site şu anda bakım modunda, lütfen daha sonra tekrar kontrol edin.", - "Dashboard": "Gösterge Paneli", - "Administrators": "Yöneticiler", - "Manage Admins": "Yöneticileri Yönet", - "Create Admins": "Yöneticiler Oluşturun", - "Moderate Admins": "Yöneticileri Denetle", - "Manage account suspension and ban admin accounts": "Hesabın askıya alınmasını yönetin ve yönetici hesaplarını yasaklayın", - "Manage Roles": "Rolleri Yönet", - "Manage Groups": "Grupları Yönet", - "Manage Other Admins": "Diğer Yöneticileri Yönet", - "Allow users to reset passwords and update emails.": "Şifrelerin sıfırlanmasına ve e-postaların güncellenmesine izin verir", - "Delete Admins": "Yöneticileri Sil", - "Preferences": "tercihler", - "Settings": "Ayarlar", - "Background Color": "Arka plan rengi", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Kullanıcıların yeni roller oluşturmasına ve en yüksek rollerinden daha düşük rolleri düzenlemesine veya silmesine izin verin.", - "Save Changes": "Değişiklikleri Kaydet", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Bu kayıtlar yöneticiler tarafından başarılı şekilde yapılan girişleri gösterir. Kayıtlar :days gün boyunca saklanır.", - "Access Log": "Yönetim paneli erişim kayıtları", - "View a list of successful back-end user sign ins.": "Yönetim paneline başarılı şekilde yapılan girişleri görüntüler.", - "ID": "ID", - "Date & Time": "Tarih & Saat", - "Type": "Tipi", - "IP address": "IP adres", - "Login": "Giriş", - "First name": "İsim", - "Last name": "Soyisim", - "Email": "Email" + "Cancel": "İptal", + "You are viewing as": "olarak görüntülüyorsunuz", + "Preview Role": "Önizleme Rolü", + "This lets you test the actions this role can perform.": "Bu, bu rolün gerçekleştirebileceği eylemleri test etmenizi sağlar.", + "View As Role": "Rol Olarak Görüntüle", + "Return to Role Settings": "Rol Ayarlarına Dön", + "Password must have a minimum of length of :min characters": "Parola en az :min karakter uzunluğunda olmalıdır", + "Password must contain at least one uppercase character.": "Parola en az bir büyük harf içermelidir.", + "Password must contain at least one lowercase character.": "Parola en az bir küçük harf içermelidir.", + "Password must contain at least one number.": "Şifre en az bir sayı içermelidir.", + "Password must contain at least one nonalphanumeric character.": "Parola en az bir alfasayısal olmayan karakter içermelidir.", + "Welcome to your Administration Area, :name": "Yönetim Alanınıza hoş geldiniz, :name", + "Duplicate": "Kopyalamak", + "Expand": "Genişletmek", + "Collapse": "Çöküş", + "Move Up": "Yukarı Taşı", + "Move Down": "Aşağı inmek", + "Remove": "Kaldırmak", + "Manage Item": "Öğeyi Yönet", + "Clear Filters": "Filtreleri Temizle", + "Filter Setup": "Filtre Kurulumu", + "Apply": "Uygulamak", + "Clear": "Temizlemek", + "is equal to": "eşittir", + "is between": "arasında", + "contains": "içerir", + "is before": "önce", + "is after": "sonra", + "is greater than": "daha büyüktür", + "is less than": "daha az", + "1. Export output format": "1. Dışarı aktarma formatı", + "File Format": "Dosya formatı", + "Delimiter Character": "Ayırıcı karakter", + "Enclosure Character": "Kapsayıcı karakter", + "Escape Character": "Kaçış karakteri", + "2. Select columns to export": "2. Dışarı aktarılacak sütunları seçin", + "Columns": "Sütunlar", + "3. Set export options": "3. Dışarı aktarmayı yapılandırın", + "CSV Custom": "Özel format", + "1. Upload an Import File": "1. Bir CSV dosyası yükleyin", + "Import File": "Dosya İçeri Aktar", + "File Encoding": "Dosya karakter kodlaması", + "First row contains column titles": "İlk satır, sütun isimlerini içermelidir", + "Leave this checked if the first row in the CSV is used as the column titles.": "Eğer CSV dosyanızda ilk satır, sütun isimlerini içeriyorsa bu seçeneği işaretleyin.", + "2. Match the file columns to database fields": "2. Veritabanı sütunları ile dosyanızdaki verileri eşleştirin", + "File columns": "Dosyadaki sütunlar", + "Database fields": "Veritabanındaki sütunlar", + "3. Set import options": "3. İçeri aktarmayı yapılandırın", + "Export progress": "Dışarı aktarma ilerlemesi", + "Processing": "İşleniyor", + "Import progress": "İçeri aktarma ilerlemesi", + "Import error": "İçeri aktarma hatası", + "Export error": "Dışarı aktarma hatası", + "Column preview": "Sütun önizlemesi", + "Column": "Sütun", + "Disable": "Devre dışı bırakmak", + "Enable": "Olanak vermek", + "Delete": "Silmek", + "Export": "İhracat", + "Import": "İçe aktarmak", + "Select Action": "Eylemi seç", + "Please create a new account for logging in to the Administration Area.": "Yönetim Alanına giriş yapmak için lütfen yeni bir hesap oluşturun.", + "First Name": "İlk adı", + "Last Name": "Soyadı", + "Email Address": "E", + "Pick a Username": "Bir kullanıcı adı seçin", + "Enter New Password": "Yeni Şifreyi Girin", + "Confirm Password": "Şifreyi Onayla", + "Create Account": "Hesap oluştur", + "Getting Ready": "Hazır olmak", + "Just a few more minutes": "Sadece birkaç dakika daha", + "Migrating Database": "Veritabanını Taşıma", + "Access the Backend Panel": "Arka Uç Paneline Erişin", + "View Backend During Maintenance": "Bakım Sırasında Arka Uç Görüntüle", + "Perform Software Updates": "Yazılım Güncellemelerini Gerçekleştirin", + "In Maintenance": "Bakımda", + "The site is currently in maintenance mode, please check back later.": "Site şu anda bakım modunda, lütfen daha sonra tekrar kontrol edin.", + "Dashboard": "Gösterge Paneli", + "Administrators": "Yöneticiler", + "Manage Admins": "Yöneticileri Yönet", + "Create Admins": "Yöneticiler Oluşturun", + "Moderate Admins": "Yöneticileri Denetle", + "Manage account suspension and ban admin accounts": "Hesabın askıya alınmasını yönetin ve yönetici hesaplarını yasaklayın", + "Manage Roles": "Rolleri Yönet", + "Manage Groups": "Grupları Yönet", + "Manage Other Admins": "Diğer Yöneticileri Yönet", + "Allow users to reset passwords and update emails.": "Şifrelerin sıfırlanmasına ve e-postaların güncellenmesine izin verir", + "Delete Admins": "Yöneticileri Sil", + "Preferences": "tercihler", + "Settings": "Ayarlar", + "Background Color": "Arka plan rengi", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Kullanıcıların yeni roller oluşturmasına ve en yüksek rollerinden daha düşük rolleri düzenlemesine veya silmesine izin verin.", + "Save Changes": "Değişiklikleri Kaydet", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Bu kayıtlar yöneticiler tarafından başarılı şekilde yapılan girişleri gösterir. Kayıtlar :days gün boyunca saklanır.", + "Access Log": "Yönetim paneli erişim kayıtları", + "View a list of successful back-end user sign ins.": "Yönetim paneline başarılı şekilde yapılan girişleri görüntüler.", + "ID": "ID", + "Date & Time": "Tarih & Saat", + "Type": "Tipi", + "IP address": "IP adres", + "Login": "Giriş", + "First name": "İsim", + "Last name": "Soyisim", + "Email": "Email", + "Translated for locale: :value": "Yerel ayar için çevrildi: :değer", + "Translated for site: :value": "Site için çevrildi: :değer", + "A custom schema is used for this file format.": "Bu dosya biçimi için özel bir şema kullanılır.", + "Select": "Seçme", + "Replace": "Yer değiştirmek" } \ No newline at end of file diff --git a/modules/backend/lang/uk.json b/modules/backend/lang/uk.json index 4a9ebbbf9c..7b957794c9 100644 --- a/modules/backend/lang/uk.json +++ b/modules/backend/lang/uk.json @@ -1,104 +1,111 @@ { - "Cancel": "Скасувати", - "You are viewing as": "Ви переглядаєте як", - "Preview Role": "Попередній перегляд ролі", - "This lets you test the actions this role can perform.": "Це дозволяє перевірити дії, які може виконувати ця роль.", - "View As Role": "Переглянути як роль", - "Return to Role Settings": "Поверніться до налаштувань ролі", - "Password must have a minimum of length of :min characters": "Пароль має містити мінімум символів :min", - "Password must contain at least one uppercase character.": "Пароль має містити принаймні один символ верхнього регістру.", - "Password must contain at least one lowercase character.": "Пароль має містити принаймні один символ нижнього регістру.", - "Password must contain at least one number.": "Пароль має містити принаймні одне число.", - "Password must contain at least one nonalphanumeric character.": "Пароль має містити принаймні один небуквенно-цифровий символ.", - "Welcome to your Administration Area, :name": "Ласкаво просимо до вашої адміністративної зони, :name", - "Duplicate": "Дублікат", - "Expand": "Розгорнути", - "Collapse": "Згорнути", - "Move Up": "Рухатися вгору", - "Move Down": "Рухатися вниз", - "Remove": "Видалити", - "Manage Item": "Керувати елементом", - "Clear Filters": "Очистити фільтри", - "Filter Setup": "Налаштування фільтра", - "Apply": "Застосувати", - "Clear": "Ясно", - "is equal to": "дорівнює", - "is between": "знаходиться між", - "contains": "містить", - "is before": "є раніше", - "is after": "є після", - "is greater than": "більше ніж", - "is less than": "менше ніж", - "1. Export output format": "1. Експортувати формат виводу", - "File Format": "Формат файлу", - "Delimiter Character": "Розділювач", - "Enclosure Character": "Огортувач", - "Escape Character": "Символ екранування", - "2. Select columns to export": "2. Оберіть колонки до експорту", - "Columns": "Колонки", - "3. Set export options": "3. Встановіть опції експорту", - "CSV Custom": "Власний формат", - "1. Upload an Import File": "1. Завантажити CSV-файл", - "Import File": "Імпортувати файл", - "File Encoding": "Кодування файлу", - "First row contains column titles": "Перший рядок містить назви колонок", - "Leave this checked if the first row in the CSV is used as the column titles.": "Залиште це відміченим якщо перший рядок CSV використовується для назв колонок.", - "2. Match the file columns to database fields": "2. Віднести колонки файлу до полів бази даних", - "File columns": "Колонки файлу", - "Database fields": "Поля бази даних", - "3. Set import options": "3. Встановити опції імпорту", - "Export progress": "Прогрес експорту", - "Processing": "Обробка", - "Import progress": "Прогрес імпорту", - "Import error": "Помилка імпорту", - "Export error": "Помилка експорту", - "Column preview": "Попередній перегляд колонки", - "Column": "Колонка", - "Disable": "Вимкнути", - "Enable": "Увімкнути", - "Delete": "Видалити", - "Export": "Експорт", - "Import": "Імпорт", - "Select Action": "Виберіть Дія", - "Please create a new account for logging in to the Administration Area.": "Будь ласка, створіть новий обліковий запис для входу в Адміністративну область.", - "First Name": "Ім'я", - "Last Name": "Прізвище", - "Email Address": "Адреса електронної пошти", - "Pick a Username": "Виберіть ім’я користувача", - "Enter New Password": "Введіть новий пароль", - "Confirm Password": "Підтвердьте пароль", - "Create Account": "Створити обліковий запис", - "Getting Ready": "Збираючись", - "Just a few more minutes": "Ще кілька хвилин", - "Migrating Database": "Міграція бази даних", - "Access the Backend Panel": "Доступ до Backend Panel", - "View Backend During Maintenance": "Перегляд серверної частини під час обслуговування", - "Perform Software Updates": "Виконуйте оновлення програмного забезпечення", - "In Maintenance": "У технічному обслуговуванні", - "The site is currently in maintenance mode, please check back later.": "Зараз сайт перебуває в режимі обслуговування, перевірте пізніше.", - "Dashboard": "Панель приладів", - "Administrators": "Адміністратори", - "Manage Admins": "Керуйте адмінами", - "Create Admins": "Створити адміністраторів", - "Moderate Admins": "Помірні адміністратори", - "Manage account suspension and ban admin accounts": "Керуйте призупиненням облікового запису та блокуванням облікових записів адміністратора", - "Manage Roles": "Керуйте ролями", - "Manage Groups": "Керувати групами", - "Manage Other Admins": "Керуйте іншими адмінами", - "Allow users to reset passwords and update emails.": "Дозволяє скидати паролі та оновлювати електронні листи", - "Delete Admins": "Видалити адміністраторів", - "Preferences": "вподобання", - "Settings": "Налаштування", - "Background Color": "Колір фону", - "Allow users to create new roles and edit or delete roles lower than their highest role.": "Дозволити користувачам створювати нові ролі та редагувати або видаляти ролі, нижчі за їх найвищу роль.", - "Save Changes": "Зберегти зміни", - "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Цей журнал показує список успішних спроб входу адміністраторів. Записи зберігаються :days днів.", - "Access Log": "Журнал доступу", - "View a list of successful back-end user sign ins.": "Переглянути список успішних входів користувачів back-end-у.", - "Date & Time": "Дата та час", - "IP address": "IP-адреса", - "Login": "Ім'я користувача", - "First name": "Ім'я", - "Last name": "Прізвище", - "Email": "Електронна адреса" + "Cancel": "Скасувати", + "You are viewing as": "Ви переглядаєте як", + "Preview Role": "Попередній перегляд ролі", + "This lets you test the actions this role can perform.": "Це дозволяє перевірити дії, які може виконувати ця роль.", + "View As Role": "Переглянути як роль", + "Return to Role Settings": "Поверніться до налаштувань ролі", + "Password must have a minimum of length of :min characters": "Пароль має містити мінімум символів :min", + "Password must contain at least one uppercase character.": "Пароль має містити принаймні один символ верхнього регістру.", + "Password must contain at least one lowercase character.": "Пароль має містити принаймні один символ нижнього регістру.", + "Password must contain at least one number.": "Пароль має містити принаймні одне число.", + "Password must contain at least one nonalphanumeric character.": "Пароль має містити принаймні один небуквенно-цифровий символ.", + "Welcome to your Administration Area, :name": "Ласкаво просимо до вашої адміністративної зони, :name", + "Duplicate": "Дублікат", + "Expand": "Розгорнути", + "Collapse": "Згорнути", + "Move Up": "Рухатися вгору", + "Move Down": "Рухатися вниз", + "Remove": "Видалити", + "Manage Item": "Керувати елементом", + "Clear Filters": "Очистити фільтри", + "Filter Setup": "Налаштування фільтра", + "Apply": "Застосувати", + "Clear": "Ясно", + "is equal to": "дорівнює", + "is between": "знаходиться між", + "contains": "містить", + "is before": "є раніше", + "is after": "є після", + "is greater than": "більше ніж", + "is less than": "менше ніж", + "1. Export output format": "1. Експортувати формат виводу", + "File Format": "Формат файлу", + "Delimiter Character": "Розділювач", + "Enclosure Character": "Огортувач", + "Escape Character": "Символ екранування", + "2. Select columns to export": "2. Оберіть колонки до експорту", + "Columns": "Колонки", + "3. Set export options": "3. Встановіть опції експорту", + "CSV Custom": "Власний формат", + "1. Upload an Import File": "1. Завантажити CSV-файл", + "Import File": "Імпортувати файл", + "File Encoding": "Кодування файлу", + "First row contains column titles": "Перший рядок містить назви колонок", + "Leave this checked if the first row in the CSV is used as the column titles.": "Залиште це відміченим якщо перший рядок CSV використовується для назв колонок.", + "2. Match the file columns to database fields": "2. Віднести колонки файлу до полів бази даних", + "File columns": "Колонки файлу", + "Database fields": "Поля бази даних", + "3. Set import options": "3. Встановити опції імпорту", + "Export progress": "Прогрес експорту", + "Processing": "Обробка", + "Import progress": "Прогрес імпорту", + "Import error": "Помилка імпорту", + "Export error": "Помилка експорту", + "Column preview": "Попередній перегляд колонки", + "Column": "Колонка", + "Disable": "Вимкнути", + "Enable": "Увімкнути", + "Delete": "Видалити", + "Export": "Експорт", + "Import": "Імпорт", + "Select Action": "Виберіть Дія", + "Please create a new account for logging in to the Administration Area.": "Будь ласка, створіть новий обліковий запис для входу в Адміністративну область.", + "First Name": "Ім'я", + "Last Name": "Прізвище", + "Email Address": "Адреса електронної пошти", + "Pick a Username": "Виберіть ім’я користувача", + "Enter New Password": "Введіть новий пароль", + "Confirm Password": "Підтвердьте пароль", + "Create Account": "Створити обліковий запис", + "Getting Ready": "Збираючись", + "Just a few more minutes": "Ще кілька хвилин", + "Migrating Database": "Міграція бази даних", + "Access the Backend Panel": "Доступ до Backend Panel", + "View Backend During Maintenance": "Перегляд серверної частини під час обслуговування", + "Perform Software Updates": "Виконуйте оновлення програмного забезпечення", + "In Maintenance": "У технічному обслуговуванні", + "The site is currently in maintenance mode, please check back later.": "Зараз сайт перебуває в режимі обслуговування, перевірте пізніше.", + "Dashboard": "Панель приладів", + "Administrators": "Адміністратори", + "Manage Admins": "Керуйте адмінами", + "Create Admins": "Створити адміністраторів", + "Moderate Admins": "Помірні адміністратори", + "Manage account suspension and ban admin accounts": "Керуйте призупиненням облікового запису та блокуванням облікових записів адміністратора", + "Manage Roles": "Керуйте ролями", + "Manage Groups": "Керувати групами", + "Manage Other Admins": "Керуйте іншими адмінами", + "Allow users to reset passwords and update emails.": "Дозволяє скидати паролі та оновлювати електронні листи", + "Delete Admins": "Видалити адміністраторів", + "Preferences": "вподобання", + "Settings": "Налаштування", + "Background Color": "Колір фону", + "Allow users to create new roles and edit or delete roles lower than their highest role.": "Дозволити користувачам створювати нові ролі та редагувати або видаляти ролі, нижчі за їх найвищу роль.", + "Save Changes": "Зберегти зміни", + "This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.": "Цей журнал показує список успішних спроб входу адміністраторів. Записи зберігаються :days днів.", + "Access Log": "Журнал доступу", + "View a list of successful back-end user sign ins.": "Переглянути список успішних входів користувачів back-end-у.", + "ID": "ID", + "Date & Time": "Дата та час", + "Type": "Тип", + "IP address": "IP-адреса", + "Login": "Ім'я користувача", + "First name": "Ім'я", + "Last name": "Прізвище", + "Email": "Електронна адреса", + "Translated for locale: :value": "Перекладено для локалі: :value", + "Translated for site: :value": "Перекладено для сайту: :value", + "A custom schema is used for this file format.": "Для цього формату файлу використовується спеціальна схема.", + "Select": "Виберіть", + "Replace": "Замінити" } \ No newline at end of file diff --git a/modules/cms/lang/pt-br.json b/modules/cms/lang/pt-br.json index 14383845c3..b4a2f89bb7 100644 --- a/modules/cms/lang/pt-br.json +++ b/modules/cms/lang/pt-br.json @@ -1,7 +1,16 @@ { + "Themes": "Temas", + "Manage Themes": "Gerenciar Temas", + "Customize Theme": "Customizar Tema", + "Manage Maintenance Mode": "Gerenciar modo de manutenção", + "View Website During Maintenance": "Visualizar o site durante a manutenção", + "Manage Content": "Gerenciar conteúdo", + "Manage Asset Files": "Gerenciar arquivos dos recursos", + "Manage Pages": "Gerenciar páginas", + "Manage Layouts": "Gerenciar layouts", "Configure the maintenance mode page and toggle the setting.": "Configurar modo de manutenção e a página exibida.", "Maintenance Mode": "Modo de manutenção", "Select the page to show when maintenance mode is activated.": "Quando ativado visitantes do site vão ver a página selecionada.", "Enable maintenance mode": "Ativar modo de manutenção", "Maintenance mode will display the maintenance page to visitors who are not signed in to the back-end area.": "O modo de manutenção exibirá a página de manutenção para visitantes que não estão conectados à área de back-end." -} \ No newline at end of file +} diff --git a/modules/cms/lang/pt-br/lang.php b/modules/cms/lang/pt-br/lang.php index 1f34f98b9d..fec52f4d95 100644 --- a/modules/cms/lang/pt-br/lang.php +++ b/modules/cms/lang/pt-br/lang.php @@ -1,6 +1,7 @@ [ 'invalid_file' => 'Nome de arquivo inválido: ":name". Os nomes de arquivos podem conter apenas letras, números, sublinhados, traços e pontos. Veja alguns exemplos de nomes de arquivos corretos: pagina.htm, pagina, subdiretorio/pagina', + 'invalid_file_inspector' => 'Nome de arquivo inválido. Os nomes dos arquivos podem conter apenas símbolos alfanuméricos, sublinhados, traços e pontos. Alguns exemplos de nomes de arquivos: pagina.htm, pagina, subdiretorio/pagina', 'invalid_property' => 'A propriedade ":nome" não pode ser definida', 'file_already_exists' => 'Arquivo ":name" já existe.', 'error_saving' => 'Erro ao salvar arquivo ":name". Verifique as permissões de escrita.', @@ -26,6 +27,7 @@ 'active' => [ 'not_set' => 'O tema ativo não foi definido.', 'not_found' => 'O tema ativo não foi encontrado.', + 'is_locked' => 'O tema \':theme\' está bloqueado e não pode ser usado. Por favor, duplique este tema ou crie um tema filho.', ], 'edit' => [ 'not_set' => 'O tema de edição não foi definido.', @@ -35,6 +37,8 @@ 'settings_menu' => 'Temas', 'settings_menu_description' => 'Veja a lista de temas instalados e selecione o tema ativo.', 'default_tab' => 'Propriedades', + 'publish_tab' => 'Publicar', + 'advanced_tab' => 'Avançado', 'name_label' => 'Nome', 'name_create_placeholder' => 'Nome do novo tema', 'author_label' => 'Autor', @@ -43,8 +47,14 @@ 'description_placeholder' => 'Descrição do tema', 'homepage_label' => 'Site', 'homepage_placeholder' => 'URL do site', + 'author_code_label' => 'Código do autor', + 'author_code_placeholder' => 'Um código exclusivo para o autor usado para distribuição', 'code_label' => 'Código', 'code_placeholder' => 'Um código exclusivo para esse tema a ser usado para distribuição', + 'parent_label' => 'Tema pai', + 'no_parent' => '-- nenhum pai --', + 'database_templates_label' => 'Modo de banco de dados', + 'database_templates_description' => 'Salve as alterações deste tema no banco de dados em vez nos arquivos', 'preview_image_label' => 'Imagem de pré-visualização', 'preview_image_placeholder' => 'O caminho da imagem de pré-visualização do tema.', 'dir_name_label' => 'Nome do diretório', @@ -91,6 +101,9 @@ 'find_more_themes' => 'Encontrar mais temas.', 'saving' => 'Salvando tema...', 'return' => 'Retornar à lista de temas', + 'setting_edit_theme' => 'Mudando o tema de edição', + 'edit_theme_changed' => 'Tema dde edição alterado', + 'no_themes_found' => 'Nenhum tema encontrado', ], 'maintenance' => [], 'page' => [ @@ -114,7 +127,24 @@ 'cms_page' => 'Página do CMS', 'title' => 'Título da página', 'url' => 'URL da página', + 'url_required' => 'A URL da página é obrigatório.', 'file_name' => 'Nome do arquivo da página', + 'editor_node_name' => 'Páginas', + 'editor_sorting' => 'Ordenar Páginas', + 'editor_sort_by_url' => 'URL', + 'editor_sort_by_title' => 'Título', + 'editor_sort_by_file_name' => 'Nome do arquivo', + 'editor_grouping' => 'Grupo de Páginas', + 'editor_group_by_filepath' => 'Caminho de arquivo', + 'editor_group_by_url' => 'URL', + 'editor_display' => 'Exibição', + 'editor_display_title' => 'Título', + 'editor_display_url' => 'URL', + 'editor_display_file' => 'Caminho de arquivo', + 'editor_markup' => 'Marcação', + 'editor_code' => 'Código', + 'description_hint' => 'A descrição é opcional e visível apenas na interface do usuário do painel.', + 'create_new' => 'Nova Página', ], 'layout' => [ 'not_found_name' => 'O esboço ":name" não foi encontrado', @@ -124,6 +154,8 @@ 'new' => 'Novo esboço', 'delete_confirm_multiple' => 'Você realmente deseja excluir os esboços selecionados?', 'delete_confirm_single' => 'Você realmente deseja excluir este esboço?', + 'editor_node_name' => 'Layouts', + 'create_new' => 'Novo Layout', ], 'partial' => [ 'not_found_name' => 'O bloco ":name" não foi encontrado.', @@ -133,7 +165,9 @@ 'no_list_records' => 'Nenhum bloco encontrado', 'delete_confirm_multiple' => 'Você realmente deseja apagar os blocos selecionados?', 'delete_confirm_single' => 'Você realmente deseja apagar este bloco?', + 'editor_node_name' => 'Blocos', 'new' => 'Novo bloco', + 'create_new' => 'Novo bloco', ], 'content' => [ 'not_found_name' => 'O arquivo de conteúdo ":name" não foi encontrado.', @@ -142,7 +176,9 @@ 'no_list_records' => 'Nenhum arquivo de conteúdo encontrado', 'delete_confirm_multiple' => 'Você realmente deseja apagar arquivos ou diretórios de conteúdo selecionados?', 'delete_confirm_single' => 'Você realmente deseja apagar este arquivo de conteúdo?', + 'editor_node_name' => 'Arquivos de conteúdo', 'new' => 'Novo arquivo de conteúdo', + 'editor_content' => 'Conteúdo', ], 'ajax_handler' => [ 'invalid_name' => 'O nome do manipulador AJAX é inválido: :name.', @@ -164,12 +200,18 @@ 'layout' => 'Esboço', 'description' => 'Descrição', 'preview' => 'Visualizar', + 'page' => 'Página CMS', + 'edit_theme' => 'Editar Tema', + 'change_edit_theme' => 'Alterar tema', + 'edit_theme_saved_changed_tabs' => 'Você tem alterações não salvas em guias abertas. Salve-as ou feche as guias para continuar.', + 'partial' => 'Bloco CMS', 'meta' => 'Meta', 'meta_title' => 'Título Meta', 'meta_description' => 'Descrição Meta', 'markup' => 'Edição', 'code' => 'Código', 'content' => 'Conteúdo', + 'asset' => 'Arquivo de recursos', 'hidden' => 'Oculta', 'hidden_comment' => 'Páginas ocultas são acessíveis somente para administradores.', 'enter_fullscreen' => 'Entrar no modo de tela cheia', @@ -186,6 +228,14 @@ 'resetting' => 'Redefinindo', 'commit_success' => 'O :type foi confirmado no sistema de arquivos', 'reset_success' => 'O :type foi redefinido para a versão do sistema de arquivos', + 'error_loading_header' => 'Erro ao carregar o template', + 'component_list' => 'Componentes', + 'component_list_description' => 'Para adicionar um componente, clique nele ou arraste e solte no editor.', + 'info' => 'Infomação', + 'refresh' => 'Atualizar', + 'create' => 'Criar', + 'manage_themes' => 'Gerenciar Temas', + 'error_no_doctype_permissions' => 'Você não tem permissão para gerenciar o tipo de documento: :doctype', ], 'asset' => [ 'menu_label' => 'Arquivos', @@ -197,9 +247,15 @@ 'create_directory' => 'Criar diretório', 'directory_popup_title' => 'Novo diretório', 'directory_name' => 'Nome do diretório', + 'directory_name_required' => 'O nome do diretório é obrigatório', + 'rename_name_required' => 'O nome é obrigatório', 'rename' => 'Renomear', 'delete' => 'Excluir', 'move' => 'Mover', + 'moved' => 'Movido com sucesso', + 'moving' => 'Movendo itens selecionados', + 'saved' => 'Arquivo salvo', + 'deleted' => 'Arquivo excluído', 'select' => 'Selecionar', 'new' => 'Novo arquivo', 'rename_popup_title' => 'Renomear', @@ -230,6 +286,8 @@ 'no_list_records' => 'Nenhum arquivo encontrado', 'delete_confirm' => 'Excluir arquivos ou diretórios selecionados?', 'path' => 'Caminho', + 'editor_node_name' => 'Recursos', + 'open' => 'Abrir', ], 'component' => [ 'menu_label' => 'Componentes', @@ -245,14 +303,29 @@ 'method_not_found' => 'O componente ":name" não tem um método ":method".', 'soft_component' => 'Componente Soft', 'soft_component_description' => 'Este componente está faltando, mas é opcional.', + 'expand_or_collapse' => 'Expandir ou recolher a lista de componentes', + 'remove' => 'Remover componente', + 'expand_partial' => 'Expandir Bloco do Componente', ], 'template' => [ 'invalid_type' => 'Tipo de modelo desconhecido.', 'not_found' => 'O modelo solicitado não foi encontrado.', 'saved' => 'O modelo foi salvo com sucesso.', + 'saved_to_db' => 'Modelo salvo no banco de dados', + 'file_updated' => 'Arquivo de modelo atualizado', + 'reset_from_template_success' => 'O modelo foi redefinido do arquivo', + 'reloaded' => 'Modelo recarregado', + 'deleted' => 'Modelo excluído', 'no_list_records' => 'Nenhum registro foi encontrado', 'delete_confirm' => 'Excluir modelos selecionados?', 'order_by' => 'Ordenar por', + 'last_modified' => 'Último modificado', + 'storage' => 'Armazenamento', + 'template_file' => 'Arquivo de modelo', + 'storage_filesystem' => 'Sistema de arquivo', + 'storage_database' => 'base de dados', + 'update_file' => 'Atualizar arquivo de modelo', + 'reset_from_file' => 'Redefinir do arquivo de modelo', ], 'permissions' => [ 'name' => 'Cms', @@ -293,4 +366,67 @@ 'template_created' => 'Modelo foi criado', 'template_deleted' => 'O modelo foi apagado', ], + 'intellisense' => [ + 'learn_more' => 'Saiba mais', + 'docs' => [ + 'partial' => 'Renderiza o conteúdo de um bloco do CMS.', + 'page' => 'Renderiza o conteúdo de uma página CMS em um modelo de layout.', + 'content' => 'Renderiza um bloco de conteúdo do CMS.', + 'component' => 'Renderiza o conteúdo de marcação padrão para um componente CMS.', + 'placeholder' => 'Renderiza uma seção de espaço reservado.', + 'scripts' => 'Insere referências de arquivo JavaScript a scripts injetados pela aplicação.', + 'styles' => 'Renderiza links CSS para arquivos de folha de estilo injetados pela aplicação.', + 'flash' => 'Renderiza qualquer mensagem flash armazenada na sessão do usuário.', + 'verbatim' => 'Marca as seções inteiras como sendo texto bruto que não deve ser analisado.', + 'macro' => 'Permite definir funções personalizadas em um modelo.', + 'for' => 'Faça um loop sobre cada valor em uma coleção.', + 'if' => 'Permite a exibição condicional da marcação do modelo.', + 'abs_filter' => 'O filtro `abs` retorna o valor absoluto.', + 'batch_filter' => 'O filtro `batch` "agrupa" os itens retornando uma lista de listas com o número de itens fornecido. Um segundo parâmetro pode ser fornecido e usado para preencher itens ausentes.', + 'capitalize_filter' => 'O filtro `capitalize` capitaliza um valor. O primeiro caractere será maiúsculo, todos os outros minúsculos.', + 'column_filter' => 'O filtro `column` retorna os valores de uma única coluna na matriz de entrada.', + 'convert_encoding_filter' => 'O filtro `convert_encoding` converte uma string de uma codificação para outra. O primeiro argumento é o conjunto de caracteres de saída esperado e o segundo é o conjunto de caracteres de entrada.', + 'country_name_filter' => 'O filtro `country_name` retorna o nome do país dado seu código de duas letras ISO-3166.', + 'currency_name_filter' => 'O filtro `currency_name` retorna o nome da moeda dado seu código de três letras.', + 'currency_symbol_filter' => 'O filtro `currency_symbol` retorna o símbolo da moeda dado seu código de três letras.', + 'data_uri_filter' => 'O filtro `data_uri` gera uma URL usando o esquema de dados conforme definido na RFC 2397.', + 'date_filter' => 'O filtro `date` formata uma data para um determinado formato.', + 'date_modify_filter' => 'O filtro `date_modify` modifica uma data com uma determinada string modificadora.', + 'default_filter' => 'O filtro `default` retorna o valor padrão passado se o valor for indefinido ou vazio, caso contrário o valor da variável.', + 'escape_filter' => 'O filtro `escape` escapa uma string usando estratégias que dependem do contexto.', + 'filter_filter' => 'O filtro `filter` filtra elementos de uma sequência ou mapeamento usando uma função de seta. A função de seta recebe o valor da sequência ou mapeamento.', + 'first_filter' => 'O filtro `first` retorna o primeiro "elemento" de uma sequência, um mapeamento ou uma string.', + 'format_filter' => 'O filtro `format` formata uma determinada string substituindo os espaços reservados (os espaços reservados seguem a notação [sprintf](https://www.php.net/sprintf)).', + 'format_currency_filter' => 'O filtro `format_currency` formata um número como moeda.', + 'join_filter' => 'O filtro `join` retorna uma string que é a concatenação dos itens de uma sequência', + 'json_encode_filter' => 'O filtro `json_encode` retorna a representação JSON de um valor.', + 'keys_filter' => 'O filtro `keys` retorna as chaves de um array. É útil quando você deseja iterar sobre as chaves de um array.', + 'last_filter' => 'O filtro `last` retorna o último "elemento" de uma sequência, mapeamento ou string.', + 'length_filter' => 'O filtro `length` retorna o número de itens de uma sequência ou mapeamento, ou o comprimento de uma string.', + 'lower_filter' => 'O filtro `lower` converte um valor para minúsculas.', + 'map_filter' => 'O filtro `map` aplica uma função de seta aos elementos de uma sequência ou mapeamento. A função de seta recebe o valor da sequência ou mapeamento.', + 'merge_filter' => 'O filtro `merge` mescla um array com outro array.', + 'nl2br_filter' => 'O filtro `nl2br` insere quebras de linha HTML antes de todas as novas linhas em uma string.', + 'number_format_filter' => 'O filtro `number_format` formata números. É um wrapper em torno da função [number_format](https://www.php.net/number_format) do PHP.', + 'reduce_filter' => 'O filtro `reduce` reduz iterativamente uma sequência ou um mapeamento para um único valor usando uma função de seta, de modo a reduzi-lo a um único valor. A função de seta recebe o valor de retorno da iteração anterior e o valor atual da sequência ou mapeamento.', + 'replace_filter' => 'O filtro `replace` formata uma determinada string substituindo os espaços reservados.', + 'reverse_filter' => 'O filtro `reverse` reverte uma sequência, um mapeamento ou uma string.', + 'round_filter' => 'O filtro `round` arredonda um número para uma determinada precisão.', + 'slice_filter' => 'O filtro `slice` extrai uma fatia de uma sequência, um mapeamento ou uma string.', + 'sort_filter' => 'O filtro `sort` ordena um array.', + 'spaceless_filter' => 'Use o filtro `spaceless` para remover espaços em branco entre tags HTML, não espaços em branco dentro de tags HTML ou espaços em branco em texto simples.', + 'split_filter' => 'O filtro `split` divide uma string pelo delimitador dado e retorna uma lista de strings.', + 'striptags_filter' => 'O filtro `striptags` remove as tags SGML/XML e substitui o espaço em branco adjacente por um espaço.', + 'title_filter' => 'O filtro `title` retorna uma versão em maiúsculas do valor. As palavras começam com letras maiúsculas, todos os caracteres restantes são minúsculos.', + 'trim_filter' => 'O filtro `trim` retira espaços em branco (ou outros caracteres) do início e do fim de uma string.', + 'upper_filter' => 'O filtro `upper` converte um valor para maiúscula.', + 'url_encode_filter' => 'A porcentagem do filtro `url_encode` codifica uma determinada string como segmento de URL ou uma matriz como string de consulta.', + 'page_filter' => 'O filtro `page` cria um link para uma página usando um nome de arquivo de página, sem extensão, como parâmetro.', + 'theme_filter' => 'O filtro `theme` retorna um endereço relativo ao caminho do tema ativo do site. ', + 'app_filter' => 'O filtro `app` retorna um endereço relativo ao caminho público do site.', + 'media_filter' => 'O filtro `media` retorna um endereço relativo ao caminho público da [biblioteca do gerenciador de mídia](https://octobercms.com/docs/cms/mediamanager). ', + 'md_filter' => 'O filtro `md` converte o valor do Markdown para o formato HTML.', + 'raw_filter' => 'O filtro `raw` marca o valor como "seguro", o que significa que uma variável não será escapada se `raw` for o último filtro aplicado a ela.', + ], + ], ]; diff --git a/modules/editor/lang/pt-br.json b/modules/editor/lang/pt-br.json index 7a73a41bfd..1707d8d1f2 100644 --- a/modules/editor/lang/pt-br.json +++ b/modules/editor/lang/pt-br.json @@ -1,2 +1,7 @@ { -} \ No newline at end of file + "Editor": "Editor", + "Access the Editor Tool": "Acesse a ferramenta do Editor", + "Editor Tabs": "Abas do editor", + "Close Tab": "Fechar Aba", + "Editor Objects": "Objetos do Editor" +} diff --git a/modules/editor/lang/pt-br/lang.php b/modules/editor/lang/pt-br/lang.php new file mode 100644 index 0000000000..4cba7d1f89 --- /dev/null +++ b/modules/editor/lang/pt-br/lang.php @@ -0,0 +1,65 @@ + [ + 'nome' => 'Editor', + ], + 'mainview' => [], + 'editor' => [ + 'menu_label' => 'Editor', + ], + 'permissions' => [ + 'nome' => 'Editor', + 'access_editor' => 'O acesso a recursos específicos do editor, como edição de páginas do CMS, é gerenciado usando outras permissões de plug-in.', + ], + 'common' => [ + 'settings' => 'Configurações', + 'document_saved' => 'Documento salvo', + 'document_deleted' => 'Documento excluído', + 'document' => 'Documento', + 'document_reloaded' => 'Documento recarregado', + 'error_saving' => 'Erro ao salvar documento', + 'error_loading' => 'Erro ao carregar documento', + 'error' => 'Erro', + 'discard_changes' => 'Descartar alterações', + 'confirm_delete' => 'O documento será excluído permanentemente.', + 'error_deleting' => 'Erro ao excluir documento', + 'toggle_document_header' => 'Alternar cabeçalho do documento', + 'reveal_in_sidebar' => 'Revelar na barra lateral', + 'apply_and_save' => 'Aplicar e Salvar', + 'quick_access' => 'Acesso rápido', + 'toggle_sidebar' => 'Alternar barra lateral', + 'document_not_found' => 'O documento solicitado não foi encontrado.', + ], + 'filesystem' => [ + 'directory_name_cant_be_empty' => 'O nome do diretório não pode estar vazio', + 'invalid_path' => 'O caminho pode conter apenas dígitos, letras latinas, espaços e os seguintes símbolos: ._-@/', + 'invalid_name' => 'O nome pode conter apenas dígitos, letras latinas, espaços e os seguintes símbolos: ._-@', + 'already_exists' => 'Arquivo ou diretório com este nome já existe', + 'error_creating_directory' => 'Erro ao criar o diretório :name. Verifique as permissões de gravação.', + 'directory_popup_title' => 'Novo diretório', + 'directory_name' => 'Nome do diretório', + 'directory_name_required' => 'O nome do diretório é obrigatório', + 'rename_popup_title' => 'Renomear', + 'rename_new_name' => 'Novo nome', + 'rename_name_required' => 'O nome é obrigatório', + 'name_cant_be_empty' => 'O nome não pode estar vazio', + 'original_not_found' => 'Arquivo ou diretório original não encontrado', + 'type_not_allowed' => 'Apenas os seguintes tipos de arquivo são permitidos: :allowed_types', + 'error_renaming' => 'Erro ao renomear o arquivo ou diretório', + 'error_deleting_file' => 'Erro ao excluir arquivo :name.', + 'error_deleting_dir_not_empty' => 'Erro ao excluir o diretório :name. O diretório não está vazio.', + 'error_deleting_dir' => 'Erro ao excluir o diretório :name.', + 'delete_confirm' => 'Excluir arquivos ou diretórios selecionados?', + 'delete_confirm_single' => 'Excluir arquivo ou diretório selecionado?', + 'selected_files_not_found' => 'Arquivos selecionados não encontrados', + 'select_destination_dir' => 'Por favor, selecione um diretório de destino', + 'destination_not_found' => 'Diretório de destino não encontrado', + 'error_moving_file' => 'Erro ao mover arquivo :file', + 'error_moving_directory' => 'Erro ao mover o diretório :dir', + 'error_deleting_directory' => 'Erro ao excluir o diretório original :dir', + 'moving' => 'Movendo itens selecionados', + 'moved' => 'Itens selecionados movidos com sucesso', + 'destination_exists' => 'Arquivo ou diretório com este nome já existe: :name', + 'file_not_valid' => 'Arquivo inválido', + 'too_large' => 'O arquivo enviado é muito grande. O tamanho máximo de arquivo permitido é :max_size', + ], +]; diff --git a/modules/media/lang/pt-br.json b/modules/media/lang/pt-br.json index 7a73a41bfd..2690946af3 100644 --- a/modules/media/lang/pt-br.json +++ b/modules/media/lang/pt-br.json @@ -1,2 +1,7 @@ { -} \ No newline at end of file + "Media": "Mídia", + "Access the Media Manager": "Acesse o Gerenciador de Mídia", + "Upload Media": "Carregar mídia", + "Delete Media": "Excluir mídia", + "A media file already exists at this location, please upload using a different filename.": "Já existe um arquivo de mídia neste local. Faça o upload usando um nome de arquivo diferente." +} diff --git a/modules/media/lang/ru.json b/modules/media/lang/ru.json index 68d0ff9271..48f0771572 100644 --- a/modules/media/lang/ru.json +++ b/modules/media/lang/ru.json @@ -1,7 +1,7 @@ { - "Media": "Средства массовой информации", + "Media": "Медиа", "Access the Media Manager": "Доступ к медиа-менеджеру", "Upload Media": "Загрузить медиа", "Delete Media": "Удалить медиа", - "A media file already exists at this location, please upload using a different filename.": "Медиафайл уже существует по этому пути, пожалуйста выберите другое имя файла." + "A media file already exists at this location, please upload using a different filename.": "Медиафайл уже существует по этому пути, пожалуйста выберите другое имя файла." } diff --git a/modules/system/classes/UpdateManager.php b/modules/system/classes/UpdateManager.php index 09f8bad624..8ef36ffe9b 100644 --- a/modules/system/classes/UpdateManager.php +++ b/modules/system/classes/UpdateManager.php @@ -14,7 +14,7 @@ class UpdateManager /** * @var string WANT_VERSION is the default composer version string to use. */ - const WANT_VERSION = '^3.0'; + const WANT_VERSION = 'dev-develop'; /** * Requests details about a project based on its identifier. diff --git a/modules/system/handlers/Composer.php b/modules/system/handlers/Composer.php deleted file mode 100644 index 11bf7de8ac..0000000000 --- a/modules/system/handlers/Composer.php +++ /dev/null @@ -1,61 +0,0 @@ -setCallback(function($msg) { - if ($nMsg = $this->processOutput($msg)) { - foreach (explode("\n", $nMsg) as $nnMsg) { - echo ''.trim($nnMsg).'' . PHP_EOL; - flush(); - } - } - }); - - flush(); - - $this->composerRequireCore($composer); - - echo "{$composer->lastExitCode()}"; - } - - protected function processOutput($output) - { - if ($output === null) { - return $output; - } - - // Split backspaced lines - while (true) { - $oldOutput = $output; - $output = str_replace(chr(8).chr(8), chr(8), $output); - if ($output === $oldOutput) { - break; - } - } - $output = array_last(explode(chr(8), $output)); - - // Remove terminal colors - $output = preg_replace('/\\e\[[0-9]+m/', '', $output); - - // Remove trailing newline - $output = preg_replace('/\\n$/', '', $output); - - return $output; - } -} diff --git a/modules/system/handlers/Installer.php b/modules/system/handlers/Installer.php index 6c9109fc5c..f6314b501b 100644 --- a/modules/system/handlers/Installer.php +++ b/modules/system/handlers/Installer.php @@ -1,20 +1,10 @@ checkEnvWritable()) { - throw new Exception('Cannot write to .env file!'); - } - - if (!env('APP_KEY')) { - $this->setEnvVar('APP_KEY', $this->getRandomKey()); - } - - $this->setEnvVar('APP_LOCALE', $selected); - return Redirect::to('check'); - } - } - catch (Exception $ex) { - $this->lastError = $ex->getMessage(); - } - - return $this->makeLayoutView('system::index', [ - 'title' => 'Select Language', - 'locales' => $this->getAvailableLocales() - ]); - } - - /** - * Route: /check - */ - public function check() - { - $requirements = array_filter([ - 'cache-path' => !is_writable(cache_path()), - 'pdo-library' => !defined('PDO::ATTR_DRIVER_NAME'), - 'mbstring-library' => !extension_loaded('mbstring'), - 'fileinfo-library' => !extension_loaded('fileinfo'), - 'ssl-library' => !extension_loaded('openssl'), - 'gd-library' => !extension_loaded('gd'), - 'curl-library' => !function_exists('curl_init') && defined('CURLOPT_FOLLOWLOCATION'), - 'zip-library' => !class_exists('ZipArchive'), - ]); - - if (count($requirements) === 0) { - return Redirect::to('setup'); - } - - return $this->makeLayoutView('system::check', [ - 'title' => 'Check Requirements', - 'requirements' => $requirements - ]); - } - - /** - * Route: /setup - */ - public function setup() - { - try { - if (post('postback')) { - $dbType = post('db_type', 'sqlite'); - $dbName = $dbType === 'sqlite' ? post('db_filename') : post('db_name'); - - $this->checkDatabase( - $dbType, - post('db_host'), - post('db_port'), - $dbName, - post('db_user'), - post('db_pass') - ); - - if ($dbType === 'sqlite') { - $this->setEnvVars([ - 'BACKEND_URI' => post('backend_uri', '/backend'), - 'APP_URL' => Url::to(''), - 'DB_CONNECTION' => $dbType, - 'DB_DATABASE' => $dbName, - ]); - } - else { - $this->setEnvVars([ - 'BACKEND_URI' => post('backend_uri', '/backend'), - 'APP_URL' => Url::to(''), - 'DB_CONNECTION' => $dbType, - 'DB_HOST' => post('db_host'), - 'DB_PORT' => post('db_port'), - 'DB_DATABASE' => $dbName, - 'DB_USERNAME' => post('db_user'), - 'DB_PASSWORD' => post('db_pass'), - ]); - } - - return Redirect::to('project'); - } - } - catch (Exception $ex) { - $this->lastError = $ex->getMessage(); - } - - return $this->makeLayoutView('system::setup', [ - 'title' => 'Configuration' - ]); - } - - /** - * Route: /project - */ - public function project() - { - try { - if (post('postback')) { - $licenceKey = trim(post('license_key')); - - $result = UpdateManager::instance()->requestProjectDetails($licenceKey); - - // Check status - $isActive = $result['is_active'] ?? false; - if (!$isActive) { - throw new Exception('License is unpaid or has expired. Please visit octobercms.com to obtain a license.'); - } - - // Save authentication token - $projectId = $result['project_id'] ?? null; - $projectEmail = $result['email'] ?? null; - $this->setComposerAuth($projectEmail, $projectId); - - // Add October CMS gateway as a composer repo - $composer = new ComposerPhp; - $composer->addRepository('octobercms', 'composer', $this->getComposerUrl()); - - return Redirect::to('install'); - } - } - catch (Exception $ex) { - $this->lastError = $ex->getMessage(); - } - - return $this->makeLayoutView('system::project', [ - 'title' => 'Installation', - ]); - } - - /** - * Route: /install - */ - public function install() - { - return $this->makeLayoutView('system::install', [ - 'title' => 'Installation', - 'backendUrl' => Url::to(Config::get('backend.uri', 'backend')) - ]); - } - - /** - * makeLayoutView renders a view wrapped in a layout - */ - protected function makeLayoutView($name, $vars) - { - return View::make('system::layout', [ - '_layoutName' => $name, - '_layoutVars' => $vars, - 'error' => $this->lastError, - ] + $vars); - } } diff --git a/modules/system/lang/be.json b/modules/system/lang/be.json index 96f61efc57..e5164f429c 100644 --- a/modules/system/lang/be.json +++ b/modules/system/lang/be.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Не атрымалася знайці налады", "The settings page is missing a Model definition.": "На старонцы налад не вызначана мадэль", ":name settings updated": ":name налады абноўленыя", - "Return to System Settings": "Вярнуцца да сістэмных налад" + "Return to System Settings": "Вярнуцца да сістэмных налад", + "There is no documentation provided.": "Няма дакументацыі", + "There are no upgrade instructions provided.": "Няма кіраўніцтва па абнаўленні", + "There is no licence provided.": "Няма тэксту ліцэнзіі", + "Documentation": "Дакументацыя", + "Upgrade Guide": "Кіраўніцтва па абнаўленні", + "Licence": "Ліцэнзія", + "Attach to Project": "Далучыць да праекту", + "Project ID": "ID праекту", + "How to find your Project ID": "Як адшукаць ID праекту", + "Manage Updates": "Кіраванне абнаўленнямі", + "Software Update": "Абнаўленне праграмы", + "Return to System Updates": "Вярнуцца да абнаўленняў сістэмы", + "Try Again": "Паспрабаваць зноў", + "Unpacking application files": "Распакоўка файлаў прыкладання", + "Update Failed": "Не атрымалася абнавіць", + "Unpacking plugin: :name": "Распакоўка плагіну: \":name\"" } \ No newline at end of file diff --git a/modules/system/lang/be/lang.php b/modules/system/lang/be/lang.php index 05f6a2ee79..b9e05563a1 100644 --- a/modules/system/lang/be/lang.php +++ b/modules/system/lang/be/lang.php @@ -89,8 +89,6 @@ 'detach' => 'Аддзяліць праект', 'none' => 'Няма', 'id' => [ - 'label' => 'ID праекту', - 'help' => 'Як адшукаць ID праекту', 'missing' => 'Калі ласка, укажыце ID праекту, які Вы жадаеце выкарыстоўваць', ], 'detach_confirm' => 'Вы ўпэўнены, што жадаеце аддзяліць гэты праект?', @@ -176,7 +174,6 @@ 'return' => 'Вярнуцца да спісу шаблонаў', ], 'install' => [ - 'project_label' => 'Далучыць да праекту', 'plugin_label' => 'Усталяваць плагін', 'theme_label' => 'Усталяваць тэму', 'missing_plugin_name' => 'Калі ласка, укажыце назву плагіна, каб усталяваць', @@ -185,10 +182,6 @@ 'install_success' => 'Плагін быў паспяхова ўсталяваны', ], 'updates' => [ - 'title' => 'Кіраванне абнаўленнямі', - 'name' => 'Абнаўленне праграмы', - 'return_link' => 'Вярнуцца да абнаўленняў сістэмы', - 'retry_label' => 'Паспрабаваць зноў', 'plugin_name' => 'Імя', 'plugin_code' => 'Код', 'plugin_description' => 'Апісанне', @@ -197,10 +190,8 @@ 'core_build' => 'Зборка :build', 'core_build_help' => 'Апошняя зборка даступная', 'core_downloading' => 'Загрузка файлаў прыкладання', - 'core_extracting' => 'Распакоўка файлаў прыкладання', 'themes' => 'Тэмы', 'plugin_downloading' => 'Загрузка плагіну: ":name"', - 'plugin_extracting' => 'Распакоўка плагіну: ":name"', 'plugin_version_none' => 'Новы плагін', 'plugin_current_version' => 'Бягучая версія', 'theme_new_install' => 'Усталяванне новай тэмы', @@ -210,7 +201,6 @@ 'update_completing' => 'Сканчэнне працэсу абнаўлення', 'update_loading' => 'Загрузка даступных абнаўленняў...', 'update_success' => 'Працэс абнаўлення скончаны', - 'update_failed_label' => 'Не атрымалася абнавіць', 'force_label' => 'Прымусіць абнаўленне', 'found' => [ 'label' => 'Знойдзены новыя абнаўленні!', @@ -231,14 +221,8 @@ 'important_alert_text' => 'Некаторыя абнаўленні патрабуюць Вашай увагі', 'details_title' => 'Дэталі плагіну', 'details_view_homepage' => 'Прагледзець хатнюю старонку', - 'details_readme' => 'Дакументацыя', - 'details_readme_missing' => 'Няма дакументацыі', 'details_changelog' => 'Гісторыя змяненняў', 'details_changelog_missing' => 'Няма гісторыі змяненняў', - 'details_upgrades' => 'Кіраўніцтва па абнаўленні', - 'details_upgrades_missing' => 'Няма кіраўніцтва па абнаўленні', - 'details_licence' => 'Ліцэнзія', - 'details_licence_missing' => 'Няма тэксту ліцэнзіі', 'details_current_version' => 'Бягучая версія', 'details_author' => 'Аўтар', ], diff --git a/modules/system/lang/bg.json b/modules/system/lang/bg.json index 4f8d3a8af4..9b13c3d637 100644 --- a/modules/system/lang/bg.json +++ b/modules/system/lang/bg.json @@ -21,5 +21,19 @@ "Unable to find the specified settings.": "Неуспешно намиране на конкретните Настройки.", "The settings page is missing a Model definition.": "Страницата за Настройки липсва дефиниция на модел.", ":name settings updated": "Настройките за :name бяха успешно променени.", - "Return to System Settings": "Връщане към системните настройки." + "Return to System Settings": "Връщане към системните настройки.", + "There is no documentation provided.": "Не е предоставена документация.", + "There are no upgrade instructions provided.": "Все още няма предоставени инструкции за ъпгрейд.", + "Documentation": "Документация", + "Upgrade Guide": "Ръководство За Ъпгрейд", + "Attach to Project": "Закачете за Проект", + "Project ID": "Проект ID", + "How to find your Project ID": "Как да намерите своя Проект ID", + "Manage Updates": "Управление Актуализации", + "Software Update": "Софтуерни Актуализации", + "Return to System Updates": "Назад към система за актуализация", + "Try Again": "Опитай отново", + "Unpacking application files": "Разопаковане на файловете на приложението", + "Update Failed": "Актуализация се провали", + "Unpacking plugin: :name": "Разопаковане на Добавка: :name" } \ No newline at end of file diff --git a/modules/system/lang/bg/lang.php b/modules/system/lang/bg/lang.php index 8d58041b21..011bd4cb76 100644 --- a/modules/system/lang/bg/lang.php +++ b/modules/system/lang/bg/lang.php @@ -89,8 +89,6 @@ 'detach' => 'Премахнете Проект', 'none' => 'Нито един', 'id' => [ - 'label' => 'Проект ID', - 'help' => 'Как да намерите своя Проект ID', 'missing' => 'Моля, задайте Проект ID за да го използвате.', ], 'detach_confirm' => 'Сигурни ли сте, че искате да премахнете този Проект?', @@ -169,7 +167,6 @@ 'return' => 'Назад към списъка с шаблон', ], 'install' => [ - 'project_label' => 'Закачете за Проект', 'plugin_label' => 'Инсталиране на Добавка', 'theme_label' => 'Инсталиране на Тема', 'missing_plugin_name' => 'Моля, укажете име на Добавката за инсталиране.', @@ -178,10 +175,6 @@ 'install_success' => 'Добавката е инсталирана успешно.', ], 'updates' => [ - 'title' => 'Управление Актуализации', - 'name' => 'Софтуерни Актуализации', - 'return_link' => 'Назад към система за актуализация', - 'retry_label' => 'Опитай отново', 'plugin_name' => 'Име', 'plugin_code' => 'Код', 'plugin_description' => 'Описание', @@ -191,10 +184,8 @@ 'core_build' => 'Изработка :build', 'core_build_help' => 'Последни изработка е на разположение.', 'core_downloading' => 'Изтеглянето на файловете на приложението', - 'core_extracting' => 'Разопаковане на файловете на приложението', 'themes' => 'Теми', 'plugin_downloading' => 'Изтегляне на Добавка: :name', - 'plugin_extracting' => 'Разопаковане на Добавка: :name', 'plugin_version_none' => 'Нова Добавка', 'plugin_current_version' => 'Текуща версия', 'theme_new_install' => 'Нова инсталация на Тема.', @@ -204,7 +195,6 @@ 'update_completing' => 'Завършване на инсталационния процес', 'update_loading' => 'Зареждане на наличните актуализации...', 'update_success' => 'Процесът на актуализация е извършена успешно.', - 'update_failed_label' => 'Актуализация се провали', 'force_label' => 'Принудителна актуализация', 'found' => [ 'label' => 'Намерени нови актуализации!', @@ -225,10 +215,6 @@ 'important_alert_text' => 'Някои актуализации на които трябва да обърнете внимание.', 'details_title' => 'Детайли за добавка', 'details_view_homepage' => 'Виж начална страница', - 'details_readme' => 'Документация', - 'details_readme_missing' => 'Не е предоставена документация.', - 'details_upgrades' => 'Ръководство За Ъпгрейд', - 'details_upgrades_missing' => 'Все още няма предоставени инструкции за ъпгрейд.', 'details_current_version' => 'Текуща версия', 'details_author' => 'Автор', ], diff --git a/modules/system/lang/ca.json b/modules/system/lang/ca.json index ea0171351c..06345f2edb 100644 --- a/modules/system/lang/ca.json +++ b/modules/system/lang/ca.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "No s'han pogut trobar les opcions especificades.", "The settings page is missing a Model definition.": "La pàgina d'opcions no té una definició de Model.", ":name settings updated": "Opcions de :name actualitzades", - "Return to System Settings": "Tornar a les opcions del sistema" + "Return to System Settings": "Tornar a les opcions del sistema", + "There is no documentation provided.": "No s'ha proveït documentació.", + "There are no upgrade instructions provided.": "No s'ha proveït guia d'actualització.", + "There is no licence provided.": "No s'ha proveït llicència.", + "Documentation": "Documentació", + "Upgrade Guide": "Guia d'actualització", + "Licence": "Llicència", + "Attach to Project": "Vincular a projecte", + "Project ID": "ID de projecte", + "How to find your Project ID": "Com trobar la teva ID de projecte", + "Manage Updates": "Gestionar actualitzacions", + "Software Update": "Actualització de software", + "Return to System Updates": "Tornar a les actualitzacions de sistema", + "Try Again": "Tornar-ho a intentar", + "Unpacking application files": "Desempaquetant arxius de l'aplicació", + "Update Failed": "Actualització fallida", + "Unpacking plugin: :name": "Desempaquetant plugin: :name" } \ No newline at end of file diff --git a/modules/system/lang/ca/lang.php b/modules/system/lang/ca/lang.php index 2ae7cfbebf..120c8f88c5 100644 --- a/modules/system/lang/ca/lang.php +++ b/modules/system/lang/ca/lang.php @@ -97,8 +97,6 @@ 'detach' => 'desvincular projecte', 'none' => 'Cap', 'id' => [ - 'label' => 'ID de projecte', - 'help' => 'Com trobar la teva ID de projecte', 'missing' => 'Si us plau indica una ID de projecte.', ], 'detach_confirm' => 'Estàs segur que vols desvincular aquest projecte?', @@ -239,7 +237,6 @@ ], ], 'install' => [ - 'project_label' => 'Vincular a projecte', 'plugin_label' => 'Instal·lar plugin', 'theme_label' => 'Instal·lar tema', 'missing_plugin_name' => 'Si us plau indica un nom de plugin per a instal·lar.', @@ -248,10 +245,6 @@ 'install_success' => 'Plugin instal·lat correctament', ], 'updates' => [ - 'title' => 'Gestionar actualitzacions', - 'name' => 'Actualització de software', - 'return_link' => 'Tornar a les actualitzacions de sistema', - 'retry_label' => 'Tornar-ho a intentar', 'plugin_name' => 'Nom', 'plugin_code' => 'Codi', 'plugin_description' => 'Descripció', @@ -261,11 +254,9 @@ 'core_build' => 'Versió :build', 'core_build_help' => 'La última versió està disponible.', 'core_downloading' => 'Descarregant arxius de l\'aplicació', - 'core_extracting' => 'Desempaquetant arxius de l\'aplicació', 'core_set_build' => 'Assignant número de versió', 'themes' => 'Temes', 'plugin_downloading' => 'Descarregant plugin: :name', - 'plugin_extracting' => 'Desempaquetant plugin: :name', 'plugin_version_none' => 'Nou plugin', 'plugin_current_version' => 'Versió actual', 'theme_new_install' => 'Instal·lació de nou tema.', @@ -275,7 +266,6 @@ 'update_completing' => 'Finalitzant el procès d\'actualització', 'update_loading' => 'Carregant actualitzacions disponibles...', 'update_success' => 'Procès d\'actualització completat', - 'update_failed_label' => 'Actualització fallida', 'force_label' => 'Forçar actualització', 'found' => [ 'label' => 'S\'han trobat noves actualitzacions!', @@ -297,14 +287,8 @@ 'important_alert_text' => 'Algunes actualitzacions necessiten la teva atenció.', 'details_title' => 'Detalls del plugin', 'details_view_homepage' => 'Veure pàgina web', - 'details_readme' => 'Documentació', - 'details_readme_missing' => 'No s\'ha proveït documentació.', 'details_changelog' => 'Registre de canvis', 'details_changelog_missing' => 'No s\'ha proveït registre de canvis.', - 'details_upgrades' => 'Guia d\'actualització', - 'details_upgrades_missing' => 'No s\'ha proveït guia d\'actualització.', - 'details_licence' => 'Llicència', - 'details_licence_missing' => 'No s\'ha proveït llicència.', 'details_current_version' => 'Versió actual', 'details_author' => 'Autor', ], diff --git a/modules/system/lang/cs.json b/modules/system/lang/cs.json index 4c039a8bff..85e2169bb5 100644 --- a/modules/system/lang/cs.json +++ b/modules/system/lang/cs.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Takové nastavení se nepovedlo najít.", "The settings page is missing a Model definition.": "Stránka s nastavením vyžaduje definovat Model.", ":name settings updated": "Nastavení pro :name byla úspěšně uložena.", - "Return to System Settings": "Zpět do systémového nastavení" + "Return to System Settings": "Zpět do systémového nastavení", + "There is no documentation provided.": "Není uvedená žádná dokumentace.", + "There are no upgrade instructions provided.": "Nejsou uvedené žádné aktualizační instrukce.", + "There is no licence provided.": "Licence není k dispozici.", + "Documentation": "Dokumentace", + "Upgrade Guide": "Instalační příručka", + "Licence": "Licence", + "Attach to Project": "Připojit k projektu", + "Project ID": "Projekt ID", + "How to find your Project ID": "Jak zjistím svoje Projektové ID", + "Manage Updates": "Správa aktualizací", + "Software Update": "Aktualizace software", + "Return to System Updates": "Zpět na systémové aktualizace", + "Try Again": "Zkusit znovu", + "Unpacking application files": "Rozbalování aplikačních souborů", + "Update Failed": "Aktualizace selhala", + "Unpacking plugin: :name": "Rozbalování pluginu: :name" } \ No newline at end of file diff --git a/modules/system/lang/cs/lang.php b/modules/system/lang/cs/lang.php index baa025cdf6..70e4fadea2 100644 --- a/modules/system/lang/cs/lang.php +++ b/modules/system/lang/cs/lang.php @@ -92,8 +92,6 @@ 'detach' => 'Odpojit projekt', 'none' => 'Žádný', 'id' => [ - 'label' => 'Projekt ID', - 'help' => 'Jak zjistím svoje Projektové ID', 'missing' => 'Zadejte vaše Projektové ID.', ], 'detach_confirm' => 'Jste si jistí, že chcete odpojit váš projekt?', @@ -187,7 +185,6 @@ 'menu_description' => 'Změňte barvy a vzhled e-mailových šablon.', ], 'install' => [ - 'project_label' => 'Připojit k projektu', 'plugin_label' => 'Instalace pluginu', 'theme_label' => 'Instalace téma', 'missing_plugin_name' => 'Zadejte prosím jméno pluginu které chcete instalovat.', @@ -196,10 +193,6 @@ 'install_success' => 'Plugin byl úspěšně nainstalován.', ], 'updates' => [ - 'title' => 'Správa aktualizací', - 'name' => 'Aktualizace software', - 'return_link' => 'Zpět na systémové aktualizace', - 'retry_label' => 'Zkusit znovu', 'plugin_name' => 'Název', 'plugin_code' => 'Kód', 'plugin_description' => 'Popis', @@ -209,10 +202,8 @@ 'core_build' => 'Sestavení :build', 'core_build_help' => 'Nejnovější sestavení je dostupné.', 'core_downloading' => 'Stahování aplikačních souborů', - 'core_extracting' => 'Rozbalování aplikačních souborů', 'themes' => 'Témata', 'plugin_downloading' => 'Stahování pluginu: :name', - 'plugin_extracting' => 'Rozbalování pluginu: :name', 'plugin_version_none' => 'Nový plugin', 'plugin_current_version' => 'Stávající verze', 'theme_new_install' => 'Instalace nového téma.', @@ -222,7 +213,6 @@ 'update_completing' => 'Dokončování aktualizace', 'update_loading' => 'Načítám dostupné aktualizace...', 'update_success' => 'Aktualizace systému proběhla úspěšně.', - 'update_failed_label' => 'Aktualizace selhala', 'force_label' => 'Vynutit aktualizaci', 'found' => [ 'label' => 'Nová aktualizace nalezeny!', @@ -244,14 +234,8 @@ 'important_alert_text' => 'Některé aktualizace vyžadují vaší pozornost.', 'details_title' => 'Detaily pluginu', 'details_view_homepage' => 'Zobrazit domovskou stránku', - 'details_readme' => 'Dokumentace', - 'details_readme_missing' => 'Není uvedená žádná dokumentace.', 'details_changelog' => 'Seznam změn', 'details_changelog_missing' => 'Seznam změn není k dispozici.', - 'details_upgrades' => 'Instalační příručka', - 'details_upgrades_missing' => 'Nejsou uvedené žádné aktualizační instrukce.', - 'details_licence' => 'Licence', - 'details_licence_missing' => 'Licence není k dispozici.', 'details_current_version' => 'Stávající verze', 'details_author' => 'Autor', ], diff --git a/modules/system/lang/da.json b/modules/system/lang/da.json index 198a89c92b..b413eb78dc 100644 --- a/modules/system/lang/da.json +++ b/modules/system/lang/da.json @@ -21,5 +21,19 @@ "Unable to find the specified settings.": "De ønskede indstillinger kunne ikke findes.", "The settings page is missing a Model definition.": "Indstillingssiden mangler en Model definition.", ":name settings updated": ":name indstillinger opdateret", - "Return to System Settings": "Tilbage til systemindstillinger" + "Return to System Settings": "Tilbage til systemindstillinger", + "There is no documentation provided.": "Der er ingen dokumentation tilgængelig.", + "There are no upgrade instructions provided.": "Der er ikke nogle opgraderingsinstruktioner.", + "Documentation": "Dokumentation", + "Upgrade Guide": "Opgraderingsguide", + "Attach to Project": "Tilknyt til Projekt", + "Project ID": "Projekt ID", + "How to find your Project ID": "Sådan findes dit projekt ID", + "Manage Updates": "Administrer Opdateringer", + "Software Update": "Softwareopdatering", + "Return to System Updates": "Tilbage til systemopdateringer", + "Try Again": "Prøv igen", + "Unpacking application files": "Pakker applicationsfiler ud", + "Update Failed": "Opdatering fejlede", + "Unpacking plugin: :name": "Udpakker plugin: :name" } \ No newline at end of file diff --git a/modules/system/lang/da/lang.php b/modules/system/lang/da/lang.php index 7491704c0a..e922d360ce 100644 --- a/modules/system/lang/da/lang.php +++ b/modules/system/lang/da/lang.php @@ -89,8 +89,6 @@ 'detach' => 'Frakobl Projekt', 'none' => 'Ingen', 'id' => [ - 'label' => 'Projekt ID', - 'help' => 'Sådan findes dit projekt ID', 'missing' => 'Specificer venligst et projekt ID.', ], 'detach_confirm' => 'Er du sikker på at du vil frakoble dette projekt?', @@ -176,7 +174,6 @@ 'return' => 'Tilbage til skabelonoversigt', ], 'install' => [ - 'project_label' => 'Tilknyt til Projekt', 'plugin_label' => 'Installer Plugin', 'theme_label' => 'Installer Tema', 'missing_plugin_name' => 'Angiv venligst et pluginnavn, at installere.', @@ -185,10 +182,6 @@ 'install_success' => 'Plugin blev installeret', ], 'updates' => [ - 'title' => 'Administrer Opdateringer', - 'name' => 'Softwareopdatering', - 'return_link' => 'Tilbage til systemopdateringer', - 'retry_label' => 'Prøv igen', 'plugin_name' => 'Navn', 'plugin_code' => 'Kode', 'plugin_description' => 'Beskrivelse', @@ -198,10 +191,8 @@ 'core_build' => 'Build :build', 'core_build_help' => 'Seneste build er tilgængelig.', 'core_downloading' => 'Downloader applikationsfiler', - 'core_extracting' => 'Pakker applicationsfiler ud', 'themes' => 'Temaer', 'plugin_downloading' => 'Downloader plugin: :name', - 'plugin_extracting' => 'Udpakker plugin: :name', 'plugin_version_none' => 'Nyt plugin', 'plugin_current_version' => 'Nuværende version', 'theme_new_install' => 'Ny tema installation.', @@ -211,7 +202,6 @@ 'update_completing' => 'Afslutter opdateringsproces', 'update_loading' => 'Loader tilgængelige opdateringer...', 'update_success' => 'Opdateringsprocess afsluttet', - 'update_failed_label' => 'Opdatering fejlede', 'force_label' => 'Tvangsopdater', 'found' => [ 'label' => 'Ny opdateringer blev fundet!', @@ -232,10 +222,6 @@ 'important_alert_text' => 'Nogle opdatering kræver din opmærksomhed.', 'details_title' => 'Plugindetaljer', 'details_view_homepage' => 'Se hjemmeside', - 'details_readme' => 'Dokumentation', - 'details_readme_missing' => 'Der er ingen dokumentation tilgængelig.', - 'details_upgrades' => 'Opgraderingsguide', - 'details_upgrades_missing' => 'Der er ikke nogle opgraderingsinstruktioner.', 'details_current_version' => 'Nuværende version', 'details_author' => 'Ejer', ], diff --git a/modules/system/lang/de.json b/modules/system/lang/de.json index 9df978a098..2c6e6dd180 100644 --- a/modules/system/lang/de.json +++ b/modules/system/lang/de.json @@ -21,5 +21,14 @@ "Unable to find the specified settings.": "Die gesuchten Einstellungen können nicht gefunden werden.", "The settings page is missing a Model definition.": "Der Einstellungsseite fehlt eine Model-Definition.", ":name settings updated": "Einstellung für :name wurde erfolgreich aktualisiert.", - "Return to System Settings": "Zurück zu den Einstellungen" + "Return to System Settings": "Zurück zu den Einstellungen", + "Attach to Project": "Mit Projekt verbinden", + "Project ID": "Projekt-ID", + "How to find your Project ID": "Wie Sie Ihre Projekt-ID finden", + "Manage Updates": "Manage Updates", + "Software Update": "Software-Aktualisierung", + "Try Again": "Erneut versuchen", + "Unpacking application files": "Applikationsdaten werden entpackt", + "Update Failed": "Aktualisierungsvorgang fehlgeschlagen", + "Unpacking plugin: :name": "Entpacke Plugin: :name" } \ No newline at end of file diff --git a/modules/system/lang/de/lang.php b/modules/system/lang/de/lang.php index 6d63892bcb..c463987194 100644 --- a/modules/system/lang/de/lang.php +++ b/modules/system/lang/de/lang.php @@ -47,8 +47,6 @@ 'detach' => 'Projekt trennen', 'none' => 'Keins', 'id' => [ - 'label' => 'Projekt-ID', - 'help' => 'Wie Sie Ihre Projekt-ID finden', 'missing' => 'Bitte geben Sie eine Projekt-ID an.', ], 'detach_confirm' => 'Möchtest du dieses Projekt wirklich trennen?', @@ -128,16 +126,12 @@ 'disable_auto_inline_css' => 'Automtische inline CSS deaktivieren', ], 'install' => [ - 'project_label' => 'Mit Projekt verbinden', 'plugin_label' => 'Plugin installieren', 'missing_plugin_name' => 'Bitte geben Sie den Namen des zu installierenden Plugin an.', 'install_completing' => 'Schließe Installationsprozess ab', 'install_success' => 'Das Plugin wurde erfolgreich installiert.', ], 'updates' => [ - 'title' => 'Manage Updates', - 'name' => 'Software-Aktualisierung', - 'retry_label' => 'Erneut versuchen', 'plugin_name' => 'Name', 'plugin_description' => 'Beschreibung', 'plugin_version' => 'Version', @@ -146,15 +140,12 @@ 'core_build' => 'Build :build', 'core_build_help' => 'Aktuellster Build ist verfügbar.', 'core_downloading' => 'Applikationsdaten werden heruntergeladen', - 'core_extracting' => 'Applikationsdaten werden entpackt', 'plugin_downloading' => 'Lade Plugin herunter: :name', - 'plugin_extracting' => 'Entpacke Plugin: :name', 'plugin_version_none' => 'Neues Plugin', 'update_label' => 'Aktualisieren', 'update_completing' => 'Schließe Aktualisierung ab', 'update_loading' => 'Lade verfügbare Aktualisierungen...', 'update_success' => 'Aktualisierungsvorgang erfolgreich.', - 'update_failed_label' => 'Aktualisierungsvorgang fehlgeschlagen', 'force_label' => 'Aktualisierung erzwingen', 'found' => [ 'label' => 'Neue Aktualisierungen gefunden!', diff --git a/modules/system/lang/el.json b/modules/system/lang/el.json index 9d71a6b7a3..ec8be7c67a 100644 --- a/modules/system/lang/el.json +++ b/modules/system/lang/el.json @@ -21,5 +21,19 @@ "Unable to find the specified settings.": "Δεν κατέστη δυνατόν να βρεθούν οι συγκεκριμένες ρυθμίσεις.", "The settings page is missing a Model definition.": "Λείπει από την σελίδα των ρυθμίσεων ο ορισμός του μοντέλου.", ":name settings updated": "Οι ρυθμίσεις του :name έχουν ενημερωθεί.", - "Return to System Settings": "Επιστροφή στις ρυθμίσεις του συστήματος" + "Return to System Settings": "Επιστροφή στις ρυθμίσεις του συστήματος", + "There is no documentation provided.": "Δεν παρέχονται οδηγίες χρήσης.", + "There are no upgrade instructions provided.": "Δεν παρέχονται οδηγίες αναβάθμισης", + "Documentation": "Οδηγιες Χρήσης", + "Upgrade Guide": "Οδηγός Αναβάθμισης", + "Attach to Project": "Σύνδεση με το Project", + "Project ID": "Project ID", + "How to find your Project ID": "Πως να βρείτε το ID του Project σας", + "Manage Updates": "Διαχείριση Ενημερώσεων", + "Software Update": "Ενημέρωση λογισμικού", + "Return to System Updates": "Επιστροφή στις ενημερώσεις του συστήματος", + "Try Again": "Προσπαθήστε ξανά", + "Unpacking application files": "Ξεπακετάρισμα αρχείων εφαρμογής", + "Update Failed": "Η ενημέρωση απέτυχε", + "Unpacking plugin: :name": "Ξεπακετάρισμα πρόσθετου: :name" } \ No newline at end of file diff --git a/modules/system/lang/el/lang.php b/modules/system/lang/el/lang.php index 85efafad4b..b7e0cb29bb 100644 --- a/modules/system/lang/el/lang.php +++ b/modules/system/lang/el/lang.php @@ -89,8 +89,6 @@ 'detach' => 'Αποσύνδεση Project', 'none' => 'Κανένα', 'id' => [ - 'label' => 'Project ID', - 'help' => 'Πως να βρείτε το ID του Project σας', 'missing' => 'Παρακαλούμε καθορίστε το Project ID που θα χρησιμοποιήσετε.', ], 'detach_confirm' => 'Είστε σίγουροι ότι θέλετε να αποσυνδέσετε το Project σας;', @@ -176,7 +174,6 @@ 'return' => 'Επιστροφή στην λίστα με τα πρότυπα', ], 'install' => [ - 'project_label' => 'Σύνδεση με το Project', 'plugin_label' => 'Εγκατάσταση Πρόσθετου', 'theme_label' => 'Εγκατάσταση Θέματος', 'missing_plugin_name' => 'Παρακαλούμε προσδιορίστε το όνομα του Πρόσθετου για την εγκατάσταση', @@ -185,10 +182,6 @@ 'install_success' => 'Το πρόσθετο εγκαταστάθηκε επιτυχώς', ], 'updates' => [ - 'title' => 'Διαχείριση Ενημερώσεων', - 'name' => 'Ενημέρωση λογισμικού', - 'return_link' => 'Επιστροφή στις ενημερώσεις του συστήματος', - 'retry_label' => 'Προσπαθήστε ξανά', 'plugin_name' => 'Όνομα', 'plugin_code' => 'Κώδικας', 'plugin_description' => 'Περιγραφή', @@ -198,10 +191,8 @@ 'core_build' => 'Έκδοση :build', 'core_build_help' => 'Η τελευταία έκδοση είναι διαθέσιμη.', 'core_downloading' => 'Κατέβασμα αρχείων εφαρμογής', - 'core_extracting' => 'Ξεπακετάρισμα αρχείων εφαρμογής', 'themes' => 'Θέματα', 'plugin_downloading' => 'Κατέβασμα πρόσθετου: :name', - 'plugin_extracting' => 'Ξεπακετάρισμα πρόσθετου: :name', 'plugin_version_none' => 'Νέο πρόσθετο', 'plugin_current_version' => 'Τρέχουσα έκδοση', 'theme_new_install' => 'Εγκατάσταση νέου θέματος.', @@ -211,7 +202,6 @@ 'update_completing' => 'Ολοκλήρωση διαδικασίας ενημέρωσης', 'update_loading' => 'Φόρτωση διαθέσιμων ενημερώσεων...', 'update_success' => 'Η διαδικασία ενημέρωσης ολοκληρώθηκε', - 'update_failed_label' => 'Η ενημέρωση απέτυχε', 'force_label' => 'Εξανάγκασε την ενημέρωση', 'found' => [ 'label' => 'Βρέθηκαν νέες ενημερώσεις!', @@ -232,10 +222,6 @@ 'important_alert_text' => 'Κάποιες ενημερώσεις χρειάζονται την προσοχή σας.', 'details_title' => 'Λεπτομέρειες πρόσθετου', 'details_view_homepage' => 'Εμφάνιση αρχικής σελίδας', - 'details_readme' => 'Οδηγιες Χρήσης', - 'details_readme_missing' => 'Δεν παρέχονται οδηγίες χρήσης.', - 'details_upgrades' => 'Οδηγός Αναβάθμισης', - 'details_upgrades_missing' => 'Δεν παρέχονται οδηγίες αναβάθμισης', 'details_current_version' => 'Τρέχουσα έκδοση', 'details_author' => 'Δημιουργός', ], diff --git a/modules/system/lang/en.json b/modules/system/lang/en.json index db8a1e3121..36609097ff 100644 --- a/modules/system/lang/en.json +++ b/modules/system/lang/en.json @@ -24,5 +24,24 @@ ":name settings updated": ":name settings updated", "Return to System Settings": "Return to System Settings", "Find a Setting...": "Find a Setting...", - "Disable mail branding CSS": "Disable mail branding CSS" + "Disable mail branding CSS": "Disable mail branding CSS", + "Manage Sites": "Manage Sites", + "Manage the websites available for this application.": "Manage the websites available for this application.", + "Marketplace": "Marketplace", + "There is no documentation provided.": "There is no documentation provided.", + "There are no upgrade instructions provided.": "There are no upgrade instructions provided.", + "There is no licence provided.": "There is no licence provided.", + "Documentation": "Documentation", + "Upgrade Guide": "Upgrade Guide", + "Licence": "Licence", + "Attach to Project": "Attach to Project", + "Project ID": "Project ID", + "How to find your Project ID": "How to find your Project ID", + "Manage Updates": "Manage Updates", + "Software Update": "Software Update", + "Return to System Updates": "Return to System Updates", + "Try Again": "Try Again", + "Unpacking application files": "Unpacking application files", + "Update Failed": "Update Failed", + "Unpacking plugin: :name": "Unpacking plugin: :name" } diff --git a/modules/system/lang/en/lang.php b/modules/system/lang/en/lang.php index 5d85014ad9..821fdeaae9 100644 --- a/modules/system/lang/en/lang.php +++ b/modules/system/lang/en/lang.php @@ -35,6 +35,8 @@ 'visit_backend_comment' => 'Then, open the administration area at this URL', 'open_configurator_comment' => 'Open this application in your browser', 'install_demo_label' => 'Install the demonstration theme and content? (Recommended)', + 'operation_timeout_comment' => 'The operation timed out. Please increase the server\'s timeout and try again.', + 'operation_timeout_hint' => 'See the relevant documentation for :name.', ], 'app' => [ 'name' => 'October CMS', @@ -184,8 +186,6 @@ 'detach' => 'Detach Project', 'none' => 'None', 'id' => [ - 'label' => 'Project ID', - 'help' => 'How to find your Project ID', 'missing' => 'Please specify a Project ID to use.', ], 'detach_confirm' => 'Are you sure you want to detach this project?', @@ -328,7 +328,6 @@ ], ], 'install' => [ - 'project_label' => 'Attach to Project', 'plugin_label' => 'Install Plugin', 'theme_label' => 'Install Theme', 'missing_plugin_name' => 'Please specify a Plugin name to install.', @@ -337,10 +336,6 @@ 'install_success' => 'Plugin installed successfully', ], 'updates' => [ - 'title' => 'Manage Updates', - 'name' => 'Software Update', - 'return_link' => 'Return to System Updates', - 'retry_label' => 'Try Again', 'plugin_name' => 'Name', 'plugin_code' => 'Code', 'plugin_description' => 'Description', @@ -352,26 +347,23 @@ 'theme_not_found' => 'Theme not found', 'core_build' => 'Build :build', 'core_build_help' => 'Latest build is available.', - 'core_downloading' => 'Downloading application files', - 'core_extracting' => 'Unpacking application files', + 'core_downloading' => 'Updating application files', 'core_set_build' => 'Setting build number', 'changelog' => 'Changelog', 'changelog_view_details' => 'View Details', 'themes' => 'Themes', - 'plugin_downloading' => 'Downloading plugin: :name', + 'plugin_downloading' => 'Installing plugin: :name', 'plugin_removing' => 'Removing plugin: :name', - 'plugin_extracting' => 'Unpacking plugin: :name', 'plugin_version_none' => 'New Plugin', 'plugin_current_version' => 'Current version', 'theme_new_install' => 'New theme installation.', - 'theme_downloading' => 'Downloading theme: :name', + 'theme_downloading' => 'Installing theme: :name', 'theme_removing' => 'Removing theme: :name', 'theme_extracting' => 'Unpacking theme: :name', 'update_label' => 'Update Software', 'update_completing' => 'Finishing update process', 'update_loading' => 'Loading available updates...', 'update_success' => 'Update process complete', - 'update_failed_label' => 'Update Failed', 'force_label' => 'Force Update', 'found' => [ 'label' => 'Found New Updates!', @@ -394,20 +386,13 @@ 'details_title_plugin' => 'Plugin Details', 'details_title_theme' => 'Theme Details', 'details_view_homepage' => 'View Homepage', - 'details_readme' => 'Documentation', - 'details_readme_missing' => 'There is no documentation provided.', 'details_changelog' => 'Changelog', 'details_changelog_missing' => 'There is no changelog provided.', - 'details_upgrades' => 'Upgrade Guide', - 'details_upgrades_missing' => 'There are no upgrade instructions provided.', - 'details_licence' => 'Licence', 'details_view_licence' => 'View Licence', - 'details_licence_missing' => 'There is no licence provided.', 'details_current_version' => 'Current version', 'details_author' => 'Author', ], 'market' => [ - 'menu_label' => 'Marketplace', 'menu_description' => 'Manage and install plugins and themes.', 'content_loading' => 'Loading...', ], diff --git a/modules/system/lang/es-ar.json b/modules/system/lang/es-ar.json index 813b3b161b..b615e3c813 100644 --- a/modules/system/lang/es-ar.json +++ b/modules/system/lang/es-ar.json @@ -9,5 +9,14 @@ "Settings": "Configuración", "The settings page is missing a Model definition.": "La página de configuración no encuentra una definición de modelo.", ":name settings updated": "Los ajustes para :name han sido actualizados correctamente.", - "Return to System Settings": "Regresar a la configuración del sistema" + "Return to System Settings": "Regresar a la configuración del sistema", + "Attach to Project": "Adjuntar al proyecto", + "Project ID": "Identificación del proyecto", + "How to find your Project ID": "¿Cómo encontrar su ID de Proyecto", + "Manage Updates": "Administrar actualizaciones", + "Software Update": "Actualizaciones de software", + "Try Again": "Intentar nuevamente", + "Unpacking application files": "Descomprimiendo archivos de la aplicación", + "Update Failed": "Actualización falló", + "Unpacking plugin: :name": "Descomprimiendo plugin: :name" } \ No newline at end of file diff --git a/modules/system/lang/es-ar/lang.php b/modules/system/lang/es-ar/lang.php index e6ec7eae82..0be6d832f8 100644 --- a/modules/system/lang/es-ar/lang.php +++ b/modules/system/lang/es-ar/lang.php @@ -59,8 +59,6 @@ 'detach' => 'Separar Proyect', 'none' => 'Ningun', 'id' => [ - 'label' => 'Identificación del proyecto', - 'help' => '¿Cómo encontrar su ID de Proyecto', 'missing' => 'Por favor, especifique un ID del proyecto para usar.', ], 'detach_confirm' => '¿Seguro que quieres separar este proyecto?', @@ -113,16 +111,12 @@ 'return' => 'Volver a la lista de plantilla', ], 'install' => [ - 'project_label' => 'Adjuntar al proyecto', 'plugin_label' => 'Instalar Plugin', 'missing_plugin_name' => 'Por favor, especifique un nombre de Plugin para instalar', 'install_completing' => 'Finalizó el proceso de instalación', 'install_success' => 'El plugin se ha instalado correctamente.', ], 'updates' => [ - 'title' => 'Administrar actualizaciones', - 'name' => 'Actualizaciones de software', - 'retry_label' => 'Intentar nuevamente', 'plugin_name' => 'Nombre', 'plugin_description' => 'Descripción', 'plugin_version' => 'Versión', @@ -131,9 +125,7 @@ 'core_build' => 'Versión :build', 'core_build_help' => 'Última versión está disponible.', 'core_downloading' => 'Descargando archivos de la aplicación', - 'core_extracting' => 'Descomprimiendo archivos de la aplicación', 'plugin_downloading' => 'Descargando plugin: :name', - 'plugin_extracting' => 'Descomprimiendo plugin: :name', 'plugin_version_none' => 'Nuevo plugin', 'theme_new_install' => 'Intalación de nuevo tema.', 'theme_downloading' => 'Descargando tema: :name', @@ -142,7 +134,6 @@ 'update_completing' => 'Finalizando el proceso de actualización', 'update_loading' => 'Cargando actualizaciones disponibles...', 'update_success' => 'El proceso de actualización se realizó exitosamente.', - 'update_failed_label' => 'Actualización falló', 'force_label' => 'Forzar actualización', 'found' => [ 'label' => 'Se encontraron nuevas actualizaciones!', diff --git a/modules/system/lang/es.json b/modules/system/lang/es.json index dd55a0a72e..fd479b88f4 100644 --- a/modules/system/lang/es.json +++ b/modules/system/lang/es.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "No se encuentra la configuración especificada.", "The settings page is missing a Model definition.": "La página de configuración no encuentra una definición del Modelo.", ":name settings updated": "Los ajustes para :name se han actualizado correctamente.", - "Return to System Settings": "Volver a la configuración del sistema" + "Return to System Settings": "Volver a la configuración del sistema", + "There is no documentation provided.": "No hay documentación proporcionada.", + "There are no upgrade instructions provided.": "No hay instrucciones de actualización proporcionadas.", + "There is no licence provided.": "No hay licencia proporcionada.", + "Documentation": "Documentación", + "Upgrade Guide": "Guía de actualización", + "Licence": "Licencia", + "Attach to Project": "Adjuntar al proyecto", + "Project ID": "ID del Proyecto", + "How to find your Project ID": "Como encontrar el ID de tu proyecto", + "Manage Updates": "Administrar actualizaciones", + "Software Update": "Actualizaciones de software", + "Return to System Updates": "Volver a actualizaciones del sistema", + "Try Again": "Intentar nuevamente", + "Unpacking application files": "Descomprimiendo archivos de la aplicación", + "Update Failed": "Actualización falló", + "Unpacking plugin: :name": "Descomprimiendo plugin: :name" } \ No newline at end of file diff --git a/modules/system/lang/es/lang.php b/modules/system/lang/es/lang.php index f3070ba550..749b9c6f13 100644 --- a/modules/system/lang/es/lang.php +++ b/modules/system/lang/es/lang.php @@ -90,8 +90,6 @@ 'detach' => 'Separar Proyecto', 'none' => 'Ninguno', 'id' => [ - 'label' => 'ID del Proyecto', - 'help' => 'Como encontrar el ID de tu proyecto', 'missing' => 'Especifique un ID del proyecto para usar.', ], 'detach_confirm' => '¿Está seguro de que desea separar este proyecto?', @@ -230,7 +228,6 @@ ], ], 'install' => [ - 'project_label' => 'Adjuntar al proyecto', 'plugin_label' => 'Instalar Plugin', 'theme_label' => 'Instalar Theme', 'missing_plugin_name' => 'Por favor, especifique un nombre de Plugin para instalar', @@ -239,10 +236,6 @@ 'install_success' => 'El plugin se ha instalado correctamente.', ], 'updates' => [ - 'title' => 'Administrar actualizaciones', - 'name' => 'Actualizaciones de software', - 'return_link' => 'Volver a actualizaciones del sistema', - 'retry_label' => 'Intentar nuevamente', 'plugin_name' => 'Nombre', 'plugin_code' => 'Código', 'plugin_description' => 'Descripción', @@ -252,11 +245,9 @@ 'core_build' => 'Versión :build', 'core_build_help' => 'Última versión está disponible.', 'core_downloading' => 'Descargando archivos de la aplicación', - 'core_extracting' => 'Descomprimiendo archivos de la aplicación', 'core_set_build' => 'Estableciendo número de build', 'themes' => 'Temas', 'plugin_downloading' => 'Descargando plugin: :name', - 'plugin_extracting' => 'Descomprimiendo plugin: :name', 'plugin_version_none' => 'Nuevo plugin', 'plugin_current_version' => 'Versión actual', 'theme_new_install' => 'Intalación de nuevo tema.', @@ -266,7 +257,6 @@ 'update_completing' => 'Finalizando el proceso de actualización', 'update_loading' => 'Cargando actualizaciones disponibles...', 'update_success' => 'El proceso de actualización se realizó exitosamente.', - 'update_failed_label' => 'Actualización falló', 'force_label' => 'Forzar actualización', 'found' => [ 'label' => 'Se encontraron nuevas actualizaciones!', @@ -288,14 +278,8 @@ 'important_alert_text' => 'Algunas actualizaciones necesitan su atención.', 'details_title' => 'Detalles plugin', 'details_view_homepage' => 'Ver página de inicio', - 'details_readme' => 'Documentación', - 'details_readme_missing' => 'No hay documentación proporcionada.', 'details_changelog' => 'Registro de cambios', 'details_changelog_missing' => 'No hay registro de cambios proporcionado.', - 'details_upgrades' => 'Guía de actualización', - 'details_upgrades_missing' => 'No hay instrucciones de actualización proporcionadas.', - 'details_licence' => 'Licencia', - 'details_licence_missing' => 'No hay licencia proporcionada.', 'details_current_version' => 'Versión actual', 'details_author' => 'Autor', ], diff --git a/modules/system/lang/et.json b/modules/system/lang/et.json index 5c599c2652..9638bd014f 100644 --- a/modules/system/lang/et.json +++ b/modules/system/lang/et.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Soovitud seadeid ei leitud.", "The settings page is missing a Model definition.": "Seadete lehel puudub modeli seos.", ":name settings updated": ":name seaded on uuendatud", - "Return to System Settings": "Tagasi süsteemi seadete juurde" + "Return to System Settings": "Tagasi süsteemi seadete juurde", + "There is no documentation provided.": "Dokumentatsiooni pole lisatud.", + "There are no upgrade instructions provided.": "Uuendamise juhendit ei ole lisatud.", + "There is no licence provided.": "Litsentsi pole lisatud.", + "Documentation": "Dokumentatsioon", + "Upgrade Guide": "Uuendamise juhend", + "Licence": "Litsents", + "Attach to Project": "Lisa projektile", + "Project ID": "Projekti ID", + "How to find your Project ID": "Kuidas leida projekti ID-d", + "Manage Updates": "Halda uuendusi", + "Software Update": "Tarkvara uuendus", + "Return to System Updates": "Tagasi süsteemi uuenduste juurde", + "Try Again": "Proovi uuesti", + "Unpacking application files": "Pakin lahti süsteemifaile", + "Update Failed": "Uendamine ebaõnnestus", + "Unpacking plugin: :name": "Plugina failide lahtipakkimine: :name" } \ No newline at end of file diff --git a/modules/system/lang/et/lang.php b/modules/system/lang/et/lang.php index eb4d87e48a..67b4e9ddd7 100644 --- a/modules/system/lang/et/lang.php +++ b/modules/system/lang/et/lang.php @@ -128,8 +128,6 @@ 'detach' => 'Eemalda projekt', 'none' => 'Puudub', 'id' => [ - 'label' => 'Projekti ID', - 'help' => 'Kuidas leida projekti ID-d', 'missing' => 'Palun sisesta projekti ID.', ], 'detach_confirm' => 'Oled sa kindel, et soovid selle projekti eemaldada?', @@ -215,7 +213,6 @@ 'return' => 'Tagasi mallide nimekirja', ], 'install' => [ - 'project_label' => 'Lisa projektile', 'plugin_label' => 'Paigalda plugin', 'theme_label' => 'Paigalda teema', 'missing_plugin_name' => 'Palun sisesta plugina nimi, mida paigaldada.', @@ -224,10 +221,6 @@ 'install_success' => 'Plugin on edukalt paigaldatud', ], 'updates' => [ - 'title' => 'Halda uuendusi', - 'name' => 'Tarkvara uuendus', - 'return_link' => 'Tagasi süsteemi uuenduste juurde', - 'retry_label' => 'Proovi uuesti', 'plugin_name' => 'Nimi', 'plugin_code' => 'Kood', 'plugin_description' => 'Kirjeldus', @@ -237,10 +230,8 @@ 'core_build' => 'Versioon :build', 'core_build_help' => 'Uusim versioon on saadaval.', 'core_downloading' => 'Laen alla süsteemifaile', - 'core_extracting' => 'Pakin lahti süsteemifaile', 'themes' => 'Teemad', 'plugin_downloading' => 'Plugina allalaadimine: :name', - 'plugin_extracting' => 'Plugina failide lahtipakkimine: :name', 'plugin_version_none' => 'Uus plugin', 'plugin_current_version' => 'Praegune versioon', 'theme_new_install' => 'Uue teema paigaldamine.', @@ -250,7 +241,6 @@ 'update_completing' => 'Lõpetan uuendamise protsessi', 'update_loading' => 'Laen saadaolevaid uuendusi...', 'update_success' => 'Uuendamise protsess lõpetatud', - 'update_failed_label' => 'Uendamine ebaõnnestus', 'force_label' => 'Uuenda igal juhul', 'found' => [ 'label' => 'Found new updates!', @@ -272,14 +262,8 @@ 'important_alert_text' => 'Osa uuendusi vajab sinu tähelepanu.', 'details_title' => 'Plugina andmed', 'details_view_homepage' => 'Vaata kodulehte', - 'details_readme' => 'Dokumentatsioon', - 'details_readme_missing' => 'Dokumentatsiooni pole lisatud.', 'details_changelog' => 'Muudatuste nimekiri', 'details_changelog_missing' => 'Muudatuste nimekirja pole.', - 'details_upgrades' => 'Uuendamise juhend', - 'details_upgrades_missing' => 'Uuendamise juhendit ei ole lisatud.', - 'details_licence' => 'Litsents', - 'details_licence_missing' => 'Litsentsi pole lisatud.', 'details_current_version' => 'Praegune versioon', 'details_author' => 'Autor', ], diff --git a/modules/system/lang/fa.json b/modules/system/lang/fa.json index 9e0bbf401d..4da99649e3 100644 --- a/modules/system/lang/fa.json +++ b/modules/system/lang/fa.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "تنظیمات مورد نظر یافت نشد.", "The settings page is missing a Model definition.": "صفحه تنظیمات شامل یک مدل تعریف نشده می باشد.", ":name settings updated": "تنظیمات برای :name با موفقیت تغییر یافت.", - "Return to System Settings": "بازگشت به تنظیمات سیستم" + "Return to System Settings": "بازگشت به تنظیمات سیستم", + "There is no documentation provided.": "مستنداتی در دسترس نمی باشد", + "There are no upgrade instructions provided.": "راهنمایی جهت به روز رسانی در دسترس نیست.", + "There is no licence provided.": "هیچ گواهی نامه ای موجود نیست.", + "Documentation": "مستندات", + "Upgrade Guide": "راهنمای به روز رسانی", + "Licence": "گواهی نامه", + "Attach to Project": "ضمیمه کردن به نرم افزار", + "Project ID": "مشخصه ی پروژه", + "How to find your Project ID": "مشخصه ی پروژه ی خود را چگونه بیابید", + "Manage Updates": "مدیریت بروز رسانی", + "Software Update": "بروز رسانی نرم افزار", + "Return to System Updates": "بازگشت به صفحه به روز رسانی ها", + "Try Again": "تلاش مجدد", + "Unpacking application files": "گشودن فایل های نرم افزار", + "Update Failed": "بروز رسانی موفق نبود", + "Unpacking plugin: :name": "گشودن افزونه: :name" } \ No newline at end of file diff --git a/modules/system/lang/fa/lang.php b/modules/system/lang/fa/lang.php index ae47ea81a4..8a1338d372 100644 --- a/modules/system/lang/fa/lang.php +++ b/modules/system/lang/fa/lang.php @@ -133,8 +133,6 @@ 'detach' => 'حذف از پروژه', 'none' => 'هیچ', 'id' => [ - 'label' => 'مشخصه ی پروژه', - 'help' => 'مشخصه ی پروژه ی خود را چگونه بیابید', 'missing' => 'لطفا مشخصه ی پروژه ی خود را وارد نمایید.', ], 'detach_confirm' => 'آیا از حذف این پروژه اطمینان دارید؟', @@ -275,7 +273,6 @@ ], ], 'install' => [ - 'project_label' => 'ضمیمه کردن به نرم افزار', 'plugin_label' => 'نصب افزونه', 'theme_label' => 'نصب قالب', 'missing_plugin_name' => 'لطفا نام افزونه را جهت نصب وارد نمایید.', @@ -284,10 +281,6 @@ 'install_success' => 'افزونه با موفقیت نصب شد.', ], 'updates' => [ - 'title' => 'مدیریت بروز رسانی', - 'name' => 'بروز رسانی نرم افزار', - 'return_link' => 'بازگشت به صفحه به روز رسانی ها', - 'retry_label' => 'تلاش مجدد', 'plugin_name' => 'نام', 'plugin_code' => 'کد یکتا', 'plugin_description' => 'توضیحات', @@ -297,11 +290,9 @@ 'core_build' => 'نسخه ی :build', 'core_build_help' => 'به روز رسانی جدید موجود است', 'core_downloading' => 'دریافت فایل های نرم افزار', - 'core_extracting' => 'گشودن فایل های نرم افزار', 'core_set_build' => 'شماره ساخت تنظیمات', 'themes' => 'قالب ها', 'plugin_downloading' => 'دریافت افزونه: :name', - 'plugin_extracting' => 'گشودن افزونه: :name', 'plugin_version_none' => 'افزونه ی جدید', 'plugin_current_version' => 'نسخه کنونی', 'theme_new_install' => 'قالب جدید نصب شد.', @@ -311,7 +302,6 @@ 'update_completing' => 'اعمال بروز رسانی', 'update_loading' => 'بارگزاری بروز رسانی های موجود...', 'update_success' => 'بروز رسانی با موفقیت انجام شد.', - 'update_failed_label' => 'بروز رسانی موفق نبود', 'force_label' => 'اصرار در بروز رسانی', 'found' => [ 'label' => 'بروز رسانی جدید وجود دارد', @@ -333,14 +323,8 @@ 'important_alert_text' => 'برخی از به روز رسانی ها به تایید شما نیاز دارند', 'details_title' => 'مشخصات افزونه', 'details_view_homepage' => 'نمایش صفحه اصلی', - 'details_readme' => 'مستندات', - 'details_readme_missing' => 'مستنداتی در دسترس نمی باشد', 'details_changelog' => 'تغییرات', 'details_changelog_missing' => 'لیست تغییرات موجود نمی باشد.', - 'details_upgrades' => 'راهنمای به روز رسانی', - 'details_upgrades_missing' => 'راهنمایی جهت به روز رسانی در دسترس نیست.', - 'details_licence' => 'گواهی نامه', - 'details_licence_missing' => 'هیچ گواهی نامه ای موجود نیست.', 'details_current_version' => 'نسخه کنونی', 'details_author' => 'نویسنده', ], diff --git a/modules/system/lang/fi.json b/modules/system/lang/fi.json index e9b920cb0f..455e63a7a9 100644 --- a/modules/system/lang/fi.json +++ b/modules/system/lang/fi.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Määriteltyjä asetuksia ei löytynyt.", "The settings page is missing a Model definition.": "The settings page is missing a Model definition.", ":name settings updated": ":name settings updated", - "Return to System Settings": "Palaa järjestelmän asetuksiin" + "Return to System Settings": "Palaa järjestelmän asetuksiin", + "There is no documentation provided.": "Dokumentaatiota ei löydy.", + "There are no upgrade instructions provided.": "Päivitysohjeita ei lödy.", + "There is no licence provided.": "Lisenssiä ei löydy.", + "Documentation": "Dokumentaatio", + "Upgrade Guide": "Päivitysopas", + "Licence": "Lisenssi", + "Attach to Project": "Kiinnitä projektiin", + "Project ID": "Projektin ID", + "How to find your Project ID": "Mistä löydän projektin ID:n", + "Manage Updates": "Hallinnoi päivityksiä", + "Software Update": "Ohjelmistopäivitys", + "Return to System Updates": "Palaa järjestelmäpäivityksiin", + "Try Again": "Yritä uudelleen", + "Unpacking application files": "Puretaan ohjelmiston tiedostoja", + "Update Failed": "Päivitys epäonnistui", + "Unpacking plugin: :name": "Puretaan lisäosaa: :name" } \ No newline at end of file diff --git a/modules/system/lang/fi/lang.php b/modules/system/lang/fi/lang.php index cf5575c631..1d28dfdd31 100644 --- a/modules/system/lang/fi/lang.php +++ b/modules/system/lang/fi/lang.php @@ -168,8 +168,6 @@ 'detach' => 'Irroita projekti', 'none' => 'Ei yhtään', 'id' => [ - 'label' => 'Projektin ID', - 'help' => 'Mistä löydän projektin ID:n', 'missing' => 'Määrittele projektin ID.', ], 'detach_confirm' => 'Haluatko varmasti irrottautua projektista?', @@ -310,7 +308,6 @@ ], ], 'install' => [ - 'project_label' => 'Kiinnitä projektiin', 'plugin_label' => 'Asenna liitännäinen', 'theme_label' => 'Asenna teema', 'missing_plugin_name' => 'Määritä asennettavan lisäosan nimi.', @@ -319,11 +316,7 @@ 'install_success' => 'Lisäosa asennettu onnistuneesti', ], 'updates' => [ - 'title' => 'Hallinnoi päivityksiä', - 'name' => 'Ohjelmistopäivitys', - 'return_link' => 'Palaa järjestelmäpäivityksiin', 'check_label' => 'Tarkista päivitykset', - 'retry_label' => 'Yritä uudelleen', 'plugin_name' => 'Nimi', 'plugin_code' => 'Koodi', 'plugin_description' => 'Kuvaus', @@ -333,10 +326,8 @@ 'core_build' => 'Rakennusversio :build', 'core_build_help' => 'Viimeisin versio saatavilla.', 'core_downloading' => 'Ladataan ohjelmiston versiota', - 'core_extracting' => 'Puretaan ohjelmiston tiedostoja', 'themes' => 'Teemat', 'plugin_downloading' => 'Ladataan lisäosaa: :name', - 'plugin_extracting' => 'Puretaan lisäosaa: :name', 'plugin_version_none' => 'Uusi lisäosa', 'plugin_current_version' => 'Nykyinen versio', 'theme_new_install' => 'Uuden teeman asennus.', @@ -346,7 +337,6 @@ 'update_completing' => 'Viimeistellään päivitysprosessia', 'update_loading' => 'Ladataan saatavilla olevia päivityksiä...', 'update_success' => 'Päivitys valmis', - 'update_failed_label' => 'Päivitys epäonnistui', 'force_label' => 'Pakota päivitys', 'found' => [ 'label' => 'Löydettiin uusia päivityksiä!', @@ -368,14 +358,8 @@ 'important_alert_text' => 'Osa päivityksistä vaatii huomiotasi.', 'details_title' => 'Liitännäisen tiedot', 'details_view_homepage' => 'Näytä kotisivu', - 'details_readme' => 'Dokumentaatio', - 'details_readme_missing' => 'Dokumentaatiota ei löydy.', 'details_changelog' => 'Muutosloki', 'details_changelog_missing' => 'There is no changelog provided.', - 'details_upgrades' => 'Päivitysopas', - 'details_upgrades_missing' => 'Päivitysohjeita ei lödy.', - 'details_licence' => 'Lisenssi', - 'details_licence_missing' => 'Lisenssiä ei löydy.', 'details_current_version' => 'Tämän hetkinen versio', 'details_author' => 'Tekijä', ], diff --git a/modules/system/lang/fr.json b/modules/system/lang/fr.json index 0ae3929564..5b8d43b4ea 100644 --- a/modules/system/lang/fr.json +++ b/modules/system/lang/fr.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Les paramètres spécifiés sont introuvables.", "The settings page is missing a Model definition.": "La page de réglages nécessite la définition d’un Model.", ":name settings updated": "Les réglages pour :name ont étés mis à jour avec succès.", - "Return to System Settings": "Retourner à la page des réglages du système" + "Return to System Settings": "Retourner à la page des réglages du système", + "There is no documentation provided.": "Aucune documentation fournie.", + "There are no upgrade instructions provided.": "Aucune instruction de mise à jour fournie.", + "There is no licence provided.": "Aucune licence spécifiée.", + "Documentation": "Documentation", + "Upgrade Guide": "Guide de mise à jour", + "Licence": "Licence", + "Attach to Project": "Attacher un projet", + "Project ID": "ID du projet", + "How to find your Project ID": "Comment trouver l’ID de votre projet", + "Manage Updates": "Gérer les mises à jour", + "Software Update": "Mise à jour", + "Return to System Updates": "Retourner aux mises à jour du système", + "Try Again": "Réessayer", + "Unpacking application files": "Décompression des fichiers de l’application", + "Update Failed": "Échec de la mise à jour", + "Unpacking plugin: :name": "Décompression du plugin : :name" } \ No newline at end of file diff --git a/modules/system/lang/fr/lang.php b/modules/system/lang/fr/lang.php index 4d04cb2ad9..0871c417d9 100644 --- a/modules/system/lang/fr/lang.php +++ b/modules/system/lang/fr/lang.php @@ -135,8 +135,6 @@ 'detach' => 'Détacher le Projet', 'none' => 'Aucun', 'id' => [ - 'label' => 'ID du projet', - 'help' => 'Comment trouver l’ID de votre projet', 'missing' => 'Spécifier un ID de projet.', ], 'detach_confirm' => 'Confirmer le détachement de ce projet ?', @@ -282,7 +280,6 @@ ], ], 'install' => [ - 'project_label' => 'Attacher un projet', 'plugin_label' => 'Installer un plugin', 'theme_label' => 'Installer un thème', 'missing_plugin_name' => 'Saisir le nom d’un plugin à installer.', @@ -291,10 +288,6 @@ 'install_success' => 'Le plugin a été installé avec succès.', ], 'updates' => [ - 'title' => 'Gérer les mises à jour', - 'name' => 'Mise à jour', - 'return_link' => 'Retourner aux mises à jour du système', - 'retry_label' => 'Réessayer', 'plugin_name' => 'Nom', 'plugin_code' => 'Code', 'plugin_description' => 'Description', @@ -304,13 +297,11 @@ 'core_build' => 'Version :build', 'core_build_help' => 'Une nouvelle version est disponible.', 'core_downloading' => 'Téléchargement des fichiers de l’application', - 'core_extracting' => 'Décompression des fichiers de l’application', 'core_set_build' => 'Définition du numéro de build', 'changelog' => 'Changelog', 'changelog_view_details' => 'Voir les détails', 'themes' => 'Thèmes', 'plugin_downloading' => 'Téléchargement du plugin : :name', - 'plugin_extracting' => 'Décompression du plugin : :name', 'plugin_version_none' => 'Nouveau plugin', 'plugin_current_version' => 'Version actuelle', 'theme_new_install' => 'Installation du nouveau thème.', @@ -320,7 +311,6 @@ 'update_completing' => 'Finalisation du processus de mise à jour', 'update_loading' => 'Chargement des mises à jour disponibles…', 'update_success' => 'Mise à jour terminée avec succès.', - 'update_failed_label' => 'Échec de la mise à jour', 'force_label' => 'Forcer la mise à jour', 'found' => [ 'label' => 'Nouvelle mise à jour disponible !', @@ -342,14 +332,8 @@ 'important_alert_text' => 'Des mise à jour requièrent votre attention.', 'details_title' => 'Détails du plugin', 'details_view_homepage' => 'Voir la page d’accueil', - 'details_readme' => 'Documentation', - 'details_readme_missing' => 'Aucune documentation fournie.', 'details_changelog' => 'Journal des modifications', 'details_changelog_missing' => 'Aucun journal des modifications disponible.', - 'details_upgrades' => 'Guide de mise à jour', - 'details_upgrades_missing' => 'Aucune instruction de mise à jour fournie.', - 'details_licence' => 'Licence', - 'details_licence_missing' => 'Aucune licence spécifiée.', 'details_current_version' => 'Version actuelle', 'details_author' => 'Auteur', ], diff --git a/modules/system/lang/hu.json b/modules/system/lang/hu.json index 03ed6967eb..d3f21c1905 100644 --- a/modules/system/lang/hu.json +++ b/modules/system/lang/hu.json @@ -23,5 +23,22 @@ "The settings page is missing a Model definition.": "A beállítások oldal egy modell definíciót hiányol.", ":name settings updated": "A(z) :name beállításainak frissítése sikerült.", "Return to System Settings": "Vissza a beállításokhoz", - "Find a Setting...": "Beállítás keresése..." + "Find a Setting...": "Beállítás keresése...", + "Marketplace": "Piactér", + "There is no documentation provided.": "Nincs megadva leírás.", + "There are no upgrade instructions provided.": "Nincs megadva instrukció.", + "There is no licence provided.": "Nincs megadva licenc.", + "Documentation": "Dokumentáció", + "Upgrade Guide": "Frissítési útmutató", + "Licence": "Felhasználási feltételek", + "Attach to Project": "Csatolás", + "Project ID": "Projekt azonosító", + "How to find your Project ID": "Súgó (angol nyelvű)", + "Manage Updates": "Gépház", + "Software Update": "Honlap állapota", + "Return to System Updates": "Vissza a gépházhoz", + "Try Again": "Újra próbál", + "Unpacking application files": "Rendszer kicsomagolása...", + "Update Failed": "A frissítés nem sikerült.", + "Unpacking plugin: :name": "Bővítmény kicsomagolása: :name" } \ No newline at end of file diff --git a/modules/system/lang/hu/lang.php b/modules/system/lang/hu/lang.php index f5ac4fe017..f55074946a 100644 --- a/modules/system/lang/hu/lang.php +++ b/modules/system/lang/hu/lang.php @@ -136,8 +136,6 @@ 'detach' => 'leválasztás', 'none' => 'Nincs', 'id' => [ - 'label' => 'Projekt azonosító', - 'help' => 'Súgó (angol nyelvű)', 'missing' => 'Adjon meg egy projekt azonosítót.', ], 'detach_confirm' => 'Biztosan le akarja választani a projektet?', @@ -283,7 +281,6 @@ ], ], 'install' => [ - 'project_label' => 'Csatolás', 'plugin_label' => 'Bővítmény telepítése', 'theme_label' => 'Téma telepítése', 'missing_plugin_name' => 'Adja meg a telepítendő bővítmény nevét.', @@ -292,10 +289,6 @@ 'install_success' => 'A bővítmény telepítése sikerült.', ], 'updates' => [ - 'title' => 'Gépház', - 'name' => 'Honlap állapota', - 'return_link' => 'Vissza a gépházhoz', - 'retry_label' => 'Újra próbál', 'plugin_name' => 'Név', 'plugin_code' => 'Kód', 'plugin_description' => 'Leírás', @@ -308,14 +301,12 @@ 'core_build' => 'Új verzió: :build', 'core_build_help' => 'Elérhető a legújabb hivatalos kiadás.', 'core_downloading' => 'Rendszer letöltése...', - 'core_extracting' => 'Rendszer kicsomagolása...', 'core_set_build' => 'Rendszer beállítása...', 'changelog' => 'Kiadott verziók', 'changelog_view_details' => 'Részletek', 'themes' => 'Témák', 'plugin_downloading' => 'Bővítmény letöltése: :name', 'plugin_removing' => 'Bővítmény eltávolítása: :name', - 'plugin_extracting' => 'Bővítmény kicsomagolása: :name', 'plugin_version_none' => 'Új bővítmény', 'plugin_current_version' => 'Aktuális verzió', 'theme_new_install' => 'Új téma telepítése.', @@ -326,7 +317,6 @@ 'update_completing' => 'Folyamat befejezése', 'update_loading' => 'Frissítések betöltése...', 'update_success' => 'A frissítés sikeresen megtörtént.', - 'update_failed_label' => 'A frissítés nem sikerült.', 'force_label' => 'Frissítés kényszerítése', 'found' => [ 'label' => 'Új verzió elérhető!', @@ -349,20 +339,13 @@ 'details_title_plugin' => 'Bővítmény részletei', 'details_title_theme' => 'Téma részletei', 'details_view_homepage' => 'Weboldal', - 'details_readme' => 'Dokumentáció', - 'details_readme_missing' => 'Nincs megadva leírás.', 'details_changelog' => 'Kiadott verziók', 'details_changelog_missing' => 'Nincs kiadási jegyzék.', - 'details_upgrades' => 'Frissítési útmutató', - 'details_upgrades_missing' => 'Nincs megadva instrukció.', - 'details_licence' => 'Felhasználási feltételek', 'details_view_licence' => 'Licenc megtekintése', - 'details_licence_missing' => 'Nincs megadva licenc.', 'details_current_version' => 'Verzió', 'details_author' => 'Fejlesztő', ], 'market' => [ - 'menu_label' => 'Piactér', 'menu_description' => 'Bővítmények és témák kezelése és telepítése.', 'content_loading' => 'Betöltés...', ], diff --git a/modules/system/lang/id.json b/modules/system/lang/id.json index aa32aafa0b..c62d4fd728 100644 --- a/modules/system/lang/id.json +++ b/modules/system/lang/id.json @@ -21,5 +21,14 @@ "Unable to find the specified settings.": "Tidak dapat menemukan pengaturan yang ditentukan.", "The settings page is missing a Model definition.": "Laman pengaturan kehilangan definisi Model.", ":name settings updated": "Pengaturan untuk :name berhasil diperbarui.", - "Return to System Settings": "Kembali ke pengaturan sistem" + "Return to System Settings": "Kembali ke pengaturan sistem", + "Attach to Project": "Kaitkan Ke Proyek", + "Project ID": "ID Proyek", + "How to find your Project ID": "Bagaimana menemukan ID Proyek Anda", + "Manage Updates": "Kelola Pembaruan", + "Software Update": "Pembaruan perangkat lunak", + "Try Again": "Coba lagi", + "Unpacking application files": "Membongkar berkas aplikasi", + "Update Failed": "Pembaruan gagal", + "Unpacking plugin: :name": "Membongkar pengaya: :name" } \ No newline at end of file diff --git a/modules/system/lang/id/lang.php b/modules/system/lang/id/lang.php index 6928c4e858..2d6d060a67 100644 --- a/modules/system/lang/id/lang.php +++ b/modules/system/lang/id/lang.php @@ -59,8 +59,6 @@ 'detach' => 'Lepas Proyek', 'none' => 'Tidak ada', 'id' => [ - 'label' => 'ID Proyek', - 'help' => 'Bagaimana menemukan ID Proyek Anda', 'missing' => 'Silakan tentukan ID Proyek yang akan digunakan.', ], 'detach_confirm' => 'Anda yakin akan melepaskan proyek ini?', @@ -122,16 +120,12 @@ 'return' => 'Kembali ke senarai acuan', ], 'install' => [ - 'project_label' => 'Kaitkan Ke Proyek', 'plugin_label' => 'Pasang Pengaya', 'missing_plugin_name' => 'Silakan tentukan nama Pengaya yang akan dipasang.', 'install_completing' => 'Menyelesaikan proses pemasangan', 'install_success' => 'Pengaya berhasil dipasang.', ], 'updates' => [ - 'title' => 'Kelola Pembaruan', - 'name' => 'Pembaruan perangkat lunak', - 'retry_label' => 'Coba lagi', 'plugin_name' => 'Nama', 'plugin_description' => 'Jabaran', 'plugin_version' => 'Versi', @@ -140,9 +134,7 @@ 'core_build' => 'Binaan :build', 'core_build_help' => 'Tersedia binaan terbaru.', 'core_downloading' => 'Mengunduh berkas-berkas aplikasi', - 'core_extracting' => 'Membongkar berkas aplikasi', 'plugin_downloading' => 'Mengunduh pengaya: :name', - 'plugin_extracting' => 'Membongkar pengaya: :name', 'plugin_version_none' => 'Pengaya baru', 'theme_new_install' => 'Pemasangan tema baru.', 'theme_downloading' => 'Mengunduh tema: :name', @@ -151,7 +143,6 @@ 'update_completing' => 'Menyelesaikan proses pembaruan', 'update_loading' => 'Memuat pembaruan yang tersedia...', 'update_success' => 'Proses pembaruan berhasil dilaksanakan.', - 'update_failed_label' => 'Pembaruan gagal', 'force_label' => 'Paksa pembaruan', 'found' => [ 'label' => 'Terdapat pembaruan baru!', diff --git a/modules/system/lang/it.json b/modules/system/lang/it.json index cc8e73e42e..8b699d5dba 100644 --- a/modules/system/lang/it.json +++ b/modules/system/lang/it.json @@ -21,5 +21,19 @@ "Unable to find the specified settings.": "Impossibile trovare le impostazioni specificate.", "The settings page is missing a Model definition.": "La pagine delle impostazioni non ha nessun modello associato.", ":name settings updated": "Le impostazioni per :name sono state aggiornate con successo.", - "Return to System Settings": "Ritorna alle impostazioni di sistema" + "Return to System Settings": "Ritorna alle impostazioni di sistema", + "There is no documentation provided.": "Nessuna documentazione fornita.", + "There are no upgrade instructions provided.": "Nessuna guida all'aggiornamento fornita.", + "Documentation": "Documentazione", + "Upgrade Guide": "Guida all'aggiornamento", + "Attach to Project": "Collega al progetto", + "Project ID": "ID del progetto", + "How to find your Project ID": "Come trovare l'ID del tuo progetto", + "Manage Updates": "Gestisci aggiornamenti", + "Software Update": "Aggiornamento del software", + "Return to System Updates": "Ritorna agli aggiornamenti di sistema", + "Try Again": "Riprova", + "Unpacking application files": "Estrazione dei file in corso", + "Update Failed": "Aggiornamento fallito", + "Unpacking plugin: :name": "Estrazione plugin: :name" } \ No newline at end of file diff --git a/modules/system/lang/it/lang.php b/modules/system/lang/it/lang.php index c3d9200c69..4d3bbade02 100644 --- a/modules/system/lang/it/lang.php +++ b/modules/system/lang/it/lang.php @@ -89,8 +89,6 @@ 'detach' => 'Scollega progetto', 'none' => 'Nessuno', 'id' => [ - 'label' => 'ID del progetto', - 'help' => 'Come trovare l\'ID del tuo progetto', 'missing' => 'Inserisci un ID di progetto da utilizzare.', ], 'detach_confirm' => 'Sei sicuro di voler scollegare questo progetto?', @@ -176,7 +174,6 @@ 'return' => 'Ritorna all\'elenco dei modelli', ], 'install' => [ - 'project_label' => 'Collega al progetto', 'plugin_label' => 'Installa plugin', 'theme_label' => 'Installa tema', 'missing_plugin_name' => 'Specifica il nome del plugin da installare.', @@ -185,10 +182,6 @@ 'install_success' => 'Il plugin è stato installato con successo.', ], 'updates' => [ - 'title' => 'Gestisci aggiornamenti', - 'name' => 'Aggiornamento del software', - 'return_link' => 'Ritorna agli aggiornamenti di sistema', - 'retry_label' => 'Riprova', 'plugin_name' => 'Nome', 'plugin_code' => 'Codice', 'plugin_description' => 'Descrizione', @@ -198,10 +191,8 @@ 'core_build' => 'Build :build', 'core_build_help' => 'Disponibile l\'ultima build.', 'core_downloading' => 'Scaricamento dei file in corso', - 'core_extracting' => 'Estrazione dei file in corso', 'themes' => 'Temi', 'plugin_downloading' => 'Scaricamento plugin: :name', - 'plugin_extracting' => 'Estrazione plugin: :name', 'plugin_version_none' => 'Nuovo plugin', 'plugin_current_version' => 'Versione attuale', 'theme_new_install' => 'Installa nuovo tema.', @@ -211,7 +202,6 @@ 'update_completing' => 'Completamento del processo di aggiornamento', 'update_loading' => 'Caricamento degli aggiornamenti disponibili...', 'update_success' => 'L\'aggiornamento è stato eseguito con successo.', - 'update_failed_label' => 'Aggiornamento fallito', 'force_label' => 'Forza aggiornamento', 'found' => [ 'label' => 'Trovati nuovi aggiornamenti!', @@ -232,10 +222,6 @@ 'important_alert_text' => 'Alcuni aggiornamenti necessitano della tua attenzione.', 'details_title' => 'Dettagli plugin', 'details_view_homepage' => 'Visualizza homepage', - 'details_readme' => 'Documentazione', - 'details_readme_missing' => 'Nessuna documentazione fornita.', - 'details_upgrades' => 'Guida all\'aggiornamento', - 'details_upgrades_missing' => 'Nessuna guida all\'aggiornamento fornita.', 'details_current_version' => 'Versione attuale', 'details_author' => 'Autore', ], diff --git a/modules/system/lang/ja.json b/modules/system/lang/ja.json index 53714f7146..aba08ea5ef 100644 --- a/modules/system/lang/ja.json +++ b/modules/system/lang/ja.json @@ -21,5 +21,14 @@ "Unable to find the specified settings.": "指定された設定は使えません。", "The settings page is missing a Model definition.": "モデルの定義が見つかりません。", ":name settings updated": ":name を設定しました。", - "Return to System Settings": "システム設定へ戻る" + "Return to System Settings": "システム設定へ戻る", + "Attach to Project": "プロジェクト追加", + "Project ID": "プロジェクトID", + "How to find your Project ID": "プロジェクトIDの見つけ方", + "Manage Updates": "アップデート管理", + "Software Update": "ソフトウェアアップデート", + "Try Again": "再実行", + "Unpacking application files": "アプリケーションファイルの展開中", + "Update Failed": "アップデート失敗", + "Unpacking plugin: :name": "プラグイン展開中: :name" } \ No newline at end of file diff --git a/modules/system/lang/ja/lang.php b/modules/system/lang/ja/lang.php index 0bde22ee77..9ca6918514 100644 --- a/modules/system/lang/ja/lang.php +++ b/modules/system/lang/ja/lang.php @@ -59,8 +59,6 @@ 'detach' => 'プロジェクト切り離し', 'none' => '無し', 'id' => [ - 'label' => 'プロジェクトID', - 'help' => 'プロジェクトIDの見つけ方', 'missing' => '使用するプロジェクトのIDを指定してください。', ], 'detach_confirm' => 'このプロジェクトを切り離しますか?', @@ -119,16 +117,12 @@ 'return' => 'テンプレートリストに戻る', ], 'install' => [ - 'project_label' => 'プロジェクト追加', 'plugin_label' => 'プラグインインストール', 'missing_plugin_name' => 'インストールするプラグインの名前を指定してください。', 'install_completing' => 'インストールを仕上げ中', 'install_success' => 'プラグインをインストールしました。', ], 'updates' => [ - 'title' => 'アップデート管理', - 'name' => 'ソフトウェアアップデート', - 'retry_label' => '再実行', 'plugin_name' => '名前', 'plugin_description' => '説明', 'plugin_version' => 'バージョン', @@ -137,9 +131,7 @@ 'core_build' => 'ビルド :build', 'core_build_help' => '新しいビルドが存在します。', 'core_downloading' => 'アプリケーションファイルのダウンロード中', - 'core_extracting' => 'アプリケーションファイルの展開中', 'plugin_downloading' => 'プラグインダウンロード中: :name', - 'plugin_extracting' => 'プラグイン展開中: :name', 'plugin_version_none' => '新プラグイン', 'theme_new_install' => '新しいテーマのインストール', 'theme_downloading' => 'テーマ \':name\' をダウンロードしています', @@ -148,7 +140,6 @@ 'update_completing' => 'アップデート仕上げ中', 'update_loading' => 'アップデートロード中…', 'update_success' => 'アップデートしました。', - 'update_failed_label' => 'アップデート失敗', 'force_label' => '強制アップデート', 'found' => [ 'label' => '新しいアップデートあり', diff --git a/modules/system/lang/kr.json b/modules/system/lang/kr.json index f6340a47ca..e8372806f7 100644 --- a/modules/system/lang/kr.json +++ b/modules/system/lang/kr.json @@ -12,5 +12,21 @@ "Unable to find the specified settings.": "선택하신 설정을 사용할 수 없습니다.", "The settings page is missing a Model definition.": "모델의 정의를 발견할 수 없습니다.", ":name settings updated": ":name 을 설정했습니다.", - "Return to System Settings": "시스템 설정으로 돌아가기" + "Return to System Settings": "시스템 설정으로 돌아가기", + "There is no documentation provided.": "참고문서가 제공되지 않습니다.", + "There are no upgrade instructions provided.": "업그레이드 지침이 제공되지 않습니다.", + "There is no licence provided.": "라이센스 정보가 제공되지 않습니다.", + "Documentation": "참고문서", + "Upgrade Guide": "업그레이드 지침", + "Licence": "라이센스", + "Attach to Project": "프로젝트 추가", + "Project ID": "프로젝트ID", + "How to find your Project ID": "프로젝트ID 찾는방법", + "Manage Updates": "업데이트 관리", + "Software Update": "SW 업데이트", + "Return to System Updates": "업데이트로 돌아가기", + "Try Again": "재실행", + "Unpacking application files": "애플리케이션 파일 압축해제는중", + "Update Failed": "업데이트 실패", + "Unpacking plugin: :name": "플러그인 압축해제는중: :name" } \ No newline at end of file diff --git a/modules/system/lang/kr/lang.php b/modules/system/lang/kr/lang.php index ae2e26e4d3..4f4c1df8a4 100644 --- a/modules/system/lang/kr/lang.php +++ b/modules/system/lang/kr/lang.php @@ -90,8 +90,6 @@ 'detach' => '프로젝트 분리', 'none' => '없음', 'id' => [ - 'label' => '프로젝트ID', - 'help' => '프로젝트ID 찾는방법', 'missing' => '사용하실 프로젝트 ID를 설정해주세요.', ], 'detach_confirm' => '이 프로젝트를 분리하시겠습니까?', @@ -173,7 +171,6 @@ 'return' => '템플릿 목록으로 돌아가기', ], 'install' => [ - 'project_label' => '프로젝트 추가', 'plugin_label' => '플러그인 설치', 'theme_label' => '테마 설치', 'missing_plugin_name' => '설치할 플러그인명을 설정해주세요.', @@ -182,10 +179,6 @@ 'install_success' => '플러그인을 설치했습니다.', ], 'updates' => [ - 'title' => '업데이트 관리', - 'name' => 'SW 업데이트', - 'return_link' => '업데이트로 돌아가기', - 'retry_label' => '재실행', 'plugin_name' => '이름', 'plugin_code' => '코드', 'plugin_description' => '설명', @@ -195,10 +188,8 @@ 'core_build' => '빌드 :build', 'core_build_help' => '새로운 빌드가 존재합니다.', 'core_downloading' => '애플리케이션 파일 다운로드중', - 'core_extracting' => '애플리케이션 파일 압축해제는중', 'themes' => '테마', 'plugin_downloading' => '플러그인 다운로드중: :name', - 'plugin_extracting' => '플러그인 압축해제는중: :name', 'plugin_version_none' => '최신버전', 'plugin_current_version' => '현재버전', 'theme_new_install' => '신규테마설치', @@ -208,7 +199,6 @@ 'update_completing' => '업데이트 완료중', 'update_loading' => '업데이트 로딩중...', 'update_success' => '업데이트 했습니다.', - 'update_failed_label' => '업데이트 실패', 'force_label' => '강제 업데이트', 'found' => [ 'label' => '업데이트가능', @@ -230,14 +220,8 @@ 'important_alert_text' => '몇몇 업데이트는 주의가 필요합니다.', 'details_title' => '플러그인 상세', 'details_view_homepage' => '홈페이지 보기', - 'details_readme' => '참고문서', - 'details_readme_missing' => '참고문서가 제공되지 않습니다.', 'details_changelog' => '변경로그', 'details_changelog_missing' => '변경로그가 제공되지 않습니다.', - 'details_upgrades' => '업그레이드 지침', - 'details_upgrades_missing' => '업그레이드 지침이 제공되지 않습니다.', - 'details_licence' => '라이센스', - 'details_licence_missing' => '라이센스 정보가 제공되지 않습니다.', 'details_current_version' => '현재 버전', 'details_author' => '작성자', ], diff --git a/modules/system/lang/lt.json b/modules/system/lang/lt.json index 7f658d0b29..5a723dca26 100644 --- a/modules/system/lang/lt.json +++ b/modules/system/lang/lt.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Nepavyko rasti nurodytų nustatymų.", "The settings page is missing a Model definition.": "Nustatymų puslapiui trūksta Modelio aprašo.", ":name settings updated": ":name nustatymai atnaujinti", - "Return to System Settings": "Grįžti į sistemos nustatymus" + "Return to System Settings": "Grįžti į sistemos nustatymus", + "There is no documentation provided.": "Dokumentacija nepateikta.", + "There are no upgrade instructions provided.": "Papildymo instrukcijos nepateiktos.", + "There is no licence provided.": "Licencija nepateikta.", + "Documentation": "Dokumentacija", + "Upgrade Guide": "Papildymo Gidas", + "Licence": "Licencija", + "Attach to Project": "Prisegti prie Projekto", + "Project ID": "Projekto ID", + "How to find your Project ID": "Kaip rasti Projekto ID", + "Manage Updates": "Tvarkyti Naujinimus", + "Software Update": "Programos naujinimas", + "Return to System Updates": "Grįžti į sistmos naujinimą", + "Try Again": "Bandykite dar kartą", + "Unpacking application files": "Išskleidžiami programos failai", + "Update Failed": "Atnaujinimas nepavyko", + "Unpacking plugin: :name": "Išpakuojame įskiepį: :name" } \ No newline at end of file diff --git a/modules/system/lang/lt/lang.php b/modules/system/lang/lt/lang.php index c5b99be0cc..2f7a9c0578 100644 --- a/modules/system/lang/lt/lang.php +++ b/modules/system/lang/lt/lang.php @@ -126,8 +126,6 @@ 'detach' => 'Atjungti Projektą', 'none' => 'Jokio', 'id' => [ - 'label' => 'Projekto ID', - 'help' => 'Kaip rasti Projekto ID', 'missing' => 'Prašome nurodyti Projekto ID, kurį norite naudoti.', ], 'detach_confirm' => 'Ar tikrai norite atjungti Projektą?', @@ -213,7 +211,6 @@ 'return' => 'Grįžti į šablonų sąrašą', ], 'install' => [ - 'project_label' => 'Prisegti prie Projekto', 'plugin_label' => 'Įdiegti įskiepį', 'theme_label' => 'Įdiegti dizainą', 'missing_plugin_name' => 'Nurodykite instaliuojamo Įskiepio pavadinimą.', @@ -222,10 +219,6 @@ 'install_success' => 'Įskiepis įdiegtas sėkmingai', ], 'updates' => [ - 'title' => 'Tvarkyti Naujinimus', - 'name' => 'Programos naujinimas', - 'return_link' => 'Grįžti į sistmos naujinimą', - 'retry_label' => 'Bandykite dar kartą', 'plugin_name' => 'Pavadinimas', 'plugin_code' => 'Kodas', 'plugin_description' => 'Aprašymas', @@ -235,10 +228,8 @@ 'core_build' => 'Sudėtis :build', 'core_build_help' => 'Yra galima nauja sudėtis.', 'core_downloading' => 'Siunčiami programos failai', - 'core_extracting' => 'Išskleidžiami programos failai', 'themes' => 'Dizainai', 'plugin_downloading' => 'Siunčiame įskiepį: :name', - 'plugin_extracting' => 'Išpakuojame įskiepį: :name', 'plugin_version_none' => 'Naujas įskiepis', 'plugin_current_version' => 'Dabartinė versija', 'theme_new_install' => 'Naujo dizaino įdiegimas.', @@ -248,7 +239,6 @@ 'update_completing' => 'Užbaigiamas naujinimo procesas', 'update_loading' => 'Įkrauname galimus atnaujinimus...', 'update_success' => 'Atnaujinimo procesas baigtas', - 'update_failed_label' => 'Atnaujinimas nepavyko', 'force_label' => 'Naujinti priverstinai', 'found' => [ 'label' => 'Yra atnaujinimų!', @@ -269,14 +259,8 @@ 'important_alert_text' => 'Kai kurie atnaujinami reikalauja Jūsų peržiūros.', 'details_title' => 'Įskiepio informacija', 'details_view_homepage' => 'Tinklalapis', - 'details_readme' => 'Dokumentacija', - 'details_readme_missing' => 'Dokumentacija nepateikta.', 'details_changelog' => 'Pakeitimų registras', 'details_changelog_missing' => 'Pakeitimų registras nepateiktas.', - 'details_upgrades' => 'Papildymo Gidas', - 'details_upgrades_missing' => 'Papildymo instrukcijos nepateiktos.', - 'details_licence' => 'Licencija', - 'details_licence_missing' => 'Licencija nepateikta.', 'details_current_version' => 'Dabartinė versija', 'details_author' => 'Autorius', ], diff --git a/modules/system/lang/lv.json b/modules/system/lang/lv.json index 9e98ce93f0..29ab4fd8f7 100644 --- a/modules/system/lang/lv.json +++ b/modules/system/lang/lv.json @@ -21,5 +21,19 @@ "Unable to find the specified settings.": "Nebija iespējams atrast norādītos iestatījumus.", "The settings page is missing a Model definition.": "Iestatījumu lapa nav norādīta Moduļa definīcijā.", ":name settings updated": "Iestatījumi priekš :name tika veiksmīgi atjaunināti.", - "Return to System Settings": "Atgriezties sistēmas iestatījumos" + "Return to System Settings": "Atgriezties sistēmas iestatījumos", + "There is no documentation provided.": "Dokumentācija nav pievienota.", + "There are no upgrade instructions provided.": "Atjaunināšanas padomi nav pievienoti.", + "Documentation": "Dokumentācija", + "Upgrade Guide": "Atjaunināšanas padomi", + "Attach to Project": "Pievienot projektam", + "Project ID": "Projekta ID", + "How to find your Project ID": "Kā atrast Projekta ID", + "Manage Updates": "Pārvaldīt Atjauninājumus", + "Software Update": "Programmatūras atjauninājumi", + "Return to System Updates": "Atgriezties sistēmas atjauninājumos", + "Try Again": "Mēģināt vēlreiz", + "Unpacking application files": "Atpakojam aplikācijas failus", + "Update Failed": "Atjauninājums neizdevās", + "Unpacking plugin: :name": "Atpakojam spraudni: :name" } \ No newline at end of file diff --git a/modules/system/lang/lv/lang.php b/modules/system/lang/lv/lang.php index 4bc848a8b0..52dfe7e6cc 100644 --- a/modules/system/lang/lv/lang.php +++ b/modules/system/lang/lv/lang.php @@ -89,8 +89,6 @@ 'detach' => 'Atvienot projektu', 'none' => 'Nekas', 'id' => [ - 'label' => 'Projekta ID', - 'help' => 'Kā atrast Projekta ID', 'missing' => 'Lūdzu norādiet Projekta ID, kuru lietot.', ], 'detach_confirm' => 'Vai esat pārliecināts, ka vēlaties atvienot šo projektu?', @@ -154,7 +152,6 @@ 'return' => 'Atgriezties veidņu sarakstā', ], 'install' => [ - 'project_label' => 'Pievienot projektam', 'plugin_label' => 'Instalēt Spraudni', 'theme_label' => 'Instalēt Tēmu', 'missing_plugin_name' => 'Lūdzu norādiet Spraudņa nosaukumu, kuru instalēt.', @@ -163,10 +160,6 @@ 'install_success' => 'Spraudnis tika veiksmīgi instalēts.', ], 'updates' => [ - 'title' => 'Pārvaldīt Atjauninājumus', - 'name' => 'Programmatūras atjauninājumi', - 'return_link' => 'Atgriezties sistēmas atjauninājumos', - 'retry_label' => 'Mēģināt vēlreiz', 'plugin_name' => 'Nosaukums', 'plugin_code' => 'Kods', 'plugin_description' => 'Apraksts', @@ -176,10 +169,8 @@ 'core_build' => 'Versija :build', 'core_build_help' => 'Jaunāka versija ir pieejama.', 'core_downloading' => 'Lejupielādējam aplikācijas failus', - 'core_extracting' => 'Atpakojam aplikācijas failus', 'themes' => 'Tēmas', 'plugin_downloading' => 'Lejupielādējam spraudni: :name', - 'plugin_extracting' => 'Atpakojam spraudni: :name', 'plugin_version_none' => 'Jauns spraudnis', 'plugin_current_version' => 'Patreizējā versija', 'theme_new_install' => 'Jauna tēmas instalācija.', @@ -189,7 +180,6 @@ 'update_completing' => 'Pabeidzam atjaunināšanas procesu', 'update_loading' => 'Ielādējam pieejamos atjauninājumus...', 'update_success' => 'Atjaunināšanas process noritēja veiksmīgi.', - 'update_failed_label' => 'Atjauninājums neizdevās', 'force_label' => 'Forsēt atjaunināšanu', 'found' => [ 'label' => 'Atrasti jauni atjauninājumi!', @@ -210,10 +200,6 @@ 'important_alert_text' => 'Daži atjauninājumi ir jāpārskata.', 'details_title' => 'Spraudņa detaļas', 'details_view_homepage' => 'Rādīt mājaslapu', - 'details_readme' => 'Dokumentācija', - 'details_readme_missing' => 'Dokumentācija nav pievienota.', - 'details_upgrades' => 'Atjaunināšanas padomi', - 'details_upgrades_missing' => 'Atjaunināšanas padomi nav pievienoti.', 'details_current_version' => 'Patreizējā versija', 'details_author' => 'Autors', ], diff --git a/modules/system/lang/nb-no.json b/modules/system/lang/nb-no.json index 0bc4a46cd2..ac93529669 100644 --- a/modules/system/lang/nb-no.json +++ b/modules/system/lang/nb-no.json @@ -12,5 +12,19 @@ "Unable to find the specified settings.": "Fant ikke spesifiserte innstilling.", "The settings page is missing a Model definition.": "Innstillingssiden mangler en modell-definisjon.", ":name settings updated": "Innstillingene for :name har blitt lagret.", - "Return to System Settings": "Tilbake til systeminnstillinger" + "Return to System Settings": "Tilbake til systeminnstillinger", + "There is no documentation provided.": "Ingen dokumentasjon å vise.", + "There are no upgrade instructions provided.": "Det er ingen instruksjoner å vise.", + "Documentation": "Dokumentasjon", + "Upgrade Guide": "Oppgraderingsguide", + "Attach to Project": "Tilkoble prosjekt", + "Project ID": "Prosjekt-ID", + "How to find your Project ID": "Hvordan finne din prosjekt-ID", + "Manage Updates": "Administrer oppdateringer", + "Software Update": "Programvareoppdateringer", + "Return to System Updates": "Tilbake til oppdateringer", + "Try Again": "Prøv igjen", + "Unpacking application files": "Pakker ut applikasjonsfiler", + "Update Failed": "Oppdateringen mislyktes", + "Unpacking plugin: :name": "Pakker ut plugin: :name" } \ No newline at end of file diff --git a/modules/system/lang/nb-no/lang.php b/modules/system/lang/nb-no/lang.php index 8ddcc90bd2..29cb227c0f 100644 --- a/modules/system/lang/nb-no/lang.php +++ b/modules/system/lang/nb-no/lang.php @@ -89,8 +89,6 @@ 'detach' => 'Avkoble prosjekt', 'none' => 'Ingen', 'id' => [ - 'label' => 'Prosjekt-ID', - 'help' => 'Hvordan finne din prosjekt-ID', 'missing' => 'Vennligst spesifiser en prosjekt-ID.', ], 'detach_confirm' => 'Vil du virkelig avkoble dette prosjektet?', @@ -176,7 +174,6 @@ 'return' => 'Tilbake til mallisten', ], 'install' => [ - 'project_label' => 'Tilkoble prosjekt', 'plugin_label' => 'Installér', 'theme_label' => 'Installér tema', 'missing_plugin_name' => 'Vennligst oppgi pluginens navn.', @@ -185,10 +182,6 @@ 'install_success' => 'Plugin har blitt installert.', ], 'updates' => [ - 'title' => 'Administrer oppdateringer', - 'name' => 'Programvareoppdateringer', - 'return_link' => 'Tilbake til oppdateringer', - 'retry_label' => 'Prøv igjen', 'plugin_name' => 'Navn', 'plugin_code' => 'Kode', 'plugin_description' => 'Beskrivelse', @@ -198,10 +191,8 @@ 'core_build' => 'Build :build', 'core_build_help' => 'Siste build er tilgjengelig.', 'core_downloading' => 'Laster ned applikasjonsfiler', - 'core_extracting' => 'Pakker ut applikasjonsfiler', 'themes' => 'Teamer', 'plugin_downloading' => 'Laster ned plugin: :name', - 'plugin_extracting' => 'Pakker ut plugin: :name', 'plugin_version_none' => 'Ny plugin', 'plugin_current_version' => 'Nåværende versjon', 'theme_new_install' => 'Ny tema-installasjon.', @@ -211,7 +202,6 @@ 'update_completing' => 'Ferdiggjør oppdatering', 'update_loading' => 'Henter tilgjengelige oppdateringer...', 'update_success' => 'Oppdatering har fullført.', - 'update_failed_label' => 'Oppdateringen mislyktes', 'force_label' => 'Tving update', 'found' => [ 'label' => 'Fant nye oppdateringer!', @@ -232,10 +222,6 @@ 'important_alert_text' => 'Noen oppdateringer krever ettersyn.', 'details_title' => 'Plugin detaljer', 'details_view_homepage' => 'Vis nettside', - 'details_readme' => 'Dokumentasjon', - 'details_readme_missing' => 'Ingen dokumentasjon å vise.', - 'details_upgrades' => 'Oppgraderingsguide', - 'details_upgrades_missing' => 'Det er ingen instruksjoner å vise.', 'details_current_version' => 'Nåværende versjon', 'details_author' => 'Forfatter', ], diff --git a/modules/system/lang/nl.json b/modules/system/lang/nl.json index ac65ad8fc8..ec715e0e0e 100644 --- a/modules/system/lang/nl.json +++ b/modules/system/lang/nl.json @@ -23,5 +23,22 @@ "The settings page is missing a Model definition.": "De instellingenpagina mist de definitie van een Model.", ":name settings updated": "Instellingen voor :name zijn succesvol bijgewerkt.", "Return to System Settings": "Terug naar systeeminstellingen", - "Find a Setting...": "Zoek een instelling..." + "Find a Setting...": "Zoek een instelling...", + "Marketplace": "Marketplace", + "There is no documentation provided.": "Er is geen documentatie beschikbaar.", + "There are no upgrade instructions provided.": "Er is geen upgrade instructie beschikbaar gemaakt.", + "There is no licence provided.": "Er is geen licentie aanwezig.", + "Documentation": "Documentatie", + "Upgrade Guide": "Upgrade instructie", + "Licence": "Licentie", + "Attach to Project": "Koppel aan project", + "Project ID": "Project ID", + "How to find your Project ID": "Hoe achterhaal je jouw Project ID?", + "Manage Updates": "Beheer updates", + "Software Update": "Applicatie-update", + "Return to System Updates": "Terug naar updates", + "Try Again": "Probeer nogmaals", + "Unpacking application files": "Bestanden aan het uitpakken", + "Update Failed": "Update mislukt", + "Unpacking plugin: :name": "Plugin uitpakken: :name" } \ No newline at end of file diff --git a/modules/system/lang/nl/lang.php b/modules/system/lang/nl/lang.php index 79a57600b2..8d79d43ce1 100644 --- a/modules/system/lang/nl/lang.php +++ b/modules/system/lang/nl/lang.php @@ -180,8 +180,6 @@ 'detach' => 'Ontkoppel project', 'none' => 'Geen', 'id' => [ - 'label' => 'Project ID', - 'help' => 'Hoe achterhaal je jouw Project ID?', 'missing' => 'Voer een Project ID in.', ], 'detach_confirm' => 'Weet je zeker dat je dit project wilt ontkoppelen?', @@ -327,7 +325,6 @@ ], ], 'install' => [ - 'project_label' => 'Koppel aan project', 'plugin_label' => 'Installeer plugin', 'theme_label' => 'Installeer thema', 'missing_plugin_name' => 'Voer de naam van een plugin in om te installeren.', @@ -336,10 +333,6 @@ 'install_success' => 'De plugin is succesvol geïnstalleerd.', ], 'updates' => [ - 'title' => 'Beheer updates', - 'name' => 'Applicatie-update', - 'return_link' => 'Terug naar updates', - 'retry_label' => 'Probeer nogmaals', 'plugin_name' => 'Naam', 'plugin_code' => 'Code', 'plugin_description' => 'Omschrijving', @@ -352,14 +345,12 @@ 'core_build' => 'Versie :build', 'core_build_help' => 'De meest recente versie is beschikbaar.', 'core_downloading' => 'Bestanden aan het downloaden', - 'core_extracting' => 'Bestanden aan het uitpakken', 'core_set_build' => 'Versie informatie bijwerken', 'changelog' => 'Logboek van wijzigingen', 'changelog_view_details' => 'Details bekijken', 'themes' => 'Thema\'s', 'plugin_downloading' => 'Plugin downloaden: :name', 'plugin_removing' => 'Plugin verwijderen: :name', - 'plugin_extracting' => 'Plugin uitpakken: :name', 'plugin_version_none' => 'Nieuwe plugin', 'plugin_current_version' => 'Huidige versie', 'theme_new_install' => 'Nieuwe thema-installatie.', @@ -370,7 +361,6 @@ 'update_completing' => 'Afronden updateproces', 'update_loading' => 'Beschikbare updates laden...', 'update_success' => 'Het updateproces is succesvol afgerond.', - 'update_failed_label' => 'Update mislukt', 'force_label' => 'Forceer update', 'found' => [ 'label' => 'Nieuwe updates beschikbaar!', @@ -393,20 +383,13 @@ 'details_title_plugin' => 'Details plugin', 'details_title_theme' => 'Details thema', 'details_view_homepage' => 'Toon homepagina', - 'details_readme' => 'Documentatie', - 'details_readme_missing' => 'Er is geen documentatie beschikbaar.', 'details_changelog' => 'Changelog', 'details_changelog_missing' => 'Er is geen changelog aanwezig.', - 'details_upgrades' => 'Upgrade instructie', - 'details_upgrades_missing' => 'Er is geen upgrade instructie beschikbaar gemaakt.', - 'details_licence' => 'Licentie', 'details_view_licence' => 'Toon licentie', - 'details_licence_missing' => 'Er is geen licentie aanwezig.', 'details_current_version' => 'Huidige versie', 'details_author' => 'Auteur', ], 'market' => [ - 'menu_label' => 'Marketplace', 'menu_description' => 'Beheer plugins en thema\'s.', 'content_loading' => 'Bezig met laden...', ], diff --git a/modules/system/lang/pl.json b/modules/system/lang/pl.json index 12c915882f..a6d5bef97c 100644 --- a/modules/system/lang/pl.json +++ b/modules/system/lang/pl.json @@ -21,5 +21,19 @@ "Unable to find the specified settings.": "Nie można znaleźć określonych ustawień.", "The settings page is missing a Model definition.": "Na stronie ustawień brakuje definicji modelu.", ":name settings updated": "Ustawienia dla :name zostały pomyślnie zaktualizowane.", - "Return to System Settings": "Wróc do ustawień systemu" + "Return to System Settings": "Wróc do ustawień systemu", + "There is no documentation provided.": "Nie dostarczono dokumentacji.", + "There are no upgrade instructions provided.": "Nie dostarczono instrukcji aktualizacji.", + "Documentation": "Dokumentacja", + "Upgrade Guide": "Podręcznik Aktualizacji", + "Attach to Project": "Podłącz do Projektu", + "Project ID": "ID Projektu", + "How to find your Project ID": "Jak znaleźć ID Projektu", + "Manage Updates": "Zarządzaj Aktualizacjami", + "Software Update": "Aktualizacje", + "Return to System Updates": "Wróć do aktualizacji systemu", + "Try Again": "Spróbuj ponownie", + "Unpacking application files": "Rozpakowywanie plików aplikacji", + "Update Failed": "Aktualizacja nie powiodła się.", + "Unpacking plugin: :name": "Rozpakowywanie wtyczki: :name" } \ No newline at end of file diff --git a/modules/system/lang/pl/lang.php b/modules/system/lang/pl/lang.php index fe9ebf8342..2c58f461b4 100644 --- a/modules/system/lang/pl/lang.php +++ b/modules/system/lang/pl/lang.php @@ -107,8 +107,6 @@ 'detach' => 'Odłącz Projekt', 'none' => 'Żaden', 'id' => [ - 'label' => 'ID Projektu', - 'help' => 'Jak znaleźć ID Projektu', 'missing' => 'Proszę podać ID projektu do użycia.', ], 'detach_confirm' => 'Czy na pewno chcesz odłaczyć ten projekt?', @@ -249,7 +247,6 @@ ], ], 'install' => [ - 'project_label' => 'Podłącz do Projektu', 'plugin_label' => 'Zainstaluj Wtyczkę', 'theme_label' => 'Zainstaluj Motyw', 'missing_plugin_name' => 'Proszę podać nazwę Wtyczki do zainstalowania.', @@ -258,10 +255,6 @@ 'install_success' => 'Wtyczka została zainstalowana pomyślnie.', ], 'updates' => [ - 'title' => 'Zarządzaj Aktualizacjami', - 'name' => 'Aktualizacje', - 'return_link' => 'Wróć do aktualizacji systemu', - 'retry_label' => 'Spróbuj ponownie', 'plugin_name' => 'Nazwa', 'plugin_code' => 'Kod', 'plugin_description' => 'Opis', @@ -271,10 +264,8 @@ 'core_build' => 'Aktualna wersja :build', 'core_build_help' => 'Jest dostępna nowa wersja systemu.', 'core_downloading' => 'Pobieranie plików aplikacji', - 'core_extracting' => 'Rozpakowywanie plików aplikacji', 'themes' => 'Motywy', 'plugin_downloading' => 'Pobieranie wtyczki: :name', - 'plugin_extracting' => 'Rozpakowywanie wtyczki: :name', 'plugin_version_none' => 'Nowa wtyczka', 'plugin_current_version' => 'Aktualna wersja', 'theme_new_install' => 'Zainstaluj nowy motyw.', @@ -284,7 +275,6 @@ 'update_completing' => 'Zakończenie procesu aktualizacji', 'update_loading' => 'Wczytywanie dostępnych aktualizacji...', 'update_success' => 'Proces aktualizacji został pomyślnie zakończony.', - 'update_failed_label' => 'Aktualizacja nie powiodła się.', 'force_label' => 'Zmuś do aktualizacji', 'found' => [ 'label' => 'Znaleziono nowe aktualizacje!', @@ -305,10 +295,6 @@ 'important_alert_text' => 'Niektóre aktualizacje wymagają twojej uwagi.', 'details_title' => 'Szeczóły Wtyczki', 'details_view_homepage' => 'Zobacz stronę domową', - 'details_readme' => 'Dokumentacja', - 'details_readme_missing' => 'Nie dostarczono dokumentacji.', - 'details_upgrades' => 'Podręcznik Aktualizacji', - 'details_upgrades_missing' => 'Nie dostarczono instrukcji aktualizacji.', 'details_current_version' => 'Aktualna wersja', 'details_author' => 'Autor', ], diff --git a/modules/system/lang/pt-br.json b/modules/system/lang/pt-br.json index c887ba67e5..78889d20ad 100644 --- a/modules/system/lang/pt-br.json +++ b/modules/system/lang/pt-br.json @@ -1,17 +1,47 @@ { "Check For Updates": "Verificar atualizações", + "Install Packages": "Instalar pacotes", + "Manage Themes": "Gerenciar temas", "Manage Plugins": "Gerenciar plugins", "Project": "Projeto", "Owner": "Desenvolvedor", "Plugins": "Plugins", "Disabled": "Desabilitados", "Current Build": "Compilação atual", - "View Changelog": "Visualizar Changelog", + "Updates Available": "Atualizações disponíveis", + "Up to Date": "Atualizado", + "Latest Build": "Versão mais recente", + "View Changelog": "Visualizar Registro de mudanças", "System Updates": "Atualizações", "Update the system modules and plugins.": "Atualize o sistema, gerencie e instale plugins e temas.", + "General": "Geral", + "Mail": "Email", + "Utilities": "Utilidades", "Settings": "Configurações", + "Show All Settings": "Mostrar todas as configurações", "Unable to find the specified settings.": "Impossível encontrar as configurações solicitadas.", "The settings page is missing a Model definition.": "Falta uma definição de modelo na página de configurações.", ":name settings updated": "Configurações para :name foram atualizados com sucesso.", - "Return to System Settings": "Retornar para as configurações do sistema" -} \ No newline at end of file + "Return to System Settings": "Retornar para as configurações do sistema", + "Find a Setting...": "Encontrar uma configuração...", + "Disable mail branding CSS": "Desabilitar CSS de branding de e-mail", + "Manage Sites": "Gerenciar sites", + "Manage the websites available for this application.": "Gerencie os sites disponíveis para este aplicativo.", + "Marketplace": "Marketplace", + "There is no documentation provided.": "Não foi fornecida nenhuma documentação.", + "There are no upgrade instructions provided.": "Não existem instruções de atualização.", + "There is no licence provided.": "Não há licença fornecida.", + "Documentation": "Documentação", + "Upgrade Guide": "Guia de atualização", + "Licence": "Licença", + "Attach to Project": "Anexar ao projeto", + "Project ID": "Identificador do Projeto", + "How to find your Project ID": "Como encontrar o identificador do seu projeto", + "Manage Updates": "Gerenciar atualizações", + "Software Update": "Atualização de software", + "Return to System Updates": "Voltar às atualizações", + "Try Again": "Tentar novamente", + "Unpacking application files": "Desempacotando arquivos do aplicativo", + "Update Failed": "Falha na atualização", + "Unpacking plugin: :name": "Desempacotando o plugin: :name" +} diff --git a/modules/system/lang/pt-br/client.php b/modules/system/lang/pt-br/client.php index 921d86ef2a..9c49307d33 100644 --- a/modules/system/lang/pt-br/client.php +++ b/modules/system/lang/pt-br/client.php @@ -45,9 +45,12 @@ 'invalid_audio_empty_insert' => "Por favor, selecione os áudios que deseja inserir.", ], 'alert' => [ + 'error' => 'Erro', + 'confirm' => 'Confirmar', + 'dismiss' => 'Dispensar', 'confirm_button_text' => 'OK', 'cancel_button_text' => 'Cancelar', - 'widget_remove_confirm' => 'Remover este widget?' + 'widget_remove_confirm' => 'Remover este widget?', ], 'datepicker' => [ 'previousMonth' => 'Mês anterior', @@ -98,5 +101,12 @@ 'open' => 'Abrir', 'cancel' => 'Cancelar' ] - ] + ], + 'upload' => [ + 'max_files' => 'Você não pode enviar mais arquivos.', + 'invalid_file_type' => 'Você não pode carregar arquivos deste tipo.', + 'file_too_big' => 'O arquivo é muito grande ({{filesize}}MB). Tamanho máximo do arquivo: {{maxFilesize}}MB.', + 'response_error' => 'O servidor respondeu com o código {{statusCode}}.', + 'remove_file' => 'Remover arquivo', + ], ]; diff --git a/modules/system/lang/pt-br/lang.php b/modules/system/lang/pt-br/lang.php index fb1c43f60f..ff8fdeb3fa 100644 --- a/modules/system/lang/pt-br/lang.php +++ b/modules/system/lang/pt-br/lang.php @@ -1,466 +1,519 @@ [ - 'name' => 'October CMS', - 'tagline' => 'Voltando ao básico', - ], - 'locale' => [ - 'ar' => 'العربية', - 'be' => 'Беларуская', - 'bg' => 'Български', - 'ca' => 'Català', - 'cs' => 'Čeština', - 'da' => 'Dansk', - 'en' => 'English (United States)', - 'en-au' => 'English (Australia)', - 'en-ca' => 'English (Canada)', - 'en-gb' => 'English (United Kingdom)', - 'et' => 'Eesti', - 'de' => 'Deutsch', - 'el' => 'Ελληνικά', - 'es' => 'Español', - 'es-ar' => 'Español (Argentina)', - 'fa' => 'فارسی', - 'fr' => 'Français', - 'fr-ca' => 'Français (Canada)', - 'hu' => 'Magyar', - 'id' => 'Bahasa Indonesia', - 'it' => 'Italiano', - 'ja' => '日本語', - 'kr' => '한국어', - 'lt' => 'Lietuvių', - 'lv' => 'Latviešu', - 'nb-no' => 'Norsk (Bokmål)', - 'nl' => 'Nederlands', - 'pl' => 'Polski', - 'pt-br' => 'Português (Brasil)', - 'pt-pt' => 'Português (Portugal)', - 'ro' => 'Română', - 'rs' => 'Srpski', - 'ru' => 'Русский', - 'fi' => 'Suomi', - 'sv' => 'Svenska', - 'sk' => 'Slovenský', - 'sl' => 'Slovenščina', - 'th' => 'ไทย', - 'tr' => 'Türkçe', - 'uk' => 'Українська мова', - 'zh-cn' => '简体中文', - 'zh-tw' => '繁體中文', - 'vn' => 'Tiếng việt', - ], - 'directory' => [ - 'create_fail' => 'Não é possível criar o diretório: :name', - ], - 'file' => [ - 'create_fail' => 'Não é possível criar o arquivo: :name', - ], - 'combiner' => [ - 'not_found' => 'O arquivo combinador ":name" não foi encontrado.', - ], - 'system' => [ - 'name' => 'Sistema', - 'menu_label' => 'Sistema', - 'categories' => [ - 'cms' => 'CMS', - 'misc' => 'Diversos', - 'logs' => 'Registros', - 'mail' => 'E-mail', - 'shop' => 'Loja ', - 'team' => 'Equipe', - 'users' => 'Usuários', - 'system' => 'Sistema', - 'social' => 'Social', - 'backend' => 'Backend', - 'events' => 'Eventos', - 'customers' => 'Clientes', - 'my_settings' => 'Configurações', - 'notifications' => 'Notificações', + 'installer' => [ + 'app_config_section' => 'Configuração da aplicaçao', + 'license_section' => 'Chave de licença', + 'dependencies_section' => 'Instalando dependências', + 'demo_section' => 'Conteúdo de demonstração', + 'locale_select_label' => 'Selecionar idioma', + 'locale_select_error' => 'Código do idioma :code é inválido, tente novamente', + 'app_url_label' => 'URL da aplicação', + 'backend_uri_label' => 'URI do painel', + 'backend_uri_comment' => 'Para proteger sua aplicaçao, use um endereço personalizado para acessar o painel de administração.', + 'license_key_label' => 'Chave de licença', + 'license_key_comment' => 'Digite uma chave de licença válida para continuar.', + 'license_thanks_comment' => 'Obrigado por ser cliente do October CMS!', + 'license_expired_comment' => 'A licença não foi paga ou expirou. Visite octobercms.com para obter uma licença.', + 'too_many_failures_label' => 'Muitas tentativas falhadas', + 'non_interactive_label' => 'Modo não interativo detectado', + 'non_interactive_comment' => 'Se você vir este erro imediatamente, use estes comandos não interativos.', + 'install_failed_label' => 'Falha na instalação', + 'install_failed_comment' => 'Por favor, tente executar estes comandos manualmente.', + 'database_engine_label' => 'Motor de Banco de Dados', + 'database_host_label' => 'Host do banco de dados', + 'database_host_comment' => 'Nome do host para a conexão do banco de dados.', + 'database_port_label' => 'Porta do banco de dados', + 'database_port_comment' => '(Opcional) Uma porta para a conexão.', + 'database_name_label' => 'Nome do banco de dados', + 'database_name_comment' => 'Especifique o nome do banco de dados a ser usado.', + 'database_login_label' => 'Login do banco de dados', + 'database_login_comment' => 'Usuário com privilégios de criação de banco de dados.', + 'database_pass_label' => 'Senha do banco de dados', + 'database_pass_comment' => 'Senha para o usuário especificado.', + 'database_path_label' => 'Caminho do banco de dados', + 'database_path_comment' => 'Para armazenamento baseado em arquivo, insira um caminho relativo ao diretório raiz do aplicativo.', + 'migrate_database_comment' => 'Por favor, migre o banco de dados com o seguinte comando', + 'visit_backend_comment' => 'Então, abra a área de administração nesta URL', + 'open_configurator_comment' => 'Abra a aplicação em seu navegador', + 'install_demo_label' => 'Instalar o tema de demonstração e conteúdo? (Recomendado)', ], - ], - 'theme' => [ - 'label' => 'Tema', - 'unnamed' => 'Tema sem nome', - 'name' => [ - 'label' => 'Nome do Tema', - 'help' => 'Nome do tema deve ser único. Por exemplo, RainLab.Vanilla', + 'app' => [ + 'name' => 'October CMS', + 'tagline' => 'Voltando ao básico', ], - ], - 'themes' => [ - 'install' => 'Instalar tema', - 'search' => 'Buscar temas para instalar...', - 'installed' => 'Temas instalados', - 'no_themes' => 'Não há temas instalados.', - 'recommended' => 'Recomendado', - 'remove_confirm' => 'Você tem certeza que deseja remover este tema?', - ], - 'plugin' => [ - 'label' => 'Plugin', - 'unnamed' => 'Plugin sem nome', - 'name' => [ - 'label' => 'Nome do Plugin', - 'help' => 'Nomeie o plugin pelo seu código exclusivo. Por exemplo, RainLab.Blog', + 'locale' => [ + 'ar' => 'العربية', + 'be' => 'Беларуская', + 'bg' => 'Български', + 'ca' => 'Català', + 'cs' => 'Čeština', + 'da' => 'Dansk', + 'en' => 'English (United States)', + 'en-au' => 'English (Australia)', + 'en-ca' => 'English (Canada)', + 'en-gb' => 'English (United Kingdom)', + 'et' => 'Eesti', + 'de' => 'Deutsch', + 'el' => 'Ελληνικά', + 'es' => 'Español', + 'es-ar' => 'Español (Argentina)', + 'fa' => 'فارسی', + 'fr' => 'Français', + 'fr-ca' => 'Français (Canada)', + 'hu' => 'Magyar', + 'id' => 'Bahasa Indonesia', + 'it' => 'Italiano', + 'ja' => '日本語', + 'kr' => '한국어', + 'lt' => 'Lietuvių', + 'lv' => 'Latviešu', + 'nb-no' => 'Norsk (Bokmål)', + 'nl' => 'Nederlands', + 'pl' => 'Polski', + 'pt-br' => 'Português (Brasil)', + 'pt-pt' => 'Português (Portugal)', + 'ro' => 'Română', + 'rs' => 'Srpski', + 'ru' => 'Русский', + 'fi' => 'Suomi', + 'sv' => 'Svenska', + 'sk' => 'Slovenský', + 'sl' => 'Slovenščina', + 'th' => 'ไทย', + 'tr' => 'Türkçe', + 'uk' => 'Українська мова', + 'zh-cn' => '简体中文', + 'zh-tw' => '繁體中文', + 'vn' => 'Tiếng việt', ], - 'by_author' => 'Por :name', - ], - 'plugins' => [ - 'install' => 'Instalar plugins', - 'install_products' => 'Instalar produtos', - 'search' => 'Buscar plugin para instalar...', - 'installed' => 'Plugins instalados', - 'no_plugins' => 'Não há plugins instalados.', - 'recommended' => 'Recomendado', - 'plugin_label' => 'Plugin', - 'unknown_plugin' => 'Plugin removido do sistema de arquivos.', - 'select_label' => 'Selecionar ação...', - 'bulk_actions_label' => 'Ações em massa', - 'check_yes' => 'Sim', - 'check_no' => 'Não', - 'unfrozen' => 'Atualizações Ativas', - 'enabled' => 'Plugin Ativo', - 'freeze' => 'desativar atualizações para', - 'unfreeze' => 'ativar atualizações para', - 'enable' => 'ativo', - 'disable' => 'inativo', - 'refresh' => 'Atualizar', - 'remove' => 'Remover', - 'freeze_label' => 'Desativar Atualizações', - 'unfreeze_label' => 'Ativar Atualizações', - 'enable_label' => 'Ativar plugins', - 'disable_label' => 'Desativar plugins', - 'refresh_label' => 'Redefinir dados do plugin', - 'action_confirm' => 'Tem certeza de que deseja :action esses plugins?', - 'freeze_success' => 'Plugins selecionados foram desativados com sucesso.', - 'unfreeze_success' => 'Plugins selecionados foram ativados com sucesso.', - 'enable_success' => 'Plugins habilitados com sucesso.', - 'disable_success' => 'Plugins desabilitados com sucesso.', - 'refresh_confirm' => 'Tem certeza de que deseja redefinir os plugins selecionados? Isso redefinirá os dados de cada plugin, restaurando-os para o estado de inicial.', - 'refresh_success' => 'Plugins atualizados com sucesso.', - 'remove_confirm' => 'Tem certeza de que deseja remover os plug-ins selecionados? Isso também removerá todos os dados associados.', - 'remove_success' => 'Plugins removidos com sucesso do sistema.', - ], - 'project' => [ - 'attach' => 'Anexar Projeto', - 'detach' => 'Desanexar Projeto', - 'none' => 'Nenhum', - 'id' => [ - 'label' => 'Identificador do Projeto', - 'help' => 'Como encontrar o identificador do seu projeto', - 'missing' => 'Por favor, forneça um identificador de projeto para usar.', + 'directory' => [ + 'create_fail' => 'Não é possível criar o diretório: :name', ], - 'detach_confirm' => 'Tem certeza que deseja desanexar este projeto?', - 'unbind_success' => 'Projeto desanexado com sucesso.', - ], - 'settings' => [ - 'search' => 'Buscar', - ], - 'mail' => [ - 'log_file' => 'Arquivo de registro', - 'menu_label' => 'Configurações de E-mail', - 'menu_description' => 'Gerenciar configurações de e-mail.', - 'general' => 'Geral', - 'method' => 'Método de Envio', - 'sender_name' => 'Nome do Remetente', - 'sender_email' => 'E-mail do Remetente', - 'smtp' => 'SMTP', - 'smtp_address' => 'Endereço SMTP', - 'smtp_authorization' => 'Autenticação SMTP obrigatória', - 'smtp_authorization_comment' => 'Use esta opção se o seu servidor SMTP requer autenticação.', - 'smtp_username' => 'Usuário', - 'smtp_password' => 'Senha', - 'smtp_port' => 'Porta SMTP', - 'smtp_ssl' => 'Conexão SSL obrigatória', - 'smtp_encryption' => 'Protocolo de criptografia SMTP', - 'smtp_encryption_none' => 'Sem criptografia', - 'smtp_encryption_tls' => 'TLS', - 'smtp_encryption_ssl' => 'SSL', - 'sendmail' => 'Sendmail', - 'sendmail_path' => 'Caminho do Sendmail', - 'sendmail_path_comment' => 'Por favor, especifique o caminho do programa Sendmail.', - 'mailgun' => 'Mailgun', - 'mailgun_domain' => 'Domínio do Mailgun', - 'mailgun_domain_comment' => 'Por favor, forneça o domínio do Mailgun.', - 'mailgun_secret' => 'Mailgun Secret', - 'mailgun_secret_comment' => 'Forneça sua chave de API do Mailgun.', - 'mandrill' => 'Mandrill', - 'mandrill_secret' => 'Mandrill Secret', - 'mandrill_secret_comment' => 'Forneça sua chave de API do Mandrill', - 'ses' => 'SES', - 'ses_key' => 'Chave SES', - 'ses_key_comment' => 'Forneça sua chave do SES', - 'ses_secret' => 'SES Secret', - 'ses_secret_comment' => 'Forneça sua chave de API do SES.', - 'ses_region' => 'Região SES', - 'ses_region_comment' => 'Entre com sua região SES (exemplo: us-east-1)', - 'postmark' => 'Postmark', - 'postmark_token' => 'Postmark chave secreta', - 'postmark_token_comment' => 'Insira sua chave secreta da API Postmark', - 'drivers_hint_header' => 'Drivers não instalados', - 'drivers_hint_content' => 'Este método requer que o plugin ":plugin" esteja instalado.', - ], - 'mail_templates' => [ - 'menu_label' => 'Modelos de E-mail', - 'menu_description' => 'Modificar os modelos dos e-mails que são enviados para usuários e administradores.', - 'new_template' => 'Novo modelo', - 'new_layout' => 'Novo esboço', - 'new_partial' => 'Novo bloco', - 'template' => 'Modelo', - 'templates' => 'Modelos', - 'partial' => 'Bloco', - 'partials' => 'Blocos', - 'menu_layouts_label' => 'Esboços de e-mail', - 'menu_partials_label' => 'Blocos de e-mail', - 'layout' => 'Esboço', - 'layouts' => 'Esboços', - 'no_layout' => '-- Sem esboço --', - 'name' => 'Nome', - 'name_comment' => 'Nome exclusivo usado para se referir a este modelo', - 'code' => 'Código', - 'code_comment' => 'Código exclusivo usado para se referir a este modelo', - 'subject' => 'Assunto', - 'subject_comment' => 'Assunto da mensagem', - 'description' => 'Descrição', - 'content_html' => 'HTML', - 'content_css' => 'CSS', - 'content_text' => 'Texto Simples', - 'test_send' => 'Enviar mensagem de teste', - 'test_success' => 'Mensagem de teste enviada com sucesso.', - 'test_confirm' => 'Enviar uma mensagem de teste para :email. Continuar?', - 'creating' => 'Criando modelo...', - 'creating_layout' => 'Criando esboço...', - 'saving' => 'Salvando modelo...', - 'saving_layout' => 'Salvando esboço...', - 'delete_confirm' => 'Excluir este modelo?', - 'delete_layout_confirm' => 'Excluir este esboço?', - 'deleting' => 'Excluindo modelo...', - 'deleting_layout' => 'Excluindo esboço...', - 'sending' => 'Enviando mensagem de teste...', - 'return' => 'Retornar à lista de modelos', - 'options' => 'Opções', - 'disable_auto_inline_css' => 'Desativar CSS inline automático', - ], - 'mail_brand' => [ - 'menu_label' => 'Personalizar Email', - 'menu_description' => 'Modifique as cores e a aparência dos modelos de email.', - 'page_title' => 'Personalizar aparência de email', - 'sample_template' => [ - 'heading' => 'Título', - 'paragraph' => 'Este é um parágrafo preenchido com o Lorem Ipsum e um link. Cumque dicta doloremque eaque, enim error laboriosam pariatur possimus tenetur veritatis voluptas.', - 'table' => [ - 'item' => 'Item', - 'description' => 'Descrição', - 'price' => 'Priço', - 'centered' => 'Centralizado', - 'right_aligned' => 'Alinhado à direita', - ], - 'buttons' => [ - 'primary' => 'Botão principal', - 'positive' => 'Botão positivo', - 'negative' => 'Botão negativo', - ], - 'panel' => 'Esse painel não é incrível?', - 'more' => 'Mais alguns textos', - 'promotion' => 'Código do cupom: OCTOBER', - 'subcopy' => 'Esta é a subcópia do email', - 'thanks' => 'Obrigado', + 'file' => [ + 'create_fail' => 'Não é possível criar o arquivo: :name', ], - 'fields' => [ - '_section_background' => 'Fundo', - 'body_bg' => 'Fundo do corpo', - 'content_bg' => 'Fundo do conteúdo', - 'content_inner_bg' => 'Fundo de conteúdo interno', - '_section_buttons' => 'Botões', - 'button_text_color' => 'Cor do texto do botão', - 'button_primary_bg' => 'Fundo do botão principal', - 'button_positive_bg' => 'Fundo do botão positivo', - 'button_negative_bg' => 'Fundo do botão negativo', - '_section_type' => 'Tipografia', - 'header_color' => 'Cor do cabeçalho', - 'heading_color' => 'Cor dos títulos', - 'text_color' => 'Cor do texto', - 'link_color' => 'Cor do link', - 'footer_color' => 'Cor do rodapé', - '_section_borders' => 'Bordas', - 'body_border_color' => 'Cor da borda do corpo', - 'subcopy_border_color' => 'Cor da borda da subcópia', - 'table_border_color' => 'Cor da borda da tabela', - '_section_components' => 'Componentes', - 'panel_bg' => 'Fundo do painel', - 'promotion_bg' => 'Fundo do cupom promocional', - 'promotion_border_color' => 'Cor da borda cupom promocional', + 'combiner' => [ + 'not_found' => 'O arquivo combinador ":name" não foi encontrado.', ], - ], - 'install' => [ - 'project_label' => 'Anexar ao projeto', - 'plugin_label' => 'Instalar plugin', - 'theme_label' => 'Instalar tema', - 'missing_plugin_name' => 'Por favor, especifique um nome de plugin para instalar.', - 'missing_theme_name' => 'Por favor, especifique um nome de tema para instalar.', - 'install_completing' => 'Finalizando processo de instalação', - 'install_success' => 'O plugin foi instalado com sucesso.', - ], - 'updates' => [ - 'title' => 'Gerenciar atualizações', - 'name' => 'Atualização de software', - 'return_link' => 'Voltar às atualizações', - 'retry_label' => 'Tentar novamente', - 'plugin_name' => 'Nome', - 'plugin_code' => 'Código', - 'plugin_description' => 'Descrição', - 'plugin_version' => 'Versão', - 'plugin_author' => 'Autor', - 'plugin_not_found' => 'Plugin não encontrado', - 'plugin_version_not_found' => 'Versão do plugin não encontrada', - 'core_build' => 'Compilação :build', - 'core_build_help' => 'Última versão está disponível.', - 'core_downloading' => 'Baixando arquivos do aplicativo', - 'core_extracting' => 'Desempacotando arquivos do aplicativo', - 'core_set_build' => 'Configurando o número de compilação', - 'update_warnings_title' => 'Alguns problemas foram detectados e requerem atenção:', - 'update_warnings_plugin_missing' => 'O plugin :parent_code requer que o :code seja instalado antes de funcionar', - 'changelog' => 'Changelog', - 'changelog_view_details' => 'Ver detalhes', - 'themes' => 'Temas', - 'plugin_downloading' => 'Baixando o plugin: :name', - 'plugin_extracting' => 'Desempacotando o plugin: :name', - 'plugin_version_none' => 'Novo plugin', - 'plugin_current_version' => 'Versão atual', - 'theme_new_install' => 'Instalação do novo tema.', - 'theme_downloading' => 'Baixando o tema: :name', - 'theme_extracting' => 'Desempacotando o tema: :name', - 'update_label' => 'Atualizar', - 'update_completing' => 'Finalizando processo de atualização', - 'update_loading' => 'Carregando atualizações disponíveis...', - 'update_success' => 'O processo de atualização foi realizado com sucesso.', - 'update_failed_label' => 'Falha na atualização', - 'force_label' => 'Forçar atualização', - 'found' => [ - 'label' => 'Atualizações encontradas!', - 'help' => 'Clique em Atualizar para iniciar o processo de atualização.', + 'resizer' => [ + 'not_found' => 'O arquivo \':name\' a ser redimencionado não foi encontrado.', ], - 'none' => [ - 'label' => 'Nenhuma atualização', - 'help' => 'Não há novas atualizações.', + 'system' => [ + 'name' => 'Sistema', + 'menu_label' => 'Sistema', + 'categories' => [ + 'cms' => 'CMS', + 'misc' => 'Diversos', + 'logs' => 'Registros', + 'mail' => 'E-mail', + 'shop' => 'Loja ', + 'team' => 'Equipe', + 'users' => 'Usuários', + 'system' => 'Sistema', + 'social' => 'Social', + 'backend' => 'Backend', + 'events' => 'Eventos', + 'customers' => 'Clientes', + 'my_settings' => 'Configurações', + 'notifications' => 'Notificações', + ], ], - 'important_action' => [ - 'empty' => 'Selecionar ação', - 'confirm' => 'Confirmar atualização', - 'skip' => 'Pular este plugin (apenas uma vez)', - 'ignore' => 'Pular este plugin (sempre)', + 'theme' => [ + 'label' => 'Tema', + 'unnamed' => 'Tema sem nome', + 'name' => [ + 'label' => 'Nome do Tema', + 'help' => 'Nome do tema deve ser único. Por exemplo, RainLab.Vanilla', + ], ], - 'important_action_required' => 'Ação requerida', - 'important_view_guide' => 'Exibir guia de atualização', - 'important_view_release_notes' => 'Ver notas de lançamento', - 'important_alert_text' => 'Algumas atualizações precisam de sua atenção.', - 'details_title' => 'Detalhes do plugin', - 'details_view_homepage' => 'Visualizar página', - 'details_readme' => 'Documentação', - 'details_readme_missing' => 'Não foi fornecida nenhuma documentação.', - 'details_changelog' => 'Changelog', - 'details_changelog_missing' => 'Não há changelog fornecido.', - 'details_upgrades' => 'Guia de atualização', - 'details_upgrades_missing' => 'Não existem instruções de atualização.', - 'details_licence' => 'Licença', - 'details_licence_missing' => 'Não há licença fornecida.', - 'details_current_version' => 'Versão atual', - 'details_author' => 'Autor', - ], - 'server' => [ - 'connect_error' => 'Erro ao conectar-se com o servidor.', - 'response_not_found' => 'O servidor de atualização não pôde ser encontrado.', - 'response_invalid' => 'Resposta inválida do servidor.', - 'response_empty' => 'Resposta vazia do servidor.', - 'file_error' => 'Servidor não conseguiu entregar o pacote.', - 'file_corrupt' => 'Arquivo do servidor está corrompido.', - ], - 'behavior' => [ - 'missing_property' => 'Classe :class deve definir a propriedade $:property usada pelo comportamento :behavior.', - ], - 'config' => [ - 'not_found' => 'Não foi possível localizar o arquivo de configuração :file definido para :location.', - 'required' => 'Configuração usada em :location deve fornecer um valor :property.', - ], - 'zip' => [ - 'extract_failed' => 'Não foi possível extrair arquivo do núcleo ":file".', - ], - 'event_log' => [ - 'hint' => 'Este registro mostra a lista dos potenciais erros que ocorreram na aplicação, como exceções e informações de depuração.', - 'menu_label' => 'Registro de Eventos', - 'menu_description' => 'Visualize as mensagens do sistema, com horário e detalhes.', - 'empty_link' => 'Esvaziar registro de eventos', - 'empty_loading' => 'Esvaziando registro de eventos...', - 'empty_success' => 'Registro de eventos esvaziado com sucesso.', - 'return_link' => 'Retornar ao registro de eventos', - 'id' => 'ID', - 'id_label' => 'Identificador do Evento', - 'created_at' => 'Data & Hora', - 'message' => 'Mensagem', - 'level' => 'Nível', - 'preview_title' => 'Evento', - ], - 'request_log' => [ - 'hint' => 'Este registro mostra uma lista de requisições que requerem atenção. Por exemplo, se um usuário solicitar uma página não encontrada, será registrado com o status 404.', - 'menu_label' => 'Registro de Requisições', - 'menu_description' => 'Visualize requisições malsucedidas na aplicação, como Página não encontrada (404).', - 'empty_link' => 'Esvaziar registro de requisições.', - 'empty_loading' => 'Esvaziando registro de requisições...', - 'empty_success' => 'Registro de requisições esvaziado com sucesso.', - 'return_link' => 'Retornar ao registro de requisições', - 'id' => 'ID', - 'id_label' => 'ID do registro', - 'count' => 'Contador', - 'referer' => 'Referências', - 'url' => 'URL', - 'status_code' => 'Status', - 'preview_title' => 'Requisição', - ], - 'permissions' => [ - 'name' => 'Sistema', - 'manage_system_settings' => 'Gerenciar configurações do sistema', - 'manage_software_updates' => 'Gerenciar atualizações', - 'access_logs' => 'Exibir registros de sistema', - 'manage_mail_templates' => 'Gerenciar modelos de e-mail', - 'manage_mail_settings' => 'Gerenciar configurações de e-mail', - 'manage_other_administrators' => 'Gerenciar outros administradores', - 'impersonate_users' => 'Representar usuários', - 'manage_preferences' => 'Gerenciar preferências da área administrativa', - 'manage_editor' => 'Gerenciar preferências do editor de código', - 'manage_own_editor' => 'Gerenciar preferências pessoais do editor de código', - 'view_the_dashboard' => 'Visualizar o painel', - 'manage_default_dashboard' => 'Gerenciar o painel padrão', - 'manage_branding' => 'Personalizar o painel', - ], - 'log' => [ - 'menu_label' => 'Configurações de registros', - 'menu_description' => 'Especifique quais áreas devem usar o registro.', - 'default_tab' => 'Registros', - 'log_events' => 'Registrar eventos do sistema', - 'log_events_comment' => 'Armazene eventos do sistema no banco de dados, além do registro baseado em arquivo.', - 'log_requests' => 'Registrar requisições inválidas', - 'log_requests_comment' => 'Requisições do navegador que podem exigir atenção, como erros 404.', - 'log_theme' => 'Registrar alterações no tema', - 'log_theme_comment' => 'Quando uma alteração é feita no tema usando o backend.', - ], - 'media' => [ - 'invalid_path' => 'Caminho especificado inválido: \':path\'.', - 'folder_size_items' => 'item(s)', - ], - 'page' => [ - 'custom_error' => [ - 'label' => 'Erro de página', - 'help' => 'Desculpe, mas algo deu errado e a página não pode ser exibida.', + 'themes' => [ + 'install' => 'Instalar tema', + 'search' => 'Buscar temas para instalar...', + 'installed' => 'Temas instalados', + 'no_themes' => 'Não há temas instalados.', + 'recommended' => 'Recomendado', + 'remove_confirm' => 'Você tem certeza que deseja remover este tema?', ], - 'invalid_token' => [ - 'label' => 'Token de segurança inválido', + 'plugin' => [ + 'label' => 'Plugin', + 'unnamed' => 'Plugin sem nome', + 'name' => [ + 'label' => 'Nome do Plugin', + 'help' => 'Nomeie o plugin pelo seu código exclusivo. Por exemplo, RainLab.Blog', + ], + 'by_author' => 'Por :name', ], - 'maintenance' => [ - 'label' => 'Voltamos em breve!', - 'help' => 'No momento, estamos em manutenção, tente novamente mais tarde!', - 'message' => 'Mensagem:', - 'available_at' => 'Tente novamente após after:', + 'plugins' => [ + 'install' => 'Instalar plugins', + 'install_products' => 'Instalar produtos', + 'search' => 'Buscar plugin para instalar...', + 'installed' => 'Plugins instalados', + 'no_plugins' => 'Não há plugins instalados.', + 'recommended' => 'Recomendado', + 'plugin_label' => 'Plugin', + 'unknown_plugin' => 'Plugin removido do sistema de arquivos.', + 'disabled_by_config' => 'Plugin foi desativado pela configuração.', + 'disabled_by_system' => 'Plugin tem dependências ausentes ou desativados pelo sistema.', + 'select_label' => 'Selecionar ação...', + 'bulk_actions_label' => 'Ações em massa', + 'check_yes' => 'Sim', + 'check_no' => 'Não', + 'unfrozen' => 'Atualizações Ativas', + 'enabled' => 'Plugin Ativo', + 'freeze' => 'desativar atualizações para', + 'unfreeze' => 'ativar atualizações para', + 'enable' => 'ativo', + 'disable' => 'inativo', + 'refresh' => 'Atualizar', + 'remove' => 'Remover', + 'freeze_label' => 'Desativar Atualizações', + 'unfreeze_label' => 'Ativar Atualizações', + 'enable_label' => 'Ativar plugins', + 'disable_label' => 'Desativar plugins', + 'refresh_label' => 'Redefinir dados do plugin', + 'action_confirm' => 'Tem certeza de que deseja :action esses plugins?', + 'freeze_success' => 'Plugins selecionados foram desativados com sucesso.', + 'unfreeze_success' => 'Plugins selecionados foram ativados com sucesso.', + 'enable_success' => 'Plugins habilitados com sucesso.', + 'disable_success' => 'Plugins desabilitados com sucesso.', + 'refresh_confirm' => 'Tem certeza de que deseja redefinir os plugins selecionados? Isso redefinirá os dados de cada plugin, restaurando-os para o estado de inicial.', + 'refresh_success' => 'Plugins atualizados com sucesso.', + 'remove_confirm' => 'Tem certeza de que deseja remover os plugins selecionados? Isso também removerá todos os dados associados.', + 'remove_success' => 'Plugins removidos com sucesso do sistema.', + ], + 'project' => [ + 'attach' => 'Anexar Projeto', + 'detach' => 'Desanexar Projeto', + 'none' => 'Nenhum', + 'id' => [ + 'label' => 'Identificador do Projeto', + 'help' => 'Como encontrar o identificador do seu projeto', + 'missing' => 'Por favor, forneça um identificador de projeto para usar.', + ], + 'detach_confirm' => 'Tem certeza que deseja desanexar este projeto?', + 'unbind_success' => 'Projeto desanexado com sucesso.', + ], + 'mail' => [ + 'log_file' => 'Arquivo de registro', + 'menu_label' => 'Configurações de E-mail', + 'menu_description' => 'Gerenciar configurações de e-mail.', + 'general' => 'Geral', + 'method' => 'Método de Envio', + 'sender_name' => 'Nome do Remetente', + 'sender_email' => 'E-mail do Remetente', + 'smtp' => 'SMTP', + 'smtp_address' => 'Endereço SMTP', + 'smtp_authorization' => 'Autenticação SMTP obrigatória', + 'smtp_authorization_comment' => 'Use esta opção se o seu servidor SMTP requer autenticação.', + 'smtp_username' => 'Usuário', + 'smtp_password' => 'Senha', + 'smtp_port' => 'Porta SMTP', + 'smtp_ssl' => 'Conexão SSL obrigatória', + 'smtp_encryption' => 'Protocolo de criptografia SMTP', + 'smtp_encryption_none' => 'Sem criptografia', + 'smtp_encryption_tls' => 'TLS', + 'smtp_encryption_ssl' => 'SSL', + 'sendmail' => 'Sendmail', + 'sendmail_path' => 'Caminho do Sendmail', + 'sendmail_path_comment' => 'Por favor, especifique o caminho do programa Sendmail.', + 'mailgun' => 'Mailgun', + 'mailgun_domain' => 'Domínio do Mailgun', + 'mailgun_domain_comment' => 'Por favor, forneça o domínio do Mailgun.', + 'mailgun_secret' => 'Mailgun Secret', + 'mailgun_secret_comment' => 'Forneça sua chave de API do Mailgun.', + 'mandrill' => 'Mandrill', + 'mandrill_secret' => 'Mandrill Secret', + 'mandrill_secret_comment' => 'Forneça sua chave de API do Mandrill', + 'ses' => 'SES', + 'ses_key' => 'Chave SES', + 'ses_key_comment' => 'Forneça sua chave do SES', + 'ses_secret' => 'SES Secret', + 'ses_secret_comment' => 'Forneça sua chave de API do SES.', + 'ses_region' => 'Região SES', + 'ses_region_comment' => 'Entre com sua região SES (exemplo: us-east-1)', + 'postmark' => 'Postmark', + 'postmark_token' => 'Postmark chave secreta', + 'postmark_token_comment' => 'Insira sua chave secreta da API Postmark', + 'drivers_hint_header' => 'Drivers não instalados', + 'drivers_hint_content' => 'Este método requer que o plugin ":plugin" esteja instalado.', + ], + 'mail_templates' => [ + 'menu_label' => 'Modelos de E-mail', + 'menu_description' => 'Modificar os modelos dos e-mails que são enviados para usuários e administradores.', + 'new_template' => 'Novo modelo', + 'new_layout' => 'Novo esboço', + 'new_partial' => 'Novo bloco', + 'template' => 'Modelo', + 'templates' => 'Modelos', + 'partial' => 'Bloco', + 'partials' => 'Blocos', + 'menu_layouts_label' => 'Esboços de e-mail', + 'menu_partials_label' => 'Blocos de e-mail', + 'layout' => 'Esboço', + 'layouts' => 'Esboços', + 'no_layout' => '-- Sem esboço --', + 'name' => 'Nome', + 'name_comment' => 'Nome exclusivo usado para se referir a este modelo', + 'code' => 'Código', + 'code_comment' => 'Código exclusivo usado para se referir a este modelo', + 'subject' => 'Assunto', + 'subject_comment' => 'Assunto da mensagem', + 'description' => 'Descrição', + 'content_html' => 'HTML', + 'content_css' => 'CSS', + 'content_text' => 'Texto Simples', + 'test_send' => 'Enviar mensagem de teste', + 'test_success' => 'Mensagem de teste enviada com sucesso.', + 'test_confirm' => 'Enviar uma mensagem de teste para :email. Continuar?', + 'creating' => 'Criando modelo...', + 'creating_layout' => 'Criando esboço...', + 'saving' => 'Salvando modelo...', + 'saving_layout' => 'Salvando esboço...', + 'delete_confirm' => 'Excluir este modelo?', + 'delete_layout_confirm' => 'Excluir este esboço?', + 'deleting' => 'Excluindo modelo...', + 'deleting_layout' => 'Excluindo esboço...', + 'sending' => 'Enviando mensagem de teste...', + 'return' => 'Retornar à lista de modelos', + 'options' => 'Opções', + 'disable_auto_inline_css' => 'Desativar CSS inline automático', + ], + 'mail_brand' => [ + 'menu_label' => 'Personalizar Email', + 'menu_description' => 'Modifique as cores e a aparência dos modelos de email.', + 'page_title' => 'Personalizar aparência de email', + 'sample_template' => [ + 'heading' => 'Título', + 'paragraph' => 'Este é um parágrafo preenchido com o Lorem Ipsum e um link. Cumque dicta doloremque eaque, enim error laboriosam pariatur possimus tenetur veritatis voluptas.', + 'table' => [ + 'item' => 'Item', + 'description' => 'Descrição', + 'price' => 'Priço', + 'centered' => 'Centralizado', + 'right_aligned' => 'Alinhado à direita', + ], + 'buttons' => [ + 'primary' => 'Botão principal', + 'positive' => 'Botão positivo', + 'negative' => 'Botão negativo', + ], + 'panel' => 'Esse painel não é incrível?', + 'more' => 'Mais alguns textos', + 'promotion' => 'Código do cupom: OCTOBER', + 'subcopy' => 'Esta é a subcópia do email', + 'thanks' => 'Obrigado', + ], + 'fields' => [ + '_section_background' => 'Fundo', + 'body_bg' => 'Fundo do corpo', + 'content_bg' => 'Fundo do conteúdo', + 'content_inner_bg' => 'Fundo de conteúdo interno', + '_section_buttons' => 'Botões', + 'button_text_color' => 'Cor do texto do botão', + 'button_primary_bg' => 'Fundo do botão principal', + 'button_positive_bg' => 'Fundo do botão positivo', + 'button_negative_bg' => 'Fundo do botão negativo', + '_section_type' => 'Tipografia', + 'header_color' => 'Cor do cabeçalho', + 'heading_color' => 'Cor dos títulos', + 'text_color' => 'Cor do texto', + 'link_color' => 'Cor do link', + 'footer_color' => 'Cor do rodapé', + '_section_borders' => 'Bordas', + 'body_border_color' => 'Cor da borda do corpo', + 'subcopy_border_color' => 'Cor da borda da subcópia', + 'table_border_color' => 'Cor da borda da tabela', + '_section_components' => 'Componentes', + 'panel_bg' => 'Fundo do painel', + 'promotion_bg' => 'Fundo do cupom promocional', + 'promotion_border_color' => 'Cor da borda cupom promocional', + ], + ], + 'install' => [ + 'project_label' => 'Anexar ao projeto', + 'plugin_label' => 'Instalar plugin', + 'theme_label' => 'Instalar tema', + 'missing_plugin_name' => 'Por favor, especifique um nome de plugin para instalar.', + 'missing_theme_name' => 'Por favor, especifique um nome de tema para instalar.', + 'install_completing' => 'Finalizando processo de instalação', + 'install_success' => 'O plugin foi instalado com sucesso.', + ], + 'updates' => [ + 'title' => 'Gerenciar atualizações', + 'name' => 'Atualização de software', + 'return_link' => 'Voltar às atualizações', + 'retry_label' => 'Tentar novamente', + 'plugin_name' => 'Nome', + 'plugin_code' => 'Código', + 'plugin_description' => 'Descrição', + 'plugin_version' => 'Versão', + 'plugin_latest' => 'Mais recentes', + 'plugin_author' => 'Autor', + 'plugin_not_found' => 'Plugin não encontrado', + 'plugin_version_not_found' => 'Versão do plugin não encontrada', + 'theme_not_found' => 'Tema não encontrado', + 'core_build' => 'Compilação :build', + 'core_build_help' => 'Última versão está disponível.', + 'core_downloading' => 'Baixando arquivos do aplicativo', + 'core_extracting' => 'Desempacotando arquivos do aplicativo', + 'core_set_build' => 'Configurando o número de compilação', + 'update_warnings_title' => 'Alguns problemas foram detectados e requerem atenção:', + 'update_warnings_plugin_missing' => 'O plugin :parent_code requer que o :code seja instalado antes de funcionar', + 'changelog' => 'Changelog', + 'changelog_view_details' => 'Ver detalhes', + 'themes' => 'Temas', + 'plugin_downloading' => 'Baixando o plugin: :name', + 'plugin_removing' => 'Removendo o plugin: :name', + 'plugin_extracting' => 'Desempacotando o plugin: :name', + 'plugin_version_none' => 'Novo plugin', + 'plugin_current_version' => 'Versão atual', + 'theme_new_install' => 'Instalação do novo tema.', + 'theme_downloading' => 'Baixando o tema: :name', + 'theme_removing' => 'Removendo tema: :name', + 'theme_extracting' => 'Desempacotando o tema: :name', + 'update_label' => 'Atualizar', + 'update_completing' => 'Finalizando processo de atualização', + 'update_loading' => 'Carregando atualizações disponíveis...', + 'update_success' => 'O processo de atualização foi realizado com sucesso.', + 'update_failed_label' => 'Falha na atualização', + 'force_label' => 'Forçar atualização', + 'found' => [ + 'label' => 'Atualizações encontradas!', + 'help' => 'Clique em Atualizar para iniciar o processo de atualização.', + ], + 'none' => [ + 'label' => 'Nenhuma atualização', + 'help' => 'Não há novas atualizações.', + ], + 'important_action' => [ + 'empty' => 'Selecionar ação', + 'confirm' => 'Confirmar atualização', + 'skip' => 'Pular este plugin (apenas uma vez)', + 'ignore' => 'Pular este plugin (sempre)', + ], + 'important_action_required' => 'Ação requerida', + 'important_view_guide' => 'Exibir guia de atualização', + 'important_view_release_notes' => 'Ver notas de lançamento', + 'important_alert_text' => 'Algumas atualizações precisam de sua atenção.', + 'details_title' => 'Detalhes do plugin', + 'details_title_plugin' => 'Detalhes do plugin', + 'details_title_theme' => 'Detalhes do tema', + 'details_view_homepage' => 'Visualizar página', + 'details_readme' => 'Documentação', + 'details_readme_missing' => 'Não foi fornecida nenhuma documentação.', + 'details_changelog' => 'Registro de mudanças', + 'details_changelog_missing' => 'Não há changelog fornecido.', + 'details_upgrades' => 'Guia de atualização', + 'details_upgrades_missing' => 'Não existem instruções de atualização.', + 'details_licence' => 'Licença', + 'details_view_licence' => 'Ver licença', + 'details_licence_missing' => 'Não há licença fornecida.', + 'details_current_version' => 'Versão atual', + 'details_author' => 'Autor', + ], + 'market' => [ + 'menu_label' => 'Mercado', + 'menu_description' => 'Gerencie e instale plugins e temas.', + 'content_loading' => 'Carregando...', + ], + 'server' => [ + 'connect_error' => 'Erro ao conectar-se com o servidor.', + 'response_not_found' => 'O servidor de atualização não pôde ser encontrado.', + 'response_invalid' => 'Resposta inválida do servidor.', + 'response_empty' => 'Resposta vazia do servidor.', + 'file_error' => 'Servidor não conseguiu entregar o pacote.', + 'file_corrupt' => 'Arquivo do servidor está corrompido.', + ], + 'behavior' => [ + 'missing_property' => 'Classe :class deve definir a propriedade $:property usada pelo comportamento :behavior.', + ], + 'config' => [ + 'not_found' => 'Não foi possível localizar o arquivo de configuração :file definido para :location.', + 'required' => 'Configuração usada em :location deve fornecer um valor :property.', + ], + 'zip' => [ + 'extract_failed' => 'Não foi possível extrair arquivo do núcleo ":file".', + ], + 'event_log' => [ + 'hint' => 'Este registro mostra a lista dos potenciais erros que ocorreram na aplicação, como exceções e informações de depuração.', + 'menu_label' => 'Registro de Eventos', + 'menu_description' => 'Visualize as mensagens do sistema, com horário e detalhes.', + 'empty_link' => 'Esvaziar registro de eventos', + 'empty_loading' => 'Esvaziando registro de eventos...', + 'empty_success' => 'Registro de eventos esvaziado com sucesso.', + 'return_link' => 'Retornar ao registro de eventos', + 'id' => 'ID', + 'id_label' => 'Identificador do Evento', + 'created_at' => 'Data & Hora', + 'message' => 'Mensagem', + 'level' => 'Nível', + 'preview_title' => 'Evento', + ], + 'request_log' => [ + 'hint' => 'Este registro mostra uma lista de requisições que requerem atenção. Por exemplo, se um usuário solicitar uma página não encontrada, será registrado com o status 404.', + 'menu_label' => 'Registro de Requisições', + 'menu_description' => 'Visualize requisições malsucedidas na aplicação, como Página não encontrada (404).', + 'empty_link' => 'Esvaziar registro de requisições.', + 'empty_loading' => 'Esvaziando registro de requisições...', + 'empty_success' => 'Registro de requisições esvaziado com sucesso.', + 'return_link' => 'Retornar ao registro de requisições', + 'id' => 'ID', + 'id_label' => 'ID do registro', + 'count' => 'Contador', + 'referer' => 'Referências', + 'url' => 'URL', + 'status_code' => 'Status', + 'preview_title' => 'Requisição', + ], + 'permissions' => [ + 'name' => 'Sistema', + 'manage_system_settings' => 'Gerenciar configurações do sistema', + 'manage_software_updates' => 'Gerenciar atualizações', + 'access_logs' => 'Exibir registros de sistema', + 'manage_mail_templates' => 'Gerenciar modelos de e-mail', + 'manage_mail_settings' => 'Gerenciar configurações de e-mail', + 'manage_other_administrators' => 'Gerenciar outros administradores', + 'manage_preferences' => 'Gerenciar preferências da área administrativa', + 'manage_editor' => 'Gerenciar preferências do editor de código', + 'view_the_dashboard' => 'Visualizar o painel', + 'manage_default_dashboard' => 'Gerenciar o painel padrão', + 'manage_branding' => 'Personalizar o painel', + ], + 'log' => [ + 'menu_label' => 'Configurações de registros', + 'menu_description' => 'Especifique quais áreas devem usar o registro.', + 'default_tab' => 'Registros', + 'log_events' => 'Registrar eventos do sistema', + 'log_events_comment' => 'Armazene eventos do sistema no banco de dados, além do registro baseado em arquivo.', + 'log_requests' => 'Registrar requisições inválidas', + 'log_requests_comment' => 'Requisições do navegador que podem exigir atenção, como erros 404.', + 'log_theme' => 'Registrar alterações no tema', + 'log_theme_comment' => 'Quando uma alteração é feita no tema usando o backend.', + ], + 'media' => [ + 'invalid_path' => 'Caminho especificado inválido: \':path\'.', + 'folder_size_items' => 'item(s)', + ], + 'page' => [ + 'not_found' => [ + 'label' => 'Página não encontrada', + 'help' => 'A página solicitada não pode ser encontrada.', + ], + 'custom_error' => [ + 'label' => 'Erro de página', + 'help' => 'Desculpe, mas algo deu errado e a página não pode ser exibida.', + ], + 'invalid_token' => [ + 'label' => 'Token de segurança inválido', + ], + 'maintenance' => [ + 'label' => 'Voltamos em breve!', + 'help' => 'No momento, estamos em manutenção, tente novamente mais tarde!', + 'message' => 'Mensagem:', + 'available_at' => 'Tente novamente após after:', + ], + ], + 'pagination' => [ + 'previous' => 'Anterior', + 'next' => 'Próximo', ], - ], - 'pagination' => [ - 'previous' => 'Anterior', - 'next' => 'Próximo', - ], ]; diff --git a/modules/system/lang/pt-br/validation.php b/modules/system/lang/pt-br/validation.php index 9793e5ec28..c114daa4f7 100644 --- a/modules/system/lang/pt-br/validation.php +++ b/modules/system/lang/pt-br/validation.php @@ -129,7 +129,11 @@ | */ - 'custom' => [], + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], /* |-------------------------------------------------------------------------- diff --git a/modules/system/lang/pt-pt.json b/modules/system/lang/pt-pt.json index 0e46892b98..af61fbaf93 100644 --- a/modules/system/lang/pt-pt.json +++ b/modules/system/lang/pt-pt.json @@ -12,5 +12,21 @@ "Unable to find the specified settings.": "Impossível encontrar as configurações solicitadas.", "The settings page is missing a Model definition.": "Falta uma definição de modelo na página de configurações.", ":name settings updated": "Configurações para :name foram atualizados com sucesso.", - "Return to System Settings": "Regressar para as configurações do sistema" + "Return to System Settings": "Regressar para as configurações do sistema", + "There is no documentation provided.": "Não foi fornecida nenhuma documentação.", + "There are no upgrade instructions provided.": "Não existem instruções de actualização.", + "There is no licence provided.": "Não foi fornecida licença.", + "Documentation": "Documentação", + "Upgrade Guide": "Guia de actualização", + "Licence": "Licença", + "Attach to Project": "Anexar ao projecto", + "Project ID": "Identificador do Projeto", + "How to find your Project ID": "Como encontrar o identificador do projecto", + "Manage Updates": "Gerir actualizações", + "Software Update": "Actualização de software", + "Return to System Updates": "Voltar às actualizações", + "Try Again": "Tentar novamente", + "Unpacking application files": "Descomprimindo ficheiros do aplicação", + "Update Failed": "Falha na actualização", + "Unpacking plugin: :name": "Descomprimindo a extensão: :name" } \ No newline at end of file diff --git a/modules/system/lang/pt-pt/lang.php b/modules/system/lang/pt-pt/lang.php index f153430ebc..6a953fd0cd 100644 --- a/modules/system/lang/pt-pt/lang.php +++ b/modules/system/lang/pt-pt/lang.php @@ -126,8 +126,6 @@ 'detach' => 'Desanexar Projecto', 'none' => 'Nenhum', 'id' => [ - 'label' => 'Identificador do Projeto', - 'help' => 'Como encontrar o identificador do projecto', 'missing' => 'Por favor, forneça um identificador de projecto para utilizar.', ], 'detach_confirm' => 'Tem a certeza que deseja desanexar este projecto?', @@ -213,7 +211,6 @@ 'return' => 'Regressar à lista de modelos', ], 'install' => [ - 'project_label' => 'Anexar ao projecto', 'plugin_label' => 'Instalar extensão', 'theme_label' => 'Instalar tema', 'missing_plugin_name' => 'Por favor, especifique um nome da extensão para instalar.', @@ -222,10 +219,6 @@ 'install_success' => 'A extensão foi instalada com sucesso.', ], 'updates' => [ - 'title' => 'Gerir actualizações', - 'name' => 'Actualização de software', - 'return_link' => 'Voltar às actualizações', - 'retry_label' => 'Tentar novamente', 'plugin_name' => 'Nome', 'plugin_code' => 'Código', 'plugin_description' => 'Descrição', @@ -235,10 +228,8 @@ 'core_build' => 'Compilação :build', 'core_build_help' => 'Última versão está disponível.', 'core_downloading' => 'Descarregando ficheiros da aplicação', - 'core_extracting' => 'Descomprimindo ficheiros do aplicação', 'themes' => 'Temas', 'plugin_downloading' => 'Baixando a extensão: :name', - 'plugin_extracting' => 'Descomprimindo a extensão: :name', 'plugin_version_none' => 'Nova extensão', 'plugin_current_version' => 'Versão actual', 'theme_new_install' => 'Instalação do novo tema.', @@ -248,7 +239,6 @@ 'update_completing' => 'Finalizando processo de actualização', 'update_loading' => 'Carregando atualizações disponíveis...', 'update_success' => 'O processo de actualização foi realizado com sucesso.', - 'update_failed_label' => 'Falha na actualização', 'force_label' => 'Forçar actualização', 'found' => [ 'label' => 'Actualizações encontradas!', @@ -270,14 +260,8 @@ 'important_alert_text' => 'Algumas actualizações precisam de sua atenção.', 'details_title' => 'Detalhes da extensão', 'details_view_homepage' => 'Visualizar página', - 'details_readme' => 'Documentação', - 'details_readme_missing' => 'Não foi fornecida nenhuma documentação.', 'details_changelog' => 'Registo de alterações', 'details_changelog_missing' => 'Não foi fornecido registo de alterações.', - 'details_upgrades' => 'Guia de actualização', - 'details_upgrades_missing' => 'Não existem instruções de actualização.', - 'details_licence' => 'Licença', - 'details_licence_missing' => 'Não foi fornecida licença.', 'details_current_version' => 'Versão actual', 'details_author' => 'Autor', ], diff --git a/modules/system/lang/ro.json b/modules/system/lang/ro.json index ec3e2f44ad..89d92c9313 100644 --- a/modules/system/lang/ro.json +++ b/modules/system/lang/ro.json @@ -20,5 +20,14 @@ "Settings": "Setari", "The settings page is missing a Model definition.": "Paginii de setari ii lipseste o definitie de Model.", ":name settings updated": "Setarile pentru :name au fost actualizate cu succes.", - "Return to System Settings": "Intoarcere la setarile sistemului." + "Return to System Settings": "Intoarcere la setarile sistemului.", + "Attach to Project": "Atasare la Proiect", + "Project ID": "ID Proiect", + "How to find your Project ID": "Cum sa gasiti ID-ul Proiectului", + "Manage Updates": "Gestioneaza Actualizari", + "Software Update": "Actualizare Software", + "Try Again": "Incercati din nou", + "Unpacking application files": "Se dezarhiveaza fisierele aplicatiei", + "Update Failed": "Actualizarea a esuat", + "Unpacking plugin: :name": "Se dezarhiveaza plugin-ul: :name" } \ No newline at end of file diff --git a/modules/system/lang/ro/lang.php b/modules/system/lang/ro/lang.php index 2ff6e0e582..acd648c247 100644 --- a/modules/system/lang/ro/lang.php +++ b/modules/system/lang/ro/lang.php @@ -56,8 +56,6 @@ 'detach' => 'Detasare Proiect', 'none' => 'Niciunul', 'id' => [ - 'label' => 'ID Proiect', - 'help' => 'Cum sa gasiti ID-ul Proiectului', 'missing' => 'Va rugam sa specificati un ID de Proiect.', ], 'detach_confirm' => 'Sunteti sigur(a) ca doriti sa detasati acest proiect?', @@ -110,16 +108,12 @@ 'return' => 'Intoarcere la lista de sabloane', ], 'install' => [ - 'project_label' => 'Atasare la Proiect', 'plugin_label' => 'Instalare Plugin', 'missing_plugin_name' => 'Va rugam sa specificati un nume de Plugin pentru instalare.', 'install_completing' => 'Se finalizeaza procesul de instalare', 'install_success' => 'Acest plugin a fost instalat cu succes.', ], 'updates' => [ - 'title' => 'Gestioneaza Actualizari', - 'name' => 'Actualizare Software', - 'retry_label' => 'Incercati din nou', 'plugin_name' => 'Nume', 'plugin_description' => 'Descriere', 'plugin_version' => 'Versiune', @@ -128,9 +122,7 @@ 'core_build' => 'Versiune :build', 'core_build_help' => 'Ultima versiune este disponibila.', 'core_downloading' => 'Se descarca fisierele aplicatiei', - 'core_extracting' => 'Se dezarhiveaza fisierele aplicatiei', 'plugin_downloading' => 'Se descarca plugin-ul: :name', - 'plugin_extracting' => 'Se dezarhiveaza plugin-ul: :name', 'plugin_version_none' => 'Plugin nou', 'theme_new_install' => 'Instalare tema noua.', 'theme_downloading' => 'Se descarca tema: :name', @@ -139,7 +131,6 @@ 'update_completing' => 'Se finalizeaza procesul de actualizare', 'update_loading' => 'Se incarca actualizarile disponibile...', 'update_success' => 'Procesul de actualizare a fost finalizat cu succes.', - 'update_failed_label' => 'Actualizarea a esuat', 'force_label' => 'Forteaza actualizarea', 'found' => [ 'label' => 'Au fost gasite noi actualizari!', diff --git a/modules/system/lang/rs.json b/modules/system/lang/rs.json index afc7980b50..1830cd7f41 100644 --- a/modules/system/lang/rs.json +++ b/modules/system/lang/rs.json @@ -13,5 +13,21 @@ "Unable to find the specified settings.": "Nije moguće pronaći navedena podešavanja.", "The settings page is missing a Model definition.": "Na stranici sa podešavanjima nedostaje definicija modela.", ":name settings updated": "Podešavanje :name je uspešno ažurirano.", - "Return to System Settings": "Nazad na sistemska podešavanja" + "Return to System Settings": "Nazad na sistemska podešavanja", + "There is no documentation provided.": "Nema dokumentacije.", + "There are no upgrade instructions provided.": "Nema vodiča za nadogradnju.", + "There is no licence provided.": "Nema licence.", + "Documentation": "Dokumentacija", + "Upgrade Guide": "Vodič za nadogradnju", + "Licence": "Licenca", + "Attach to Project": "Dodaj projektu", + "Project ID": "ID projekta", + "How to find your Project ID": "Kako pronaći svoj ID projekta", + "Manage Updates": "Upravljaj ispravkama", + "Software Update": "Ažuriraj softver", + "Return to System Updates": "Povratak na ažuriranje sistema", + "Try Again": "Pokušaj ponovo", + "Unpacking application files": "Ekstrakcija fajlova aplikacije", + "Update Failed": "Ažuriranje je neuspešno", + "Unpacking plugin: :name": "Ektrakcija priključka: :name" } \ No newline at end of file diff --git a/modules/system/lang/rs/lang.php b/modules/system/lang/rs/lang.php index 9219578b40..7b5a5a2911 100644 --- a/modules/system/lang/rs/lang.php +++ b/modules/system/lang/rs/lang.php @@ -143,8 +143,6 @@ 'detach' => 'Odvoji projekat', 'none' => 'Nijedan', 'id' => [ - 'label' => 'ID projekta', - 'help' => 'Kako pronaći svoj ID projekta', 'missing' => 'Specifikuj ID projekta za korišćenje.', ], 'detach_confirm' => 'Da li zaista želite da odvojite ovaj projekat?', @@ -290,7 +288,6 @@ ], ], 'install' => [ - 'project_label' => 'Dodaj projektu', 'plugin_label' => 'Instaliraj priključak', 'theme_label' => 'Instaliraj temu', 'missing_plugin_name' => 'Specificiraj naziv priključka za instaliranje.', @@ -299,10 +296,6 @@ 'install_success' => 'Priključak je instaliran uspešno', ], 'updates' => [ - 'title' => 'Upravljaj ispravkama', - 'name' => 'Ažuriraj softver', - 'return_link' => 'Povratak na ažuriranje sistema', - 'retry_label' => 'Pokušaj ponovo', 'plugin_name' => 'Naziv', 'plugin_code' => 'Kod', 'plugin_description' => 'Opis', @@ -312,13 +305,11 @@ 'core_build' => 'Verzija :build', 'core_build_help' => 'Novija verzija je dostupna.', 'core_downloading' => 'Dopremanje fajlova aplikacije', - 'core_extracting' => 'Ekstrakcija fajlova aplikacije', 'core_set_build' => 'Postavljanje broja verzije', 'changelog' => 'Lista izmena', 'changelog_view_details' => 'Prikaži detalje', 'themes' => 'Teme', 'plugin_downloading' => 'Dopremanje priključka: :name', - 'plugin_extracting' => 'Ektrakcija priključka: :name', 'plugin_version_none' => 'Novi priključak', 'plugin_current_version' => 'Trenutna verzija', 'theme_new_install' => 'Instalacija nove teme.', @@ -328,7 +319,6 @@ 'update_completing' => 'Završavanje procesa ažuriranja', 'update_loading' => 'Učitavanje mogućih ispravki...', 'update_success' => 'Proces ažuriranja je završen', - 'update_failed_label' => 'Ažuriranje je neuspešno', 'force_label' => 'Ažuriraj na silu', 'found' => [ 'label' => 'Nove ispravke su pronađene!', @@ -350,14 +340,8 @@ 'important_alert_text' => 'Neke ispravke zahtevaju vašu pažnju.', 'details_title' => 'Detalji priključka', 'details_view_homepage' => 'Prikaži početnu stranicu', - 'details_readme' => 'Dokumentacija', - 'details_readme_missing' => 'Nema dokumentacije.', 'details_changelog' => 'Lista izmena', 'details_changelog_missing' => 'Nema liste izmena.', - 'details_upgrades' => 'Vodič za nadogradnju', - 'details_upgrades_missing' => 'Nema vodiča za nadogradnju.', - 'details_licence' => 'Licenca', - 'details_licence_missing' => 'Nema licence.', 'details_current_version' => 'Trenutna verzija', 'details_author' => 'Autor', ], diff --git a/modules/system/lang/ru.json b/modules/system/lang/ru.json index c26610ad26..e1c3121e86 100644 --- a/modules/system/lang/ru.json +++ b/modules/system/lang/ru.json @@ -23,5 +23,22 @@ "The settings page is missing a Model definition.": "На странице настроек отсутствует определение модели", ":name settings updated": "Настройки для :name успешно обновлены.", "Return to System Settings": "Вернуться к системным настройкам", - "Find a Setting...": "Найти настройки..." + "Find a Setting...": "Найти настройки...", + "Marketplace": "Маркетплейс", + "There is no documentation provided.": "Документация не предоставлена.", + "There are no upgrade instructions provided.": "Инструкция по обновлению не предоставлена.", + "There is no licence provided.": "Лицензия не предоставляется.", + "Documentation": "Документация", + "Upgrade Guide": "Инструкция по обновлению", + "Licence": "Лицензия", + "Attach to Project": "Присоединить к проекту", + "Project ID": "Идентификатор проекта", + "How to find your Project ID": "Как найти идентификатор вашего проекта", + "Manage Updates": "Менеджер обновлений", + "Software Update": "Обновление ПО", + "Return to System Updates": "Вернуться к системе обновлений", + "Try Again": "Попробовать еще раз", + "Unpacking application files": "Распаковка файлов приложения", + "Update Failed": "Не удалось выполнить обновление", + "Unpacking plugin: :name": "Распаковка плагина: :name" } \ No newline at end of file diff --git a/modules/system/lang/ru/lang.php b/modules/system/lang/ru/lang.php index 2791c8435e..0c28d9f48f 100644 --- a/modules/system/lang/ru/lang.php +++ b/modules/system/lang/ru/lang.php @@ -184,8 +184,6 @@ 'detach' => 'Отсоединить проект', 'none' => 'Не обнаружено', 'id' => [ - 'label' => 'Идентификатор проекта', - 'help' => 'Как найти идентификатор вашего проекта', 'missing' => 'Пожалуйста, укажите идентификатор вашего проекта для использования.', ], 'detach_confirm' => 'Вы уверены, что хотите отсоединить этот проект?', @@ -331,7 +329,6 @@ ], ], 'install' => [ - 'project_label' => 'Присоединить к проекту', 'plugin_label' => 'Установить плагин', 'theme_label' => 'Установить тему', 'missing_plugin_name' => 'Пожалуйста, укажите название плагина для установки.', @@ -340,10 +337,6 @@ 'install_success' => 'Плагин был успешно установлен.', ], 'updates' => [ - 'title' => 'Менеджер обновлений', - 'name' => 'Обновление ПО', - 'return_link' => 'Вернуться к системе обновлений', - 'retry_label' => 'Попробовать еще раз', 'plugin_name' => 'Название', 'plugin_code' => 'Код', 'plugin_description' => 'Описание', @@ -356,14 +349,12 @@ 'core_build' => 'Сборка :build', 'core_build_help' => 'Последняя доступная сборка.', 'core_downloading' => 'Загрузка файлов приложения', - 'core_extracting' => 'Распаковка файлов приложения', 'core_set_build' => 'Установка номера сборки', 'changelog' => 'История изменений', 'changelog_view_details' => 'Подробнее', 'themes' => 'Темы', 'plugin_downloading' => 'Загрузка плагина: :name', 'plugin_removing' => 'Удаление плагина: :name', - 'plugin_extracting' => 'Распаковка плагина: :name', 'plugin_version_none' => 'Новый плагин', 'plugin_current_version' => 'Текущая версия', 'theme_new_install' => 'Новая тема установлена.', @@ -374,7 +365,6 @@ 'update_completing' => 'Завершение процесса обновления', 'update_loading' => 'Поиск доступных обновлений...', 'update_success' => 'Процесс обновления был успешно завершен.', - 'update_failed_label' => 'Не удалось выполнить обновление', 'force_label' => 'Принудительно обновить', 'found' => [ 'label' => 'Доступны новые обновления!', @@ -397,20 +387,13 @@ 'details_title_plugin' => 'Информация о плагине', 'details_title_theme' => 'Информация о шаблоне', 'details_view_homepage' => 'Перейти к домашней странице', - 'details_readme' => 'Документация', - 'details_readme_missing' => 'Документация не предоставлена.', 'details_changelog' => 'Изменения', 'details_changelog_missing' => 'Нет никакого измененного списка.', - 'details_upgrades' => 'Инструкция по обновлению', - 'details_upgrades_missing' => 'Инструкция по обновлению не предоставлена.', - 'details_licence' => 'Лицензия', 'details_view_licence' => 'Посмотреть лицензию', - 'details_licence_missing' => 'Лицензия не предоставляется.', 'details_current_version' => 'Текущая версия', 'details_author' => 'Автор', ], 'market' => [ - 'menu_label' => 'Маркетплейс', 'menu_description' => 'Управление и установка плагинами и шаблонами.', 'content_loading' => 'Загрузка...', ], diff --git a/modules/system/lang/sk.json b/modules/system/lang/sk.json index b446d19116..23f44867ab 100644 --- a/modules/system/lang/sk.json +++ b/modules/system/lang/sk.json @@ -14,12 +14,28 @@ "View Changelog": "Zobraziť denník zmien", "System Updates": "Aktualizácia a pluginy", "Update the system modules and plugins.": "Aktualizácie systému, správa a inštalácia pluginov a tém.", - "General": "generál", + "General": "Všeobecné", "Mail": "Mail", "Utilities": "Verejné služby", "Settings": "Nastavenia", "Unable to find the specified settings.": "Zvolené nastavenie sa nepodarilo .", "The settings page is missing a Model definition.": "Stránka s nastaveniami vyžaduje definíciu Modelu.", ":name settings updated": "nastavenia pre :name úspešne uložené", - "Return to System Settings": "Návrat do systémových nastavení" + "Return to System Settings": "Návrat do systémových nastavení", + "There is no documentation provided.": "Nie je poskytnutá žiadna dokumentácia.", + "There are no upgrade instructions provided.": "Nie je poskytnutý žiadny návod pre aktualizáciu.", + "There is no licence provided.": "Nie je poskytnutá žiadna licencia.", + "Documentation": "Dokumentácia", + "Upgrade Guide": "Návod pre aktualizáciu", + "Licence": "Licencia", + "Attach to Project": "Pridať k projetku", + "Project ID": "Project ID", + "How to find your Project ID": "Ako nájsť vaše Project ID", + "Manage Updates": "Správa aktualizácií", + "Software Update": "Aktualizácie software", + "Return to System Updates": "Späť na aktualizácie systému", + "Try Again": "Skúsiť znova", + "Unpacking application files": "Rozbaľovanie súborov aplikácie", + "Update Failed": "Aktualizácia zlyhala", + "Unpacking plugin: :name": "Rozbaľovanie pluginu: :name" } \ No newline at end of file diff --git a/modules/system/lang/sk/lang.php b/modules/system/lang/sk/lang.php index 44232fd537..8cc882848a 100644 --- a/modules/system/lang/sk/lang.php +++ b/modules/system/lang/sk/lang.php @@ -145,8 +145,6 @@ 'detach' => 'Odpojiť projekt', 'none' => 'Žiadny', 'id' => [ - 'label' => 'Project ID', - 'help' => 'Ako nájsť vaše Project ID', 'missing' => 'Prosím zadajta vaše Project ID.', ], 'detach_confirm' => 'Skutočne chcete odpojiť tento projekt?', @@ -287,7 +285,6 @@ ], ], 'install' => [ - 'project_label' => 'Pridať k projetku', 'plugin_label' => 'Inštalovať plugin', 'theme_label' => 'Inštalovať tému', 'missing_plugin_name' => 'Prosím zadajte názov pluginu na nainštalovanie.', @@ -296,10 +293,6 @@ 'install_success' => 'Plugin bol úspešne nainštalovaný', ], 'updates' => [ - 'title' => 'Správa aktualizácií', - 'name' => 'Aktualizácie software', - 'return_link' => 'Späť na aktualizácie systému', - 'retry_label' => 'Skúsiť znova', 'plugin_name' => 'Názov', 'plugin_code' => 'Kód', 'plugin_description' => 'Popis', @@ -309,11 +302,9 @@ 'core_build' => 'Zostavenie :build', 'core_build_help' => 'Najnovšie zostavenie je dostupné.', 'core_downloading' => 'Sťahovanie súborov aplikácie', - 'core_extracting' => 'Rozbaľovanie súborov aplikácie', 'core_set_build' => 'Nastavenie čísla zostavenia', 'themes' => 'Témy', 'plugin_downloading' => 'Sťahovanie pluginu: :name', - 'plugin_extracting' => 'Rozbaľovanie pluginu: :name', 'plugin_version_none' => 'Nový plugin', 'plugin_current_version' => 'Aktuálna verzia', 'theme_new_install' => 'Inštalácia novej témy.', @@ -323,7 +314,6 @@ 'update_completing' => 'Dokončovanie aktualizácie', 'update_loading' => 'Načítavanie dostupbých aktualizácií...', 'update_success' => 'Proces aktualizácie úspešne ukončený', - 'update_failed_label' => 'Aktualizácia zlyhala', 'force_label' => 'Vynútiť aktualizácie', 'found' => [ 'label' => 'Nájdené nové aktualizácie!', @@ -345,14 +335,8 @@ 'important_alert_text' => 'Niektoré aktualizácie vyžadujú vašu pozornosť.', 'details_title' => 'Detaily pluginu', 'details_view_homepage' => 'Zobraziť domovskú stránku', - 'details_readme' => 'Dokumentácia', - 'details_readme_missing' => 'Nie je poskytnutá žiadna dokumentácia.', 'details_changelog' => 'Zoznam zmien', 'details_changelog_missing' => 'Nie je poskytnutý žiadny zoznam zmien.', - 'details_upgrades' => 'Návod pre aktualizáciu', - 'details_upgrades_missing' => 'Nie je poskytnutý žiadny návod pre aktualizáciu.', - 'details_licence' => 'Licencia', - 'details_licence_missing' => 'Nie je poskytnutá žiadna licencia.', 'details_current_version' => 'Aktuálna verzia', 'details_author' => 'Autor', ], diff --git a/modules/system/lang/sl.json b/modules/system/lang/sl.json index a4c82a0ff0..aab0cb79ca 100644 --- a/modules/system/lang/sl.json +++ b/modules/system/lang/sl.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Navedenih nastavitev ni mogoče najti.", "The settings page is missing a Model definition.": "Na strani z nastavitvami manjka definicija modela.", ":name settings updated": "Nastavitve za \":name\" so shranjene.", - "Return to System Settings": "Vrni se na sistemske nastavitve" + "Return to System Settings": "Vrni se na sistemske nastavitve", + "There is no documentation provided.": "Dokumentacija ni na voljo.", + "There are no upgrade instructions provided.": "Navodila za nadgradnjo niso na voljo.", + "There is no licence provided.": "Licenca ni na voljo.", + "Documentation": "Dokumentacija", + "Upgrade Guide": "Navodila za nadgradnjo", + "Licence": "Licenca", + "Attach to Project": "Pripni na projekt", + "Project ID": "ID projekta", + "How to find your Project ID": "Kako poiskati ID vašega projekta", + "Manage Updates": "Upravljanje posodobitev", + "Software Update": "Posodobitev programske opreme", + "Return to System Updates": "Vrni se na sistemske posodobitve", + "Try Again": "Poskusi ponovno", + "Unpacking application files": "Ekstrahiranje datotek aplikacije", + "Update Failed": "Posodabljanje ni bilo uspešno.", + "Unpacking plugin: :name": "Ekstrahiranje vtičnika :name" } \ No newline at end of file diff --git a/modules/system/lang/sl/lang.php b/modules/system/lang/sl/lang.php index 5bb334691a..baa8c6c921 100644 --- a/modules/system/lang/sl/lang.php +++ b/modules/system/lang/sl/lang.php @@ -143,8 +143,6 @@ 'detach' => 'Odpni projekt', 'none' => 'Nobeden', 'id' => [ - 'label' => 'ID projekta', - 'help' => 'Kako poiskati ID vašega projekta', 'missing' => 'Določite ID projekta za uporabo.', ], 'detach_confirm' => 'Ali ste prepričani, da želite odpeti ta projekt?', @@ -290,7 +288,6 @@ ], ], 'install' => [ - 'project_label' => 'Pripni na projekt', 'plugin_label' => 'Namesti vtičnik', 'theme_label' => 'Namesti temo', 'missing_plugin_name' => 'Podajte ime vtičnika, ki ga želite namestiti.', @@ -299,10 +296,6 @@ 'install_success' => 'Produkt je bil uspešno nameščen.', ], 'updates' => [ - 'title' => 'Upravljanje posodobitev', - 'name' => 'Posodobitev programske opreme', - 'return_link' => 'Vrni se na sistemske posodobitve', - 'retry_label' => 'Poskusi ponovno', 'plugin_name' => 'Ime', 'plugin_code' => 'Koda', 'plugin_description' => 'Opis', @@ -313,7 +306,6 @@ 'core_build' => 'Različica :build', 'core_build_help' => 'Na voljo je najnovejša različica.', 'core_downloading' => 'Prenašanje datotek aplikacije', - 'core_extracting' => 'Ekstrahiranje datotek aplikacije', 'core_set_build' => 'Nastavljanje številke različice', 'update_warnings_title' => 'Odkrite so bile nekatere težave, ki zahtevajo pozornost:', 'update_warnings_plugin_missing' => 'Vtičnik :parent_code zahteva za pravilno delovanje namestitev :code.', @@ -321,7 +313,6 @@ 'changelog_view_details' => 'Prikaži podrobnosti', 'themes' => 'Teme', 'plugin_downloading' => 'Prenašanje vtičnika :name', - 'plugin_extracting' => 'Ekstrahiranje vtičnika :name', 'plugin_version_none' => 'Nov vtičnik', 'plugin_current_version' => 'Trenutna verzija', 'theme_new_install' => 'Namestitev nove teme.', @@ -331,7 +322,6 @@ 'update_completing' => 'Zaključevanje posodabljanja', 'update_loading' => 'Nalaganje razpoložljivih posodobitev...', 'update_success' => 'Posodabljanje končano.', - 'update_failed_label' => 'Posodabljanje ni bilo uspešno.', 'force_label' => 'Vsili posodobitev', 'found' => [ 'label' => 'Nove posodobitve so na voljo!', @@ -353,14 +343,8 @@ 'important_alert_text' => 'Nekatere posodobitve potrebujejo vašo pozornost.', 'details_title' => 'Podrobnosti vtičnika', 'details_view_homepage' => 'Odpri spletno stran', - 'details_readme' => 'Dokumentacija', - 'details_readme_missing' => 'Dokumentacija ni na voljo.', 'details_changelog' => 'Dnevnik sprememb', 'details_changelog_missing' => 'Dnevnik sprememb ni na voljo.', - 'details_upgrades' => 'Navodila za nadgradnjo', - 'details_upgrades_missing' => 'Navodila za nadgradnjo niso na voljo.', - 'details_licence' => 'Licenca', - 'details_licence_missing' => 'Licenca ni na voljo.', 'details_current_version' => 'Trenutna različica', 'details_author' => 'Avtor', ], diff --git a/modules/system/lang/sv.json b/modules/system/lang/sv.json index b6f1aa0a6e..d8b05bd185 100644 --- a/modules/system/lang/sv.json +++ b/modules/system/lang/sv.json @@ -21,5 +21,19 @@ "Unable to find the specified settings.": "Det går inte att hitta de angivna inställningarna.", "The settings page is missing a Model definition.": "Inställningssidan saknar en modell-definition", ":name settings updated": "Inställningar för :name har uppdaterats", - "Return to System Settings": "Återgå till systeminställningar" + "Return to System Settings": "Återgå till systeminställningar", + "There is no documentation provided.": "Det finns ingen dokumentation tillgänglig.", + "There are no upgrade instructions provided.": "Det finns inga uppgraderingsinstruktioner tillgängliga.", + "Documentation": "Dokumentation", + "Upgrade Guide": "Uppgraderingsguide", + "Attach to Project": "Länka till Projekt", + "Project ID": "Projekt-ID", + "How to find your Project ID": "Hur du hittar ditt Projekt-ID", + "Manage Updates": "Hantera uppdateringar", + "Software Update": "Uppdatera systemet", + "Return to System Updates": "Återgå till systemuppdateringar", + "Try Again": "Försök igen", + "Unpacking application files": "Packar upp applikationsfiler", + "Update Failed": "Updateringen misslyckades", + "Unpacking plugin: :name": "Packar upp tillägg: :name" } \ No newline at end of file diff --git a/modules/system/lang/sv/lang.php b/modules/system/lang/sv/lang.php index ef20152cb8..b5b85289bc 100644 --- a/modules/system/lang/sv/lang.php +++ b/modules/system/lang/sv/lang.php @@ -89,8 +89,6 @@ 'detach' => 'Avlänka projekt', 'none' => 'Inget', 'id' => [ - 'label' => 'Projekt-ID', - 'help' => 'Hur du hittar ditt Projekt-ID', 'missing' => 'Vänligen välj ett Projekt-ID', ], 'detach_confirm' => 'Vill du verkligen avlänka detta projekt?', @@ -162,7 +160,6 @@ 'sending' => 'Skickar testmeddelande...', ], 'install' => [ - 'project_label' => 'Länka till Projekt', 'plugin_label' => 'Installera tillägg', 'theme_label' => 'Installera tema', 'missing_plugin_name' => 'Välj ett tilläggsnamn att installera', @@ -171,10 +168,6 @@ 'install_success' => 'Tillägget har installerats', ], 'updates' => [ - 'title' => 'Hantera uppdateringar', - 'name' => 'Uppdatera systemet', - 'return_link' => 'Återgå till systemuppdateringar', - 'retry_label' => 'Försök igen', 'plugin_name' => 'Namn', 'plugin_code' => 'Kod', 'plugin_description' => 'Beskrivning', @@ -184,10 +177,8 @@ 'core_build' => 'Build :build', 'core_build_help' => 'Senaste build är tillgänglig.', 'core_downloading' => 'Laddar ner applikationsfiler', - 'core_extracting' => 'Packar upp applikationsfiler', 'themes' => 'Teman', 'plugin_downloading' => 'Laddar ner tillägg: :name', - 'plugin_extracting' => 'Packar upp tillägg: :name', 'plugin_version_none' => 'Nytt tillägg', 'plugin_current_version' => 'Nuvarande version', 'theme_new_install' => 'Installation av nytt tema.', @@ -197,7 +188,6 @@ 'update_completing' => 'Slutför uppdatering', 'update_loading' => 'Laddar tillgängliga uppdateringar...', 'update_success' => 'Uppdateringen är slutförd.', - 'update_failed_label' => 'Updateringen misslyckades', 'force_label' => 'Tvinga uppdatering', 'found' => [ 'label' => 'Hittade nya uppdateringar!', @@ -218,10 +208,6 @@ 'important_alert_text' => 'Några uppdateringar behöver din uppmärksamhet.', 'details_title' => 'Tilläggsdetaljer', 'details_view_homepage' => 'Visa hemsida', - 'details_readme' => 'Dokumentation', - 'details_readme_missing' => 'Det finns ingen dokumentation tillgänglig.', - 'details_upgrades' => 'Uppgraderingsguide', - 'details_upgrades_missing' => 'Det finns inga uppgraderingsinstruktioner tillgängliga.', 'details_current_version' => 'Nuvarande version', 'details_author' => 'Författare', ], diff --git a/modules/system/lang/th.json b/modules/system/lang/th.json index 65957073dd..bb76fe4937 100644 --- a/modules/system/lang/th.json +++ b/modules/system/lang/th.json @@ -20,5 +20,21 @@ "Settings": "การตั้งค่า", "Unable to find the specified settings.": "ไม่พบค่าที่กำหนด", ":name settings updated": ":name อัพเดทการตั้งค่าแล้ว", - "Return to System Settings": "กลับสู่หน้าการตั้งค่าระบบ" + "Return to System Settings": "กลับสู่หน้าการตั้งค่าระบบ", + "There is no documentation provided.": "ไม่มีเอกสารการใช้โปรแกรมมาด้วย", + "There are no upgrade instructions provided.": "ไม่มีขั้นตอนการอัพเกรดมาด้วย", + "There is no licence provided.": "ไม่มีใบอนุญาตมาด้วย", + "Documentation": "เอกสารการใช้โปรแกรม", + "Upgrade Guide": "คู่มือการอัพเกรด", + "Licence": "ใบอนุญาต", + "Attach to Project": "ผูกกับโครงการ", + "Project ID": "Project ID", + "How to find your Project ID": "วิธีหา Project ID ของคุณ", + "Manage Updates": "จัดการการอัพเดท", + "Software Update": "การอัพเดทซอฟต์แวร์", + "Return to System Updates": "กลับสู่หน้าการอัพเดทระบบ", + "Try Again": "ลองอีกครั้ง", + "Unpacking application files": "กำลังเปิดขยายกล่องไฟล์แอพพลิเคชั่น", + "Update Failed": "อัพเดทไม่สำเร็จ", + "Unpacking plugin: :name": "กำลังเปิดขยายกล่องปลั๊กอิน: :name" } \ No newline at end of file diff --git a/modules/system/lang/th/lang.php b/modules/system/lang/th/lang.php index 45b3236ef1..f274eb67cd 100644 --- a/modules/system/lang/th/lang.php +++ b/modules/system/lang/th/lang.php @@ -98,8 +98,6 @@ 'detach' => 'ถอดโครงการ', 'none' => 'ไม่มี', 'id' => [ - 'label' => 'Project ID', - 'help' => 'วิธีหา Project ID ของคุณ', 'missing' => 'กรุณากำหนด Project ID', ], 'detach_confirm' => 'คุณแน่ใจว่าต้องการถอดโครงการนี้?', @@ -242,7 +240,6 @@ ], ], 'install' => [ - 'project_label' => 'ผูกกับโครงการ', 'plugin_label' => 'ติดตั้งปลั๊กอิน', 'theme_label' => 'ติดตั้งธีม', 'missing_plugin_name' => 'กรุณากำหนดชื่อปลั๊กอินที่จะติดตั้ง', @@ -251,10 +248,6 @@ 'install_success' => 'ติดตั้งปลั๊กอินสำเร็จ', ], 'updates' => [ - 'title' => 'จัดการการอัพเดท', - 'name' => 'การอัพเดทซอฟต์แวร์', - 'return_link' => 'กลับสู่หน้าการอัพเดทระบบ', - 'retry_label' => 'ลองอีกครั้ง', 'plugin_name' => 'ชื่อ', 'plugin_code' => 'โค้ด', 'plugin_description' => 'รายละเอียด', @@ -264,13 +257,11 @@ 'core_build' => 'การสร้างที่ :build', 'core_build_help' => 'การสร้างตัวล่าสุดพร้อมให้ดาวน์โหลดแล้ว', 'core_downloading' => 'กำลังดาวน์โหลดไฟล์แอพพลิเคชั่น', - 'core_extracting' => 'กำลังเปิดขยายกล่องไฟล์แอพพลิเคชั่น', 'core_set_build' => 'Setting build number', 'changelog' => 'บันทึกการเปลี่ยนแปลง', 'changelog_view_details' => 'ดูรายละเอียด', 'themes' => 'ธีม', 'plugin_downloading' => 'กำลังดาวน์โหลดปลั๊กอิน: :name', - 'plugin_extracting' => 'กำลังเปิดขยายกล่องปลั๊กอิน: :name', 'plugin_version_none' => 'ปลั๊กอินใหม่', 'plugin_current_version' => 'รุ่นปัจจุบัน', 'theme_new_install' => 'การติดตั้งธีมใหม่', @@ -280,7 +271,6 @@ 'update_completing' => 'กำลังจบกระบวนการอัพเดท', 'update_loading' => 'กำลังโหลดอัพเดทที่ใช้ได้...', 'update_success' => 'กระบวนการอัพเดทเสร็จสมบูรณ์', - 'update_failed_label' => 'อัพเดทไม่สำเร็จ', 'force_label' => 'บังคับการอัพเดท', 'found' => [ 'label' => 'พบอัพเดทใหม่!', @@ -302,14 +292,8 @@ 'important_alert_text' => 'อัพเดทบางตัวต้องมีการตรวจสอบ', 'details_title' => 'รายละเอียดปลั๊กอิน', 'details_view_homepage' => 'ดูหน้าโฮมเพจ', - 'details_readme' => 'เอกสารการใช้โปรแกรม', - 'details_readme_missing' => 'ไม่มีเอกสารการใช้โปรแกรมมาด้วย', 'details_changelog' => 'บันทึกการเปลี่ยนแปลง', 'details_changelog_missing' => 'ไม่มีบันทึกการเปลี่ยนแปลงมาด้วย', - 'details_upgrades' => 'คู่มือการอัพเกรด', - 'details_upgrades_missing' => 'ไม่มีขั้นตอนการอัพเกรดมาด้วย', - 'details_licence' => 'ใบอนุญาต', - 'details_licence_missing' => 'ไม่มีใบอนุญาตมาด้วย', 'details_current_version' => 'รุ่นปัจจุบัน', 'details_author' => 'ผู้สร้าง', ], diff --git a/modules/system/lang/tr.json b/modules/system/lang/tr.json index a15d413ac1..1f93017b37 100644 --- a/modules/system/lang/tr.json +++ b/modules/system/lang/tr.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Belirtilen ayarlar bulunamadı.", "The settings page is missing a Model definition.": "Ayarlar sayfasında Model tanımı eksik.", ":name settings updated": ":name için ayarlar güncellendi.", - "Return to System Settings": "Sistem ayarları sayfasına dön" + "Return to System Settings": "Sistem ayarları sayfasına dön", + "There is no documentation provided.": "Herhangi bir kılavuz bulunamadı.", + "There are no upgrade instructions provided.": "Yükseltme talimatı bulunamadı.", + "There is no licence provided.": "Lisans bilgisi yok.", + "Documentation": "Kılavuz", + "Upgrade Guide": "Yükseltme Kılavuzu", + "Licence": "Lisans", + "Attach to Project": "Projeye bağla", + "Project ID": "Proje ID", + "How to find your Project ID": "Proje ID'sini nasıl bulurum?", + "Manage Updates": "Güncellemeleri Yönet", + "Software Update": "Sistemi Güncelle", + "Return to System Updates": "Sistem güncellemelerine geri dön", + "Try Again": "Tekrar dene", + "Unpacking application files": "Uygulama dosyaları çıkarılıyor", + "Update Failed": "Güncelleme hatası", + "Unpacking plugin: :name": "Modül dosyaları çıkarılıyor: :name" } \ No newline at end of file diff --git a/modules/system/lang/tr/lang.php b/modules/system/lang/tr/lang.php index 7860645033..75e9e4c9ae 100644 --- a/modules/system/lang/tr/lang.php +++ b/modules/system/lang/tr/lang.php @@ -147,8 +147,6 @@ 'detach' => 'Projeyi Ayır', 'none' => 'Hiçbiri', 'id' => [ - 'label' => 'Proje ID', - 'help' => 'Proje ID\'sini nasıl bulurum?', 'missing' => 'Lütfen kullanılacak Proje ID\'sini belirleyin.', ], 'detach_confirm' => 'Bu projeyi ayırmak istediğinizden emin misiniz?', @@ -291,7 +289,6 @@ ], ], 'install' => [ - 'project_label' => 'Projeye bağla', 'plugin_label' => 'Eklenti Yükle', 'theme_label' => 'Temayı yükle', 'missing_plugin_name' => 'Yüklemek istediğiniz eklentinin adını giriniz.', @@ -300,10 +297,6 @@ 'install_success' => 'Eklenti kurulumu tamamlandı.', ], 'updates' => [ - 'title' => 'Güncellemeleri Yönet', - 'name' => 'Sistemi Güncelle', - 'return_link' => 'Sistem güncellemelerine geri dön', - 'retry_label' => 'Tekrar dene', 'plugin_name' => 'Adı', 'plugin_code' => 'Kod', 'plugin_description' => 'Açıklama', @@ -313,11 +306,9 @@ 'core_build' => 'Versiyon :build', 'core_build_help' => 'Son versiyon kullanılabilir.', 'core_downloading' => 'Uygulama dosyaları indiriliyor', - 'core_extracting' => 'Uygulama dosyaları çıkarılıyor', 'core_set_build' => 'Build numarası güncelleniyor', 'themes' => 'Temalar', 'plugin_downloading' => 'Modül indiriliyor: :name', - 'plugin_extracting' => 'Modül dosyaları çıkarılıyor: :name', 'plugin_version_none' => 'Yeni eklenti', 'plugin_current_version' => 'Mevcut sürüm', 'theme_new_install' => 'Yeni tema kur.', @@ -327,7 +318,6 @@ 'update_completing' => 'Güncelleme işlemi tamamlanıyor', 'update_loading' => 'Kullanılabilir güncellemeler kontrol ediliyor...', 'update_success' => 'Güncelleme işlemi başarıyla tamamlandı.', - 'update_failed_label' => 'Güncelleme hatası', 'force_label' => 'Güncellemeye zorla', 'found' => [ 'label' => 'Güncellemeler bulundu!', @@ -349,14 +339,8 @@ 'important_alert_text' => 'Bazı eklentiler işlem gerektirebilir.', 'details_title' => 'Eklenti detayları', 'details_view_homepage' => 'Anasayfa', - 'details_readme' => 'Kılavuz', - 'details_readme_missing' => 'Herhangi bir kılavuz bulunamadı.', 'details_changelog' => 'Değişiklikler', 'details_changelog_missing' => 'Değişiklik geçmişi yok.', - 'details_upgrades' => 'Yükseltme Kılavuzu', - 'details_upgrades_missing' => 'Yükseltme talimatı bulunamadı.', - 'details_licence' => 'Lisans', - 'details_licence_missing' => 'Lisans bilgisi yok.', 'details_current_version' => 'Mevcut sürüm', 'details_author' => 'Geliştirici', ], diff --git a/modules/system/lang/uk.json b/modules/system/lang/uk.json index 9e033bd641..05ac5f1da0 100644 --- a/modules/system/lang/uk.json +++ b/modules/system/lang/uk.json @@ -21,5 +21,21 @@ "Unable to find the specified settings.": "Неможливо знайти зазначені налаштування.", "The settings page is missing a Model definition.": "На сторінці налаштувань відсутнє визначення моделі.", ":name settings updated": "Налаштування для :name успішно оновлені.", - "Return to System Settings": "Повернутися до системних налаштувань" + "Return to System Settings": "Повернутися до системних налаштувань", + "There is no documentation provided.": "Документація не надана.", + "There are no upgrade instructions provided.": "Інструкція по оновленню не надана.", + "There is no licence provided.": "Ліцензія не зазначена.", + "Documentation": "Документація", + "Upgrade Guide": "Інструкція по оновленню", + "Licence": "Ліцензія", + "Attach to Project": "Приєднати до проекту", + "Project ID": "Ідентифікатор проекту", + "How to find your Project ID": "Як знайти ідентифікатор проекту?", + "Manage Updates": "Менеджер оновлень", + "Software Update": "Оновлення ПЗ", + "Return to System Updates": "Повернутися до системи оновлень", + "Try Again": "Спробувати ще раз", + "Unpacking application files": "Розпакування файлів програми", + "Update Failed": "Неможливо оновити програму", + "Unpacking plugin: :name": "Розпакування плагіна: :name" } \ No newline at end of file diff --git a/modules/system/lang/uk/lang.php b/modules/system/lang/uk/lang.php index f2ffa084ce..461974ea55 100644 --- a/modules/system/lang/uk/lang.php +++ b/modules/system/lang/uk/lang.php @@ -92,8 +92,6 @@ 'detach' => 'Від\'єднати проект', 'none' => 'Не підключений', 'id' => [ - 'label' => 'Ідентифікатор проекту', - 'help' => 'Як знайти ідентифікатор проекту?', 'missing' => 'Будь ласка, вкажіть ідентифікатор вашого проекту.', ], 'detach_confirm' => 'Ви впевнені, що хочете від\'єднати цей проект?', @@ -179,7 +177,6 @@ 'return' => 'Повернутися до списку шаблонів', ], 'install' => [ - 'project_label' => 'Приєднати до проекту', 'plugin_label' => 'Встановити плагін', 'theme_label' => 'Встановити тему', 'missing_plugin_name' => 'Будь ласка, вкажіть назву плагіна для установки.', @@ -188,10 +185,6 @@ 'install_success' => 'Плагін був успішно встановлений.', ], 'updates' => [ - 'title' => 'Менеджер оновлень', - 'name' => 'Оновлення ПЗ', - 'return_link' => 'Повернутися до системи оновлень', - 'retry_label' => 'Спробувати ще раз', 'plugin_name' => 'Назва', 'plugin_code' => 'Код', 'plugin_description' => 'Опис', @@ -201,10 +194,8 @@ 'core_build' => 'Версія :build', 'core_build_help' => 'Остання доступна версія.', 'core_downloading' => 'Завантаження файлів програми', - 'core_extracting' => 'Розпакування файлів програми', 'themes' => 'Теми', 'plugin_downloading' => 'Завантаження плагіна: :name', - 'plugin_extracting' => 'Розпакування плагіна: :name', 'plugin_version_none' => 'Новий плагін', 'plugin_current_version' => 'Поточна версія плагіну', 'theme_new_install' => 'Нова тема встановлена.', @@ -214,7 +205,6 @@ 'update_completing' => 'Завершення процесу оновлення', 'update_loading' => 'Пошук доступних оновлень...', 'update_success' => 'Процес оновлення успішно завершений.', - 'update_failed_label' => 'Неможливо оновити програму', 'force_label' => 'Оновити примусово', 'found' => [ 'label' => 'Доступні нові оновлення!', @@ -236,14 +226,8 @@ 'important_alert_text' => 'Деякі оновлення вимагають вашої уваги.', 'details_title' => 'Інформація про плагін', 'details_view_homepage' => 'Перейти до домашньої сторінки', - 'details_readme' => 'Документація', - 'details_readme_missing' => 'Документація не надана.', 'details_changelog' => 'Історія змін', 'details_changelog_missing' => 'Історії змін не надана.', - 'details_upgrades' => 'Інструкція по оновленню', - 'details_upgrades_missing' => 'Інструкція по оновленню не надана.', - 'details_licence' => 'Ліцензія', - 'details_licence_missing' => 'Ліцензія не зазначена.', 'details_current_version' => 'Поточна версія', 'details_author' => 'Автор', ], diff --git a/modules/system/lang/vn.json b/modules/system/lang/vn.json index 88d9fb72fd..118d0af1bc 100644 --- a/modules/system/lang/vn.json +++ b/modules/system/lang/vn.json @@ -12,5 +12,21 @@ "Unable to find the specified settings.": "Không tìm thấy các cấu hình được chỉ định.", "The settings page is missing a Model definition.": "Không có Model cho trang cài đặt.", ":name settings updated": "Cấu hình cho :name thành công", - "Return to System Settings": "Trở lại trang cài đặt" + "Return to System Settings": "Trở lại trang cài đặt", + "There is no documentation provided.": "Không có tài liệu được cung cấp.", + "There are no upgrade instructions provided.": "Không có hướng dẫn nâng cấp nào được cung cấp.", + "There is no licence provided.": "Không có giấy phép nào được cung cấp.", + "Documentation": "Tài liệu hướng dẫn", + "Upgrade Guide": "Hướng dẫn nâng cấp", + "Licence": "Giấy phép", + "Attach to Project": "Chèn Project", + "Project ID": "ID Dự án", + "How to find your Project ID": "Cách để xem ID Dự án", + "Manage Updates": "Quản lý các cập nhật", + "Software Update": "Cập nhật hệ thống", + "Return to System Updates": "Quay lại trang cập nhật hệ thống", + "Try Again": "Thử lại", + "Unpacking application files": "Đang giải nén", + "Update Failed": "Lỗi cập nhật", + "Unpacking plugin: :name": "Đang giải nén plugin: :name" } \ No newline at end of file diff --git a/modules/system/lang/vn/lang.php b/modules/system/lang/vn/lang.php index a9bb7b0290..bf390ab983 100644 --- a/modules/system/lang/vn/lang.php +++ b/modules/system/lang/vn/lang.php @@ -134,8 +134,6 @@ 'detach' => 'Gỡ bỏ Dự án', 'none' => 'Trống', 'id' => [ - 'label' => 'ID Dự án', - 'help' => 'Cách để xem ID Dự án', 'missing' => 'Điền vào ID Dự án để sử dụng.', ], 'detach_confirm' => 'Xác nhận gỡ Dự án?', @@ -276,7 +274,6 @@ ], ], 'install' => [ - 'project_label' => 'Chèn Project', 'plugin_label' => 'Cài đặt Plugin', 'theme_label' => 'Cài đặt Theme', 'missing_plugin_name' => 'Điền vào tên Plugin để cài đặt.', @@ -285,10 +282,6 @@ 'install_success' => 'Plugin đã được cài thành công', ], 'updates' => [ - 'title' => 'Quản lý các cập nhật', - 'name' => 'Cập nhật hệ thống', - 'return_link' => 'Quay lại trang cập nhật hệ thống', - 'retry_label' => 'Thử lại', 'plugin_name' => 'Tên Plugin', 'plugin_code' => 'Code', 'plugin_description' => 'Mô tả', @@ -298,11 +291,9 @@ 'core_build' => 'Build :build', 'core_build_help' => 'Phiên bản build gần nhất.', 'core_downloading' => 'Đang tải file ứng dụng', - 'core_extracting' => 'Đang giải nén', 'core_set_build' => 'Cài đặt build number', 'themes' => 'Themes', 'plugin_downloading' => 'Đang tải plugin: :name', - 'plugin_extracting' => 'Đang giải nén plugin: :name', 'plugin_version_none' => 'Tạo mới plugin', 'plugin_current_version' => 'Phiên bản hiện tại version', 'theme_new_install' => 'Cài đặt theme mới.', @@ -312,7 +303,6 @@ 'update_completing' => 'Cập nhật hoàn tất', 'update_loading' => 'Đang kiểm tra các cập nhật có sẵn...', 'update_success' => 'Cập nhật hoàn tất', - 'update_failed_label' => 'Lỗi cập nhật', 'force_label' => 'Bắt buộc cập nhật', 'found' => [ 'label' => 'Có cập nhật mới!', @@ -334,14 +324,8 @@ 'important_alert_text' => 'Một số cập nhật cần phải chú ý.', 'details_title' => 'Chi tiết Plugin', 'details_view_homepage' => 'Đến trang chủ', - 'details_readme' => 'Tài liệu hướng dẫn', - 'details_readme_missing' => 'Không có tài liệu được cung cấp.', 'details_changelog' => 'Các lần thay đổi', 'details_changelog_missing' => 'Không có bản ghi các lần thay đổi.', - 'details_upgrades' => 'Hướng dẫn nâng cấp', - 'details_upgrades_missing' => 'Không có hướng dẫn nâng cấp nào được cung cấp.', - 'details_licence' => 'Giấy phép', - 'details_licence_missing' => 'Không có giấy phép nào được cung cấp.', 'details_current_version' => 'Phiên bản hiện tại', 'details_author' => 'Tác giả', ], diff --git a/modules/system/lang/zh-cn.json b/modules/system/lang/zh-cn.json index 19a638a572..776d3c9420 100644 --- a/modules/system/lang/zh-cn.json +++ b/modules/system/lang/zh-cn.json @@ -23,5 +23,22 @@ "The settings page is missing a Model definition.": "设置页面缺少模型定义。", ":name settings updated": ":name 设置已更新", "Return to System Settings": "返回系统设置", - "Find a Setting...": "查找设置..." + "Find a Setting...": "查找设置...", + "Marketplace": "应用市场", + "There is no documentation provided.": "没有提供文档。", + "There are no upgrade instructions provided.": "没有提供升级指南。", + "There is no licence provided.": "没有提供许可证。", + "Documentation": "文档", + "Upgrade Guide": "升级指南", + "Licence": "许可证", + "Attach to Project": "加入项目", + "Project ID": "项目ID", + "How to find your Project ID": "如何找到您的项目ID", + "Manage Updates": "管理更新", + "Software Update": "软件更新", + "Return to System Updates": "返回系统更新", + "Try Again": "重试", + "Unpacking application files": "解压应用程序文件", + "Update Failed": "更新失败", + "Unpacking plugin: :name": "解压插件::name" } \ No newline at end of file diff --git a/modules/system/lang/zh-cn/lang.php b/modules/system/lang/zh-cn/lang.php index 4ff12affa5..004fb0abea 100644 --- a/modules/system/lang/zh-cn/lang.php +++ b/modules/system/lang/zh-cn/lang.php @@ -136,8 +136,6 @@ 'detach' => '删除项目', 'none' => '没有', 'id' => [ - 'label' => '项目ID', - 'help' => '如何找到您的项目ID', 'missing' => '请确认你想使用的项目ID。', ], 'detach_confirm' => '你确定要删除这个项目吗?', @@ -283,7 +281,6 @@ ], ], 'install' => [ - 'project_label' => '加入项目', 'plugin_label' => '安装插件', 'theme_label' => '安装主题', 'missing_plugin_name' => '请指定要安装的插件名称。', @@ -292,10 +289,6 @@ 'install_success' => '插件安装成功', ], 'updates' => [ - 'title' => '管理更新', - 'name' => '软件更新', - 'return_link' => '返回系统更新', - 'retry_label' => '重试', 'plugin_name' => '名字', 'plugin_code' => '代码', 'plugin_description' => '描述', @@ -308,14 +301,12 @@ 'core_build' => '版本 :build', 'core_build_help' => '最新版本可用。', 'core_downloading' => '下载应用程序文件', - 'core_extracting' => '解压应用程序文件', 'core_set_build' => '设置版本号', 'changelog' => '变更日志', 'changelog_view_details' => '查看详情', 'themes' => '主题', 'plugin_downloading' => '下载插件::name', 'plugin_removing' => '正在删除插件::name', - 'plugin_extracting' => '解压插件::name', 'plugin_version_none' => '新插件', 'plugin_current_version' => '当前版本', 'theme_new_install' => '新主题安装。', @@ -326,7 +317,6 @@ 'update_completing' => '完成更新过程', 'update_loading' => '正在加载可用更新...', 'update_success' => '更新过程完成', - 'update_failed_label' => '更新失败', 'force_label' => '强制更新', 'found' => [ 'label' => '发现新的更新!', @@ -349,20 +339,13 @@ 'details_title_plugin' => '插件详情', 'details_title_theme' => '主题详情', 'details_view_homepage' => '查看主页', - 'details_readme' => '文档', - 'details_readme_missing' => '没有提供文档。', 'details_changelog' => '更新日志', 'details_changelog_missing' => '没有提供更新日志。', - 'details_upgrades' => '升级指南', - 'details_upgrades_missing' => '没有提供升级指南。', - 'details_licence' => '许可证', 'details_view_licence' => '查看许可证', - 'details_licence_missing' => '没有提供许可证。', 'details_current_version' => '当前版本', 'details_author' => '作者', ], 'market' => [ - 'menu_label' => '应用市场', 'menu_description' => '管理和安装插件和主题', 'content_loading' => '正在加载...', ], diff --git a/modules/system/lang/zh-tw.json b/modules/system/lang/zh-tw.json index c3fa0049c5..997beb58cc 100644 --- a/modules/system/lang/zh-tw.json +++ b/modules/system/lang/zh-tw.json @@ -21,5 +21,14 @@ "Unable to find the specified settings.": "不能找到特定的設定.", "The settings page is missing a Model definition.": "設定頁缺少Model定義.", ":name settings updated": ":name 的設定更新成功了.", - "Return to System Settings": "返回系統設定" + "Return to System Settings": "返回系統設定", + "Attach to Project": "加入產品", + "Project ID": "產品ID", + "How to find your Project ID": "如何找到您的產品ID", + "Manage Updates": "管理更新", + "Software Update": "軟件更新", + "Try Again": "重試", + "Unpacking application files": "解壓縮應用程式", + "Update Failed": "更新失敗", + "Unpacking plugin: :name": "解壓縮外掛: :name" } \ No newline at end of file diff --git a/modules/system/lang/zh-tw/lang.php b/modules/system/lang/zh-tw/lang.php index 187cd471d6..f869d06a80 100644 --- a/modules/system/lang/zh-tw/lang.php +++ b/modules/system/lang/zh-tw/lang.php @@ -80,8 +80,6 @@ 'detach' => '刪除產品', 'none' => '沒有', 'id' => [ - 'label' => '產品ID', - 'help' => '如何找到您的產品ID', 'missing' => '請確認您想使用的產品ID.', ], 'detach_confirm' => '您確定要刪除這個產品嗎?', @@ -143,7 +141,6 @@ 'return' => '返回模板列表', ], 'install' => [ - 'project_label' => '加入產品', 'plugin_label' => '安裝外掛', 'theme_label' => '安裝主題', 'missing_plugin_name' => '請輸入要安裝的外掛名稱。', @@ -152,9 +149,6 @@ 'install_success' => '外掛安裝成功。', ], 'updates' => [ - 'title' => '管理更新', - 'name' => '軟件更新', - 'retry_label' => '重試', 'plugin_name' => '名字', 'plugin_description' => '描述', 'plugin_version' => '版本', @@ -163,10 +157,8 @@ 'core_build' => '版本 :build', 'core_build_help' => '新的版本可用.', 'core_downloading' => '下載應用程式', - 'core_extracting' => '解壓縮應用程式', 'themes' => '主題', 'plugin_downloading' => '下載外掛: :name', - 'plugin_extracting' => '解壓縮外掛: :name', 'plugin_version_none' => '新外掛', 'theme_new_install' => '新主題安裝.', 'theme_downloading' => '下載主題: :name', @@ -175,7 +167,6 @@ 'update_completing' => '完成更新過程', 'update_loading' => '加載可用更新...', 'update_success' => '更新完成.', - 'update_failed_label' => '更新失敗', 'force_label' => '強制更新', 'found' => [ 'label' => '發現新的更新!', diff --git a/modules/system/routes.php b/modules/system/routes.php index 6cd68d4746..f0b3e54ea3 100644 --- a/modules/system/routes.php +++ b/modules/system/routes.php @@ -1,9 +1,4 @@ setCallback(function($message) { echo $message; }); + $composer = ComposerManager::instance(); + $composer->setOutputCommand($this, $this->input); $this->composerRequireCore($composer, $this->option('want') ?: null); + $this->line(''); + } - if ($composer->lastExitCode() !== 0) { - $this->outputFailedOutro(); - exit(1); + /** + * composerRequireString returns the composer require string for installing dependencies + */ + protected function composerRequireCore($composer, $want = null) + { + if ($want === null) { + $composer->require(['october/all' => $this->getUpdateWantVersion()]); + } + else { + $want = $this->processWantString($want); + $composer->require([ + 'october/rain' => $want, + 'october/all' => $want + ]); } - - $this->line(''); } /** @@ -43,14 +69,11 @@ protected function setupSetProject($licenceKey) throw new Exception(Lang::get('system::lang.installer.license_expired_comment')); } - // Save authentication token - $projectId = $result['project_id'] ?? null; - $projectEmail = $result['email'] ?? null; - $this->setComposerAuth($projectEmail, $projectId); - - // Add October CMS gateway as a composer repo - $composer = new ComposerPhp; - $composer->addRepository('octobercms', 'composer', $this->getComposerUrl()); + // Configure composer and save authentication token + $this->setComposerAuth( + $result['email'] ?? null, + $result['project_id'] ?? null + ); } /** @@ -139,4 +162,13 @@ protected function outputFailedOutro() $this->line("* php artisan october:build"); } } + + /** + * nonInteractiveCheck will make a calculated guess if the command is running + * in non interactive mode by how long it takes to execute + */ + protected function nonInteractiveCheck(): bool + { + return (microtime(true) - LARAVEL_START) < 1; + } } diff --git a/modules/system/traits/SetupHelper.php b/modules/system/traits/SetupHelper.php index 06460cc749..083168be1a 100644 --- a/modules/system/traits/SetupHelper.php +++ b/modules/system/traits/SetupHelper.php @@ -2,12 +2,12 @@ use App; use Str; -use Lang; use Config; -use Exception; use System\Classes\UpdateManager; +use October\Rain\Composer\Manager as ComposerManager; use Illuminate\Support\Env; use Dotenv\Dotenv; +use Exception; use PDOException; use PDO; @@ -26,20 +26,22 @@ trait SetupHelper */ protected function setComposerAuth($email, $projectKey) { - $composerUrl = $this->getComposerUrl(false); - - $this->injectJsonToFile(base_path('auth.json'), [ - 'http-basic' => [ - $composerUrl => [ - 'username' => $email, - 'password' => $projectKey - ] - ] - ]); + $composer = ComposerManager::instance(); + // Save authentication token + $composer->addAuthCredentials( + $this->getComposerUrl(false), + $email, + $projectKey + ); + + // Store project details $this->injectJsonToFile(storage_path('cms/project.json'), [ 'project' => $projectKey ]); + + // Add gateway as a composer repo + $composer->addOctoberRepository($this->getComposerUrl()); } /** @@ -59,21 +61,6 @@ protected function setDemoContent($confirm = true) } } - /** - * composerRequireString returns the composer require string for installing dependencies - */ - protected function composerRequireCore($composer, $want = null) - { - if ($want === null) { - $composer->require('october/all', UpdateManager::WANT_VERSION); - } - else { - $want = $this->processWantString($want); - $composer->require('october/rain', $want); - $composer->require('october/all', $want); - } - } - /** * processWantString ensures a valid want version is supplied */ @@ -90,28 +77,6 @@ protected function processWantString($version) return implode('.', $parts); } - /** - * checkEnvWritable checks to see if the app can write to the .env file - */ - protected function checkEnvWritable() - { - $path = base_path('.env'); - $gitignore = base_path('.gitignore'); - - // Copy environment variables and reload - if (!file_exists($path)) { - copy(base_path('.env.example'), $path); - $this->refreshEnvVars(); - } - - // Add modules to .gitignore - if (file_exists($gitignore) && is_writable($gitignore)) { - $this->addModulesToGitignore($gitignore); - } - - return is_writable($path); - } - /** * addModulesToGitignore */ @@ -128,14 +93,6 @@ protected function addModulesToGitignore($gitignore) } } - /** - * refreshEnvVars will reload defined environment variables - */ - protected function refreshEnvVars() - { - DotEnv::create(Env::getRepository(), App::environmentPath(), App::environmentFile())->load(); - } - /** * setEnvVars sets multiple environment variables */ @@ -248,7 +205,7 @@ protected function checkDatabase($type, $host, $port, $name, $user, $pass) break; } try { - new PDO($dsn, $user, $pass, array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION)); + return new PDO($dsn, $user, $pass, array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION)); } catch (PDOException $ex) { throw new Exception('Connection failed: ' . $ex->getMessage()); @@ -272,81 +229,6 @@ protected function checkSqliteFile($filename) new PDO('sqlite:'.$filename); } - /** - * getAvailableLocales returns available system locales - */ - protected function getAvailableLocales() - { - return [ - 'ar' => [Lang::get('system::lang.locale.ar'), 'Arabic'], - 'be' => [Lang::get('system::lang.locale.be'), 'Belarusian'], - 'bg' => [Lang::get('system::lang.locale.bg'), 'Bulgarian'], - 'ca' => [Lang::get('system::lang.locale.ca'), 'Catalan'], - 'cs' => [Lang::get('system::lang.locale.cs'), 'Czech'], - 'da' => [Lang::get('system::lang.locale.da'), 'Danish'], - 'de' => [Lang::get('system::lang.locale.de'), 'German'], - 'el' => [Lang::get('system::lang.locale.el'), 'Greek'], - 'en' => [Lang::get('system::lang.locale.en'), 'English'], - 'en-au' => [Lang::get('system::lang.locale.en-au'), 'English'], - 'en-ca' => [Lang::get('system::lang.locale.en-ca'), 'English'], - 'en-gb' => [Lang::get('system::lang.locale.en-gb'), 'English'], - 'es' => [Lang::get('system::lang.locale.es'), 'Spanish'], - 'es-ar' => [Lang::get('system::lang.locale.es-ar'), 'Spanish'], - 'et' => [Lang::get('system::lang.locale.et'), 'Estonian'], - 'fa' => [Lang::get('system::lang.locale.fa'), 'Persian'], - 'fi' => [Lang::get('system::lang.locale.fi'), 'Finnish'], - 'fr' => [Lang::get('system::lang.locale.fr'), 'French'], - 'fr-ca' => [Lang::get('system::lang.locale.fr-ca'), 'French'], - 'hu' => [Lang::get('system::lang.locale.hu'), 'Hungarian'], - 'id' => [Lang::get('system::lang.locale.id'), 'Indonesian'], - 'it' => [Lang::get('system::lang.locale.it'), 'Italian'], - 'ja' => [Lang::get('system::lang.locale.ja'), 'Japanese'], - 'kr' => [Lang::get('system::lang.locale.kr'), 'Korean'], - 'lt' => [Lang::get('system::lang.locale.lt'), 'Lithuanian'], - 'lv' => [Lang::get('system::lang.locale.lv'), 'Latvian'], - 'nb-no' => [Lang::get('system::lang.locale.nb-no'), 'Norwegian'], - 'nl' => [Lang::get('system::lang.locale.nl'), 'Dutch'], - 'pl' => [Lang::get('system::lang.locale.pl'), 'Polish'], - 'pt-br' => [Lang::get('system::lang.locale.pt-br'), 'Portuguese'], - 'pt-pt' => [Lang::get('system::lang.locale.pt-pt'), 'Portuguese'], - 'ro' => [Lang::get('system::lang.locale.ro'), 'Romanian'], - 'ru' => [Lang::get('system::lang.locale.ru'), 'Russian'], - 'sk' => [Lang::get('system::lang.locale.sk'), 'Slovak'], - 'sl' => [Lang::get('system::lang.locale.sl'), 'Slovene'], - 'sv' => [Lang::get('system::lang.locale.sv'), 'Swedish'], - 'th' => [Lang::get('system::lang.locale.th'), 'Thai'], - 'tr' => [Lang::get('system::lang.locale.tr'), 'Turkish'], - 'uk' => [Lang::get('system::lang.locale.uk'), 'Ukrainian'], - 'vn' => [Lang::get('system::lang.locale.vn'), 'Vietnamese'], - 'zh-cn' => [Lang::get('system::lang.locale.zh-cn'), 'Chinese'], - 'zh-tw' => [Lang::get('system::lang.locale.zh-tw'), 'Chinese'], - ]; - } - - /** - * getRandomKey generates a random application key - */ - protected function getRandomKey(): string - { - return Str::random($this->getKeyLength(Config::get('app.cipher'))); - } - - /** - * getKeyLength returns the supported length of a key for a cipher - */ - protected function getKeyLength(string $cipher): int - { - return $cipher === 'AES-128-CBC' ? 16 : 32; - } - - /** - * getComposerUrl returns the endpoint for composer - */ - protected function getComposerUrl(bool $withProtocol = true): string - { - return UpdateManager::instance()->getComposerUrl($withProtocol); - } - /** * injectJsonToFile merges a JSON array in to an existing JSON file. * Merging is useful for preserving array values. @@ -392,11 +274,111 @@ protected function mergeRecursive(array $array1, $array2) } /** - * nonInteractiveCheck will make a calculated guess if the command is running - * in non interactive mode by how long it takes to execute + * getAvailableLocales returns available system locales + */ + public function getAvailableLocales() + { + return [ + 'ar' => [$this->getLang('system::lang.locale.ar'), 'Arabic'], + 'be' => [$this->getLang('system::lang.locale.be'), 'Belarusian'], + 'bg' => [$this->getLang('system::lang.locale.bg'), 'Bulgarian'], + 'ca' => [$this->getLang('system::lang.locale.ca'), 'Catalan'], + 'cs' => [$this->getLang('system::lang.locale.cs'), 'Czech'], + 'da' => [$this->getLang('system::lang.locale.da'), 'Danish'], + 'de' => [$this->getLang('system::lang.locale.de'), 'German'], + 'el' => [$this->getLang('system::lang.locale.el'), 'Greek'], + 'en' => [$this->getLang('system::lang.locale.en'), 'English'], + 'en-au' => [$this->getLang('system::lang.locale.en-au'), 'English'], + 'en-ca' => [$this->getLang('system::lang.locale.en-ca'), 'English'], + 'en-gb' => [$this->getLang('system::lang.locale.en-gb'), 'English'], + 'es' => [$this->getLang('system::lang.locale.es'), 'Spanish'], + 'es-ar' => [$this->getLang('system::lang.locale.es-ar'), 'Spanish'], + 'et' => [$this->getLang('system::lang.locale.et'), 'Estonian'], + 'fa' => [$this->getLang('system::lang.locale.fa'), 'Persian'], + 'fi' => [$this->getLang('system::lang.locale.fi'), 'Finnish'], + 'fr' => [$this->getLang('system::lang.locale.fr'), 'French'], + 'fr-ca' => [$this->getLang('system::lang.locale.fr-ca'), 'French'], + 'hu' => [$this->getLang('system::lang.locale.hu'), 'Hungarian'], + 'id' => [$this->getLang('system::lang.locale.id'), 'Indonesian'], + 'it' => [$this->getLang('system::lang.locale.it'), 'Italian'], + 'ja' => [$this->getLang('system::lang.locale.ja'), 'Japanese'], + 'kr' => [$this->getLang('system::lang.locale.kr'), 'Korean'], + 'lt' => [$this->getLang('system::lang.locale.lt'), 'Lithuanian'], + 'lv' => [$this->getLang('system::lang.locale.lv'), 'Latvian'], + 'nb-no' => [$this->getLang('system::lang.locale.nb-no'), 'Norwegian'], + 'nl' => [$this->getLang('system::lang.locale.nl'), 'Dutch'], + 'pl' => [$this->getLang('system::lang.locale.pl'), 'Polish'], + 'pt-br' => [$this->getLang('system::lang.locale.pt-br'), 'Portuguese'], + 'pt-pt' => [$this->getLang('system::lang.locale.pt-pt'), 'Portuguese'], + 'ro' => [$this->getLang('system::lang.locale.ro'), 'Romanian'], + 'ru' => [$this->getLang('system::lang.locale.ru'), 'Russian'], + 'sk' => [$this->getLang('system::lang.locale.sk'), 'Slovak'], + 'sl' => [$this->getLang('system::lang.locale.sl'), 'Slovene'], + 'sv' => [$this->getLang('system::lang.locale.sv'), 'Swedish'], + 'th' => [$this->getLang('system::lang.locale.th'), 'Thai'], + 'tr' => [$this->getLang('system::lang.locale.tr'), 'Turkish'], + 'uk' => [$this->getLang('system::lang.locale.uk'), 'Ukrainian'], + 'vn' => [$this->getLang('system::lang.locale.vn'), 'Vietnamese'], + 'zh-cn' => [$this->getLang('system::lang.locale.zh-cn'), 'Chinese'], + 'zh-tw' => [$this->getLang('system::lang.locale.zh-tw'), 'Chinese'], + ]; + } + + // + // Framework Booted + // + + /** + * getRandomKey generates a random application key + */ + protected function getRandomKey(): string + { + return Str::random($this->getKeyLength(Config::get('app.cipher'))); + } + + /** + * getKeyLength returns the supported length of a key for a cipher + */ + protected function getKeyLength(string $cipher): int + { + return $cipher === 'AES-128-CBC' ? 16 : 32; + } + + /** + * checkEnvWritable checks to see if the app can write to the .env file */ - protected function nonInteractiveCheck(): bool + protected function checkEnvWritable() { - return (microtime(true) - LARAVEL_START) < 1; + $path = base_path('.env'); + $gitignore = base_path('.gitignore'); + + // Copy environment variables and reload + if (!file_exists($path)) { + copy(base_path('.env.example'), $path); + $this->refreshEnvVars(); + } + + // Add modules to .gitignore + if (file_exists($gitignore) && is_writable($gitignore)) { + $this->addModulesToGitignore($gitignore); + } + + return is_writable($path); + } + + /** + * getComposerUrl returns the endpoint for composer + */ + protected function getComposerUrl(bool $withProtocol = true): string + { + return UpdateManager::instance()->getComposerUrl($withProtocol); + } + + /** + * refreshEnvVars will reload defined environment variables + */ + protected function refreshEnvVars() + { + DotEnv::create(Env::getRepository(), App::environmentPath(), App::environmentFile())->load(); } } diff --git a/modules/system/views/check.php b/modules/system/views/check.php deleted file mode 100644 index 975578c1e6..0000000000 --- a/modules/system/views/check.php +++ /dev/null @@ -1,61 +0,0 @@ -

- -
- $message): ?> - -
-

Cache path is not writable

- - Write Permissions -
- -
-

Extension PDO is not loaded

- extension=pdo - PHP Extension -
- -
-

Extension mbstring is not loaded

- extension=mbstring - PHP Extension -
- -
-

Extension fileinfo is not loaded

- extension=fileinfo - PHP Extension -
- -
-

Extension OpenSSL is not loaded

- extension=openssl - PHP Extension -
- -
-

Extension GD is not loaded

- extension=gd2 - PHP Extension -
- -
-

Extension curl is not loaded

- extension=curl - PHP Extension -
- -
-

Class ZipArchive is not found

- extension=zip - PHP Extension -
- - -
- -
- -
diff --git a/modules/system/views/index.php b/modules/system/views/index.php deleted file mode 100644 index 708274d6cd..0000000000 --- a/modules/system/views/index.php +++ /dev/null @@ -1,12 +0,0 @@ -

- -

- -
- $info): ?> - - - - - -
diff --git a/modules/system/views/install.php b/modules/system/views/install.php deleted file mode 100644 index d44b9cfec9..0000000000 --- a/modules/system/views/install.php +++ /dev/null @@ -1,119 +0,0 @@ -

- Installation -

- - - - -
-
-
-
-

-
- - - - - - - - - - diff --git a/modules/system/views/layout.php b/modules/system/views/layout.php deleted file mode 100644 index 4082f8bcce..0000000000 --- a/modules/system/views/layout.php +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - <?= e($title) ?> - October CMS - - - - -
-
-

- October CMS - -

- - -
- -
- - - - -
-
- - diff --git a/modules/system/views/license.php b/modules/system/views/license.php deleted file mode 100644 index 0af9de38a9..0000000000 --- a/modules/system/views/license.php +++ /dev/null @@ -1,40 +0,0 @@ -

This End User License Agreement (hereinafter EULA) is a legal agreement between you and October CMS (Alexey Bobkov, Samuel Georges, hereinafter Author). The EULA applies to all distributed versions and modifications of October CMS and related software (hereinafter Software) from the Author. This EULA may be changed at any time by the Author, by substituting a new version of this EULA found on this website (octobercms.com). By installing, copying, or otherwise using the Software, you agree to be bound by the terms (hereinafter Terms) of this EULA.

-
    -
  1. October CMS Software is a set of source code files (PHP scripts and associated materials like SQL scripts, reference manual and the text of this Agreement) designed to implement online (web-based) solutions and reproduced either in files or on paper including soft and/or hard copies.

    -
  2. -
  3. By downloading the Software you acknowledge that you have read the EULA, and that you agree to the content of the EULA, and agree to use the Software in compliance with all of these terms and fully understand that these terms may be modified at any time by the Author.

    -
  4. -
  5. The EULA comes into legal force at the moment you download this Software from our website or receive it through email or on data medium at the Author's discretion.

    -
  6. -
  7. The Author is the copyright holder of the Software. The Software or a portion of it is a copyrightable matter and is liable to protection by the law. Any activity that infringes on these terms violates copyright law and will be prosecuted according to the current law.

    -
  8. -
  9. The Software is distributed "AS IS" without warranties as to performance, merchantability, data integrity, and warranty of any kind, either expressed or implied. The Author is not liable for any damage or possible damage caused to you, your information and your business arising out of the use or inability to use this Software.

    -
  10. -
  11. This EULA gives you the right to use only one licensed copy of the Software for a single website. A separate License should be acquired for each separate Software installation or website. A website is defined as a single installation of the Software that is accessible from a single platform and is controlled by a single back-end administration area and is operated by a single organization or person. Additionally, separate websites must have a corresponding Software license.

    -
  12. -
  13. A Software installation can be accessed by multiple domain names, but accessing the website from these alternate domain names shall not vary the website's design, content or direct to a section of the website that is operated by a different organization or person. An alternately accessible domain can be used to initially develop the website, develop and test new features to the website, determine language translation or currency display or direct to a microsite as long as it is not operated as a separate website and does not violate any of the Terms of this EULA.

    -
  14. -
  15. Any distribution of the Software without preliminary Author's consent, including noncommercial distribution, is regarded as a violation of this EULA and entails liability, according to the current law.

    -
  16. -
  17. You have the right to make any changes to the initial code of the Software at your discretion. On condition that further on the Software is used in compliance with this EULA on condition of copyright reservation.

    -
  18. -
  19. The Author is not liable to you for prosecution arising from the use of the Software against law (including, but not limited, selling prohibited products or products acquired as a result of criminal activity exasperating interracial or international antagonism and etc.).

    -
  20. -
  21. Unlicensed Software installations are intended for evaluation and testing purposes only. An unlicensed Software installation cannot be used for any publicly accessible website except the case when the installation is intended to demonstrate an October CMS Plugin or Theme, so long as the demonstration is not used to sell or accept payment for any product or service, or promote any product or service unrelated to October CMS Plugins and Themes.

    -
  22. -
  23. Sharing, distributing or transferring the Software or any portion of the Software to any third party is prohibited. It is strictly prohibited that any derivative works are distributed that are in any way based on the code within the original Software.

    -
  24. -
  25. This EULA may be terminated in case you delete all received files, associated databases, documents and their copies and completely uninstall the Software. Termination of this Agreement does not bind the Author over to return you the funds spent for the purchase of the Software.

    -
  26. -
  27. The Author reserves the right to deny any and all technical support if any core, original files that are part of the Software have been modified. The Author can deny technical support for any other breach of these Terms.

    -
  28. -
  29. Copyright notices or text may not be removed from the administration area of the Software.

    -
  30. -
  31. No person, company or organization is allowed to claim ownership, explicitly or implied that they are the authors or distributors of the Software.

    -
  32. -
  33. The Author reserves the right to update and modify these Terms at any time without notice. New features that may be added to the Software shall be subject to the EULA. Should you continue to use the Software after any such modifications have been made, this shall constitute your agreement to such modifications. You may always view the most recent copy of the EULA here: https://octobercms.com/eula/

    -
  34. -
  35. Ontario provincial law and any controlling Canadian federal law govern any action relating to these Terms. You agree to bring any and all such disputes (and irrevocably submit to personal jurisdiction and venue) in the province and federal courts located within the province of Ontario, Canada.

    -
  36. -
-

Violation of this EULA can result in prosecution according to the law, loss of rights to use the Software, denied technical or customer support or other results as deemed appropriate by the Author.

diff --git a/modules/system/views/placeholder.php b/modules/system/views/placeholder.php index e794f40011..b5c56c6bca 100644 --- a/modules/system/views/placeholder.php +++ b/modules/system/views/placeholder.php @@ -47,6 +47,13 @@ font-size: 18px; text-align: center; } + + @media (prefers-color-scheme: dark) { + html, body { + background-color: #1a202c; + color: #a0aec0; + } + } @@ -56,7 +63,7 @@
- php artisan october:build + php artisan october:install
diff --git a/modules/system/views/project.php b/modules/system/views/project.php deleted file mode 100644 index e362af8db7..0000000000 --- a/modules/system/views/project.php +++ /dev/null @@ -1,33 +0,0 @@ -

- -

- - - - -
- -
- -

- -
-
- - -
- - -
- - diff --git a/modules/system/views/setup.php b/modules/system/views/setup.php deleted file mode 100644 index 9ecefa69ac..0000000000 --- a/modules/system/views/setup.php +++ /dev/null @@ -1,173 +0,0 @@ -

- -

- - 'setupForm']) ?> - - -
-
- -
- - -
- -
- -
- -
- - - /> - - - - - - /> - - - - - - /> - - - - - - /> - - -
- - -
- -
-
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
- -
- - - -
-
- -
-
- - - -
-
- -
- -
-
- - - - diff --git a/modules/tailor/lang/de.json b/modules/tailor/lang/de.json index 04c604e158..378846fc09 100644 --- a/modules/tailor/lang/de.json +++ b/modules/tailor/lang/de.json @@ -24,8 +24,8 @@ "Hidden": "Versteckt", "Draft": "Entwurf", "Deleted": "Gelöscht", - "Slug": "Schnecke", - "Enabled": "Ermöglicht", + "Slug": "Slug", + "Enabled": "Aktiv", "Schedule publish date": "Veröffentlichung planen", "Set expiry date": "Ablaufdatum setzen", "View full slug": "Volle URL anzeigen", @@ -52,4 +52,4 @@ "Publish Date": "Erscheinungsdatum", "Expiry Date": "Verfallsdatum", "Entry Type": "Eintragstyp" -} \ No newline at end of file +} diff --git a/modules/tailor/lang/pt-br.json b/modules/tailor/lang/pt-br.json index 7a73a41bfd..da0e89c9ca 100644 --- a/modules/tailor/lang/pt-br.json +++ b/modules/tailor/lang/pt-br.json @@ -1,2 +1,55 @@ { -} \ No newline at end of file + "Manage Entries": "Gerenciar entradas", + "Create :name Entry": "Criar :name da entrada", + "New :name Entry": "Nova entrada :name", + "Import Entries": "Importar entradas", + "Export Entries": "Exportar entradas", + "First Draft": "Primeiro Rascunho", + "Draft Saved": "Rascunho salvo", + "Draft Applied": "Rascunho aplicado", + "Draft Created": "Rascunho criado", + "Draft Discarded": "Rascunho descartado", + "Create Entry": "Criar entrada", + "Publish Entry": "Publicar entrada", + "Delete Entry": "Excluir entrada", + "Entries have been disabled": "As entradas foram desativadas", + "Entries have been enabled": "As entradas foram habilitadas", + "Entries have been deleted": "As entradas foram excluídas", + "Manage Blueprints": "Gerenciar Planta", + "All Entries": "Todas as entradas", + "Published Date": "Data de Publicação", + "Published": "Publicado", + "Expired": "Expirado", + "Scheduled": "Agendado", + "Hidden": "Escondido", + "Draft": "Rascunho", + "Deleted": "Excluído", + "Slug": "Slug", + "Enabled": "Ativado", + "Schedule publish date": "Agendar data de publicação", + "Set expiry date": "Definir data de expiração", + "View full slug": "Ver slug completo", + "Apply this Draft": "Aplicar este Rascunho", + "Remove": "Remover", + "Drafts are not visible on the website until they are applied.": "Rascunhos não são visíveis no site até que sejam aplicados.", + "Save Draft": "Salvar rascunho", + "Do you really want to discard the draft?": "Você realmente deseja descartar o draft?", + "Discard Draft": "Descartar Rascunho", + "Save & Apply Draft": "Salvar e aplicar rascunho", + "Do you really want to delete the record? It will also delete all drafts if any exist.": "Você realmente deseja excluir o registro? Ele também excluirá todos os rascunhos, se houver algum.", + "Create new Draft": "Criar novo rascunho", + "Select Draft to Edit": "Selecione Rascunho para Editar", + "Edit the Primary Record": "Editar o registro primário", + "Unnamed draft": "Rascunho sem nome", + "Notes": "Notas", + "The document has unsaved changes. Do you want to discard them and proceed with creating a new draft?": "O documento possui alterações não salvas. Deseja descartá-las e continuar com a criação de um novo rascunho?", + "Preview": "Visualizar", + "Unsaved": "Não salvo", + "put the draft notes here": "coloque o rascunho das notas aqui", + "Top level": "Nível superior", + "Draft name: draft notes": "Eascunho :name notas de rascunho", + "Title": "Título", + "Publish Date": "Data de Publicação", + "Expiry Date": "Data de validade", + "Entry Type": "Tipo de entrada" +} diff --git a/modules/tailor/lang/pt-br/lang.php b/modules/tailor/lang/pt-br/lang.php new file mode 100644 index 0000000000..7f74b727f8 --- /dev/null +++ b/modules/tailor/lang/pt-br/lang.php @@ -0,0 +1,33 @@ + [ + 'saved' => 'Planta salva', + 'reloaded' => 'Planta recarregada', + 'deleted' => 'Planta excluída', + 'delete' => 'Excluir', + 'new' => 'Nova Planta', + 'editor_node_name' => 'Plantas', + 'upload_files' => 'Carregar arquivo(s)', + 'rename' => 'Renomear', + 'create_directory' => 'Novo diretório', + 'editor_yaml' => 'YAML', + 'error_loading' => 'Erro ao carregar a planta', + 'not_found' => 'Planta não encontrada', + 'apply' => 'Salvar e migrar', + 'invalid_file' => 'Nome de arquivo inválido: :name. Os nomes dos arquivos podem conter apenas símbolos alfanuméricos, sublinhados, traços e pontos. Alguns exemplos de nomes de arquivo corretos: blueprint.yaml, subdiretorio/blueprint.yaml', + 'migrating' => 'Migrando planta', + 'migrated' => 'A planta foi migrada com sucesso', + 'mixin' => 'Misturando', + 'entry' => 'Entrada', + 'stream' => 'Transmissão', + 'structure' => 'Estrutura', + 'single' => 'Único', + 'global' => 'Global/Configuração', + ], + 'editor' => [ + 'create' => 'Criar', + 'refresh' => 'Atualizar', + 'blueprint' => 'PLanta', + 'invalid_type' => 'Tipo de modelo desconhecido.', + 'error_no_doctype_permissions' => 'Você não tem permissão para gerenciar o tipo de documento: :doctype', + ], +]; diff --git a/modules/tailor/lang/ru.json b/modules/tailor/lang/ru.json index fbe0518d67..fc4c084787 100644 --- a/modules/tailor/lang/ru.json +++ b/modules/tailor/lang/ru.json @@ -24,7 +24,7 @@ "Hidden": "Скрытый", "Draft": "Черновик", "Deleted": "Удалено", - "Slug": "Слизняк", + "Slug": "Ссылка", "Enabled": "Включено", "Schedule publish date": "Запланировать дату публикации", "Set expiry date": "Дата снятии с публикации", @@ -52,4 +52,4 @@ "Publish Date": "Дата публикации", "Expiry Date": "Дата истечения срока", "Entry Type": "Тип входа" -} \ No newline at end of file +} diff --git a/package.json b/package.json index d9cbe84773..e02c730832 100644 --- a/package.json +++ b/package.json @@ -1,47 +1,35 @@ { "name": "octobercms", + "homepage": "https://octobercms.com/", "description": "October CMS is a self-hosted CMS platform based on the Laravel PHP Framework.", - "directories": { - "test": "tests/js/cases", - "helpers": "tests/js/helpers" - }, "scripts": { - "compile-less": "php artisan october:util compile less", - "compile-js": "php artisan october:util compile js", - "watch-less": "onchange -v \"modules/**/*.less\" \"plugins/**/*.less\" -- php artisan october:util compile less", - "watch-js": "onchange -v \"modules/**/*.js\" \"plugins/**/*.js\" --exclude \"**/*-min.js\" -- php artisan october:util compile js", - "test": "mocha --require @babel/register tests/js/cases/**/*.js" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/octobercms/october.git" + "dev": "npm run development", + "development": "mix", + "watch": "mix watch", + "watch-poll": "mix watch -- --watch-options-poll=1000", + "hot": "mix watch --hot", + "prod": "npm run production", + "production": "mix --production" }, - "contributors": [ - { - "name": "Alexey Bobkov", - "email": "aleksey.bobkov@gmail.com" - }, - { - "name": "Samuel Georges", - "email": "daftspunky@gmail.com" - } - ], - "bugs": { - "url": "https://github.com/octobercms/october/issues" - }, - "homepage": "https://octobercms.com/", "devDependencies": { - "@babel/cli": "^7.5.5", - "@babel/core": "^7.5.5", - "@babel/node": "^7.5.5", - "@babel/preset-env": "^7.5.5", - "@babel/register": "^7.5.5", - "babel-plugin-module-resolver": "^3.2.0", - "chai": "^4.2.0", - "jquery": "^3.4.1", - "jsdom": "^16.5.0", - "mocha": "^6.2.0", - "onchange": "^6.1.0", - "sinon": "^7.4.1" + "babel-plugin-module-resolver": "^4.1.0", + "laravel-mix": "^6.0.39", + "less": "^4.1.2", + "less-loader": "^10.2.0", + "sass": "^1.45.0", + "sass-loader": "^12.1.0" + }, + "dependencies": { + "@popperjs/core": "^2.11.5", + "bluebird": "^3.7.2", + "bootstrap": "^5.2", + "bootstrap-icons": "^1.8.1", + "dropzone": "^6.0.0-beta.2", + "jquery": "^3.6.0", + "js-cookie": "^3.0.1", + "popper.js": "^1.16.1", + "sortablejs": "^1.15.0", + "vue": "^2.6.14", + "vue-router": "^3.5.3" } } diff --git a/phpcs.xml b/phpcs.xml index fb9d971f86..fcdc873e1d 100644 --- a/phpcs.xml +++ b/phpcs.xml @@ -7,36 +7,38 @@ https://octobercms.com/help/guidelines/developer#psr-exceptions --> - + + + - + */database/migrations/*\.php - */tests/* - - - */tests/* - - - bootstrap/ + app/ config/ modules/ plugins/october/demo/ - tests/ */vendor/* - - modules/system/views/exception.php - - tests/fixtures/plugins/testvendor/goto/Plugin.php + + + */modules/*/tests/* + + + */modules/*/views/* + + + */modules/*/elements/* + + + */modules/*/layouts/* + */modules/*/controllers/*/* + + + */modules/**/_* diff --git a/themes/demo/README.md b/themes/demo/README.md index f01a538329..55fc8bf1d7 100644 --- a/themes/demo/README.md +++ b/themes/demo/README.md @@ -1,7 +1,7 @@ Demo Theme ========== -October CMS demo theme that demonstrates the basic core functionality and utilizes the accompanying demo plugin. It is a great theme to copy when building a site from scratch. +October CMS demo theme that demonstrates the basic core functionality and utilizes the accompanying demo plugin. It is a great theme to copy when building a site from scratch. The theme acts as a reference implementation for default component markup when distributing plugins. @@ -40,7 +40,7 @@ Uncombined JavaScript: - {% framework extras %} + {% framework extras turbo %} Combined JavaScript: diff --git a/themes/demo/assets/js/app.js b/themes/demo/assets/js/app.js index 1b7a7a0a9d..5668a836a7 100644 --- a/themes/demo/assets/js/app.js +++ b/themes/demo/assets/js/app.js @@ -1,4 +1,4 @@ -$(document).on('render', function() { +addEventListener('render', function() { // Auto Collapsed List // diff --git a/themes/demo/assets/less/layouts/blog.less b/themes/demo/assets/less/layouts/blog.less index da3d985970..1ed9a159d6 100644 --- a/themes/demo/assets/less/layouts/blog.less +++ b/themes/demo/assets/less/layouts/blog.less @@ -4,23 +4,25 @@ // Blog Layout Stylesheet // -.sidebar-search { - padding-bottom: 40px; -} +body.blog-layout { + .sidebar-search { + padding-bottom: 40px; + } -.sidebar-about { - font-size: 16px; - padding-bottom: 20px; + .sidebar-about { + font-size: 16px; + padding-bottom: 20px; - p:last-child { - margin-bottom: 0; + p:last-child { + margin-bottom: 0; + } } -} -.sidebar-social { - padding-bottom: 20px; -} + .sidebar-social { + padding-bottom: 20px; + } -.sidebar-categories { - padding-bottom: 20px; + .sidebar-categories { + padding-bottom: 20px; + } } diff --git a/themes/demo/assets/less/layouts/default.less b/themes/demo/assets/less/layouts/default.less index d00c9a3845..6348529997 100644 --- a/themes/demo/assets/less/layouts/default.less +++ b/themes/demo/assets/less/layouts/default.less @@ -1,8 +1,9 @@ @import "../theme/boot"; // -// Default Layout Stylesheet +// Default Layout Stylesheet (All pages) // + #layout-header { &, &.navbar { background: linear-gradient(102.01deg, #DB6A26 0.3%, #DBB326 106.31%); @@ -24,21 +25,28 @@ #layout-header .navbar { min-height: 155px; - position: relative; - overflow: hidden; - z-index: 1; - > .container { + > .navbar-container.container { position: relative; + z-index: 2; } // Decorations + .navbar-decorations { + position: absolute; + z-index: 1; + top: 0; + bottom: 0; + left: 0; + right: 0; + } + .navbar-decoration-1 { .decoration-circle(); width: 524px; height: 524px; left: -105px; - top: -475px; + top: -420px; opacity: .04; } @@ -47,7 +55,7 @@ width: 524px; height: 524px; left: 548px; - top: -440px; + top: -385px; opacity: .05; } } diff --git a/themes/demo/assets/less/layouts/home.less b/themes/demo/assets/less/layouts/home.less index 7ee0d51239..2b25a122b6 100644 --- a/themes/demo/assets/less/layouts/home.less +++ b/themes/demo/assets/less/layouts/home.less @@ -1,11 +1,23 @@ -#layout-nav.navbar { - padding-top: 30px; - padding-bottom: 30px; - - // Fixed top - position: absolute; - left: 0; - right: 0; - top: 0; - z-index: 1030; +@import "../theme/boot"; + +// +// Home Layout Stylesheet +// + +body.home-layout { + #layout-nav.navbar { + padding-top: 30px; + padding-bottom: 30px; + + // Fixed top + position: absolute; + left: 0; + right: 0; + top: 0; + z-index: 1030; + } + + #layout-content { + padding-top: 0; + } } diff --git a/themes/demo/assets/less/layouts/wiki.less b/themes/demo/assets/less/layouts/wiki.less index bb3c59b51d..a5e9e1661b 100644 --- a/themes/demo/assets/less/layouts/wiki.less +++ b/themes/demo/assets/less/layouts/wiki.less @@ -4,6 +4,8 @@ // Wiki Layout Stylesheet // -.sidebar-search { - padding-bottom: 40px; +body.wiki-layout { + .sidebar-search { + padding-bottom: 40px; + } } diff --git a/themes/demo/assets/less/theme.less b/themes/demo/assets/less/theme.less index 946b47b266..ad16467407 100644 --- a/themes/demo/assets/less/theme.less +++ b/themes/demo/assets/less/theme.less @@ -11,6 +11,17 @@ @import "theme/common"; +// +// Layouts +// +// These are layout specific stylesheets +// + +@import "layouts/default"; +@import "layouts/home"; +@import "layouts/blog"; +@import "layouts/wiki"; + // // Controls // diff --git a/themes/demo/layouts/blog.htm b/themes/demo/layouts/blog.htm index 2be252274c..62299aa00e 100644 --- a/themes/demo/layouts/blog.htm +++ b/themes/demo/layouts/blog.htm @@ -1,11 +1,7 @@ ## description = "Blog layout" -[backendLink] - [resources] -less[] = "layouts/default.less" -less[] = "layouts/blog.less" vars[activeBlogCategory] = "" == @@ -13,7 +9,7 @@ {% partial 'site/meta' %} - +
diff --git a/themes/demo/layouts/default.htm b/themes/demo/layouts/default.htm index 81d8c9d07c..3f717fdc12 100644 --- a/themes/demo/layouts/default.htm +++ b/themes/demo/layouts/default.htm @@ -1,10 +1,5 @@ ## description = "Default layout" - -[backendLink] - -[resources] -less[] = "layouts/default.less" == diff --git a/themes/demo/layouts/home.htm b/themes/demo/layouts/home.htm index 19129bc558..f213da17a6 100644 --- a/themes/demo/layouts/home.htm +++ b/themes/demo/layouts/home.htm @@ -1,10 +1,5 @@ ## description = "Default layout" - -[backendLink] - -[resources] -less[] = "layouts/home.less" == @@ -12,7 +7,7 @@ {% partial 'site/meta' %} - +