diff --git a/.eslintignore b/.eslintignore
index 8e747f5b..a710e413 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -1,4 +1,2 @@
vendor/
-vendor-overwrites/*
-!vendor-overwrites/colorpicker
-!vendor-overwrites/csslint
+vendor-overwrites/
diff --git a/.eslintrc.yml b/.eslintrc.yml
index 0871bcad..ffcbf8ce 100644
--- a/.eslintrc.yml
+++ b/.eslintrc.yml
@@ -8,6 +8,9 @@ env:
es6: true
webextensions: true
+globals:
+ require: readonly # in polyfill.js
+
rules:
accessor-pairs: [2]
array-bracket-spacing: [2, never]
@@ -19,7 +22,7 @@ rules:
brace-style: [2, 1tbs, {allowSingleLine: false}]
camelcase: [2, {properties: never}]
class-methods-use-this: [2]
- comma-dangle: [0]
+ comma-dangle: [2, {arrays: always-multiline, objects: always-multiline}]
comma-spacing: [2, {before: false, after: true}]
comma-style: [2, last]
complexity: [0]
@@ -42,7 +45,15 @@ rules:
id-blacklist: [0]
id-length: [0]
id-match: [0]
- indent-legacy: [2, 2, {VariableDeclarator: 0, SwitchCase: 1}]
+ indent: [2, 2, {
+ SwitchCase: 1,
+ ignoreComments: true,
+ ignoredNodes: [
+ "TemplateLiteral > *",
+ "ConditionalExpression",
+ "ForStatement"
+ ]
+ }]
jsx-quotes: [0]
key-spacing: [0]
keyword-spacing: [2]
@@ -86,7 +97,7 @@ rules:
no-empty: [2, {allowEmptyCatch: true}]
no-eq-null: [0]
no-eval: [2]
- no-ex-assign: [2]
+ no-ex-assign: [0]
no-extend-native: [2]
no-extra-bind: [2]
no-extra-boolean-cast: [2]
@@ -136,6 +147,9 @@ rules:
no-proto: [2]
no-redeclare: [2]
no-regex-spaces: [2]
+ no-restricted-globals: [2, name, event]
+ # `name` and `event` (in Chrome) are built-in globals
+ # but we don't use these globals so it's most likely a mistake/typo
no-restricted-imports: [0]
no-restricted-modules: [2, domain, freelist, smalloc, sys]
no-restricted-syntax: [2, WithStatement]
@@ -163,7 +177,7 @@ rules:
no-unreachable: [2]
no-unsafe-finally: [2]
no-unsafe-negation: [2]
- no-unused-expressions: [1]
+ no-unused-expressions: [2]
no-unused-labels: [0]
no-unused-vars: [2, {args: after-used}]
no-use-before-define: [2, nofunc]
@@ -189,7 +203,7 @@ rules:
prefer-const: [1, {destructuring: all, ignoreReadBeforeAssign: true}]
quote-props: [0]
quotes: [1, single, avoid-escape]
- radix: [2, as-needed]
+ radix: [2, always]
require-jsdoc: [0]
require-yield: [2]
semi-spacing: [2, {before: false, after: true}]
@@ -220,3 +234,7 @@ overrides:
webextensions: false
parserOptions:
ecmaVersion: 2017
+
+ - files: ["**/*worker*.js"]
+ env:
+ worker: true
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
deleted file mode 100644
index 462d3f18..00000000
--- a/.github/ISSUE_TEMPLATE.md
+++ /dev/null
@@ -1,9 +0,0 @@
-* **Browser**:
-* **Operating System**:
-* **Stylus Version**:
-* **Screenshot**:
-
-
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 00000000..07ddd820
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,48 @@
+---
+name: Bug Report
+about: Create a report about a bug you experienced while using Stylus.
+title: "[Bug] Replace with title"
+assignees: ''
+---
+
+
+
+
+
+# Bug Report
+
+### Bug Description
+
+
+### Screenshots
+
+
+### CSS Code
+
+
+### System Information
+
+
+- OS:
+- Browser:
+- Stylus Version:
+
+### Additional Context
+
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b7714d1c..1dddcfb6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -3,18 +3,12 @@ on: [push, pull_request]
jobs:
test:
- strategy:
- fail-fast: false
- matrix:
- os: [ubuntu-latest]
- node: ['10', '12', '14']
-
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- - uses: actions/setup-node@v1
+ - uses: actions/setup-node@v2
with:
- node-version: ${{ matrix.node }}
+ node-version: '14'
- run: npm install
- run: npm test
diff --git a/README.md b/README.md
index 16d56267..62538abd 100644
--- a/README.md
+++ b/README.md
@@ -21,12 +21,9 @@ Stylus is a fork of Stylish for Chrome, also compatible with Firefox as a WebExt
## Screenshots
-
-
-
-
-
-
+Manager | Editor | Popup search | Popup config | Manager config | Options
+-|-|-|-|-|-
+ |  |  |  |  | 
## Help
@@ -47,15 +44,15 @@ See our [contributing](./.github/CONTRIBUTING.md) page for more details.
## License
-Inherited code from the original [Stylish](https://github.com/stylish-userstyles/stylish/):
+Inherited code from the original [Stylish](https://github.com/stylish-userstyles/stylish/):
Copyright © 2005-2014 [Jason Barnabe](jason.barnabe@gmail.com)
-Current Stylus:
+Current Stylus:
Copyright © 2017-2019 [Stylus Team](https://github.com/openstyles/stylus/graphs/contributors)
-**[GNU GPLv3](./LICENSE)**
+**[GNU GPLv3](./LICENSE)**
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/_locales/ar/messages.json b/_locales/ar/messages.json
index f35f7fca..96d320b4 100644
--- a/_locales/ar/messages.json
+++ b/_locales/ar/messages.json
@@ -1,19 +1,18 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylus لا يستطيع الوصول الى بعض انواع الملفات ( ملفات pdf و json )"
+ },
"addStyleLabel": {
- "message": "كتابة نمط جديد",
- "description": "Label for the button to go to the add style page"
+ "message": "كتابة نمط جديد"
},
"addStyleTitle": {
- "message": "إضافة نمط",
- "description": "Title of the page for adding styles"
+ "message": "إضافة نمط"
},
"appliesAdd": {
- "message": "إضافة",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "إضافة"
},
"appliesDisplay": {
"message": "ينطبق على: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -21,84 +20,64 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "والمزيد",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "و المزيد"
},
"appliesDomainOption": {
- "message": "عناوين URL في النطاق",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "عناوين URL في النطاق"
},
"appliesHelp": {
- "message": "استخدم عناصر تحكم 'ينطبق على' لتقييد عناوين URL التي ينطبق عليها الرمز في هذا القسم.",
- "description": "Help text for 'applies to' section"
+ "message": "استخدم عناصر تحكم 'ينطبق على' لتقييد عناوين URL التي ينطبق عليها الرمز في هذا القسم."
},
"appliesLabel": {
- "message": "ينطبق على",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "ينطبق على"
},
"appliesRegexpOption": {
- "message": "عناوين URL التي تطابق regexp",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "عناوين URL التي تطابق regexp"
},
"appliesRemove": {
- "message": "إزالة",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "إزالة"
},
"appliesSpecify": {
- "message": "تحديد",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "تحديد"
},
"appliesToEverything": {
- "message": "كل شيء",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "كل شيء"
},
"appliesUrlOption": {
- "message": "عنوان URL",
- "description": "Option to make the style apply to the entered string as a URL"
+ "message": "عنوان URL"
},
"appliesUrlPrefixOption": {
- "message": "عناوين URL البادئة بـ",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "عناوين URL البادئة بـ"
},
"checkAllUpdates": {
- "message": "البحث عن تحديثات لكل الأنماط",
- "description": "Label for the button to check all styles for updates"
+ "message": "البحث عن تحديثات لكل الأنماط"
},
"checkForUpdate": {
- "message": "البحث عن تحديث",
- "description": "Label for the button to check a single style for an update"
+ "message": "البحث عن تحديث"
},
"checkingForUpdate": {
- "message": "جارٍ البحث...",
- "description": "Text to display when checking a style for an update"
+ "message": "جارٍ البحث..."
},
"deleteStyleConfirm": {
- "message": "هل تريد بالتأكيد حذف هذا النمط؟",
- "description": "Confirmation before deleting a style"
+ "message": "هل تريد بالتأكيد حذف هذا النمط؟"
},
"deleteStyleLabel": {
- "message": "حذف",
- "description": "Label for the button to delete a style"
+ "message": "حذف"
},
"description": {
- "message": "يمكنك تغيير نمط الويب باستخدام Stylus، وهي أداة لإدارة أنماط المستخدم. وتتيح Stylus لك بسهولة تثبيت المظاهر والأشكال الخارجية لكل من Google، وFacebook وYouTube وOrkut فضلاً عن الكثير جدًا من مواقع الويب الأخرى.",
- "description": "Extension description"
+ "message": "يمكنك تغيير نمط الويب باستخدام Stylus، وهي أداة لإدارة أنماط المستخدم. وتتيح Stylus لك بسهولة تثبيت المظاهر والأشكال الخارجية لكل من Google، وFacebook وYouTube وOrkut فضلاً عن الكثير جدًا من مواقع الويب الأخرى."
},
"disableStyleLabel": {
- "message": "تعطيل",
- "description": "Label for the button to disable a style"
+ "message": "تعطيل"
},
"editStyleHeading": {
- "message": "تعديل النمط",
- "description": "Title of the page for editing styles"
+ "message": "تعديل النمط"
},
"editStyleLabel": {
- "message": "تعديل",
- "description": "Label for the button to go to the edit style page"
+ "message": "تعديل"
},
"editStyleTitle": {
"message": "تعديل النمط $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -106,60 +85,46 @@
}
},
"enableStyleLabel": {
- "message": "تمكين",
- "description": "Label for the button to enable a style"
+ "message": "تمكين"
},
"findStylesForSite": {
- "message": "البحث عن المزيد من الأنماط لموقع الويب هذا",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "البحث عن المزيد من الأنماط لموقع الويب هذا"
},
"helpAlt": {
- "message": "مساعدة",
- "description": "Alternate text for help buttons"
+ "message": "مساعدة"
},
"installUpdate": {
- "message": "تثبيت التحديث",
- "description": "Label for the button to install an update for a single style"
+ "message": "تثبيت التحديث"
},
"manageHeading": {
- "message": "الأنماط المثبتة",
- "description": "Heading for the manage page"
+ "message": "الأنماط المثبتة"
},
"noStylesForSite": {
- "message": "لم يتم تثبيت أي أنماط لموقع الويب هذا.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "لم يتم تثبيت أي أنماط لموقع الويب هذا."
},
"openManage": {
- "message": "إدارة الأنماط المثبتة",
- "description": "Link to open the manage page."
+ "message": "إدارة الأنماط المثبتة"
},
"sectionAdd": {
- "message": "إضافة قسم آخر",
- "description": "Label for the button to add a section"
+ "message": "إضافة قسم آخر"
},
"sectionCode": {
- "message": "الرمز",
- "description": "Label for the code for a section"
+ "message": "الرمز"
},
"sectionRemove": {
- "message": "إزالة القسم",
- "description": "Label for the button to remove a section"
+ "message": "إزالة القسم"
},
"styleCancelEditLabel": {
- "message": "رجوع للإدارة",
- "description": "Label for cancel button for style editing"
+ "message": "رجوع للإدارة"
},
"styleChangesNotSaved": {
- "message": "لقد أجريت تغييرات على هذا النمط بدون حفظها.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "لقد أجريت تغييرات على هذا النمط بدون حفظها."
},
"styleEnabledLabel": {
- "message": "ممكّن",
- "description": "Label for the enabled state of styles"
+ "message": "ممكّن"
},
"styleInstall": {
"message": "هل تريد تثبيت '$stylename$' في Stylus؟",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -167,20 +132,16 @@
}
},
"styleMissingName": {
- "message": "أدخل اسمًا",
- "description": "Error displayed when user saves without providing a name"
+ "message": "أدخل اسمًا"
},
"styleSaveLabel": {
- "message": "حفظ",
- "description": "Label for save button for style editing"
+ "message": "حفظ"
},
"styleToMozillaFormatHelp": {
- "message": "يمكن استخدام تنسيق موزيلا للرمز باستخدام Stylus للمتصفح فايرفوكس ويمكن إرساله إلى userstyles.org.",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "يمكن استخدام تنسيق موزيلا للرمز باستخدام Stylus للمتصفح فايرفوكس ويمكن إرساله إلى userstyles.org."
},
"updateCheckFailBadResponseCode": {
"message": "أخفق التحديث - استجاب الخادم بالرمز $code$",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -188,15 +149,12 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "أخفق التحديث - الخادم يتعذر الوصول إليه.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "أخفق التحديث - الخادم يتعذر الوصول إليه."
},
"updateCheckSucceededNoUpdate": {
- "message": "النمط محدّث.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "النمط محدّث."
},
"updateCompleted": {
- "message": "اكتمل التحديث.",
- "description": "Text that displays when an update completed"
+ "message": "اكتمل التحديث."
}
-}
\ No newline at end of file
+}
diff --git a/_locales/bg/messages.json b/_locales/bg/messages.json
index fce7dc43..0c1ca1b6 100644
--- a/_locales/bg/messages.json
+++ b/_locales/bg/messages.json
@@ -1,19 +1,15 @@
{
"addStyleLabel": {
- "message": "Писане на нов стил",
- "description": "Label for the button to go to the add style page"
+ "message": "Писане на нов стил"
},
"addStyleTitle": {
- "message": "Добавяне на стил",
- "description": "Title of the page for adding styles"
+ "message": "Добавяне на стил"
},
"appliesAdd": {
- "message": "Добавяне",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Добавяне"
},
"appliesDisplay": {
"message": "Приложимо за: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -21,196 +17,148 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "и още",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "и още"
},
"appliesDomainOption": {
- "message": "Адреси на домейна",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "Адреси на домейна"
},
"appliesHelp": {
- "message": "Използвайте 'Приложимо за', за да ограничите адресите, за които се отнася кода в отдела.",
- "description": "Help text for 'applies to' section"
+ "message": "Използвайте 'Приложимо за', за да ограничите адресите, за които се отнася кода в отдела."
},
"appliesLabel": {
- "message": "Приложимо за",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Приложимо за"
},
"appliesRegexpOption": {
- "message": "Адреси, съвпадащи с регулярен израз",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "Адреси, съвпадащи с регулярен израз"
},
"appliesRemove": {
- "message": "Премахване",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Премахване"
},
"appliesSpecify": {
- "message": "Уточняване",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Уточняване"
},
"appliesToEverything": {
- "message": "Всичко",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Всичко"
},
"appliesUrlOption": {
- "message": "Адрес",
- "description": "Option to make the style apply to the entered string as a URL"
+ "message": "Адрес"
},
"appliesUrlPrefixOption": {
- "message": "Адреси, започващи с",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "Адреси, започващи с"
},
"applyAllUpdates": {
- "message": "Прилагане на всички обновления",
- "description": "Label for the button to apply all detected updates"
+ "message": "Прилагане на всички обновления"
},
"backupButtons": {
- "message": "Резервни копия",
- "description": "Heading for backup"
+ "message": "Резервни копия"
},
"backupMessage": {
- "message": "Изберете файл или го влачете до страницата.",
- "description": "Message for backup"
+ "message": "Изберете файл или го влачете до страницата."
},
"bckpInstStyles": {
- "message": "Изнасяне на стилове",
- "description": ""
+ "message": "Изнасяне на стилове"
},
"checkAllUpdates": {
- "message": "Проверка на всички стилове за обновления",
- "description": "Label for the button to check all styles for updates"
+ "message": "Проверка на всички стилове за обновления"
},
"checkAllUpdatesForce": {
- "message": "Повторна проверка",
- "description": "Label for the button to apply all detected updates"
+ "message": "Повторна проверка"
},
"checkForUpdate": {
- "message": "Проверка за обновления",
- "description": "Label for the button to check a single style for an update"
+ "message": "Проверка за обновления"
},
"checkingForUpdate": {
- "message": "Проверяване...",
- "description": "Text to display when checking a style for an update"
+ "message": "Проверяване..."
},
"cm_autocompleteOnTyping": {
- "message": "Автоматично завършване при въвеждане",
- "description": "Label for the checkbox in the style editor."
+ "message": "Автоматично завършване при въвеждане"
},
"cm_indentWithTabs": {
- "message": "Подпрозорци с умен отстъп",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Подпрозорци с умен отстъп"
},
"cm_keyMap": {
- "message": "Клавиши",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Клавиши"
},
"cm_lineWrapping": {
- "message": "Пренасяне",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Пренасяне"
},
"cm_matchHighlight": {
- "message": "Осветяване",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Осветяване"
},
"cm_matchHighlightSelection": {
- "message": "Само избраното",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Само избраното"
},
"cm_matchHighlightToken": {
- "message": "Низа под показалеца",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Низа под показалеца"
},
"cm_resizeGripHint": {
- "message": "Щракнете два пъти за възстановяване/увеличаване на височината",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Щракнете два пъти за възстановяване/увеличаване на височината"
},
"cm_smartIndent": {
- "message": "Умен отстъп",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Умен отстъп"
},
"cm_tabSize": {
- "message": "Табулация",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Табулация"
},
"cm_theme": {
- "message": "Тема",
- "description": "Label for the style editor's CSS theme."
+ "message": "Тема"
},
"confirmCancel": {
- "message": "Отказ",
- "description": ""
+ "message": "Отказ"
},
"confirmDelete": {
- "message": "Изтриване",
- "description": ""
+ "message": "Изтриване"
},
"confirmNo": {
- "message": "Не",
- "description": "'No' button in a confirm dialog"
+ "message": "Не"
},
"confirmOK": {
- "message": "Добре",
- "description": ""
+ "message": "Добре"
},
"confirmStop": {
- "message": "Спиране",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Спиране"
},
"confirmYes": {
- "message": "Да",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Да"
},
"dbError": {
- "message": "Възникна грешка с базата от данни. Искате ли да посетите страницата с възможни решения?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Възникна грешка с базата от данни. Искате ли да посетите страницата с възможни решения?"
},
"defaultTheme": {
- "message": "по подразбиране",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "по подразбиране"
},
"deleteStyleConfirm": {
- "message": "Сигурни ли сте, че искате да изтриете стила?",
- "description": "Confirmation before deleting a style"
+ "message": "Сигурни ли сте, че искате да изтриете стила?"
},
"deleteStyleLabel": {
- "message": "Изтриване",
- "description": "Label for the button to delete a style"
+ "message": "Изтриване"
},
"description": {
- "message": "Пресъздайте стила на Мрежата със Стайлус, разширението за стилове. То ви позволява лесно да инсталиране теми за много сайтове.",
- "description": "Extension description"
+ "message": "Пресъздайте стила на Мрежата със Стайлус, разширението за стилове. То ви позволява лесно да инсталиране теми за много сайтове."
},
"disableAllStyles": {
- "message": "Изключване на всички стилове",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Изключване на всички стилове"
},
"disableStyleLabel": {
- "message": "Изключване",
- "description": "Label for the button to disable a style"
+ "message": "Изключване"
},
"dragDropMessage": {
- "message": "Пуснете резервното копие където и да е по страницата, за да го внесете.",
- "description": "Drag'n'drop message"
+ "message": "Пуснете резервното копие където и да е по страницата, за да го внесете."
},
"editDeleteText": {
- "message": "Изтриване",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Изтриване"
},
"editGotoLine": {
- "message": "Отиване на ред",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Отиване на ред"
},
"editStyleHeading": {
- "message": "Редактиране на стила",
- "description": "Title of the page for editing styles"
+ "message": "Редактиране на стила"
},
"editStyleLabel": {
- "message": "Редактиране",
- "description": "Label for the button to go to the edit style page"
+ "message": "Редактиране"
},
"editStyleTitle": {
"message": "Редактиране на стила $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -218,116 +166,88 @@
}
},
"enableStyleLabel": {
- "message": "Включване",
- "description": "Label for the button to enable a style"
+ "message": "Включване"
},
"exportLabel": {
- "message": "Изнасяне",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Изнасяне"
},
"findStylesForSite": {
- "message": "Още стилове за този сайт",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Още стилове за този сайт"
},
"genericDisabledLabel": {
- "message": "Изключено",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Изключено"
},
"genericHistoryLabel": {
- "message": "Хронология",
- "description": "Used in various places to show a history log of something"
+ "message": "Хронология"
},
"helpAlt": {
- "message": "Помощ",
- "description": "Alternate text for help buttons"
+ "message": "Помощ"
},
"helpKeyMapCommand": {
- "message": "Въведете име",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Въведете име"
},
"helpKeyMapHotkey": {
- "message": "Натиснете клавиш",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Натиснете клавиш"
},
"importAppendLabel": {
- "message": "Прибавяне към стила",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Прибавяне към стила"
},
"importAppendTooltip": {
- "message": "Прибавяне на внесения стил към текущия",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Прибавяне на внесения стил към текущия"
},
"importLabel": {
- "message": "Внасяне",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Внасяне"
},
"importReplaceLabel": {
- "message": "Презаписване на стила",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Презаписване на стила"
},
"importReplaceTooltip": {
- "message": "Презаписване на съдържанието на текщия стил с това от внесения",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Презаписване на съдържанието на текщия стил с това от внесения"
},
"importReportLegendAdded": {
- "message": "добавени",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "добавени"
},
"importReportLegendIdentical": {
- "message": "пропуснати еднакви",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "пропуснати еднакви"
},
"importReportLegendInvalid": {
- "message": "пропуснати невалидни",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "пропуснати невалидни"
},
"importReportLegendUpdatedBoth": {
- "message": "с обновени код и метаданни",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "с обновени код и метаданни"
},
"importReportLegendUpdatedCode": {
- "message": "с обновен код",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "с обновен код"
},
"importReportLegendUpdatedMeta": {
- "message": "с обновени метаданни",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "с обновени метаданни"
},
"importReportTitle": {
- "message": "Внасянето на стилове завърши",
- "description": "Title of the report shown after importing styles"
+ "message": "Внасянето на стилове завърши"
},
"importReportUnchanged": {
- "message": "Нищо не беше променено.",
- "description": "Message in the report shown after importing styles"
+ "message": "Нищо не беше променено."
},
"importReportUndone": {
- "message": "върнати стила",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "върнати стила"
},
"importReportUndoneTitle": {
- "message": "Внасянето беше отменено",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "Внасянето беше отменено"
},
"installUpdate": {
- "message": "Инсталиране на обновлението",
- "description": "Label for the button to install an update for a single style"
+ "message": "Инсталиране на обновлението"
},
"linkGetHelp": {
- "message": "Помощ",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Помощ"
},
"linkGetStyles": {
- "message": "Вземете стилове",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Вземете стилове"
},
"linterIssues": {
- "message": "Проблеми",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Проблеми"
},
"linterIssuesHelp": {
"message": "Проблеми, намерени от $link$ при следните правила:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -335,244 +255,181 @@
}
},
"manageFavicons": {
- "message": "Иконки на приложимите сайтовете",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Иконки на приложимите сайтовете"
},
"manageFaviconsGray": {
- "message": "Сиви",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Сиви"
},
"manageFaviconsHelp": {
- "message": "Разширението използва външна услуга https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Разширението използва външна услуга https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "Филтри",
- "description": "Label for filters container"
+ "message": "Филтри"
},
"manageHeading": {
- "message": "Инсталирани стилове",
- "description": "Heading for the manage page"
+ "message": "Инсталирани стилове"
},
"manageMaxTargets": {
- "message": "Брой на видимите приложими адреси",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "Брой на видимите приложими адреси"
},
"manageNewUI": {
- "message": "Нов интерфейс за управление",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Нов интерфейс за управление"
},
"manageOnlyEnabled": {
- "message": "Само включените стилове",
- "description": "Checkbox to show only enabled styles"
+ "message": "Само включените стилове"
},
"manageOnlyLocal": {
- "message": "Само местно създадените стилове",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Само местно създадените стилове"
},
"manageOnlyLocalTooltip": {
- "message": "(стиловете, които не са инсталирани през userstyles.org)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(стиловете, които не са инсталирани през userstyles.org)"
},
"manageOnlyUpdates": {
- "message": "Само стилове с обновления или проблеми",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Само стилове с обновления или проблеми"
},
"manageTitle": {
- "message": "Стилове",
- "description": "Title for the manage page"
+ "message": "Стилове"
},
"menuShowBadge": {
- "message": "Брой на активните стилове",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Брой на активните стилове"
},
"noStylesForSite": {
- "message": "Няма инсталирани стилове за сайта.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Няма инсталирани стилове за сайта."
},
"openManage": {
- "message": "Управление",
- "description": "Link to open the manage page."
+ "message": "Управление"
},
"openStylesManager": {
- "message": "Управление на стиловете",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "Управление на стиловете"
},
"optionsActions": {
- "message": "Действия",
- "description": ""
+ "message": "Действия"
},
"optionsAdvanced": {
- "message": "Разширени",
- "description": ""
+ "message": "Разширени"
},
"optionsAdvancedContextDelete": {
- "message": "Добавяне на 'Изтриване' в контекстното меню на редактора",
- "description": ""
+ "message": "Добавяне на 'Изтриване' в контекстното меню на редактора"
},
"optionsAdvancedExposeIframes": {
- "message": "Разкриване на 'iframes' чрез HTML[stylus-iframe]",
- "description": ""
+ "message": "Разкриване на 'iframes' чрез HTML[stylus-iframe]"
},
"optionsBadgeDisabled": {
- "message": "Цвят на фона, когато е изключено",
- "description": ""
+ "message": "Цвят на фона, когато е изключено"
},
"optionsBadgeNormal": {
- "message": "Цвят на фона",
- "description": ""
+ "message": "Цвят на фона"
},
"optionsCheck": {
- "message": "Обновяване на стиловете",
- "description": ""
+ "message": "Обновяване на стиловете"
},
"optionsCheckUpdate": {
- "message": "Проверка и инсталиране на наличните обновления",
- "description": ""
+ "message": "Проверка и инсталиране на наличните обновления"
},
"optionsCustomizeBadge": {
- "message": "Значка на иконката на лентата",
- "description": ""
+ "message": "Значка на иконката на лентата"
},
"optionsCustomizeIcon": {
- "message": "Иконка на лентата със сечива",
- "description": ""
+ "message": "Иконка на лентата със сечива"
},
"optionsCustomizePopup": {
- "message": "Падащ прозорец",
- "description": ""
+ "message": "Падащ прозорец"
},
"optionsCustomizeUpdate": {
- "message": "Обновления",
- "description": ""
+ "message": "Обновления"
},
"optionsHeading": {
- "message": "Настройки",
- "description": "Heading for options section on manage page."
+ "message": "Настройки"
},
"optionsIconDark": {
- "message": "Тъмни теми",
- "description": ""
+ "message": "Тъмни теми"
},
"optionsIconLight": {
- "message": "Светли теми",
- "description": ""
+ "message": "Светли теми"
},
"optionsOpen": {
- "message": "Отваряне",
- "description": ""
+ "message": "Отваряне"
},
"optionsOpenManager": {
- "message": "Управление на стиловете",
- "description": ""
+ "message": "Управление на стиловете"
},
"optionsPopupWidth": {
- "message": "Ширина на падащия прозорец (в пиксели)",
- "description": ""
+ "message": "Ширина на падащия прозорец (в пиксели)"
},
"optionsReset": {
- "message": "Зануляване на настройки на първоначалните стойности",
- "description": ""
+ "message": "Зануляване на настройки на първоначалните стойности"
},
"optionsResetButton": {
- "message": "Зануляване на настройките",
- "description": ""
+ "message": "Зануляване на настройките"
},
"optionsSubheading": {
- "message": "Още настройки",
- "description": "Subheading for options section on manage page."
+ "message": "Още настройки"
},
"optionsUpdateImportNote": {
- "message": "При внасянето на резервни копия от стари версии или от Стайлиш направете ръчна проверка за обновления, за да сте сигурни, че стиловете са актуални.",
- "description": ""
+ "message": "При внасянето на резервни копия от стари версии или от Стайлиш направете ръчна проверка за обновления, за да сте сигурни, че стиловете са актуални."
},
"popupStylesFirst": {
- "message": "Стилове преди командите",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "Стилове преди командите"
},
"prefShowBadge": {
- "message": "Брой на активните стилове за текущия сайт",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Брой на активните стилове за текущия сайт"
},
"replace": {
- "message": "Заместване",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Заместване"
},
"replaceAll": {
- "message": "Заместване на всички",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Заместване на всички"
},
"replaceWith": {
- "message": "Заместване с",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Заместване с"
},
"retrieveBckp": {
- "message": "Внасяне на стилове",
- "description": ""
+ "message": "Внасяне на стилове"
},
"search": {
- "message": "Търсене",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Търсене"
},
"searchRegexp": {
- "message": "Използвайте синтаксиса /re/ за търсене с регулярни изрази",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
- },
- "searchStyles": {
- "message": "Търсене на съдържанието",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "message": "Използвайте синтаксиса /re/ за търсене с регулярни изрази"
},
"sectionAdd": {
- "message": "Добавяне на друг отдел",
- "description": "Label for the button to add a section"
+ "message": "Добавяне на друг отдел"
},
"sectionCode": {
- "message": "Код",
- "description": "Label for the code for a section"
+ "message": "Код"
},
"sectionRemove": {
- "message": "Премахване на отдела",
- "description": "Label for the button to remove a section"
+ "message": "Премахване на отдела"
},
"shortcuts": {
- "message": "Клавишни комбинации",
- "description": "Go to shortcut configuration"
+ "message": "Клавишни комбинации"
},
"shortcutsNote": {
- "message": "Задаване на клавишни комбинации",
- "description": ""
+ "message": "Задаване на клавишни комбинации"
},
"styleBadRegexp": {
- "message": "Регулярният израз не е правилен.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Регулярният израз не е правилен."
},
"styleBeautify": {
- "message": "Разкрасяване",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "Разкрасяване"
},
"styleBeautifyIndentConditional": {
- "message": "Отстъп на @media, @supports",
- "description": "CSS-beautifier option"
+ "message": "Отстъп на @media, @supports"
},
"styleCancelEditLabel": {
- "message": "Назад към стиловете",
- "description": "Label for cancel button for style editing"
+ "message": "Назад към стиловете"
},
"styleChangesNotSaved": {
- "message": "Направили сте промени по стила без да ги запазите.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Направили сте промени по стила без да ги запазите."
},
"styleEnabledLabel": {
- "message": "Включено",
- "description": "Label for the enabled state of styles"
+ "message": "Включено"
},
"styleFromMozillaFormatPrompt": {
- "message": "Поставете кода във формат на Мозила",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Поставете кода във формат на Мозила"
},
"styleInstall": {
"message": "Да се инсталира ли '$stylename$'?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -580,68 +437,52 @@
}
},
"styleMissingName": {
- "message": "Въведете име",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Въведете име"
},
"styleMozillaFormatHeading": {
- "message": "Формат на Мозила",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Формат на Мозила"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "Стилът не е приложен поради неправилно използване на регулярни изрази",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "Стилът не е приложен поради неправилно използване на регулярни изрази"
},
"styleRegexpInvalidExplanation": {
- "message": "Има правила на регулярни изрази, които не могат да бъдат компилирани.",
- "description": ""
+ "message": "Има правила на регулярни изрази, които не могат да бъдат компилирани."
},
"styleRegexpPartialExplanation": {
- "message": "Стилът използва частично съвпадащи регулярни изрази и нарушава Спецификацията @document, която изисква пълно съвпадение на адреса. Засегнатите отдели не са приложени. Стилът вероятно е създаден в Stylish-for-Chrome, което неправилно проверява правилата на 'regexp()' още от първата версия (познат дефект).",
- "description": ""
+ "message": "Стилът използва частично съвпадащи регулярни изрази и нарушава Спецификацията @document, която изисква пълно съвпадение на адреса. Засегнатите отдели не са приложени. Стилът вероятно е създаден в Stylish-for-Chrome, което неправилно проверява правилата на 'regexp()' още от първата версия (познат дефект)."
},
"styleRegexpProblemTooltip": {
- "message": "Брой на неприложените отдели поради неправилно използване на регулярни изрази",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "Брой на неприложените отдели поради неправилно използване на регулярни изрази"
},
"styleRegexpTestButton": {
- "message": "Тест на регулярния израз",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "Тест на регулярния израз"
},
"styleRegexpTestFull": {
- "message": "Съвпадащи подпрозорци",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "Съвпадащи подпрозорци"
},
"styleRegexpTestInvalid": {
- "message": "Неправилните регулярни изрази са пропуснати",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "Неправилните регулярни изрази са пропуснати"
},
"styleRegexpTestNone": {
- "message": "Няма съвпадащи подпрозорци",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "Няма съвпадащи подпрозорци"
},
"styleRegexpTestPartial": {
- "message": "Не съвпада напълно, затова е пропуснато",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "Не съвпада напълно, затова е пропуснато"
},
"styleRegexpTestTitle": {
- "message": "Списък със съвпадащи отворени подпрозорци (щракнете на адреса, за да се фокусира на подпрозореца)",
- "description": "RegExp test report: title of the report"
+ "message": "Списък със съвпадащи отворени подпрозорци (щракнете на адреса, за да се фокусира на подпрозореца)"
},
"styleSaveLabel": {
- "message": "Запазване",
- "description": "Label for save button for style editing"
+ "message": "Запазване"
},
"styleToMozillaFormatHelp": {
- "message": "Форматът на Мозила може да се подаде в userstyles.org и да се използва със Стайлиш (Stylish)",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Форматът на Мозила може да се подаде в userstyles.org и да се използва със Стайлиш (Stylish)"
},
"styleToMozillaFormatTitle": {
- "message": "Стил във формат на Мозила",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Стил във формат на Мозила"
},
"styleUpdate": {
"message": "Сигурни ли сте, че искате да обновите '$stylename$'?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -649,44 +490,34 @@
}
},
"stylusUnavailableForURL": {
- "message": "Разширението не работи на такива страници.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Разширението не работи на такива страници."
},
"stylusUnavailableForURLdetails": {
- "message": "Като предпазна мярка, четецът забранява на разширенията да влияят на вградените страници (например chrome://version, about:addons, стандартната страница от Хром 61 и други), както и на страниците на други разширения. Достъпът до магазина с добавки на всеки четец също е ограничен.",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Като предпазна мярка, четецът забранява на разширенията да влияят на вградените страници (например chrome://version, about:addons, стандартната страница от Хром 61 и други), както и на страниците на други разширения. Достъпът до магазина с добавки на всеки четец също е ограничен."
},
"toggleStyle": {
- "message": "Превключване на стила",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "Превключване на стила"
},
"undo": {
- "message": "Отмяна",
- "description": "Button label"
+ "message": "Отмяна"
},
"undoGlobal": {
- "message": "Отмяна във всички отдели",
- "description": "CSS-beautify global Undo button label"
+ "message": "Отмяна във всички отдели"
},
"unreachableContentScript": {
- "message": "Няма връзка със страницата. Презаредете подпрозореца.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "Няма връзка със страницата. Презаредете подпрозореца."
},
"unreachableFileHint": {
- "message": "Разширението ще има достъп до адреси от типа file:// само ако включите съответната отметка на страницата chrome://extensions.",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "Разширението ще има достъп до адреси от типа file:// само ако включите съответната отметка на страницата chrome://extensions."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "Няма намерени обновления.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Няма намерени обновления."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "Някои от стиловете не са проверени, за да не се загубят местните редакции. Обновленията могат да бъдат принудени с индивидуална проверка или с пускането на още една проверка за всички (местните промени ще бъдат презаписани).",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Някои от стиловете не са проверени, за да не се загубят местните редакции. Обновленията могат да бъдат принудени с индивидуална проверка или с пускането на още една проверка за всички (местните промени ще бъдат презаписани)."
},
"updateCheckFailBadResponseCode": {
"message": "Неуспешно обновяване: сървърът отговори с код $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -694,47 +525,36 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Неуспешно обновяване: няма връзка със сървъра.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Неуспешно обновяване: няма връзка със сървъра."
},
"updateCheckHistory": {
- "message": "Хронология на проверките",
- "description": ""
+ "message": "Хронология на проверките"
},
"updateCheckManualUpdateForce": {
- "message": "Инсталиране на обновлението (местните редакции ще бъдат презаписани)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Инсталиране на обновлението (местните редакции ще бъдат презаписани)"
},
"updateCheckManualUpdateHint": {
- "message": "Принудителното обновяване ще презапише местните редакции.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Принудителното обновяване ще презапише местните редакции."
},
"updateCheckSkippedLocallyEdited": {
- "message": "Стилът е бил местно редактиран.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Стилът е бил местно редактиран."
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "Стилът може да е бил местно редактиран.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "Стилът може да е бил местно редактиран."
},
"updateCheckSucceededNoUpdate": {
- "message": "Стилът е обновен.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "Стилът е обновен."
},
"updateCompleted": {
- "message": "Обновяването е завършено.",
- "description": "Text that displays when an update completed"
+ "message": "Обновяването е завършено."
},
"updatesCurrentlyInstalled": {
- "message": "Инсталирани обновления:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
+ "message": "Инсталирани обновления:"
},
"writeStyleFor": {
- "message": "Писане на стил за: ",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
+ "message": "Писане на стил за: "
},
"writeStyleForURL": {
- "message": "този адрес",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
+ "message": "този адрес"
}
}
diff --git a/_locales/bg_BG/messages.json b/_locales/bg_BG/messages.json
index a52e967d..9e6a100f 100644
--- a/_locales/bg_BG/messages.json
+++ b/_locales/bg_BG/messages.json
@@ -1,19 +1,15 @@
{
"addStyleLabel": {
- "message": "Напиши нов стил",
- "description": "Label for the button to go to the add style page"
+ "message": "Напиши нов стил"
},
"addStyleTitle": {
- "message": "Добави стил",
- "description": "Title of the page for adding styles"
+ "message": "Добави стил"
},
"appliesAdd": {
- "message": "Добави",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Добави"
},
"appliesDisplay": {
"message": "Прилага се към: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -21,136 +17,103 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "и още",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "и още"
},
"appliesDomainOption": {
- "message": "URLи на домейна",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URLи на домейна"
},
"appliesHelp": {
- "message": "Използвайте \"Прилага се към\", за да ограничете адресите, за които ще работи кодът в тази секция.",
- "description": "Help text for 'applies to' section"
+ "message": "Използвайте \"Прилага се към\", за да ограничете адресите, за които ще работи кодът в тази секция."
},
"appliesLabel": {
- "message": "Прилага се към",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Прилага се към"
},
"appliesRegexpOption": {
- "message": "Адреси, съвпадащи с regexp",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "Адреси, съвпадащи с regexp"
},
"appliesRemove": {
- "message": "Премахни",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Премахни"
},
"appliesSpecify": {
- "message": "Уточни",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Уточни"
},
"appliesToEverything": {
- "message": "Всички",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Всички"
},
"appliesUrlPrefixOption": {
- "message": "URL започващи с",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL започващи с"
},
"applyAllUpdates": {
- "message": "Приложи всички промени",
- "description": "Label for the button to apply all detected updates"
+ "message": "Приложи всички промени"
},
"checkAllUpdates": {
- "message": "Провери всички стилове за обновления",
- "description": "Label for the button to check all styles for updates"
+ "message": "Провери всички стилове за обновления"
},
"checkForUpdate": {
- "message": "Провери за обновление",
- "description": "Label for the button to check a single style for an update"
+ "message": "Провери за обновление"
},
"checkingForUpdate": {
- "message": "Проверявам...",
- "description": "Text to display when checking a style for an update"
+ "message": "Проверявам..."
},
"cm_indentWithTabs": {
- "message": "Използвай табулация с умно отместване",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Използвай табулация с умно отместване"
},
"cm_keyMap": {
- "message": "Клавишни комбинации",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Клавишни комбинации"
},
"cm_lineWrapping": {
- "message": "Автоматично пренасяне",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Автоматично пренасяне"
},
"cm_smartIndent": {
- "message": "Използвай умно отместване",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Използвай умно отместване"
},
"cm_tabSize": {
- "message": "Размер на табулацията",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Размер на табулацията"
},
"cm_theme": {
- "message": "Тема",
- "description": "Label for the style editor's CSS theme."
+ "message": "Тема"
},
"confirmNo": {
- "message": "Не",
- "description": "'No' button in a confirm dialog"
+ "message": "Не"
},
"confirmStop": {
- "message": "Спри",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Спри"
},
"confirmYes": {
- "message": "Да",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Да"
},
"dbError": {
- "message": "Грешка в базата данни на Stylus. Желаеш ли да посетиш уебстраницата с възможни решения?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Грешка в базата данни на Stylus. Желаеш ли да посетиш уебстраницата с възможни решения?"
},
"defaultTheme": {
- "message": "по подразбиране",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "по подразбиране"
},
"deleteStyleConfirm": {
- "message": "Наистина ли искаш да изтриеш този стил?",
- "description": "Confirmation before deleting a style"
+ "message": "Наистина ли искаш да изтриеш този стил?"
},
"deleteStyleLabel": {
- "message": "Изтрий",
- "description": "Label for the button to delete a style"
+ "message": "Изтрий"
},
"description": {
- "message": "Промени уеба със Stylus, мениджър на потребителски стилове. Stylus ти позволява лесно да инсталираш теми и скинове за много популярни сайтове.",
- "description": "Extension description"
+ "message": "Промени уеба със Stylus, мениджър на потребителски стилове. Stylus ти позволява лесно да инсталираш теми и скинове за много популярни сайтове."
},
"disableAllStyles": {
- "message": "Изключи всички стилове",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Изключи всички стилове"
},
"disableStyleLabel": {
- "message": "Забрани",
- "description": "Label for the button to disable a style"
+ "message": "Забрани"
},
"editGotoLine": {
- "message": "Иди на ред (или ред:кол)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Иди на ред (или ред:кол)"
},
"editStyleHeading": {
- "message": "Промени стила",
- "description": "Title of the page for editing styles"
+ "message": "Промени стила"
},
"editStyleLabel": {
- "message": "Редактирай",
- "description": "Label for the button to go to the edit style page"
+ "message": "Редактирай"
},
"editStyleTitle": {
"message": "Редактирай стил $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -158,68 +121,52 @@
}
},
"enableStyleLabel": {
- "message": "Разреши",
- "description": "Label for the button to enable a style"
+ "message": "Разреши"
},
"exportLabel": {
- "message": "Експорт",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Експорт"
},
"helpAlt": {
- "message": "Помощ",
- "description": "Alternate text for help buttons"
+ "message": "Помощ"
},
"helpKeyMapCommand": {
- "message": "Напиши име на команда",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Напиши име на команда"
},
"helpKeyMapHotkey": {
- "message": "Натисни клавишна комбинация",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Натисни клавишна комбинация"
},
"importAppendLabel": {
- "message": "Добави към стил",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Добави към стил"
},
"importAppendTooltip": {
- "message": "Добави импортирания стил към текущия",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Добави импортирания стил към текущия"
},
"importLabel": {
- "message": "Импорт",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Импорт"
},
"importReplaceLabel": {
- "message": "Презапиши стила",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Презапиши стила"
},
"importReplaceTooltip": {
- "message": "Презапишете съдържанието на текущия стил с импортирания",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Презапишете съдържанието на текущия стил с импортирания"
},
"installButton": {
- "message": "Инсталирай стил",
- "description": "Label for install button"
+ "message": "Инсталирай стил"
},
"installButtonInstalled": {
- "message": "Стилът е инсталиран",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Стилът е инсталиран"
},
"installButtonReinstall": {
- "message": "Преинсталирай стила",
- "description": "Label for reinstall button"
+ "message": "Преинсталирай стила"
},
"installButtonUpdate": {
- "message": "Обнови стила",
- "description": "Label for update button"
+ "message": "Обнови стила"
},
"installUpdate": {
- "message": "Инсталирай обновление",
- "description": "Label for the button to install an update for a single style"
+ "message": "Инсталирай обновление"
},
"installUpdateFrom": {
"message": "В момента стилът се обновява от $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -227,28 +174,22 @@
}
},
"installUpdateFromLabel": {
- "message": "Провери за обновления",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Провери за обновления"
},
"license": {
- "message": "Лиценз",
- "description": "Label for the license"
+ "message": "Лиценз"
},
"linkGetHelp": {
- "message": "Получете помощ",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Получете помощ"
},
"linkGetStyles": {
- "message": "Вземете стилове",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Вземете стилове"
},
"linkTranslate": {
- "message": "Преведете",
- "description": "Transifex link text on the manage page"
+ "message": "Преведете"
},
"linterCSSLintIncompatible": {
"message": "CSSLint не поддържа $preprocessorname$ preprocessor",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -256,12 +197,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(Укажете правилата: 0 = забранен; 1 = предупреждения; 2 = грешки)",
- "description": "CSSLint rule config values"
+ "message": "(Укажете правилата: 0 = забранен; 1 = предупреждения; 2 = грешки)"
},
"linterConfigPopupTitle": {
"message": "Настройте конфигурация за $linter$ правила",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -269,20 +208,16 @@
}
},
"linterConfigTooltip": {
- "message": "Щракнете, за да конфигурирате този linter",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Щракнете, за да конфигурирате този linter"
},
"linterInvalidConfigError": {
- "message": "Не е записано заради тези неправилни настройки",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "Не е записано заради тези неправилни настройки"
},
"linterIssues": {
- "message": "Проблеми",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Проблеми"
},
"linterIssuesHelp": {
"message": "Тези проблеми бяха намерени от $link$:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -290,71 +225,54 @@
}
},
"linterJSONError": {
- "message": "Невалиден JSON формат",
- "description": "Setting linter config with invalid JSON"
+ "message": "Невалиден JSON формат"
},
"linterResetMessage": {
- "message": "За да върнете погрешно нулиране, натиснете Ctrl-Z (или Cmd-Z) в текстовия прозорец",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "За да върнете погрешно нулиране, натиснете Ctrl-Z (или Cmd-Z) в текстовия прозорец"
},
"linterRulesLink": {
- "message": "Вижте пълния списък с правила",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Вижте пълния списък с правила"
},
"liveReloadError": {
- "message": "Получи се грешка докато наблюдавахме файла",
- "description": "The label of live-reload error"
+ "message": "Получи се грешка докато наблюдавахме файла"
},
"liveReloadLabel": {
- "message": "Преглед на живо",
- "description": "The label of live-reload feature"
+ "message": "Преглед на живо"
},
"manageFilters": {
- "message": "Филтри",
- "description": "Label for filters container"
+ "message": "Филтри"
},
"manageHeading": {
- "message": "Инсталирани стилове",
- "description": "Heading for the manage page"
+ "message": "Инсталирани стилове"
},
"manageNewStyleAsUsercss": {
- "message": "като Потребителскиcss",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "като Потребителскиcss"
},
"manageNewUI": {
- "message": "Нова подредба на UI",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Нова подредба на UI"
},
"manageOnlyDisabled": {
- "message": "Само забранените стилове",
- "description": "Checkbox to show only disabled styles"
+ "message": "Само забранените стилове"
},
"manageOnlyEnabled": {
- "message": "Само разрешените стилове",
- "description": "Checkbox to show only enabled styles"
+ "message": "Само разрешените стилове"
},
"manageOnlyExternal": {
- "message": "Само външните стилове",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Само външните стилове"
},
"manageOnlyLocal": {
- "message": "Само локалните стилове",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Само локалните стилове"
},
"manageOnlyLocalTooltip": {
- "message": "(стиловете не инсталирани чрез страницата на userstyles.org)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(стиловете не инсталирани чрез страницата на userstyles.org)"
},
"manageOnlyNonUsercss": {
- "message": "Само не-Потребителскитеcss стилове",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Само не-Потребителскитеcss стилове"
},
"manageOnlyUpdates": {
- "message": "Само с обновления или проблеми",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Само с обновления или проблеми"
},
"manageOnlyUsercss": {
- "message": "Само Потребителскиcss стилове",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Само Потребителскиcss стилове"
}
-}
\ No newline at end of file
+}
diff --git a/_locales/ca/messages.json b/_locales/ca/messages.json
deleted file mode 100644
index 9e26dfee..00000000
--- a/_locales/ca/messages.json
+++ /dev/null
@@ -1 +0,0 @@
-{}
\ No newline at end of file
diff --git a/_locales/cs/messages.json b/_locales/cs/messages.json
index 4bd340b5..0bdcc8aa 100644
--- a/_locales/cs/messages.json
+++ b/_locales/cs/messages.json
@@ -1,23 +1,18 @@
{
"addStyleLabel": {
- "message": "Napsat nový styl",
- "description": "Label for the button to go to the add style page"
+ "message": "Napsat nový styl"
},
"addStyleTitle": {
- "message": "Přidat styl",
- "description": "Title of the page for adding styles"
+ "message": "Přidat styl"
},
"alphaChannel": {
- "message": "Neprůhlednost",
- "description": "Label of color's opacity"
+ "message": "Neprůhlednost"
},
"appliesAdd": {
- "message": "Přidat",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Přidat"
},
"appliesDisplay": {
"message": "Platí pro: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,280 +20,214 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "a další",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "a další"
},
"appliesDomainOption": {
- "message": "URL adresy na doméně",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL adresy na doméně"
},
"appliesHelp": {
- "message": "Nastavte „Platí pro“, pokud chcete omezit působnost kódu v této sekci na určité URL adresy.",
- "description": "Help text for 'applies to' section"
+ "message": "Nastavte „Platí pro“, pokud chcete omezit působnost kódu v této sekci na určité URL adresy."
},
"appliesLabel": {
- "message": "Platí pro",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Platí pro"
},
"appliesLineWidgetLabel": {
- "message": "Zobrazit část „platí pro“",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "Zobrazit část „platí pro“"
},
"appliesLineWidgetWarning": {
- "message": "Nefunguje s minimalizovaným CSS",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "Nefunguje s minimalizovaným CSS"
},
"appliesRegexpOption": {
- "message": "URL adresy odpovídající reg. výrazu",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URL adresy odpovídající reg. výrazu"
},
"appliesRemove": {
- "message": "Odstranit",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Odstranit"
},
"appliesRemoveError": {
- "message": "Poslední záznam „platí pro“ nelze odebrat.",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "Poslední záznam „platí pro“ nelze odebrat."
},
"appliesSpecify": {
- "message": "Specifikovat",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Specifikovat"
},
"appliesToEverything": {
- "message": "Vše",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Vše"
},
"appliesUrlOption": {
- "message": "URL adresa",
- "description": "Option to make the style apply to the entered string as a URL"
+ "message": "URL adresa"
},
"appliesUrlPrefixOption": {
- "message": "URL adresy začínající",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL adresy začínající"
},
"applyAllUpdates": {
- "message": "Použít všechny aktualizace",
- "description": "Label for the button to apply all detected updates"
+ "message": "Použít všechny aktualizace"
},
"author": {
- "message": "Autor",
- "description": "Label for the style author"
+ "message": "Autor"
},
"backupButtons": {
- "message": "Zálohovat",
- "description": "Heading for backup"
+ "message": "Zálohovat"
},
"backupMessage": {
- "message": "Vyberte soubor nebo ho přetáhněte na tuto stránku.",
- "description": "Message for backup"
+ "message": "Vyberte soubor nebo ho přetáhněte na tuto stránku."
},
"bckpInstStyles": {
- "message": "Exportovat styly",
- "description": ""
+ "message": "Exportovat styly"
},
"checkAllUpdates": {
- "message": "Aktualizovat všechny styly",
- "description": "Label for the button to check all styles for updates"
+ "message": "Aktualizovat všechny styly"
},
"checkAllUpdatesForce": {
- "message": "Vynutit aktualizaci (neprovedeny žádné změny stylů)",
- "description": "Label for the button to apply all detected updates"
+ "message": "Vynutit aktualizaci (neprovedeny žádné změny stylů)"
},
"checkForUpdate": {
- "message": "Zkontrolovat aktualizace",
- "description": "Label for the button to check a single style for an update"
+ "message": "Zkontrolovat aktualizace"
},
"checkingForUpdate": {
- "message": "Kontrola…",
- "description": "Text to display when checking a style for an update"
+ "message": "Kontrola…"
},
"clickToUninstall": {
- "message": "Klepnutím odinstalovat",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Klepnutím odinstalovat"
},
"cm_autoCloseBrackets": {
- "message": "Automaticky uzavírat závorky a uvozovky",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automaticky uzavírat závorky a uvozovky"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Automaticky přidat uzavírací párový znak po napsání otevíracího znaku ()[]{}''\"\"",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automaticky přidat uzavírací párový znak po napsání otevíracího znaku ()[]{}''\"\""
},
"cm_autocompleteOnTyping": {
- "message": "Automatické dokončování během psaní",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automatické dokončování během psaní"
},
"cm_colorpicker": {
- "message": "Paleta pro CSS barvy",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Paleta pro CSS barvy"
},
"cm_indentWithTabs": {
- "message": "Použít tabulátory s chytrým odsazením",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Použít tabulátory s chytrým odsazením"
},
"cm_keyMap": {
- "message": "Přiřazení kláves",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Přiřazení kláves"
},
"cm_lineWrapping": {
- "message": "Zalamování slov",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Zalamování slov"
},
"cm_matchHighlight": {
- "message": "Zvýraznění",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Zvýraznění"
},
"cm_matchHighlightSelection": {
- "message": "Pouze výběr",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Pouze výběr"
},
"cm_matchHighlightToken": {
- "message": "Stopa pod kurzorem",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Stopa pod kurzorem"
},
"cm_resizeGripHint": {
- "message": "Dvojklikem maximalizujete/obnovíte výšku",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Dvojklikem maximalizujete/obnovíte výšku"
},
"cm_selectByTokens": {
- "message": "Poklepáním vybírat tokeny",
- "description": "Label for the checkbox in the editor."
+ "message": "Poklepáním vybírat tokeny"
},
"cm_selectByTokensTooltip": {
- "message": "Příklad tokenů: .foo-bar-2 #aabbcc 0.32 !important\nJe-li vypnuto, jsou vybírána slova oddělená interpunkcí.",
- "description": ""
+ "message": "Příklad tokenů: .foo-bar-2 #aabbcc 0.32 !important\nJe-li vypnuto, jsou vybírána slova oddělená interpunkcí."
},
"cm_smartIndent": {
- "message": "Použít chytré odsazení",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Použít chytré odsazení"
},
"cm_tabSize": {
- "message": "Velikost tabulátorů",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Velikost tabulátorů"
},
"cm_theme": {
- "message": "Schéma",
- "description": "Label for the style editor's CSS theme."
+ "message": "Schéma"
},
"colorpickerSwitchFormatTooltip": {
- "message": "Přepínání formátů: HEX → RGB → HSL\nShift + klik pro obrácené pořadí.\nLze použít i klávesy PgUp (PageUp), PgDn (PageDown).",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "Přepínání formátů: HEX → RGB → HSL\nShift + klik pro obrácené pořadí.\nLze použít i klávesy PgUp (PageUp), PgDn (PageDown)."
},
"colorpickerTooltip": {
- "message": "Otevřít paletu barev",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Otevřít paletu barev"
},
"configOnChange": {
- "message": "při změně",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "při změně"
},
"configOnChangeTooltip": {
- "message": "Automaticky uložit a použít změny",
- "description": ""
+ "message": "Automaticky uložit a použít změny"
},
"configureStyle": {
- "message": "Konfigurovat",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "Konfigurovat"
},
"configureStyleOnHomepage": {
- "message": "Konfigurovat na stránce stylu",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "Konfigurovat na stránce stylu"
},
"confirmCancel": {
- "message": "Storno",
- "description": ""
+ "message": "Storno"
},
"confirmClose": {
- "message": "Zavřít",
- "description": "'Close' button in a confirm dialog"
+ "message": "Zavřít"
},
"confirmDefault": {
- "message": "Použít výchozí",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "Použít výchozí"
},
"confirmDelete": {
- "message": "Smazat",
- "description": ""
+ "message": "Smazat"
},
"confirmDiscardChanges": {
- "message": "Zahodit změny?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "Zahodit změny?"
},
"confirmNo": {
- "message": "Ne",
- "description": "'No' button in a confirm dialog"
+ "message": "Ne"
},
"confirmSave": {
- "message": "Uložit",
- "description": "'Save' button in a confirm dialog"
+ "message": "Uložit"
},
"confirmStop": {
- "message": "Zastavit",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Zastavit"
},
"confirmYes": {
- "message": "Ano",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Ano"
+ },
+ "connectingDropbox": {
+ "message": "Připojování k Dropboxu…"
},
"dateInstalled": {
- "message": "Datum instalace",
- "description": "Option text for the user to sort the style by install date"
+ "message": "Datum instalace"
},
"dateUpdated": {
- "message": "Datum aktualizace",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "Datum aktualizace"
},
"dbError": {
- "message": "Nastala chyba při používání Stylus databáze. Chcete navštívit webovou stránku s možnými řešeními?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Nastala chyba při používání Stylus databáze. Chcete navštívit webovou stránku s možnými řešeními?"
},
"defaultTheme": {
- "message": "výchozí",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "výchozí"
},
"deleteStyleConfirm": {
- "message": "Opravdu chcete tento styl smazat?",
- "description": "Confirmation before deleting a style"
+ "message": "Opravdu chcete tento styl smazat?"
},
"deleteStyleLabel": {
- "message": "Smazat",
- "description": "Label for the button to delete a style"
+ "message": "Smazat"
},
"description": {
- "message": "Změňte vzhled webů pomocí správce uživatelských stylů. Stylus umožňuje snadnou instalaci vzhledů a modifikací pro spoustu webů.",
- "description": "Extension description"
+ "message": "Změňte vzhled webů pomocí správce uživatelských stylů. Stylus umožňuje snadnou instalaci vzhledů a modifikací pro spoustu webů."
},
"disableAllStyles": {
- "message": "Vypnout všechny styly",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Vypnout všechny styly"
},
"disableStyleLabel": {
- "message": "Zakázat",
- "description": "Label for the button to disable a style"
+ "message": "Zakázat"
},
"dragDropMessage": {
- "message": "Pro import upusťte soubor zálohy kdekoliv na této stránce.",
- "description": "Drag'n'drop message"
+ "message": "Pro import upusťte soubor zálohy kdekoliv na této stránce."
},
"editDeleteText": {
- "message": "Smazat",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Smazat"
},
"editGotoLine": {
- "message": "Přejít na řádek (nebo na line:col)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Přejít na řádek (nebo na line:col)"
},
"editStyleHeading": {
- "message": "Upravit styl",
- "description": "Title of the page for editing styles"
+ "message": "Upravit styl"
},
"editStyleLabel": {
- "message": "Upravit",
- "description": "Label for the button to go to the edit style page"
+ "message": "Upravit"
},
"editStyleTitle": {
"message": "Upravit styl $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -306,208 +235,165 @@
}
},
"enableStyleLabel": {
- "message": "Povolit",
- "description": "Label for the button to enable a style"
+ "message": "Povolit"
},
"exportLabel": {
- "message": "Exportovat",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Exportovat"
+ },
+ "exportSavedSuccess": {
+ "message": "Soubor úspěšně uložen"
},
"externalFeedback": {
- "message": "Zpětná vazba",
- "description": "Label for the external link to send feedback for the style"
+ "message": "Zpětná vazba"
},
"externalHomepage": {
- "message": "Domovská stránka",
- "description": "Label for the external link to style's homepage"
+ "message": "Domovská stránka"
},
"externalLink": {
- "message": "Externí odkaz",
- "description": "Label for external links"
+ "message": "Externí odkaz"
},
"externalSupport": {
- "message": "Podpora",
- "description": "Label for the external link to style's support site"
+ "message": "Podpora"
},
"externalUsercssDocument": {
- "message": "Dokumentace pro Usercss",
- "description": "Label for the external link to usercss documentation"
+ "message": "Dokumentace pro Usercss"
},
"filteredStyles": {
"message": "zobrazeno $numShown$ z $numTotal$",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "Použitému filtru nevyhovují žádné styly",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "Použitému filtru nevyhovují žádné styly"
},
"findStyles": {
- "message": "Najít styly",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Najít styly"
},
"findStylesForSite": {
- "message": "Najít styly pro tento web",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Najít styly pro tento web"
},
"findStylesInline": {
- "message": "Zobrazit zde",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "Zobrazit zde"
},
"findStylesInlineTooltip": {
- "message": "Zobrazit výsledky vyhledávání v tomto okně.",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "Zobrazit výsledky vyhledávání v tomto okně."
},
"genericAdd": {
- "message": "Přidat",
- "description": "Used in various places for an action that adds something"
+ "message": "Přidat"
},
"genericClone": {
- "message": "Duplikovat",
- "description": "Used in various places for an action that clones something"
+ "message": "Duplikovat"
},
"genericDisabledLabel": {
- "message": "Zakázáno",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Zakázáno"
},
"genericEnabledLabel": {
- "message": "Povoleno",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "Povoleno"
},
"genericError": {
- "message": "Chyba",
- "description": "Used in various places to indicate some error occurred."
+ "message": "Chyba"
},
"genericHistoryLabel": {
- "message": "Historie",
- "description": "Used in various places to show a history log of something"
+ "message": "Historie"
},
"genericNext": {
- "message": "Další",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "Další"
},
"genericPrevious": {
- "message": "Předchozí",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "Předchozí"
},
"genericResetLabel": {
- "message": "Resetovat",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "Resetovat"
},
"genericSavedMessage": {
- "message": "Uloženo",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "Uloženo"
},
"genericTitle": {
- "message": "Název",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "Název"
},
"genericUnknown": {
- "message": "Neznámé",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "Neznámé"
+ },
+ "gettingStyles": {
+ "message": "Získávání všech stylů…"
},
"helpAlt": {
- "message": "Nápověda",
- "description": "Alternate text for help buttons"
+ "message": "Nápověda"
},
"helpKeyMapCommand": {
- "message": "Napište název příkazu",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Napište název příkazu"
},
"helpKeyMapHotkey": {
- "message": "Stiskněte kláves. zkratku",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Stiskněte kláves. zkratku"
},
"importAppendLabel": {
- "message": "Připojit ke stylu",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Připojit ke stylu"
},
"importAppendTooltip": {
- "message": "Připojit importovaný styl k současnému stylu",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Připojit importovaný styl k současnému stylu"
},
"importLabel": {
- "message": "Importovat",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Importovat"
},
"importReplaceLabel": {
- "message": "Přepsat styl",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Přepsat styl"
},
"importReplaceTooltip": {
- "message": "Zahodit obsah současného stylu a přepsat ho importovaným stylem",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Zahodit obsah současného stylu a přepsat ho importovaným stylem"
},
"importReportLegendAdded": {
- "message": "přidáno",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "přidáno"
},
"importReportLegendIdentical": {
- "message": "identické přeskočeny",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "identické přeskočeny"
},
"importReportLegendInvalid": {
- "message": "neplatné přeskočeny",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "neplatné přeskočeny"
},
"importReportLegendUpdatedBoth": {
- "message": "meta informace a kód aktualizován",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "meta informace a kód aktualizován"
},
"importReportLegendUpdatedCode": {
- "message": "kód aktualizován",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "kód aktualizován"
},
"importReportLegendUpdatedMeta": {
- "message": "meta informace aktualizována",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "meta informace aktualizována"
},
"importReportTitle": {
- "message": "Import stylů dokončen",
- "description": "Title of the report shown after importing styles"
+ "message": "Import stylů dokončen"
},
"importReportUnchanged": {
- "message": "Žádné změny.",
- "description": "Message in the report shown after importing styles"
+ "message": "Žádné změny."
},
"importReportUndone": {
- "message": "styly navráceny zpět",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "styly navráceny zpět"
},
"importReportUndoneTitle": {
- "message": "Import byl přerušen",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "Import byl přerušen"
},
"installButton": {
- "message": "Instalovat styl",
- "description": "Label for install button"
+ "message": "Instalovat styl"
},
"installButtonInstalled": {
- "message": "Styl instalován",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Styl instalován"
},
"installButtonReinstall": {
- "message": "Reinstalovat styl",
- "description": "Label for reinstall button"
+ "message": "Reinstalovat styl"
},
"installButtonUpdate": {
- "message": "Aktualizovat styl",
- "description": "Label for update button"
+ "message": "Aktualizovat styl"
},
"installUpdate": {
- "message": "Nainstalovat aktualizaci",
- "description": "Label for the button to install an update for a single style"
+ "message": "Nainstalovat aktualizaci"
},
"installUpdateFrom": {
"message": "Styl je aktuálně aktualizován z $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -515,28 +401,22 @@
}
},
"installUpdateFromLabel": {
- "message": "Vyhledat aktualizace",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Vyhledat aktualizace"
},
"license": {
- "message": "Licence",
- "description": "Label for the license"
+ "message": "Licence"
},
"linkGetHelp": {
- "message": "Nápověda",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Nápověda"
},
"linkGetStyles": {
- "message": "Získat styly",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Získat styly"
},
"linkTranslate": {
- "message": "Pomoci s překladem",
- "description": "Transifex link text on the manage page"
+ "message": "Pomoci s překladem"
},
"linterCSSLintIncompatible": {
"message": "CSSLint nepodporuje předprocesor $preprocessorname$",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -544,12 +424,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(Nastavení pravidel: 0 = vypnuto; 1 = upozornění; 2 = chyba)",
- "description": "CSSLint rule config values"
+ "message": "(Nastavení pravidel: 0 = vypnuto; 1 = upozornění; 2 = chyba)"
},
"linterConfigPopupTitle": {
"message": "Nastavení $linter$ pravidel",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -557,20 +435,16 @@
}
},
"linterConfigTooltip": {
- "message": "Upravit nastavení tohoto linteru",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Upravit nastavení tohoto linteru"
},
"linterInvalidConfigError": {
- "message": "Neuloženo z důvodu těchto neplatných nastavení:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "Neuloženo z důvodu těchto neplatných nastavení:"
},
"linterIssues": {
- "message": "Problémy",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Problémy"
},
"linterIssuesHelp": {
"message": "Problémy nalezené aplikací $link$:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -578,108 +452,82 @@
}
},
"linterJSONError": {
- "message": "Neplatný JSON formát",
- "description": "Setting linter config with invalid JSON"
+ "message": "Neplatný JSON formát"
},
"linterResetMessage": {
- "message": "Chcete-li vrátit změny náhodného resetu, stiskněte v textovém poli Ctrl + Z (resp. Cmd + Z)",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "Chcete-li vrátit změny náhodného resetu, stiskněte v textovém poli Ctrl + Z (resp. Cmd + Z)"
},
"linterRulesLink": {
- "message": "Zobrazit celý seznam pravidel",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Zobrazit celý seznam pravidel"
},
"liveReloadError": {
- "message": "Při sledování souboru došlo k chybě",
- "description": "The label of live-reload error"
+ "message": "Při sledování souboru došlo k chybě"
},
"liveReloadLabel": {
- "message": "Živá aktualizace",
- "description": "The label of live-reload feature"
+ "message": "Živá aktualizace"
},
"manageFavicons": {
- "message": "Favicony v části „Platí pro“ ",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Favicony v části „Platí pro“ "
},
"manageFaviconsGray": {
- "message": "Zešednutí",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Zešednutí"
},
"manageFaviconsHelp": {
- "message": "Stylus používá externí službu https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus používá externí službu https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "Filtry",
- "description": "Label for filters container"
+ "message": "Filtry"
},
"manageHeading": {
- "message": "Nainstalované styly",
- "description": "Heading for the manage page"
+ "message": "Nainstalované styly"
},
"manageMaxTargets": {
- "message": "Počet položek v části „Platí pro“",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "Počet položek v části „Platí pro“"
},
"manageNewStyleAsUsercss": {
- "message": "jako Usercss",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "jako Usercss"
},
"manageNewUI": {
- "message": "Nové rozložení správy rozhraní",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Nové rozložení správy rozhraní"
},
"manageOnlyDisabled": {
- "message": "Pouze vypnuté styly",
- "description": "Checkbox to show only disabled styles"
+ "message": "Pouze vypnuté styly"
},
"manageOnlyEnabled": {
- "message": "Pouze povolené styly",
- "description": "Checkbox to show only enabled styles"
+ "message": "Pouze povolené styly"
},
"manageOnlyExternal": {
- "message": "Pouze externí styly",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Pouze externí styly"
},
"manageOnlyLocal": {
- "message": "Pouze lokální styly",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Pouze lokální styly"
},
"manageOnlyLocalTooltip": {
- "message": "(styly nenainstalované prostřednictvím webu userstyles.org)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(styly nenainstalované prostřednictvím webu userstyles.org)"
},
"manageOnlyNonUsercss": {
- "message": "Pouze non-Usercss styly",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Pouze non-Usercss styly"
},
"manageOnlyUpdates": {
- "message": "Pouze s aktualizacemi nebo chybami",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Pouze s aktualizacemi nebo chybami"
},
"manageOnlyUsercss": {
- "message": "Pouze Usercss styly",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Pouze Usercss styly"
},
"menuShowBadge": {
- "message": "Zobrazit počet aktivních stylů",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Zobrazit počet aktivních stylů"
},
"meta_invalidNumber": {
- "message": "Očekáváno číslo",
- "description": "Error displayed when the value is expected to be a number"
+ "message": "Očekáváno číslo"
},
"meta_invalidString": {
- "message": "Očekáván řetězec v uvozovkách",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "Očekáván řetězec v uvozovkách"
},
"meta_invalidWord": {
- "message": "Očekáván text",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "Očekáván text"
},
"meta_missingChar": {
"message": "Očekávané znaky: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -688,7 +536,6 @@
},
"meta_unknownMeta": {
"message": "Neznámá metadata: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
@@ -697,7 +544,6 @@
},
"meta_unknownVarType": {
"message": "Neznámý typ @$varkey$: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -707,325 +553,251 @@
}
}
},
+ "noFileToImport": {
+ "message": "Před importem stylů byste je měli nejprve exportovat."
+ },
"noStylesForSite": {
- "message": "Pro tento web není nainstalován žádný styl.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Pro tento web není nainstalován žádný styl."
},
"openManage": {
- "message": "Spravovat",
- "description": "Link to open the manage page."
+ "message": "Spravovat"
},
"openStylesManager": {
- "message": "Otevřít správce stylů",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "Otevřít správce stylů"
},
"optionsActions": {
- "message": "Akce",
- "description": ""
+ "message": "Akce"
},
"optionsAdvanced": {
- "message": "Pokročilé",
- "description": ""
+ "message": "Pokročilé"
},
"optionsAdvancedContextDelete": {
- "message": "Přidat tlačítko Smazat do kontextové nabídky v editoru",
- "description": ""
+ "message": "Přidat tlačítko Smazat do kontextové nabídky v editoru"
},
"optionsAdvancedExposeIframes": {
- "message": "Obnažit iframe prvky pomocí HTML[stylus-iframe]",
- "description": ""
+ "message": "Obnažit iframe prvky pomocí HTML[stylus-iframe]"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "Napsat nový styl jako usercss",
- "description": ""
+ "message": "Napsat nový styl jako usercss"
},
"optionsBadgeDisabled": {
- "message": "Barva pozadí při zakázání",
- "description": ""
+ "message": "Barva pozadí při zakázání"
},
"optionsBadgeNormal": {
- "message": "Barva pozadí",
- "description": ""
+ "message": "Barva pozadí"
},
"optionsCheck": {
- "message": "Aktualizovat styly",
- "description": ""
+ "message": "Aktualizovat styly"
},
"optionsCheckUpdate": {
- "message": "Vyhledávat a instalovat všechny aktualizace",
- "description": ""
+ "message": "Vyhledávat a instalovat všechny aktualizace"
},
"optionsCustomizeBadge": {
- "message": "Ikona tlačítka na panelu",
- "description": ""
+ "message": "Ikona tlačítka na panelu"
},
"optionsCustomizeIcon": {
- "message": "Ikona na panelu nástrojů",
- "description": ""
+ "message": "Ikona na panelu nástrojů"
},
"optionsCustomizePopup": {
- "message": "Vyskakovací okno",
- "description": ""
+ "message": "Vyskakovací okno"
},
"optionsCustomizeUpdate": {
- "message": "Aktualizace",
- "description": ""
+ "message": "Aktualizace"
},
"optionsHeading": {
- "message": "Možnosti",
- "description": "Heading for options section on manage page."
+ "message": "Možnosti"
},
"optionsIconDark": {
- "message": "Tmavé vzhledy",
- "description": ""
+ "message": "Tmavé vzhledy"
},
"optionsIconLight": {
- "message": "Světlé vzhledy",
- "description": ""
+ "message": "Světlé vzhledy"
},
"optionsOpen": {
- "message": "Otevřít",
- "description": ""
+ "message": "Otevřít"
},
"optionsOpenManager": {
- "message": "Spravovat styly",
- "description": ""
+ "message": "Spravovat styly"
},
"optionsPopupWidth": {
- "message": "Šířka vyskakovacího okna [px]",
- "description": ""
+ "message": "Šířka vyskakovacího okna [px]"
},
"optionsReset": {
- "message": "Obnovit výchozí nastavení",
- "description": ""
+ "message": "Obnovit výchozí nastavení"
},
"optionsResetButton": {
- "message": "Obnovit nastavení",
- "description": ""
+ "message": "Obnovit nastavení"
},
"optionsSubheading": {
- "message": "Další možnosti",
- "description": "Subheading for options section on manage page."
+ "message": "Další možnosti"
},
"optionsUpdateImportNote": {
- "message": "Importujete-li zálohy stylů ze starší verze nebo z rozšíření Stylish, proveďte jednorázovou ruční kontrolu aktualizací ve správci stylů, aby byly všechny styly aktuální.",
- "description": ""
+ "message": "Importujete-li zálohy stylů ze starší verze nebo z rozšíření Stylish, proveďte jednorázovou ruční kontrolu aktualizací ve správci stylů, aby byly všechny styly aktuální."
},
"optionsUpdateInterval": {
- "message": "Interval automatické aktualizace stylů v hodinách (0 = vypnuto)",
- "description": ""
+ "message": "Interval automatické aktualizace stylů v hodinách (0 = vypnuto)"
+ },
+ "overwriteFileExport": {
+ "message": "Chcete přepsat stávající soubor?"
},
"paginationCurrent": {
- "message": "Aktuální stránka",
- "description": "Tooltip for the current page index in search results"
+ "message": "Aktuální stránka"
},
"paginationEstimated": {
- "message": "Odhadovaný počet stránek",
- "description": "Tooltip for the total page count in search results"
+ "message": "Odhadovaný počet stránek"
},
"paginationNext": {
- "message": "Další stránka",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "Další stránka"
},
"paginationPrevious": {
- "message": "Předchozí stránka",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "Předchozí stránka"
},
"paginationTotal": {
- "message": "Celkový počet stránek",
- "description": ""
+ "message": "Celkový počet stránek"
},
"parseUsercssError": {
- "message": "Usercss nelze zpracovat:",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "Usercss nelze zpracovat:"
},
"popupBorders": {
- "message": "Přidat postranní bílé okraje",
- "description": ""
+ "message": "Přidat postranní bílé okraje"
},
"popupBordersTooltip": {
- "message": "Užitečné pro tmavé motivy v novém Chromu, který již nevykresluje obrysové čáry",
- "description": ""
+ "message": "Užitečné pro tmavé motivy v novém Chromu, který již nevykresluje obrysové čáry"
},
"popupHotkeysTooltip": {
- "message": "Kliknutím zobrazíte dostupné klávesové zkratky",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "Kliknutím zobrazíte dostupné klávesové zkratky"
},
"popupManageTooltip": {
- "message": "Shift + kliknutím nebo pravým kliknutím otevřít správce se styly použitými na této stránce",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Shift + kliknutím nebo pravým kliknutím otevřít správce se styly použitými na této stránce"
},
"popupOpenEditInWindow": {
- "message": "Otevírat editor v novém okně",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Otevírat editor v novém okně"
},
"popupOpenEditInWindowTooltip": {
- "message": "K povolení dojde také při odepnutí listu editoru z okna prohlížeče,\na k vypnutí při připnutí samotného listu editoru do dalšího okna.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "K povolení dojde také při odepnutí listu editoru z okna prohlížeče,\na k vypnutí při připnutí samotného listu editoru do dalšího okna."
},
"popupStylesFirst": {
- "message": "Styly před příkazy",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "Styly před příkazy"
},
"prefShowBadge": {
- "message": "Počet aktivních stylů pro současnou stránku",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Počet aktivních stylů pro současnou stránku"
},
"previewLabel": {
- "message": "Živý náhled",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "Živý náhled"
},
"previewTooltip": {
- "message": "Dočasně použije změny bez uložení.\nUložte styl pro trvalé zachování změn.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "Dočasně použije změny bez uložení.\nUložte styl pro trvalé zachování změn."
+ },
+ "readingStyles": {
+ "message": "Čtení stylů…"
},
"replace": {
- "message": "Nahradit",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Nahradit"
},
"replaceAll": {
- "message": "Nahradit vše",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Nahradit vše"
},
"replaceWith": {
- "message": "Nahradit s",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Nahradit s"
},
"retrieveBckp": {
- "message": "Importovat styly",
- "description": ""
+ "message": "Importovat styly"
},
"search": {
- "message": "Vyhledat",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Vyhledat"
},
"searchCaseSensitive": {
- "message": "Rozeznávat VELKÁ a malá písmena",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "Rozeznávat VELKÁ a malá písmena"
},
"searchNumberOfResults": {
- "message": "Počet shod",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Počet shod"
},
"searchNumberOfResults2": {
- "message": "Počet shod v kódu a hodnotách „platí pro“",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Počet shod v kódu a hodnotách „platí pro“"
},
"searchRegexp": {
- "message": "Použijte /re/ syntaxi pro vyhledávání s regulérními výrazy",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "Použijte /re/ syntaxi pro vyhledávání s regulérními výrazy"
},
"searchResultInstallCount": {
- "message": "Celkový počet instalací",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "Celkový počet instalací"
},
"searchResultNoneFound": {
- "message": "Nenalezeny žádné styly pro tento web.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "Nenalezeny žádné styly pro tento web."
},
"searchResultRating": {
- "message": "Hodnocení",
- "description": "Text for label that shows the search result's rating"
+ "message": "Hodnocení"
},
"searchResultUpdated": {
- "message": "Aktualizováno",
- "description": "Text for label that shows the search result's last update date"
+ "message": "Aktualizováno"
},
"searchResultWeeklyCount": {
- "message": "Týdenní počet instalací",
- "description": "Text for label that shows the number of times a search result was installed during last week"
- },
- "searchStyles": {
- "message": "Prohledat obsah",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "message": "Týdenní počet instalací"
},
"sectionAdd": {
- "message": "Přidat další sekci",
- "description": "Label for the button to add a section"
+ "message": "Přidat další sekci"
},
"sectionCode": {
- "message": "Kód",
- "description": "Label for the code for a section"
+ "message": "Kód"
},
"sectionRemove": {
- "message": "Odstranit sekci",
- "description": "Label for the button to remove a section"
+ "message": "Odstranit sekci"
},
"sectionRestore": {
- "message": "Obnovit odstraněnou sekci",
- "description": "Label for the button to restore a removed section"
+ "message": "Obnovit odstraněnou sekci"
},
"shortcuts": {
- "message": "Zkratky",
- "description": "Go to shortcut configuration"
+ "message": "Zkratky"
},
"shortcutsNote": {
- "message": "Nastavit klávesové zkratky",
- "description": ""
+ "message": "Nastavit klávesové zkratky"
},
"sortDateNewestFirst": {
- "message": "nejdříve novější",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "nejdříve novější"
},
"sortDateOldestFirst": {
- "message": "starší nejdříve",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "starší nejdříve"
},
"sortLabel": {
- "message": "Zvolte způsob řazení instalovaných stylů",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "Zvolte způsob řazení instalovaných stylů"
},
"sortLabelTitleAsc": {
- "message": "Název (vzestupně)",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "Název (vzestupně)"
},
"sortLabelTitleDesc": {
- "message": "Název (sestupně)",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "Název (sestupně)"
},
"sortStylesHelpTitle": {
- "message": "Seřadit obsah",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "Seřadit obsah"
},
"styleBadRegexp": {
- "message": "Tento regulérní výraz je neplatný.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Tento regulérní výraz je neplatný."
},
"styleBeautify": {
- "message": "Zkrášlit",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "Zkrášlit"
},
"styleBeautifyIndentConditional": {
- "message": "Odsadit @media, @supports",
- "description": "CSS-beautifier option"
+ "message": "Odsadit @media, @supports"
},
"styleBeautifyPreserveNewlines": {
- "message": "Zachovat nové řádky",
- "description": "CSS-beautifier option"
+ "message": "Zachovat nové řádky"
},
"styleCancelEditLabel": {
- "message": "Zpět ke správě",
- "description": "Label for cancel button for style editing"
+ "message": "Zpět ke správě"
},
"styleChangesNotSaved": {
- "message": "Provedli jste změny tohoto stylu bez uložení.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Provedli jste změny tohoto stylu bez uložení."
},
"styleEnabledLabel": {
- "message": "Povolen",
- "description": "Label for the enabled state of styles"
+ "message": "Povolen"
},
"styleFromMozillaFormatError": {
- "message": "Import z Mozilla formátu se nezdařil",
- "description": "Label for the import error"
+ "message": "Import z Mozilla formátu se nezdařil"
},
"styleFromMozillaFormatPrompt": {
- "message": "Vložte kód v Mozilla formátu",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Vložte kód v Mozilla formátu"
},
"styleInstall": {
"message": "Nainstalovat „$stylename$“ do Stylus?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1034,7 +806,6 @@
},
"styleInstallFailed": {
"message": "Styl nelze nainstalovat.\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1043,86 +814,68 @@
},
"styleInstallOverwrite": {
"message": "Styl „$stylename$“ je již nainstalován. Přepsat?\nVerze: $oldVersion$ → $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "Zadejte název",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Zadejte název"
},
"styleMozillaFormatHeading": {
- "message": "Mozilla formát",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Mozilla formát"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "Styl nebyl použit kvůli nesprávnému použití „regexp()“",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "Styl nebyl použit kvůli nesprávnému použití „regexp()“"
},
"styleRegexpInvalidExplanation": {
- "message": "Některá „regexp()“ pravidla nelze vůbec sestavit.",
- "description": ""
+ "message": "Některá „regexp()“ pravidla nelze vůbec sestavit."
},
"styleRegexpPartialExplanation": {
- "message": "Tento styl obsahuje částečnou regexp shodu, která je však v rozporu s CSS4 @document specifikací, která vyžaduje přesnou shodu URL adresy. Dotčené CSS části nebyly na stránku použity. Tento styl byl pravděpodobně vytvořen v rozšíření Stylish pro Chrome, které nesprávně kontroluje regexp() pravidla již od své první verze (známá chyba).",
- "description": ""
+ "message": "Tento styl obsahuje částečnou regexp shodu, která je však v rozporu s CSS4 @document specifikací, která vyžaduje přesnou shodu URL adresy. Dotčené CSS části nebyly na stránku použity. Tento styl byl pravděpodobně vytvořen v rozšíření Stylish pro Chrome, které nesprávně kontroluje regexp() pravidla již od své první verze (známá chyba)."
},
"styleRegexpProblemTooltip": {
- "message": "Počet sekcí nepoužitých kvůli nesprávnému použití „regexp()“",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "Počet sekcí nepoužitých kvůli nesprávnému použití „regexp()“"
},
"styleRegexpTestButton": {
- "message": "Otestovat RegExp",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "Otestovat RegExp"
},
"styleRegexpTestFull": {
- "message": "Odpovídající listy",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "Odpovídající listy"
},
"styleRegexpTestInvalid": {
- "message": "Neplatné regexp přeskočeny",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "Neplatné regexp přeskočeny"
},
"styleRegexpTestNone": {
- "message": "Žádné odpovídající listy",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "Žádné odpovídající listy"
},
"styleRegexpTestNote": {
- "message": "Poznámka: Používejte jen jedno zpětné lomítko „\\“ ve vstupním regexp poli – v editoru bude automaticky převedeno na „\\\\“, v souladu s normou citovaných řetězců v CSS.",
- "description": "RegExp test report: a note displayed at the bottom of the dialog"
+ "message": "Poznámka: Používejte jen jedno zpětné lomítko „\\“ ve vstupním regexp poli – v editoru bude automaticky převedeno na „\\\\“, v souladu s normou citovaných řetězců v CSS."
},
"styleRegexpTestPartial": {
- "message": "Shoda je nepřesná, proto přeskočeno",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "Shoda je nepřesná, proto přeskočeno"
},
"styleRegexpTestTitle": {
- "message": "Seznam shod otevřených listů (klepnutím na URL zaměříte daný list)",
- "description": "RegExp test report: title of the report"
+ "message": "Seznam shod otevřených listů (klepnutím na URL zaměříte daný list)"
},
"styleSaveLabel": {
- "message": "Uložit",
- "description": "Label for save button for style editing"
+ "message": "Uložit"
},
"styleToMozillaFormatHelp": {
- "message": "Kód v Mozilla formátu může být odeslán na userstyles.org a použit v aplikaci Stylish pro Firefox",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Kód v Mozilla formátu může být odeslán na userstyles.org a použit v aplikaci Stylish pro Firefox"
},
"styleToMozillaFormatTitle": {
- "message": "Styl v Mozilla formátu",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Styl v Mozilla formátu"
},
"styleUpdate": {
"message": "Určitě chcete aktualizovat „$stylename$“?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1130,64 +883,49 @@
}
},
"styleUpdateDiscardChanges": {
- "message": "Styl byl změněn mimo editor. Chcete styl znovu načíst?",
- "description": "Confirmation to update the style in the editor"
+ "message": "Styl byl změněn mimo editor. Chcete styl znovu načíst?"
},
"stylusUnavailableForURL": {
- "message": "Stylus nepracuje se stránkami jako je tato.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Stylus nepracuje se stránkami jako je tato."
},
"stylusUnavailableForURLdetails": {
- "message": "Jako bezpečností opatření, prohlížeč brání rozšířením v ovlivnění vestavěných stránek (např. chrome://version, nová úvodní stránka Chromu 61, about:addons, vivaldi://extensions atp.) a stránek dalších rozšíření. Každý prohlížeč také omezuje přístup do vlastního obchodu s rozšířeními (např. Chrome Web Store nebo AMO).",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Jako bezpečností opatření, prohlížeč brání rozšířením v ovlivnění vestavěných stránek (např. chrome://version, nová úvodní stránka Chromu 61, about:addons, vivaldi://extensions atp.) a stránek dalších rozšíření. Každý prohlížeč také omezuje přístup do vlastního obchodu s rozšířeními (např. Chrome Web Store nebo AMO)."
},
"syncStorageErrorSaving": {
- "message": "Hodnotu nelze uložit. Zkuste text zkrátit.",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "Hodnotu nelze uložit. Zkuste text zkrátit."
},
"toggleStyle": {
- "message": "Přepnout styl",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "Přepnout styl"
},
"undo": {
- "message": "Zpět",
- "description": "Button label"
+ "message": "Zpět"
},
"undoGlobal": {
- "message": "Zpět ve všech sekcích",
- "description": "CSS-beautify global Undo button label"
+ "message": "Zpět ve všech sekcích"
},
"unreachableAMO": {
- "message": "Firefox znemožňuje přístup ke stránce.",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "Firefox znemožňuje přístup ke stránce."
},
"unreachableAMOHint": {
- "message": "Povolení přístupu: přejděte na , pravým myšidlem zvolte „Nový“, dále „Boolean“, zadejte kód a potvrďte, , OK, načtěte stránku .",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Pouze Firefox 59 a novější může být nakonfigurován tak, aby rozšíření typu WebExtensions mohla přidávat styly na stránky chráněné CSP (Content Security Policy) – jako je tato.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "Povolení přístupu: přejděte na , pravým myšidlem zvolte „Nový“, dále „Boolean“, zadejte kód a potvrďte, , OK, načtěte stránku ."
},
"unreachableContentScript": {
- "message": "Se stránkou nelze komunikovat. Zkuste znovu načíst list.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "Se stránkou nelze komunikovat. Zkuste znovu načíst list."
},
"unreachableFileHint": {
- "message": "Stylus může přistupovat k file:// URL pouze při povolení odpovídající možnosti pro rozšíření Stylus ve správci chrome://extensions.",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "Stylus může přistupovat k file:// URL pouze při povolení odpovídající možnosti pro rozšíření Stylus ve správci chrome://extensions."
+ },
+ "unzipStyles": {
+ "message": "Rozbalování stylů…"
},
"updateAllCheckSucceededNoUpdate": {
- "message": "Aktualizace nenalezeny.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Aktualizace nenalezeny."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "Některé aktualizovatelné styly nebyly aktualizovány kvůli zabránění ztrátám možných lokálních změn. Aktualizace může být vynucena individuálně nebo spuštěním další aktualizace všech stylů (lokální změny mohou být přepsány).",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Některé aktualizovatelné styly nebyly aktualizovány kvůli zabránění ztrátám možných lokálních změn. Aktualizace může být vynucena individuálně nebo spuštěním další aktualizace všech stylů (lokální změny mohou být přepsány)."
},
"updateCheckFailBadResponseCode": {
"message": "Aktualizace se nezdařila: server odpověděl kódem $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1195,111 +933,63 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Aktualizace se nezdařila: server je nedosažitelný.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Aktualizace se nezdařila: server je nedosažitelný."
},
"updateCheckHistory": {
- "message": "Historie aktualizací",
- "description": ""
+ "message": "Historie aktualizací"
},
"updateCheckManualUpdateForce": {
- "message": "Instalovat aktualizaci (lokální změny budou přepsány)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Instalovat aktualizaci (lokální změny budou přepsány)"
},
"updateCheckManualUpdateHint": {
- "message": "Vynucení aktualizace přepíše všechny lokální úpravy.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Vynucení aktualizace přepíše všechny lokální úpravy."
},
"updateCheckSkippedLocallyEdited": {
- "message": "Tento styl byl upraven lokálně.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Tento styl byl upraven lokálně."
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "Tento styl mohl být upraven lokálně.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "Tento styl mohl být upraven lokálně."
},
"updateCheckSucceededNoUpdate": {
- "message": "Styl je aktuální.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "Styl je aktuální."
},
"updateCompleted": {
- "message": "Aktalizace dokončena.",
- "description": "Text that displays when an update completed"
+ "message": "Aktalizace dokončena."
},
"updatesCurrentlyInstalled": {
- "message": "Instalované aktualizace:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "Prosím, změňte hodnotu @name nebo @namespace ať nedojde k přepsání existujícího stylu.",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssConfigIncomplete": {
- "message": "Styl byl aktualizován nebo smazán po zobrazení dialogu konfigurace. Tyto proměnné nebyly uloženy aby se předešlo poškození metadat stylu.",
- "description": ""
- },
- "usercssEditorNamePlaceholder": {
- "message": "Definujte @name v kódu",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateConfirmation": {
- "message": "Nahradit výchozí šablonu pro nové Usercss styly aktuálním kódem?",
- "description": ""
- },
- "usercssReplaceTemplateName": {
- "message": "Prázdné @name nahrazuje výchozí šablonu",
- "description": "The text shown after @name when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "Sem vložte kód…",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "Tato verze je starší než verze nainstalovaného stylu.",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "Napsat nový styl pro:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "tuto URL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "overwriteFileExport": {
- "message": "Chcete přepsat stávající soubor?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "Soubor úspěšně uložen",
- "description": ""
- },
- "noFileToImport": {
- "message": "Před importem stylů byste je měli nejprve exportovat.",
- "description": ""
- },
- "connectingDropbox": {
- "message": "Připojování k Dropboxu…",
- "description": ""
- },
- "gettingStyles": {
- "message": "Získávání všech stylů…",
- "description": ""
- },
- "zipStyles": {
- "message": "Balení stylů…",
- "description": ""
- },
- "unzipStyles": {
- "message": "Rozbalování stylů…",
- "description": ""
- },
- "readingStyles": {
- "message": "Čtení stylů…",
- "description": ""
+ "message": "Instalované aktualizace:"
},
"uploadingFile": {
- "message": "Nahrávání souboru…",
- "description": ""
+ "message": "Nahrávání souboru…"
+ },
+ "usercssAvoidOverwriting": {
+ "message": "Prosím, změňte hodnotu @name nebo @namespace ať nedojde k přepsání existujícího stylu."
+ },
+ "usercssConfigIncomplete": {
+ "message": "Styl byl aktualizován nebo smazán po zobrazení dialogu konfigurace. Tyto proměnné nebyly uloženy aby se předešlo poškození metadat stylu."
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "Definujte @name v kódu"
+ },
+ "usercssReplaceTemplateConfirmation": {
+ "message": "Nahradit výchozí šablonu pro nové Usercss styly aktuálním kódem?"
+ },
+ "usercssReplaceTemplateName": {
+ "message": "Prázdné @name nahrazuje výchozí šablonu"
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "Sem vložte kód…"
+ },
+ "versionInvalidOlder": {
+ "message": "Tato verze je starší než verze nainstalovaného stylu."
+ },
+ "writeStyleFor": {
+ "message": "Napsat nový styl pro:"
+ },
+ "writeStyleForURL": {
+ "message": "tuto URL"
+ },
+ "zipStyles": {
+ "message": "Balení stylů…"
}
}
diff --git a/_locales/da/messages.json b/_locales/da/messages.json
index 3e202611..97d344b2 100644
--- a/_locales/da/messages.json
+++ b/_locales/da/messages.json
@@ -1,23 +1,18 @@
{
"addStyleLabel": {
- "message": "Skriv ny stil",
- "description": "Label for the button to go to the add style page"
+ "message": "Skriv ny stil"
},
"addStyleTitle": {
- "message": "Tilføj stil",
- "description": "Title of the page for adding styles"
+ "message": "Tilføj stil"
},
"alphaChannel": {
- "message": "Gennemsigtighed",
- "description": "Label of color's opacity"
+ "message": "Gennemsigtighed"
},
"appliesAdd": {
- "message": "Tilføj",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Tilføj"
},
"appliesDisplay": {
"message": "Anvendes på: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,107 +20,81 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "og mere",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "og mere"
},
"appliesDomainOption": {
- "message": "URL'er på domænet",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL'er på domænet"
},
"appliesHelp": {
- "message": "Brug 'Anvendt på'-styring til at begrænse hvilke URL'er koden i denne sektion anvendes på.",
- "description": "Help text for 'applies to' section"
+ "message": "Brug 'Anvendt på'-styring til at begrænse hvilke URL'er koden i denne sektion anvendes på."
},
"appliesLabel": {
- "message": "Anvendes på",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Anvendes på"
},
"appliesLineWidgetLabel": {
- "message": "Vis 'Anvendes på'-info",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "Vis 'Anvendes på'-info"
},
"appliesRegexpOption": {
- "message": "URL'er der matcher regexp'en",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URL'er der matcher regexp'en"
},
"appliesRemove": {
- "message": "Fjern",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Fjern"
},
"appliesRemoveError": {
- "message": "Kan ikke fjerne sidste 'Anvendes på'-optegnelse",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "Kan ikke fjerne sidste 'Anvendes på'-optegnelse"
},
"appliesSpecify": {
- "message": "Specificér",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Specificér"
},
"appliesToEverything": {
- "message": "Alt",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Alt"
},
"appliesUrlPrefixOption": {
- "message": "URL'er der starter med",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL'er der starter med"
},
"applyAllUpdates": {
- "message": "Anvend alle opdateringer",
- "description": "Label for the button to apply all detected updates"
+ "message": "Anvend alle opdateringer"
},
"author": {
- "message": "Forfatter",
- "description": "Label for the style author"
+ "message": "Forfatter"
},
"backupMessage": {
- "message": "Vælg en fil eller træk og slip til denne side.",
- "description": "Message for backup"
+ "message": "Vælg en fil eller træk og slip til denne side."
},
"bckpInstStyles": {
- "message": "Eksportér stil",
- "description": ""
+ "message": "Eksportér stil"
},
"checkAllUpdates": {
- "message": "Tjek alle stiler for opdateringer",
- "description": "Label for the button to check all styles for updates"
+ "message": "Tjek alle stiler for opdateringer"
},
"checkAllUpdatesForce": {
- "message": "Tjek igen, jeg redigerede ikke nogen stil!",
- "description": "Label for the button to apply all detected updates"
+ "message": "Tjek igen, jeg redigerede ikke nogen stil!"
},
"checkForUpdate": {
- "message": "Tjek efter opdatering",
- "description": "Label for the button to check a single style for an update"
+ "message": "Tjek efter opdatering"
},
"checkingForUpdate": {
- "message": "Tjekker...",
- "description": "Text to display when checking a style for an update"
+ "message": "Tjekker..."
},
"clickToUninstall": {
- "message": "Klik for at afinstallere",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Klik for at afinstallere"
},
"cm_autoCloseBrackets": {
- "message": "Luk automatisk paranteser og citationstegn",
- "description": "Label for the checkbox in the style editor."
+ "message": "Luk automatisk paranteser og citationstegn"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Tilføj automatisk et lukket par når man åbner en af ()[]{}''\"\"",
- "description": "Label for the checkbox in the style editor."
+ "message": "Tilføj automatisk et lukket par når man åbner en af ()[]{}''\"\""
},
"cm_autocompleteOnTyping": {
- "message": "Autoudfyld på indtastning",
- "description": "Label for the checkbox in the style editor."
+ "message": "Autoudfyld på indtastning"
},
"cm_colorpicker": {
- "message": "Farvevælgere for CSS-farver",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Farvevælgere for CSS-farver"
},
"cm_indentWithTabs": {
- "message": "Brug tabs med smart indrykning",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Brug tabs med smart indrykning"
},
"cm_keyMap": {
- "message": "Tastegenveje",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Tastegenveje"
}
-}
\ No newline at end of file
+}
diff --git a/_locales/de/messages.json b/_locales/de/messages.json
index 32253e1b..c25761ac 100644
--- a/_locales/de/messages.json
+++ b/_locales/de/messages.json
@@ -1,23 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylus kann auf einige Dateitypen nicht zugreifen (z.B. pdf oder json)"
+ },
"addStyleLabel": {
- "message": "Neuen Style erstellen",
- "description": "Label for the button to go to the add style page"
+ "message": "Neuen Style erstellen"
},
"addStyleTitle": {
- "message": "Style hinzufügen",
- "description": "Title of the page for adding styles"
+ "message": "Style hinzufügen"
},
"alphaChannel": {
- "message": "Deckkraft",
- "description": "Label of color's opacity"
+ "message": "Deckkraft"
},
"appliesAdd": {
- "message": "Hinzufügen",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Hinzufügen"
},
"appliesDisplay": {
"message": "Gilt für: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,284 +23,229 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "und weitere",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "und weitere"
},
"appliesDomainOption": {
- "message": "URLs auf der Domain",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URLs auf der Domain"
},
"appliesHelp": {
- "message": "Lege mit den Einstellungen von \"Gilt für\" fest, für welche URLs der Code in diesem Bereich gelten soll.",
- "description": "Help text for 'applies to' section"
+ "message": "Lege mit den Einstellungen von \"Gilt für\" fest, für welche URLs der Code in diesem Bereich gelten soll."
},
"appliesLabel": {
- "message": "Gilt für",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Gilt für"
},
"appliesLineWidgetLabel": {
- "message": "Zeige \"Gilt für\" Info",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "Zeige \"Gilt für\" Info"
},
"appliesLineWidgetWarning": {
- "message": "Funktioniert nicht mit minified CSS",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "Funktioniert nicht mit minified CSS"
},
"appliesRegexpOption": {
- "message": "URLs, die mit der RegExp übereinstimmen",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URLs, die mit der RegExp übereinstimmen"
},
"appliesRemove": {
- "message": "Löschen",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Löschen"
},
"appliesRemoveError": {
- "message": "Kann letzten \"Gilt für\" Eintrag nicht entfernen",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "Kann letzten \"Gilt für\" Eintrag nicht entfernen"
},
"appliesSpecify": {
- "message": "Angeben",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Angeben"
},
"appliesToEverything": {
- "message": "Alles",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Alles"
},
"appliesUrlPrefixOption": {
- "message": "URLs beginnend mit",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URLs beginnend mit"
},
"applyAllUpdates": {
- "message": "Alle Updates übernehmen ",
- "description": "Label for the button to apply all detected updates"
+ "message": "Alle Updates übernehmen "
},
"author": {
- "message": "Autor",
- "description": "Label for the style author"
+ "message": "Autor"
},
"backupButtons": {
- "message": "Datensicherung",
- "description": "Heading for backup"
+ "message": "Datensicherung"
},
"backupMessage": {
- "message": "Wähle eine Datei aus oder ziehe die Datei auf diese Seite. (Drag and Drop)",
- "description": "Message for backup"
+ "message": "Wähle eine Datei aus oder ziehe die Datei auf diese Seite. (Drag and Drop)"
},
"bckpInstStyles": {
- "message": "Styles exportieren",
- "description": ""
+ "message": "Styles exportieren"
},
"checkAllUpdates": {
- "message": "Nach Updates suchen",
- "description": "Label for the button to check all styles for updates"
+ "message": "Nach Updates suchen"
},
"checkAllUpdatesForce": {
- "message": "Nochmal prüfen, ich habe keine Styles bearbeitet!",
- "description": "Label for the button to apply all detected updates"
+ "message": "Nochmal prüfen, ich habe keine Styles bearbeitet!"
},
"checkForUpdate": {
- "message": "Nach Update suchen",
- "description": "Label for the button to check a single style for an update"
+ "message": "Nach Update suchen"
},
"checkingForUpdate": {
- "message": "Suche nach Updates...",
- "description": "Text to display when checking a style for an update"
+ "message": "Suche nach Updates..."
},
"clickToUninstall": {
- "message": "Klicken zum Deinstallieren",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Klicken zum Deinstallieren"
},
"cm_autoCloseBrackets": {
- "message": "Klammern automatisch schließen",
- "description": "Label for the checkbox in the style editor."
+ "message": "Klammern automatisch schließen"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Wenn ( [ { ' \" geschrieben werden, automatisch schließende ) ] } ' \" setzen",
- "description": "Label for the checkbox in the style editor."
+ "message": "Wenn ( [ { ' \" geschrieben werden, automatisch schließende ) ] } ' \" setzen"
},
"cm_autocompleteOnTyping": {
- "message": "Autovervollständigen bei Eingabe",
- "description": "Label for the checkbox in the style editor."
+ "message": "Autovervollständigen bei Eingabe"
},
"cm_colorpicker": {
- "message": "Farbwähler für CSS-Farben",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Farbwähler für CSS-Farben"
},
"cm_indentWithTabs": {
- "message": "Tabs mit intelligentem Einzug",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Tabs mit intelligentem Einzug"
},
"cm_keyMap": {
- "message": "Tastaturbelegung",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Tastaturbelegung"
},
"cm_lineWrapping": {
- "message": "Automatischer Zeilenumbruch",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Automatischer Zeilenumbruch"
},
"cm_matchHighlight": {
- "message": "Hervorheben",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Hervorheben"
},
"cm_matchHighlightSelection": {
- "message": "Nur die Auswahl",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Nur die Auswahl"
},
"cm_matchHighlightToken": {
- "message": "Unter dem Textzeiger",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Unter dem Textzeiger"
},
"cm_resizeGripHint": {
- "message": "Doppelklick, um Höhe zu maximieren / wiederherzustellen",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Doppelklick, um Höhe zu maximieren / wiederherzustellen"
},
"cm_selectByTokens": {
- "message": "Doppelklick markiert Zeichenkette",
- "description": "Label for the checkbox in the editor."
+ "message": "Doppelklick markiert Zeichenkette"
},
"cm_selectByTokensTooltip": {
- "message": "Beispiele von Zeichenketten: .foo-bar-2 #aabbcc 0.32 !important\nWenn deaktiviert, werden Wörter je nach Interpunktion ausgewählt.",
- "description": ""
+ "message": "Beispiele von Zeichenketten: .foo-bar-2 #aabbcc 0.32 !important\nWenn deaktiviert, werden Wörter je nach Interpunktion ausgewählt."
},
"cm_smartIndent": {
- "message": "Intelligenter Einzug",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Intelligenter Einzug"
},
"cm_tabSize": {
- "message": "Tab-Größe",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Tab-Größe"
+ },
+ "colorpickerPaletteHint": {
+ "message": "Rechtsklicke auf ein Farbmuster, um durch die entsprechenden Codezeilen zu springen"
},
"colorpickerSwitchFormatTooltip": {
- "message": "Formate wechseln: HEX -> RGB ->HSL.\nShift-Klick, um Richtung umzukehren.\nKürzel: Bild auf- und Bild ab-Tasten.",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "Formate wechseln: HEX -> RGB ->HSL.\nShift-Klick, um Richtung umzukehren.\nKürzel: Bild auf- und Bild ab-Tasten."
},
"colorpickerTooltip": {
- "message": "Farbwähler öffnen",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Farbwähler öffnen"
},
"configOnChange": {
- "message": "bei Änderung",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "bei Änderung"
},
"configOnChangeTooltip": {
- "message": "Änderungen automatisch speichern und übernehmen",
- "description": ""
+ "message": "Änderungen automatisch speichern und übernehmen"
},
"configureStyle": {
- "message": "Konfigurieren",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "Konfigurieren"
},
"configureStyleOnHomepage": {
- "message": "Auf Homepage konfigurieren",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "Auf Homepage konfigurieren"
},
"confirmCancel": {
- "message": "Abbrechen",
- "description": ""
+ "message": "Abbrechen"
},
"confirmClose": {
- "message": "Schließen",
- "description": "'Close' button in a confirm dialog"
+ "message": "Schließen"
},
"confirmDefault": {
- "message": "Voreinstellung verwenden",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "Voreinstellung verwenden"
},
"confirmDelete": {
- "message": "Löschen",
- "description": ""
+ "message": "Löschen"
},
"confirmDiscardChanges": {
- "message": "Änderungen verwerfen?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "Änderungen verwerfen?"
},
"confirmNo": {
- "message": "Nein",
- "description": "'No' button in a confirm dialog"
+ "message": "Nein"
},
"confirmSave": {
- "message": "Speichern",
- "description": "'Save' button in a confirm dialog"
+ "message": "Speichern"
},
"confirmStop": {
- "message": "Stopp",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Stopp"
},
"confirmYes": {
- "message": "Ja",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Ja"
+ },
+ "connectingDropbox": {
+ "message": "Verbinde mit Dropbox..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "Verbindung zur Dropbox ist nur in Apps verfügbar, die direkt vom Webstore installiert wurden"
},
"copied": {
- "message": "In die Zwischenablage kopiert",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "In die Zwischenablage kopiert"
},
"copy": {
- "message": "In die Zwischenablage kopieren",
- "description": "Tooltip for elements which can be copied"
+ "message": "In die Zwischenablage kopieren"
+ },
+ "customNameHint": {
+ "message": "Neuen Anzeigenamen des Styles hier eingeben, um trotzdem weiterhin Updates zu erhalten"
+ },
+ "customNameResetHint": {
+ "message": "Eigenen Anzeigenamen nicht mehr benutzen, wechsle wieder zum Standardnamen des Styles"
},
"dateInstalled": {
- "message": "Installationsdatum",
- "description": "Option text for the user to sort the style by install date"
+ "message": "Installationsdatum"
},
"dateUpdated": {
- "message": "Updatedatum",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "Updatedatum"
},
"dbError": {
- "message": "Ein Fehler ist beim Verwenden der Stylus-Datenbank aufgetreten. Willst Du eine Webseite mit möglichen Lösungen besuchen?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Ein Fehler ist beim Verwenden der Stylus-Datenbank aufgetreten. Willst Du eine Webseite mit möglichen Lösungen besuchen?"
},
"defaultTheme": {
- "message": "Standard",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "Standard"
},
"deleteStyleConfirm": {
- "message": "Möchtest Du diesen Style wirklich löschen?",
- "description": "Confirmation before deleting a style"
+ "message": "Möchtest Du diesen Style wirklich löschen?"
},
"deleteStyleLabel": {
- "message": "Löschen",
- "description": "Label for the button to delete a style"
+ "message": "Löschen"
},
"description": {
- "message": "Gestalte das Web neu mit Stylus, dem Style Manager. Stylus ermöglicht dir ganz einfach Themes und Designs für viele beliebte Webseiten zu installieren.",
- "description": "Extension description"
+ "message": "Gestalte das Web neu mit Stylus, dem Style Manager. Stylus ermöglicht dir ganz einfach Themes und Designs für viele beliebte Webseiten zu installieren."
},
"disableAllStyles": {
- "message": "Alle Styles deaktivieren",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Alle Styles deaktivieren"
},
"disableStyleLabel": {
- "message": "Deaktivieren",
- "description": "Label for the button to disable a style"
+ "message": "Deaktivieren"
},
"dragDropMessage": {
- "message": "Ziehe die Backup Datei zum importieren an irgendeinen Ort auf dieser Seite.",
- "description": "Drag'n'drop message"
+ "message": "Ziehe die Backup Datei zum importieren an irgendeinen Ort auf dieser Seite."
},
"dragDropUsercssTabstrip": {
- "message": "Ziehe die Datei auf die Tableiste, um sie zu installieren.",
- "description": "Message popup shown when erroneously dropping a usercss file into the manager page"
+ "message": "Ziehe die Datei auf die Tableiste, um sie zu installieren."
},
"editDeleteText": {
- "message": "Löschen",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Löschen"
},
"editGotoLine": {
- "message": "Gehe zu Zeile (oder Zeile:Zeichen)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Gehe zu Zeile (oder Zeile:Zeichen)"
},
"editStyleHeading": {
- "message": "Style bearbeiten",
- "description": "Title of the page for editing styles"
+ "message": "Style bearbeiten"
},
"editStyleLabel": {
- "message": "Bearbeiten",
- "description": "Label for the button to go to the edit style page"
+ "message": "Bearbeiten"
},
"editStyleTitle": {
"message": "Style $stylename$ bearbeiten",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -310,212 +253,177 @@
}
},
"enableStyleLabel": {
- "message": "Aktivieren",
- "description": "Label for the button to enable a style"
+ "message": "Aktivieren"
},
"excludeStyleByDomainLabel": {
- "message": "Aktuelle Domain ausschließen",
- "description": ""
+ "message": "Aktuelle Domain ausschließen"
},
"excludeStyleByUrlLabel": {
- "message": "Aktuelle URL ausschließen",
- "description": ""
+ "message": "Aktuelle URL ausschließen"
},
"exportLabel": {
- "message": "Exportieren",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Exportieren"
+ },
+ "exportSavedSuccess": {
+ "message": "Datei erfolgreich gespeichert"
},
"externalLink": {
- "message": "Externer Link",
- "description": "Label for external links"
+ "message": "Externer Link"
},
"externalSupport": {
- "message": "zur Supportseite",
- "description": "Label for the external link to style's support site"
+ "message": "zur Supportseite"
},
"externalUsercssDocument": {
- "message": "Dokumentation für UserCSS",
- "description": "Label for the external link to usercss documentation"
+ "message": "Dokumentation für UserCSS"
},
"filteredStyles": {
"message": "$numShown$ von $numTotal$ gesamt",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "Aktuell angewandte Filter treffen auf keinen Style zu",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "Aktuell angewandte Filter treffen auf keinen Style zu"
},
"findStyles": {
- "message": "Styles finden",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Styles finden"
},
"findStylesForSite": {
- "message": "Weitere Styles für diese Seite finden",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Weitere Styles für diese Seite finden"
},
"findStylesInline": {
- "message": "Ergebnisse hier anzeigen",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "Ergebnisse hier anzeigen"
},
"findStylesInlineTooltip": {
- "message": "Suchergebnisse in diesem Fenster anzeigen.",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "Suchergebnisse in diesem Fenster anzeigen."
},
"genericAdd": {
- "message": "Hinzufügen",
- "description": "Used in various places for an action that adds something"
+ "message": "Hinzufügen"
},
"genericClone": {
- "message": "Kopieren",
- "description": "Used in various places for an action that clones something"
+ "message": "Kopieren"
+ },
+ "genericDescription": {
+ "message": "Beschreibung"
},
"genericDisabledLabel": {
- "message": "Deaktiviert",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Deaktiviert"
},
"genericEnabledLabel": {
- "message": "Aktiviert",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "Aktiviert"
},
"genericError": {
- "message": "Fehler",
- "description": "Used in various places to indicate some error occurred."
+ "message": "Fehler"
},
"genericHistoryLabel": {
- "message": "Verlauf",
- "description": "Used in various places to show a history log of something"
+ "message": "Verlauf"
},
"genericNext": {
- "message": "Weiter",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "Weiter"
},
"genericPrevious": {
- "message": "Zurück",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "Zurück"
},
"genericResetLabel": {
- "message": "Zurücksetzen",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "Zurücksetzen"
},
"genericSavedMessage": {
- "message": "Gespeichert",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "Gespeichert"
},
"genericTitle": {
- "message": "Name",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "Name"
},
"genericUnknown": {
- "message": "Unbekannt",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "Unbekannt"
+ },
+ "gettingStyles": {
+ "message": "Empfange alle Styles..."
},
"helpAlt": {
- "message": "Hilfe",
- "description": "Alternate text for help buttons"
+ "message": "Hilfe"
},
"helpKeyMapCommand": {
- "message": "Befehlsnamen eingeben",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Befehlsnamen eingeben"
},
"helpKeyMapHotkey": {
- "message": "Hotkey drücken",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Hotkey drücken"
},
"hostDisabled": {
- "message": "Dieser Host wurde deaktiviert, weil die aktuell genutzte Version deines Browsers einen Fehler enthält.",
- "description": "Tooltip for cloud host disabled"
+ "message": "Dieser Host wurde deaktiviert, weil die aktuell genutzte Version deines Browsers einen Fehler enthält."
},
"importAppendLabel": {
- "message": "Zum Style anfügen",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Zum Style anfügen"
},
"importAppendTooltip": {
- "message": "Füge den importierten Style an den aktuellen",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Füge den importierten Style an den aktuellen"
},
"importLabel": {
- "message": "Importieren",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Importieren"
+ },
+ "importPreprocessor": {
+ "message": "Ein Style mit einem @preprocessor
funktioniert nicht im klassischen Modus. Du kannst den Editor auf UserCSS umstellen: 1) Öffne den Style-Manager, 2) Aktiviere das Kästchen \"Als UserCSS\", 3) Klicke auf \"Neuen Style erstellen\"\n\nTrotzdem jetzt importieren?"
+ },
+ "importPreprocessorTitle": {
+ "message": "Mögliches Problem wegen @preprocessor"
},
"importReplaceLabel": {
- "message": "Style überschreiben",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Style überschreiben"
},
"importReplaceTooltip": {
- "message": "Verwerfe den aktuellen Style-Inhalt und überschreibe ihn mit dem importierten",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Verwerfe den aktuellen Style-Inhalt und überschreibe ihn mit dem importierten"
},
"importReportLegendAdded": {
- "message": "Hinzugefügt",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "Hinzugefügt"
},
"importReportLegendIdentical": {
- "message": "Identische übersprungen",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "Identische übersprungen"
},
"importReportLegendInvalid": {
- "message": "Ungültige übersprungen",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "Ungültige übersprungen"
},
"importReportLegendUpdatedBoth": {
- "message": "Aktualisierte Codes und Metadaten",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "Aktualisierte Codes und Metadaten"
},
"importReportLegendUpdatedCode": {
- "message": "Aktualisierter Code",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "Aktualisierter Code"
},
"importReportLegendUpdatedMeta": {
- "message": "Aktualisierte Metadaten",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "Aktualisierte Metadaten"
},
"importReportTitle": {
- "message": "Importieren der Styles abgeschlossen.",
- "description": "Title of the report shown after importing styles"
+ "message": "Importieren der Styles abgeschlossen."
},
"importReportUnchanged": {
- "message": "Nichts wurde geändert.",
- "description": "Message in the report shown after importing styles"
+ "message": "Nichts wurde geändert."
},
"importReportUndone": {
- "message": "Styles wiederherstellt",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "Styles wiederherstellt"
},
"importReportUndoneTitle": {
- "message": "Importierung wurde rückgängig gemacht.",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "Importierung wurde rückgängig gemacht."
},
"installButton": {
- "message": "Style installieren",
- "description": "Label for install button"
+ "message": "Style installieren"
},
"installButtonInstalled": {
- "message": "Style installiert",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Style erfolgreich installiert"
},
"installButtonReinstall": {
- "message": "Style neu installieren",
- "description": "Label for reinstall button"
+ "message": "Style neu installieren"
},
"installButtonUpdate": {
- "message": "Style updaten",
- "description": "Label for update button"
+ "message": "Style updaten"
},
"installUpdate": {
- "message": "Update installieren",
- "description": "Label for the button to install an update for a single style"
+ "message": "Update installieren"
},
"installUpdateFrom": {
"message": "Style erhält momentan Updates von $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -523,28 +431,31 @@
}
},
"installUpdateFromLabel": {
- "message": "Nach Updates suchen",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Nach Updates suchen"
},
"license": {
- "message": "Lizenz",
- "description": "Label for the license"
+ "message": "Lizenz"
},
"linkGetHelp": {
- "message": "Hilfeseite anzeigen",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Hilfeseite anzeigen"
+ },
+ "linkGetShareStyles": {
+ "message": "Styles finden und teilen"
+ },
+ "linkGetShareStylesInfo": {
+ "message": "Die neue, von der Community betriebene Website userstyles.world wurde von Userstyle-Autoren erstellt, um userstyles.org zu ersetzen. Dieses war im letzten Jahr so langsam und unzuverlässig geworden, dass viele Autoren ihre Styles nicht mehr aktualisierten."
},
"linkGetStyles": {
- "message": "Styles beziehen",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Styles beziehen"
+ },
+ "linkGetStylesInfo": {
+ "message": "Diese Archivseite wurde von einem Nutzer der Userstyle Community erstellt, um eine Sicherungskopie des langsamen und unzuverlässigen userstyles.org bereitzustellen. Die Inhalte werden ungefähr einmal am Tag aktualisiert."
},
"linkTranslate": {
- "message": "Übersetzen",
- "description": "Transifex link text on the manage page"
+ "message": "Übersetzen"
},
"linterCSSLintIncompatible": {
"message": "CSSLint unterstützt den $preprocessorname$ Präprozessor nicht",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -552,12 +463,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(Regeln: 0 = Deaktiviert; 1 = Warnung; 2 = Fehler)",
- "description": "CSSLint rule config values"
+ "message": "(Regeln: 0 = Deaktiviert; 1 = Warnung; 2 = Fehler)"
},
"linterConfigPopupTitle": {
"message": "Einstellungen für $linter$",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -565,20 +474,16 @@
}
},
"linterConfigTooltip": {
- "message": "Klicken, um diesen Linter zu konfigurieren",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Klicken, um diesen Linter zu konfigurieren"
},
"linterInvalidConfigError": {
- "message": "Nicht gespeichert aufgrund folgender ungültiger Einstellungen:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "Nicht gespeichert aufgrund folgender ungültiger Einstellungen:"
},
"linterIssues": {
- "message": "Probleme",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Probleme"
},
"linterIssuesHelp": {
"message": "Folgende Probleme wurden von $link$ gefunden:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -586,144 +491,93 @@
}
},
"linterJSONError": {
- "message": "Ungültiges JSON Format",
- "description": "Setting linter config with invalid JSON"
+ "message": "Ungültiges JSON Format"
},
"linterResetMessage": {
- "message": "Um versehentliches Zurücksetzen rückgängig zu machen, drücke Strg+Z im Textfenster",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "Um versehentliches Zurücksetzen rückgängig zu machen, drücke Strg+Z im Textfenster"
},
"linterRulesLink": {
- "message": "Vollständige Liste der Regeln anzeigen",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Vollständige Liste der Regeln anzeigen"
},
"liveReloadError": {
- "message": "Bei der Echtzeitaktualisierung der Datei ist ein Fehler aufgetreten",
- "description": "The label of live-reload error"
+ "message": "Bei der Echtzeitaktualisierung der Datei ist ein Fehler aufgetreten"
},
"liveReloadInstallHint": {
- "message": "Lasse diesen Tab geöffnet, um den Style bei externen Änderungen automatisch zu aktualisieren.",
- "description": "The label of live-reload feature"
+ "message": "Lasse diesen Tab geöffnet, um den Style bei externen Änderungen automatisch zu aktualisieren."
},
"liveReloadInstallHintFF": {
- "message": "Lasse diesen und den Originaltab offen, um den Style bei externen Änderungen automatisch zu aktualisieren.",
- "description": "The extra hint of live-reload feature shown only for file:// URLs in Firefox"
+ "message": "Lasse diesen und den Originaltab offen, um den Style bei externen Änderungen automatisch zu aktualisieren."
},
"liveReloadLabel": {
- "message": "Echtzeitaktualisierung",
- "description": "The label of live-reload feature"
+ "message": "Echtzeitaktualisierung"
},
"manageFavicons": {
- "message": "Favicons in der \"Gilt für\" Spalte anzeigen",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Favicons in der \"Gilt für\" Spalte anzeigen"
},
"manageFaviconsGray": {
- "message": "Ausgegraut",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Ausgegraut"
},
"manageFaviconsHelp": {
- "message": "Stylus nutzt hierzu den externen Dienst https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus nutzt hierzu den externen Dienst https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "Filter",
- "description": "Label for filters container"
+ "message": "Filter"
},
"manageHeading": {
- "message": "Installierte Styles",
- "description": "Heading for the manage page"
+ "message": "Installierte Styles"
},
"manageMaxTargets": {
- "message": "Anzahl der \"Gilt für\" Elemente",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "Anzahl der \"Gilt für\" Elemente"
},
"manageNewStyleAsUsercss": {
- "message": "als UserCSS",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "als UserCSS"
},
"manageNewUI": {
- "message": "Neues Verwaltungs-Layout",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Neues Verwaltungs-Layout"
},
"manageOnlyDisabled": {
- "message": "Nur deaktivierte Styles",
- "description": "Checkbox to show only disabled styles"
+ "message": "Nur deaktivierte Styles"
},
"manageOnlyEnabled": {
- "message": "Nur aktivierte Styles",
- "description": "Checkbox to show only enabled styles"
+ "message": "Nur aktivierte Styles"
},
"manageOnlyExternal": {
- "message": "Nur externe Styles",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Nur externe Styles"
},
"manageOnlyLocal": {
- "message": "Nur lokale Styles",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Nur lokale Styles"
},
"manageOnlyLocalTooltip": {
- "message": "(Diese Styles wurden nicht durch userstyles.org installiert)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(Diese Styles wurden nicht durch userstyles.org installiert)"
},
"manageOnlyNonUsercss": {
- "message": "Keine UserCSS Styles",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Keine UserCSS Styles"
},
"manageOnlyUpdates": {
- "message": "Nur mit Updates oder Problemen",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Nur mit Updates oder Problemen"
},
"manageOnlyUsercss": {
- "message": "Nur UserCSS Styles",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Nur UserCSS Styles"
},
"menuShowBadge": {
- "message": "Anzahl der aktiven Styles anzeigen",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Anzahl der aktiven Styles anzeigen"
},
"meta_invalidCheckboxDefault": {
- "message": "Ungültige @var Checkbox: Wert muss 0 oder 1 sein",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "Ungültige @var Checkbox: Wert muss 0 oder 1 sein"
},
"meta_invalidColor": {
"message": "Ungültige @var Farbe: $color$ ist keine Farbe",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
}
}
},
+ "meta_invalidNumber": {
+ "message": "Erwarte Zahl"
+ },
"meta_invalidRange": {
"message": "Ungültige @var $type$: Wert muss eine Zahl oder ein Array sein",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "Ungültige @var $type$: Mehrere Einheiten sind definiert",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "Ungültige @var $type$: Der Array enthält zu viele Elemente",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeValue": {
- "message": "Ungültige @var $type$: Elemente im Array müssen Zahlen, Strings oder null sein",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -732,16 +586,6 @@
},
"meta_invalidRangeDefault": {
"message": "Ungültige @var $type$: Standardwert ist null",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMin": {
- "message": "Ungültige @var $type$: Standardwert ist geringer als das Minimum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -750,7 +594,22 @@
},
"meta_invalidRangeMax": {
"message": "Ungültige @var $type$: Standardwert ist größer als das Maximum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMin": {
+ "message": "Ungültige @var $type$: Standardwert ist geringer als das Minimum",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "Ungültige @var $type$: Mehrere Einheiten sind definiert",
"placeholders": {
"type": {
"content": "$1"
@@ -759,7 +618,14 @@
},
"meta_invalidRangeStep": {
"message": "Ungültige @var $type$: Standardwert ist kein Vielfaches der Schrittweite",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "Ungültige @var $type$: Der Array enthält zu viele Elemente",
"placeholders": {
"type": {
"content": "$1"
@@ -768,7 +634,6 @@
},
"meta_invalidRangeUnits": {
"message": "Ungültige @var $type$: '$units$' ist keine gültige Einheit",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -778,37 +643,40 @@
}
}
},
- "meta_invalidSelect": {
- "message": "Ungültiges @var select: Der Standardwert muss eine Array oder Objekt sein",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidRangeValue": {
+ "message": "Ungültige @var $type$: Elemente im Array müssen Zahlen, Strings oder null sein",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
},
- "meta_invalidSelectValue": {
- "message": "Ungültiges @var select: Werte innerhalb des Arrays/Objekts müssen Strings sein",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidSelect": {
+ "message": "Ungültiges @var select: Der Standardwert muss eine Array oder Objekt sein"
},
"meta_invalidSelectEmptyOptions": {
- "message": "Ungültiges @var select: Die Auswahlliste ist leer",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ungültiges @var select: Die Auswahlliste ist leer"
},
"meta_invalidSelectLabel": {
- "message": "Ungültiges @var select: Beschriftung der Auswahlmöglichkeiten ist leer",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ungültiges @var select: Beschriftung der Auswahlmöglichkeiten ist leer"
},
"meta_invalidSelectMultipleDefaults": {
- "message": "Ungültiges @var select: Mehrere Standardauswahlen sind definiert",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ungültiges @var select: Mehrere Standardauswahlen sind definiert"
},
"meta_invalidSelectNameDuplicated": {
- "message": "Ungültiges @var select: Doppelte Optionsnamen",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ungültiges @var select: Doppelte Optionsnamen"
+ },
+ "meta_invalidSelectValue": {
+ "message": "Ungültiges @var select: Werte innerhalb des Arrays/Objekts müssen Strings sein"
},
"meta_invalidSelectValueMismatch": {
- "message": "Ungültiges @var select: Wert existiert nicht in der Auswahlliste",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ungültiges @var select: Wert existiert nicht in der Auswahlliste"
+ },
+ "meta_invalidString": {
+ "message": "Erwarte String in Anführungszeichen"
},
"meta_invalidURLProtocol": {
"message": "Ungültiges URL Protokoll. Nur http und https sind erlaubt: $protocol$",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
@@ -816,29 +684,13 @@
}
},
"meta_invalidVersion": {
- "message": "Ungültige Versionsnummer: Der Wert entspricht nicht dem SemVer Schema: $version$",
- "description": "Error displayed when @version is invalid",
- "placeholders": {
- "version": {
- "content": "$1"
- }
- }
- },
- "meta_invalidNumber": {
- "message": "Erwarte Zahl",
- "description": "Error displayed when the value is expected to be a number"
- },
- "meta_invalidString": {
- "message": "Erwarte String in Anführungszeichen",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "Ungültige Versionsnummer"
},
"meta_invalidWord": {
- "message": "Erwarte ein Wort",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "Erwarte ein Wort"
},
"meta_missingChar": {
"message": "Erwarte Zeichen: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -846,12 +698,10 @@
}
},
"meta_missingEOT": {
- "message": "Erwarte EOT Daten",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "Erwarte EOT Daten"
},
"meta_missingMandatory": {
"message": "Erforderliche Metadaten fehlen: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -860,7 +710,6 @@
},
"meta_unknownJSONLiteral": {
"message": "Ungültiges JSON: $literal$ ist kein gültiges JSON Symbol",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
@@ -869,16 +718,33 @@
},
"meta_unknownMeta": {
"message": "Unbekannte Metadaten: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
}
},
+ "meta_unknownMetaTypo": {
+ "message": "Vielleicht @$keyOk$? Unbekannte Metadaten: @$keyErr$",
+ "placeholders": {
+ "keyErr": {
+ "content": "$1"
+ },
+ "keyOk": {
+ "content": "$2"
+ }
+ }
+ },
+ "meta_unknownPreprocessor": {
+ "message": "Unbekannter @preprocessor: $preprocessor$",
+ "placeholders": {
+ "preprocessor": {
+ "content": "$1"
+ }
+ }
+ },
"meta_unknownVarType": {
"message": "Unbekannter @$varkey$ Typ: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -888,150 +754,131 @@
}
}
},
- "meta_unknownPreprocessor": {
- "message": "Unbekannter @preprocessor: $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
- "placeholders": {
- "preprocessor": {
- "content": "$1"
- }
- }
+ "noFileToImport": {
+ "message": "Keine Importdatei vorhanden. Um Styles zu importieren, solltest du sie zuerst exportieren."
},
"noStylesForSite": {
- "message": "Für diese Webseite sind keine Styles installiert.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Für diese Webseite sind keine Styles installiert."
+ },
+ "numberedLine": {
+ "message": "Zeile:"
},
"openManage": {
- "message": "Verwalten",
- "description": "Link to open the manage page."
+ "message": "Verwalten"
},
"openOptions": {
- "message": "Optionen",
- "description": "Go to Options UI"
+ "message": "Optionen"
},
"openStylesManager": {
- "message": "Style Verwaltung öffnen",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "Style Verwaltung öffnen"
},
"optionsActions": {
- "message": "Aktionen",
- "description": ""
+ "message": "Aktionen"
},
"optionsAdvanced": {
- "message": "Erweitert",
- "description": ""
+ "message": "Erweitert"
},
"optionsAdvancedContextDelete": {
- "message": "\"Löschen\" im Editor-Kontextmenü hinzufügen",
- "description": ""
+ "message": "\"Löschen\" im Editor-Kontextmenü hinzufügen"
},
"optionsAdvancedExposeIframes": {
- "message": "Ermögliche Iframes via HTML[stylus-iframe]",
- "description": ""
+ "message": "Ermögliche Iframes via HTML[stylus-iframe]"
},
"optionsAdvancedExposeIframesNote": {
- "message": "Style wirkt sich auch auf iframes der anvisierten (obersten) Domain aus.\nIframe-spezifisches CSS ist dann wie folgt möglich:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }",
- "description": "Add attribute to iframe; make sure to include the double $$ in the css example, or the `$=` will be omitted in the displayed text."
+ "message": "Style wirkt sich auch auf iframes der anvisierten (obersten) Domain aus.\nIframe-spezifisches CSS ist dann wie folgt möglich:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "Schreibe neuen Style als UserCSS",
- "description": ""
+ "message": "Schreibe neuen Style als UserCSS"
+ },
+ "optionsAdvancedPatchCsp": {
+ "message": "CSP
abändern, um externe Ressourcen zu erlauben"
+ },
+ "optionsAdvancedPatchCspNote": {
+ "message": "Aktivieren, wenn Styles Bilder oder Schriftarten enthalten, die aufgrund strenger CSP
(Content-Security-Policy
) Regeln mancher Seiten nicht laden.\n\nDas Aktivieren wird CSP
Beschränkungen lockern, um für den Style erforderliche Ressourcen zu laden. Diese Option ist für fortgeschrittene Benutzer gedacht, die sich den möglichen Sicherheitsrisiken bewusst sind und die die Verantwortung dafür tragen, die nachgeladenen Inhalte selbst zu überwachen. Informiere dich über \"CSS-basierte Angriffe\" um mehr zu erfahren.\n\nBeachte außerdem, dass diese Option nicht garantiert funktioniert, falls eine andere installierte Erweiterung die Netzwerkantwort (CSP-header) zuerst abändert."
+ },
+ "optionsAdvancedStyleViaXhr": {
+ "message": "Style unverzüglich einfügen"
+ },
+ "optionsAdvancedStyleViaXhrNote": {
+ "message": "Aktivieren, falls während dem Browsen ungestylter Inhalt aufblitzt (FOUC). Besonders auffällig bei dunklen Styles.\n\nDer technische Grund ist, dass Chrome/Chromium die asynchrone Kommunikation von Erweiterungen zeitlich nach hinten verschiebt, um vermeintlich die Seitenladegeschwindigkeit zu erhöhen. Dies kann das Einfügen von Styles spürbar verzögern. Da für WebExtensions keine synchrone API bereitgestellt wird, versucht Stylus als Notbehelf, Styles über die veraltete XMLHttpRequest web API zu laden. Es sollten keine nachteiligen Effekte eintreten, weil die Anfrage innerhalb weniger Millisekunden abgearbeitet wird, während die Seite noch vom Server geladen wird.\n\nTrotzdem wird Chromium eine Warnung in der Entwicklerkonsole ausgeben. Über Rechtsklick auf die Warnung können zukünftige Meldungen versteckt werden."
},
"optionsBadgeDisabled": {
- "message": "Hintergrundfarbe wenn deaktiviert",
- "description": ""
+ "message": "Hintergrundfarbe wenn deaktiviert"
},
"optionsBadgeNormal": {
- "message": "Hintergrundfarbe",
- "description": ""
+ "message": "Hintergrundfarbe"
},
"optionsCheck": {
- "message": "Styles aktualisieren",
- "description": ""
+ "message": "Styles aktualisieren"
},
"optionsCheckUpdate": {
- "message": "Alle verfügbaren Updates Installieren",
- "description": ""
+ "message": "Alle verfügbaren Updates Installieren"
},
"optionsCustomizeBadge": {
- "message": "Badge auf dem Toolbar-Icon",
- "description": ""
+ "message": "Badge auf dem Toolbar-Icon"
},
"optionsCustomizeIcon": {
- "message": "Symbolleisten-Icon",
- "description": ""
+ "message": "Symbolleisten-Icon"
},
"optionsCustomizeSync": {
- "message": "Mit Cloud synchronisieren",
- "description": ""
+ "message": "Mit Cloud synchronisieren"
},
"optionsHeading": {
- "message": "Optionen",
- "description": "Heading for options section on manage page."
+ "message": "Optionen"
},
"optionsIconDark": {
- "message": "Dunkle Browser-Themes",
- "description": ""
+ "message": "Dunkle Browser-Themes"
},
"optionsIconLight": {
- "message": "Helle Browser-Themes",
- "description": ""
+ "message": "Helle Browser-Themes"
},
"optionsOpen": {
- "message": "Öffnen",
- "description": ""
+ "message": "Öffnen"
},
"optionsOpenManager": {
- "message": "Verwaltung",
- "description": ""
+ "message": "Verwaltung"
},
"optionsPopupWidth": {
- "message": "Popup-Breite (in Pixeln)",
- "description": ""
+ "message": "Popup-Breite (in Pixeln)"
},
"optionsReset": {
- "message": "Setzt diese Einstellungen auf die Standard-Werte zurück.",
- "description": ""
+ "message": "Setzt diese Einstellungen auf die Standard-Werte zurück."
},
"optionsResetButton": {
- "message": "Optionen zurücksetzen",
- "description": ""
+ "message": "Optionen zurücksetzen"
+ },
+ "optionsStylusThemes": {
+ "message": "Stylus UI-Theme suchen"
},
"optionsSubheading": {
- "message": "Mehr Optionen",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "Nach dem Importieren von Styles aus einer alten Version oder von Stylish ist eine einmalige manuelle Updatesuche in der Verwaltung nötig. Dies stellt sicher, dass alle Styles auf dem aktuellsten Stand sind.",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "Style-Updateintervall in Stunden (0 zum Deaktivieren)",
- "description": ""
- },
- "optionsSyncNone": {
- "message": "Nichts",
- "description": ""
+ "message": "Mehr Optionen"
},
"optionsSyncConnect": {
- "message": "Verbinden",
- "description": ""
+ "message": "Verbinden"
},
"optionsSyncDisconnect": {
- "message": "Trennen",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "Jetzt synchronisieren",
- "description": ""
+ "message": "Trennen"
},
"optionsSyncLogin": {
- "message": "Anmelden",
- "description": ""
+ "message": "Anmelden"
+ },
+ "optionsSyncNone": {
+ "message": "Nichts"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "Verbunden"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "Verbinde..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "Verbindung getrennt"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "Trenne Verbindung..."
},
"optionsSyncStatusPull": {
"message": "Hole Style $loaded$ von $total$",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1043,7 +890,6 @@
},
"optionsSyncStatusPush": {
"message": "Lade Style $loaded$ von $total$ hoch",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1053,261 +899,248 @@
}
}
},
+ "optionsSyncStatusRelogin": {
+ "message": "Session abgelaufen, bitte neu einloggen."
+ },
"optionsSyncStatusSyncing": {
- "message": "Synchronisiere...",
- "description": ""
+ "message": "Synchronisiere..."
},
- "optionsSyncStatusConnecting": {
- "message": "Verbinde...",
- "description": ""
+ "optionsSyncSyncNow": {
+ "message": "Jetzt synchronisieren"
},
- "optionsSyncStatusConnected": {
- "message": "Verbunden",
- "description": ""
+ "optionsUpdateImportNote": {
+ "message": "Nach dem Importieren von Styles aus einer alten Version oder von Stylish ist eine einmalige manuelle Updatesuche in der Verwaltung nötig. Dies stellt sicher, dass alle Styles auf dem aktuellsten Stand sind."
},
- "optionsSyncStatusDisconnecting": {
- "message": "Trenne Verbindung...",
- "description": ""
+ "optionsUpdateInterval": {
+ "message": "Style-Updateintervall in Stunden (0 zum Deaktivieren)"
},
- "optionsSyncStatusDisconnected": {
- "message": "Verbindung getrennt",
- "description": ""
+ "overwriteFileExport": {
+ "message": "Willst du die existierende Datei überschreiben?"
},
"paginationCurrent": {
- "message": "Aktuelle Seite",
- "description": "Tooltip for the current page index in search results"
+ "message": "Aktuelle Seite"
},
"paginationEstimated": {
- "message": "Geschätzte Seitenanzahl",
- "description": "Tooltip for the total page count in search results"
+ "message": "Geschätzte Seitenanzahl"
},
"paginationNext": {
- "message": "Nächste Seite",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "Nächste Seite"
},
"paginationPrevious": {
- "message": "Vorherige Seite",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "Vorherige Seite"
},
"paginationTotal": {
- "message": "Gesamtzahl der Seiten",
- "description": ""
+ "message": "Gesamtzahl der Seiten"
},
"parseUsercssError": {
- "message": "UserCSS parsen fehlgeschlagen:",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "UserCSS parsen fehlgeschlagen:"
},
"popupAutoResort": {
- "message": "Styles im Popup sofort neu sortieren",
- "description": "Label for the checkbox controlling popup resorting."
+ "message": "Styles im Popup sofort neu sortieren"
},
"popupBorders": {
- "message": "Weiße Rahmen an den Seiten hinzufügen",
- "description": ""
+ "message": "Weiße Rahmen an den Seiten hinzufügen"
},
"popupBordersTooltip": {
- "message": "Nützlich für dunkle Themes im neuen Chrome, da dort die Seitenränder nicht mehr gefärbt werden",
- "description": ""
+ "message": "Nützlich für dunkle Themes im neuen Chrome, da dort die Seitenränder nicht mehr gefärbt werden"
},
"popupHotkeysInfo": {
- "message": "<0>-<9> (auch auf NumPad) schaltet den n-ten Style um (0 ist 10)\n- schaltet ersten Style, dessen Name mit diesem Buchstaben beginnt, um\n öffnet Editor statt umzuschalten\n aktiviert die aufgeführten Styles\n deaktiviert die aufgeführten Styles\n schaltet anfänglich aktivierte Styles um. Trifft nicht auf Styles zu, die erst aktiviert werden, wenn das Popup noch geöffnet ist. Dadurch kann z.B. die Anfangseinstellung nach einem Test wiederhergestellt werden: \nMehr dazu im Wiki",
- "description": "NOTE1: preserve < and > symbols so that is styled as a key.\nNOTE2: the last line is displayed as a text of the link to the wiki page.\nNOTE3: this is the list of hotkeys displayed after clicking the right edge of the extension popup."
+ "message": "<0>-<9> (auch auf NumPad) schaltet den n-ten Style um (0 ist 10)\n- schaltet ersten Style, dessen Name mit diesem Buchstaben beginnt, um\n öffnet Editor statt umzuschalten\n aktiviert die aufgeführten Styles\n deaktiviert die aufgeführten Styles\n schaltet anfänglich aktivierte Styles um. Trifft nicht auf Styles zu, die erst aktiviert werden, wenn das Popup noch geöffnet ist. Dadurch kann z.B. die Anfangseinstellung nach einem Test wiederhergestellt werden: \nMehr dazu im Wiki"
},
"popupHotkeysTooltip": {
- "message": "Klicke, um Tastenkürzel zu sehen",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "Klicke, um Tastenkürzel zu sehen"
},
"popupManageTooltip": {
- "message": "Shift+Klick oder Rechtsklick öffnet den Stylemanager mit Filter für Styles der aktuellen Seite",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Shift+Klick oder Rechtsklick öffnet den Stylemanager mit Filter für Styles der aktuellen Seite"
},
"popupMenuButtonTooltip": {
- "message": "Aktionsmenü",
- "description": "Tooltip for menu button in popup."
+ "message": "Aktionsmenü"
+ },
+ "popupOpenEditInPopup": {
+ "message": "Einfaches Fenster verwenden (keine Omnibox)"
},
"popupOpenEditInWindow": {
- "message": "Editor in neuem Fenster öffnen",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Editor in neuem Fenster öffnen"
},
"popupOpenEditInWindowTooltip": {
- "message": "Wird auch aktiviert durch Lösen des Editor-Tabs vom Browserfenster\nund deaktiviert durch Zusammenführen eines Editor-Tabs mit einem anderen Fenster.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Wird auch aktiviert durch Lösen des Editor-Tabs vom Browserfenster\nund deaktiviert durch Zusammenführen eines Editor-Tabs mit einem anderen Fenster."
},
"popupStylesFirst": {
- "message": "Styles vor den Bedienelementen",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "Styles vor den Bedienelementen"
},
"prefShowBadge": {
- "message": "Anzahl der aktiven Styles auf der aktuellen Seite",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Anzahl der aktiven Styles auf der aktuellen Seite"
},
"previewLabel": {
- "message": "Echtzeitvorschau",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "Echtzeitvorschau"
},
"previewTooltip": {
- "message": "Übernimmt die Änderungen nur vorübergehend.\nSpeichere den Style, um die Änderungen dauerhaft anzuwenden.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "Übernimmt die Änderungen nur vorübergehend.\nSpeichere den Style, um die Änderungen dauerhaft anzuwenden."
+ },
+ "publish": {
+ "message": "Veröffentlichen"
+ },
+ "publishPush": {
+ "message": "Erneut veröffentlichen"
+ },
+ "publishReconnect": {
+ "message": "Versuche, die Verbindung zu trennen; dann erneut veröffentlichen"
+ },
+ "publishRetry": {
+ "message": "Stylus versucht noch, den Style zu veröffentlichen, aber du kannst es erneut versuchen, wenn du keine Aktivität oder Popups siehst. Jetzt neu versuchen?"
+ },
+ "publishStyle": {
+ "message": "Style veröffentlichen"
+ },
+ "publishUsw": {
+ "message": "Via "
+ },
+ "readingStyles": {
+ "message": "Lese Styles..."
},
"reload": {
- "message": "Stylus Addon neu laden",
- "description": "Context menu reload"
+ "message": "Stylus Addon neu laden"
},
"replace": {
- "message": "Ersetzen",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Ersetzen"
},
"replaceAll": {
- "message": "Alles ersetzen",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Alles ersetzen"
},
"replaceWith": {
- "message": "Ersetzen durch",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Ersetzen durch"
},
"retrieveBckp": {
- "message": "Styles importieren",
- "description": ""
+ "message": "Styles importieren"
},
"search": {
- "message": "Suche",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Suche"
},
"searchCaseSensitive": {
- "message": "Groß- / Kleinschreibung beachten",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "Groß- / Kleinschreibung beachten"
+ },
+ "searchGlobalStyles": {
+ "message": "Auch globale Styles suchen"
},
"searchNumberOfResults": {
- "message": "Trefferanzahl",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Trefferanzahl"
},
"searchNumberOfResults2": {
- "message": "Trefferanzahl im Code und in \"Gilt für\" Feldern",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Trefferanzahl im Code und in \"Gilt für\" Feldern"
},
"searchRegexp": {
- "message": "Verwende die /re/ Syntax zur Suche als RegExp",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "Verwende die /re/ Syntax zur Suche als RegExp"
},
"searchResultInstallCount": {
- "message": "Gesamte Installationen",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "Gesamte Installationen"
},
"searchResultNoneFound": {
- "message": "Keine Styles für diese Seite gefunden.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "Keine Styles für diese Seite gefunden."
+ },
+ "searchResultNotMatching": {
+ "message": "Der Style wurde installiert, gilt aber nicht für die aktuelle URL."
+ },
+ "searchResultNotMatchingNote": {
+ "message": "Frage den Autor des Styles, ob er die URL hinzufügt.\n\nDu kannst den Style auch selbst bearbeiten,\naber dann werden automatische Updates für diesen Style deaktiviert."
},
"searchResultRating": {
- "message": "Bewertung",
- "description": "Text for label that shows the search result's rating"
+ "message": "Bewertung"
},
"searchResultUpdated": {
- "message": "Aktualisiert am",
- "description": "Text for label that shows the search result's last update date"
+ "message": "Aktualisiert am"
},
"searchResultWeeklyCount": {
- "message": "Wöchentliche Installationen",
- "description": "Text for label that shows the number of times a search result was installed during last week"
+ "message": "Wöchentliche Installationen"
},
- "searchStyles": {
- "message": "Inhalte durchsuchen",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "searchStyleQueryHint": {
+ "message": "Stylenamen ohne Beachtung der Groß-/Kleinschreibung suchen:\nMehrere Suchworte - alle Wörter in beliebiger Reihenfolge\n\"Bestimmte Phrase\" - genau diese Phrase ohne Anführungszeichen\n2020 - zeigt auch Styles, die 2020 aktualisiert wurden"
+ },
+ "searchStylesAll": {
+ "message": "Alles"
+ },
+ "searchStylesCode": {
+ "message": "CSS Code"
},
"searchStylesHelp": {
- "message": "Die >-Taste (Numpad) fokussiert das Suchfeld.\nEinfacher Text: Sucht im Namen, Quelltext, Homepage und anvisierten URLs. Wörter mit weniger als 3 Buchstaben werden ignoriert.\nStyles, die auf eine URL passen: Stelle der Suche voran, z.B. \nRegExp: Nutze Slash und Flags, z.B. \nSuche nach genauem Ausdruck: Anführungszeichen verwenden, z.B. <\".header ~ div\"> ",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
+ "message": "Die >-Taste (Numpad) oder fokussieren das Suchfeld.\nEinfacher Text: Sucht mit Leerzeichen getrennte Wörter in beliebiger Reihenfolge.\nSuche nach genauem Ausdruck: Anführungszeichen verwenden, z.B. <\".header ~ div\">\nRegExp: Nutze Schrägstrich und Flags, z.B. \nStyles, die auf eine URL passen: Aktiviere \"Nach URL\" und suche nach einer vollständigen URL, z.B. https://www.example.org/\nMetadaten: Aktiviere das Kontrollkästchen für Metadaten, um in Namen, \"Gilt für\" Feldern, Installations-URL, Update-URL und dem gesamten Metadatenblock in UserCSS Styles zu suchen."
+ },
+ "searchStylesMatchUrl": {
+ "message": "Nach URL"
+ },
+ "searchStylesMeta": {
+ "message": "Metadaten"
},
"sectionAdd": {
- "message": "Weiteren Bereich hinzufügen",
- "description": "Label for the button to add a section"
+ "message": "Weiteren Bereich hinzufügen"
},
"sectionRemove": {
- "message": "Bereich entfernen",
- "description": "Label for the button to remove a section"
+ "message": "Bereich entfernen"
},
"sectionRestore": {
- "message": "Gelöschten Bereich wiederherstellen",
- "description": "Label for the button to restore a removed section"
+ "message": "Gelöschten Bereich wiederherstellen"
+ },
+ "sections": {
+ "message": "Bereiche"
},
"shortcuts": {
- "message": "Tastenkürzel",
- "description": "Go to shortcut configuration"
+ "message": "Tastenkürzel"
},
"shortcutsNote": {
- "message": "Eine Tastenkombination definieren",
- "description": ""
+ "message": "Eine Tastenkombination definieren"
},
"sortDateNewestFirst": {
- "message": "neueste zuerst",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "neueste zuerst"
},
"sortDateOldestFirst": {
- "message": "älteste zuerst",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "älteste zuerst"
},
"sortLabel": {
- "message": "Wähle eine Sortierreihenfolge für die installierten Styles",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "Wähle eine Sortierreihenfolge für die installierten Styles"
},
"sortLabelTitleAsc": {
- "message": "Name aufsteigend",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "Name aufsteigend"
},
"sortLabelTitleDesc": {
- "message": "Name absteigend",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "Name absteigend"
},
"sortStylesHelp": {
- "message": "Wähle die anzuwendende Sortierart aus dem Dropdown-Menü aus. Die Standardeinstellung sortiert aufsteigend nach Name des Styles (A bis Z). Innerhalb der \"Name absteigend\"-Gruppe wird von Z bis A sortiert.\nEs gibt andere Voreinstellungen, die es erlauben, Einträge nach mehreren Kriterien zu sortieren. Stelle es dir vor wie bei einer Tabellensortierung mit mehreren Spalten. Jede Kategorie (vor bzw. nach Pluszeichen) stellt dabei eine Spalte dar.\nIst die Einstellung beispielsweise \"Aktiviert (zuerst) + Name\", dann werden die Einträge so sortiert, dass alle aktivierten Styles zuerst stehen (von A bis Z) und dann alle deaktivierten Styles (wieder von A beginnend bis Z).",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the sort input field on the Manage styles page"
+ "message": "Wähle die anzuwendende Sortierart aus dem Dropdown-Menü aus. Die Standardeinstellung sortiert aufsteigend nach Name des Styles (A bis Z). Innerhalb der \"Name absteigend\"-Gruppe wird von Z bis A sortiert.\nEs gibt andere Voreinstellungen, die es erlauben, Einträge nach mehreren Kriterien zu sortieren. Stelle es dir vor wie bei einer Tabellensortierung mit mehreren Spalten. Jede Kategorie (vor bzw. nach Pluszeichen) stellt dabei eine Spalte dar.\nIst die Einstellung beispielsweise \"Aktiviert (zuerst) + Name\", dann werden die Einträge so sortiert, dass alle aktivierten Styles zuerst stehen (von A bis Z) und dann alle deaktivierten Styles (wieder von A beginnend bis Z)."
},
"sortStylesHelpTitle": {
- "message": "Inhalte sortieren",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "Inhalte sortieren"
},
"styleBadRegexp": {
- "message": "Regulärer Ausdruck (RegExp) ist ungültig.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Regulärer Ausdruck (RegExp) ist ungültig."
},
"styleBeautify": {
- "message": "Code formatieren",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "Code formatieren"
},
"styleBeautifyHint": {
- "message": "Hinweis: Mache einen Rechtsklick auf \"Code formatieren\" oder nutze das weiter unten definierte Tastenkürzel, um den Code zu formatieren ohne dieses Fenster anzuzeigen.",
- "description": "Hint shown inside the CSS-beautifier panel"
+ "message": "Hinweis: Mache einen Rechtsklick auf \"Code formatieren\" oder nutze das weiter unten definierte Tastenkürzel, um den Code zu formatieren ohne dieses Fenster anzuzeigen."
},
"styleBeautifyIndentConditional": {
- "message": "Rücke @media / @supports ein",
- "description": "CSS-beautifier option"
+ "message": "Rücke @media / @supports ein"
},
"styleBeautifyPreserveNewlines": {
- "message": "Leerzeilen schützen",
- "description": "CSS-beautifier option"
+ "message": "Leerzeilen schützen"
},
"styleCancelEditLabel": {
- "message": "Zurück zum Verwalten",
- "description": "Label for cancel button for style editing"
+ "message": "Zurück zum Verwalten"
},
"styleChangesNotSaved": {
- "message": "Du hast Änderungen an diesem Style vorgenommen, ohne diese zu speichern.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Du hast Änderungen an diesem Style vorgenommen, ohne diese zu speichern."
},
"styleEnabledLabel": {
- "message": "Aktiviert",
- "description": "Label for the enabled state of styles"
+ "message": "Aktiviert"
},
"styleFromMozillaFormatError": {
- "message": "Import vom Mozilla Format fehlgeschlagen",
- "description": "Label for the import error"
+ "message": "Import vom Mozilla Format fehlgeschlagen"
},
"styleFromMozillaFormatPrompt": {
- "message": "Mozilla-Format Code einfügen",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Mozilla-Format Code einfügen"
},
"styleInstall": {
"message": "\"$stylename$\" mit Stylus installieren?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1316,7 +1149,6 @@
},
"styleInstallFailed": {
"message": "Installation des Styles fehlgeschlagen!\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1325,82 +1157,68 @@
},
"styleInstallOverwrite": {
"message": "\"$stylename$\" ist bereits installiert. Überschreiben?\nVersion: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "Bitte Namen eingeben",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Bitte Namen eingeben"
+ },
+ "styleName": {
+ "message": "Stylename"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "Der Style wurde aufgrund ungültiger RegExp nicht angewandt.",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "Der Style wurde aufgrund ungültiger RegExp nicht angewandt."
},
"styleRegexpInvalidExplanation": {
- "message": "Einige RegExp konnten nicht kompiliert werden.",
- "description": ""
+ "message": "Einige RegExp konnten nicht kompiliert werden."
},
"styleRegexpPartialExplanation": {
- "message": "Dieser Style verwendet nur teilweise übereinstimmende RegExp unter Missachtung der CSS4 @document Spezifikationen, welche eine vollständig übereinstimmende URL benötigen. Die betroffenen CSS-Bereiche wurde nicht auf die Website angewandt. Dieser Style wurde wahrscheinlich unter Stylish für Chrome erstellt, in der seit der ersten Version eine fehlerhafte Überprüfung der RegExp besteht (bekannter Fehler).",
- "description": ""
+ "message": "Dieser Style verwendet nur teilweise übereinstimmende RegExp unter Missachtung der CSS4 @document Spezifikationen, welche eine vollständig übereinstimmende URL benötigen. Die betroffenen CSS-Bereiche wurde nicht auf die Website angewandt. Dieser Style wurde wahrscheinlich unter Stylish für Chrome erstellt, in der seit der ersten Version eine fehlerhafte Überprüfung der RegExp besteht (bekannter Fehler)."
},
"styleRegexpProblemTooltip": {
- "message": "Anzahl der Bereiche, welche aufgrund nicht korrekt verwendeter RegExp nicht angewendet wurden",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "Anzahl der Bereiche, welche aufgrund nicht korrekt verwendeter RegExp nicht angewendet wurden"
},
"styleRegexpTestButton": {
- "message": "RegExp testen",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "RegExp testen"
},
"styleRegexpTestFull": {
- "message": "Zutreffende Tabs",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "Zutreffende Tabs"
},
"styleRegexpTestInvalid": {
- "message": "Übersprungene ungültige RegExp",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "Übersprungene ungültige RegExp"
},
"styleRegexpTestNone": {
- "message": "Keine zutreffenden Tabs",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "Keine zutreffenden Tabs"
},
"styleRegexpTestNote": {
- "message": "Beachte: Nutze einzelne \\ (Backslashes) zum Escapen im RegExp Feld. Diese werden automatisch im Stylecode zu doppelten \\\\ konvertiert, um der CSS Spezifikation zu entsprechen.",
- "description": "RegExp test report: a note displayed at the bottom of the dialog"
+ "message": "Beachte: Nutze einzelne \\ (Backslashes) zum Escapen im RegExp Feld. Diese werden automatisch im Stylecode zu doppelten \\\\ konvertiert, um der CSS Spezifikation zu entsprechen."
},
"styleRegexpTestPartial": {
- "message": "Keine genaue Übereinstimmung, wurde daher übersprungen.",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "Keine genaue Übereinstimmung, wurde daher übersprungen."
},
"styleRegexpTestTitle": {
- "message": "Liste der zutreffenden, geöffneten Tabs (URL anklicken, um den Tab zu fokussieren)",
- "description": "RegExp test report: title of the report"
+ "message": "Liste der zutreffenden, geöffneten Tabs (URL anklicken, um den Tab zu fokussieren)"
},
"styleSaveLabel": {
- "message": "Speichern",
- "description": "Label for save button for style editing"
+ "message": "Speichern"
},
"styleToMozillaFormatHelp": {
- "message": "Das Mozilla-Format des Codes kann mit Stylish für Firefox verwendet werden und bei userstyles.org eingereicht werden.",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Das Mozilla-Format des Codes kann mit Stylish für Firefox verwendet werden und bei userstyles.org eingereicht werden."
},
"styleToMozillaFormatTitle": {
- "message": "Style im Mozilla Format",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Style im Mozilla Format"
},
"styleUpdate": {
"message": "Möchtest Du \"$stylename$\" wirklich aktualisieren?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1408,72 +1226,64 @@
}
},
"styleUpdateDiscardChanges": {
- "message": "Der Style wurde außerhalb des Editors verändert. Style neu laden?",
- "description": "Confirmation to update the style in the editor"
+ "message": "Der Style wurde außerhalb des Editors verändert. Style neu laden?"
},
"stylusUnavailableForURL": {
- "message": "Stylus funktioniert nicht auf Seiten wie diesen.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Stylus funktioniert nicht auf Seiten wie diesen."
},
"stylusUnavailableForURLdetails": {
- "message": "Als Sicherheitsvorkehrung verbietet der Browser es Erweiterungen, seine eingebauten Seiten (wie chrome://version, dem neuen Standard-Tab ab Chrome 61, about:addons, usw.), sowie Seiten anderer Erweiterungen zu beeinflussen. Jeder Browser beschränkt auch den Zugriff auf seine eigene Erweiterungsgalerie (wie Chrome Web Store oder addons.mozilla.org).",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Als Sicherheitsvorkehrung verbietet der Browser es Erweiterungen, seine eingebauten Seiten (wie chrome://version, dem neuen Standard-Tab ab Chrome 61, about:addons, usw.), sowie Seiten anderer Erweiterungen zu beeinflussen. Jeder Browser beschränkt auch den Zugriff auf seine eigene Erweiterungsgalerie (wie Chrome Web Store oder addons.mozilla.org)."
+ },
+ "syncDropboxDeprecated": {
+ "message": "Dropbox Import / Export wurde durch einen fortschrittlicheren Mechanismus auf der Optionsseite ersetzt."
+ },
+ "syncError": {
+ "message": "Synchronisation fehlgeschlagen"
+ },
+ "syncErrorRelogin": {
+ "message": "Synchronisation fehlgeschlagen.\nVersuche, dich in den Optionen neu einzuloggen:\nKlicke erst \"Trennen\", dann \"Verbinden\"."
},
"syncStorageErrorSaving": {
- "message": "Der Wert kann nicht gespeichert werden. Versuche, die Textmenge zu reduzieren.",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "Der Wert kann nicht gespeichert werden. Versuche, die Textmenge zu reduzieren."
},
"toggleStyle": {
- "message": "Style umschalten",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "Style umschalten"
},
"undo": {
- "message": "Rückgängig",
- "description": "Button label"
+ "message": "Rückgängig"
},
"undoGlobal": {
- "message": "Rückgängig machen in allen Bereichen",
- "description": "CSS-beautify global Undo button label"
+ "message": "Rückgängig machen in allen Bereichen"
},
"unreachableAMO": {
- "message": "Firefox verbietet den Zugriff auf diese Seite.",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "Firefox verbietet den Zugriff auf diese Seite."
},
"unreachableAMOHint": {
- "message": "Um den Zugriff zu erlauben, öffne , rechtsklicke in die Liste, klicke \"Neu\", dann \"Boolean\", füge ein und klicke OK, , OK, lade neu.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintNewFF": {
- "message": "In Firefox 60 und neuer muss auch die addons.mozilla.org domain von in entfernt werden.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Nur in Firefox 59 und neuer ist es möglich, WebExtenstions den Zugriff auf CSP-geschützte Seiten wie dieser zu erlauben.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "Um den Zugriff zu erlauben, öffne , rechtsklicke in die Liste, klicke \"Neu\", dann \"Boolean\", füge ein und klicke OK, , OK, lade neu."
},
"unreachableContentScript": {
- "message": "Konnte nicht mit der Seite kommunizieren. Bitte versuchen Sie, die Seite erneut zu laden.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "Konnte nicht mit der Seite kommunizieren. Bitte versuchen Sie, die Seite erneut zu laden."
},
"unreachableFileHint": {
- "message": "Stylus kann nur auf das file:// Protokoll in der URL zugreifen, wenn dies in den Einstellungen der Erweiterung unter chrome://extensions festgelegt wurde.",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "Stylus kann nur auf das file:// Protokoll in der URL zugreifen, wenn dies in den Einstellungen der Erweiterung unter chrome://extensions festgelegt wurde."
},
- "InaccessibleFileHint": {
- "message": "Stylus kann auf einige Dateitypen nicht zugreifen (z.B. pdf oder json)",
- "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ "unreachableMozSiteHint": {
+ "message": "In Firefox 60 oder neuer muss diese Domain von in entfernt werden."
+ },
+ "unreachableMozSiteHintOldFF": {
+ "message": "Erst ab Firefox 59 können WebExtensions Style-Elemente auf CSP-geschützten Seiten wie dieser hinzufügen."
+ },
+ "unzipStyles": {
+ "message": "Entpacke Styles..."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "Keine Updates gefunden.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Keine Updates gefunden."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "Einige Styles wurden nicht überprüft, um dem Verlust von lokalen Bearbeitungen vorzubeugen. Die Aktualisierungen können entweder durch einzelne manuelle Überprüfung oder durch eine erneute Ausführung der Updatesuche (und anschließendem Update) für alle Styles erzwungen werden. Lokale Bearbeitungen werden dann überschrieben.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Einige Styles wurden nicht überprüft, um dem Verlust von lokalen Bearbeitungen vorzubeugen. Die Aktualisierungen können entweder durch einzelne manuelle Überprüfung oder durch eine erneute Ausführung der Updatesuche (und anschließendem Update) für alle Styles erzwungen werden. Lokale Bearbeitungen werden dann überschrieben."
},
"updateCheckFailBadResponseCode": {
"message": "Update fehlgeschlagen: Server antwortete mit Code $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1481,119 +1291,63 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Update fehlgeschlagen: Server nicht erreichbar.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Update fehlgeschlagen: Server nicht erreichbar."
},
"updateCheckHistory": {
- "message": "Verlauf der Updatesuche",
- "description": ""
+ "message": "Verlauf der Updatesuche"
},
"updateCheckManualUpdateForce": {
- "message": "Updates installieren (Lokale Bearbeitungen werden überschrieben)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Updates installieren (Lokale Bearbeitungen werden überschrieben)"
},
"updateCheckManualUpdateHint": {
- "message": "Eine erzwungene Aktualisierung wird die lokalen Änderungen überschreiben.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Eine erzwungene Aktualisierung wird die lokalen Änderungen überschreiben."
},
"updateCheckSkippedLocallyEdited": {
- "message": "Dieser Style wurde lokal bearbeitet.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Dieser Style wurde lokal bearbeitet."
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "Dieser Style scheint lokal bearbeitet worden zu sein.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "Dieser Style scheint lokal bearbeitet worden zu sein."
},
"updateCheckSucceededNoUpdate": {
- "message": "Der Style ist auf dem aktuellsten Stand.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "Der Style ist auf dem aktuellsten Stand."
},
"updateCompleted": {
- "message": "Aktualisierung abgeschlossen.",
- "description": "Text that displays when an update completed"
+ "message": "Aktualisierung abgeschlossen."
},
"updatesCurrentlyInstalled": {
- "message": "Installierte Updates:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "Bitte ändere @name oder @namespace, um das Überschreiben eines bereits existierenden Styles zu verhindern.",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssConfigIncomplete": {
- "message": "Der Style wurde aktualisiert oder gelöscht, nachdem der Einstellungsdialog gezeigt wurde. Folgende Variablen wurden nicht gespeichert, um Metadatenkorruption zu verhindern:",
- "description": ""
- },
- "usercssEditorNamePlaceholder": {
- "message": "Gib @name im Code an",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateConfirmation": {
- "message": "Ersetze das vorgegebene Template für neue UserCSS styles mit dem vorliegenden Code?",
- "description": ""
- },
- "usercssReplaceTemplateName": {
- "message": "Ein leeres @name ersetzt das vorgegebene Template",
- "description": "The text shown after @name when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "Quelltext hier eingeben...",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "Die Version des Styles ist älter als die des bereits installierten.",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "Style erstellen für:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "diese URL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "syncDropboxDeprecated": {
- "message": "Dropbox Import / Export wurde durch einen fortschrittlicheren Mechanismus auf der Optionsseite ersetzt.",
- "description": ""
- },
- "overwriteFileExport": {
- "message": "Willst du die existierende Datei überschreiben?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "Datei erfolgreich gespeichert",
- "description": ""
- },
- "noFileToImport": {
- "message": "Keine Importdatei vorhanden. Um Styles zu importieren, solltest du sie zuerst exportieren.",
- "description": ""
- },
- "connectingDropbox": {
- "message": "Verbinde mit Dropbox...",
- "description": ""
- },
- "connectingDropboxNotAllowed": {
- "message": "Verbindung zur Dropbox ist nur in Apps verfügbar, die direkt vom Webstore installiert wurden",
- "description": ""
- },
- "gettingStyles": {
- "message": "Empfange alle Styles...",
- "description": ""
- },
- "zipStyles": {
- "message": "Packe Styles...",
- "description": ""
- },
- "unzipStyles": {
- "message": "Entpacke Styles...",
- "description": ""
- },
- "readingStyles": {
- "message": "Lese Styles...",
- "description": ""
+ "message": "Installierte Updates:"
},
"uploadingFile": {
- "message": "Lade Styles hoch...",
- "description": ""
+ "message": "Lade Styles hoch..."
+ },
+ "usercssAvoidOverwriting": {
+ "message": "Bitte ändere @name oder @namespace, um das Überschreiben eines bereits existierenden Styles zu verhindern."
+ },
+ "usercssConfigIncomplete": {
+ "message": "Der Style wurde aktualisiert oder gelöscht, nachdem der Einstellungsdialog gezeigt wurde. Folgende Variablen wurden nicht gespeichert, um Metadatenkorruption zu verhindern:"
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "Gib @name im Code an"
+ },
+ "usercssReplaceTemplateConfirmation": {
+ "message": "Ersetze das vorgegebene Template für neue UserCSS styles mit dem vorliegenden Code?"
+ },
+ "usercssReplaceTemplateName": {
+ "message": "Ein leeres @name ersetzt das vorgegebene Template"
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "Quelltext hier eingeben..."
+ },
+ "versionInvalidOlder": {
+ "message": "Die Version des Styles ist älter als die des bereits installierten."
+ },
+ "writeStyleFor": {
+ "message": "Style erstellen für:"
+ },
+ "writeStyleForURL": {
+ "message": "diese URL"
+ },
+ "zipStyles": {
+ "message": "Packe Styles..."
}
}
diff --git a/_locales/el/messages.json b/_locales/el/messages.json
index f283a422..f96ed29b 100644
--- a/_locales/el/messages.json
+++ b/_locales/el/messages.json
@@ -1,19 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "Το Stylus δεν έχει πρόσβαση σε κάποια αρχεία (π.χ. τα αρχεία PDF και JSON)"
+ },
"addStyleLabel": {
- "message": "Γράψτε νέο στυλ",
- "description": "Label for the button to go to the add style page"
+ "message": "Γράψτε νέο στυλ"
},
"addStyleTitle": {
- "message": "Προσθήκη στυλ",
- "description": "Title of the page for adding styles"
+ "message": "Προσθήκη στυλ"
+ },
+ "alphaChannel": {
+ "message": "Αδιαφάνεια"
},
"appliesAdd": {
- "message": "Προσθήκη",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Προσθήκη"
},
"appliesDisplay": {
"message": "Ισχύει για: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -21,112 +23,231 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "και πολλά άλλα",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "και πολλά άλλα"
},
"appliesDomainOption": {
- "message": "URL στον τομέα",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL στον τομέα"
},
"appliesHelp": {
- "message": "Χρησιμοποιήστε το \"Ισχύει για\" έλεγχοι ώστε να περιοριστουν ποιες διευθύνσεις τον κώδικα σε αυτό το τμήμα να εφαρμόζονται.",
- "description": "Help text for 'applies to' section"
+ "message": "Χρησιμοποιήστε το \"Ισχύει για\" έλεγχοι ώστε να περιοριστουν ποιες διευθύνσεις τον κώδικα σε αυτό το τμήμα να εφαρμόζονται."
},
"appliesLabel": {
- "message": "Ισχύει για",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Ισχύει για"
+ },
+ "appliesLineWidgetWarning": {
+ "message": "Δε λειτουργεί με minified CSS."
},
"appliesRegexpOption": {
- "message": "Διευθύνσεις URL που ταιριάζουν με την κανονική έκφραση",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "Διευθύνσεις URL που ταιριάζουν με την κανονική έκφραση"
},
"appliesRemove": {
- "message": "Αφαίρεση",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Αφαίρεση"
},
"appliesSpecify": {
- "message": "Καθορισμός",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Καθορισμός"
},
"appliesToEverything": {
- "message": "Τα πάντα",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Τα πάντα"
+ },
+ "appliesUrlOption": {
+ "message": "διεύθυνση URL"
},
"appliesUrlPrefixOption": {
- "message": "Διευθύνσεις URL που αρχίζουν με",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "Διευθύνσεις URL που αρχίζουν με"
},
"applyAllUpdates": {
- "message": "Εφαρμογή όλων των ενημερώσεων",
- "description": "Label for the button to apply all detected updates"
+ "message": "Εφαρμογή όλων των ενημερώσεων"
+ },
+ "author": {
+ "message": "Συντάκτης"
+ },
+ "backupButtons": {
+ "message": "Δημιουργήστε αντίγραφο ασφαλείας"
+ },
+ "backupMessage": {
+ "message": "Επιλέξτε ένα αρχείο ή σύρετέ το σε αυτήν τη σελίδα"
+ },
+ "bckpInstStyles": {
+ "message": "Εξαγωγή στυλ"
},
"checkAllUpdates": {
- "message": "Έλεγχος όλων των στυλ για ενημερώσεις",
- "description": "Label for the button to check all styles for updates"
+ "message": "Έλεγχος όλων των στυλ για ενημερώσεις"
+ },
+ "checkAllUpdatesForce": {
+ "message": "Ελέγξτε πάλι, δεν επεξεργάστηκα κανένα στυλ!"
},
"checkForUpdate": {
- "message": "Έλεγχος για ενημερώσεις",
- "description": "Label for the button to check a single style for an update"
+ "message": "Έλεγχος για ενημερώσεις"
},
"checkingForUpdate": {
- "message": "Έλεγχος...",
- "description": "Text to display when checking a style for an update"
+ "message": "Έλεγχος..."
+ },
+ "clickToUninstall": {
+ "message": "Πατήστε για απεγκατάσταση"
+ },
+ "cm_autoCloseBrackets": {
+ "message": "Αυτόματο κλείσιμο παρενθέσεων και εισαγωγικών"
+ },
+ "cm_autocompleteOnTyping": {
+ "message": "Αυτόματη συμπλήρωση καθώς πληκτρολογείτε"
},
"cm_indentWithTabs": {
- "message": "Χρήση καρτελών με έξυπνη εσοχή",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Χρήση καρτελών με έξυπνη εσοχή"
+ },
+ "cm_keyMap": {
+ "message": "Συντομεύσεις πληκτρολογίου"
},
"cm_lineWrapping": {
- "message": "Αναδίπλωση λέξεων",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Αναδίπλωση λέξεων"
+ },
+ "cm_matchHighlight": {
+ "message": "Υπογράμμιση"
+ },
+ "cm_matchHighlightSelection": {
+ "message": "Μόνο επιλογή"
+ },
+ "cm_resizeGripHint": {
+ "message": "Διπλό κλικ για μεγιστοποίηση/επαναφορά ύψους"
},
"cm_smartIndent": {
- "message": "Χρήση έξυπνης εσοχής",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Χρήση έξυπνης εσοχής"
},
"cm_tabSize": {
- "message": "Μέγεθος καρτέλας",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Μέγεθος καρτέλας"
+ },
+ "cm_theme": {
+ "message": "Θέμα"
+ },
+ "configOnChange": {
+ "message": "στην αλλαγή"
+ },
+ "configOnChangeTooltip": {
+ "message": "Αυτόματη αποθήκευση και εφαρμογή αλλαγών"
+ },
+ "configureStyle": {
+ "message": "Ρυθμίσεις"
+ },
+ "configureStyleOnHomepage": {
+ "message": "Ρυθμίσεις στην ιστοσελίδα"
+ },
+ "confirmCancel": {
+ "message": "Άκυρο"
+ },
+ "confirmClose": {
+ "message": "Κλείσιμο"
+ },
+ "confirmDefault": {
+ "message": "Χρήση προεπιλογής"
+ },
+ "confirmDelete": {
+ "message": "Διαγραφή"
+ },
+ "confirmDiscardChanges": {
+ "message": "Απόρριψη αλλαγών;"
+ },
+ "confirmNo": {
+ "message": "Όχι"
+ },
+ "confirmOK": {
+ "message": "ΟΚ"
+ },
+ "confirmSave": {
+ "message": "Αποθήκευση"
+ },
+ "confirmYes": {
+ "message": "Ναι"
+ },
+ "connectingDropbox": {
+ "message": "Σύνδεση με το Dropbox..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "Η σύνδεση με το Dropbox είναι διαθέσιμη μόνο σε εφαρμογές εγκατεστημένες απευθείας από το κατάστημα ιστού webstore"
+ },
+ "copied": {
+ "message": "Αντιγράφηκε στο πρόχειρο"
+ },
+ "copy": {
+ "message": "Αντιγραφή στο πρόχειρο"
+ },
+ "dateAbbrDay": {
+ "message": "$value$μ",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ }
+ },
+ "dateAbbrHour": {
+ "message": "$value$ω",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ }
+ },
+ "dateAbbrMonth": {
+ "message": "$value$λ",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ }
+ },
+ "dateAbbrYear": {
+ "message": "$value$χ",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ }
+ },
+ "dateInstalled": {
+ "message": "Ημερομηνία εγκατάστασης"
+ },
+ "dateUpdated": {
+ "message": "Ημερομηνία ενημέρωσης"
},
"dbError": {
- "message": "Παρουσιάστηκε σφάλμα χρησιμοποιώντας την κομψή βάση δεδομένων. Θα θέλατε να επισκεφθείτε μια ιστοσελίδα με πιθανές λύσεις;",
- "description": "Prompt when a DB error is encountered"
+ "message": "Παρουσιάστηκε σφάλμα χρησιμοποιώντας την κομψή βάση δεδομένων. Θα θέλατε να επισκεφθείτε μια ιστοσελίδα με πιθανές λύσεις;"
+ },
+ "defaultTheme": {
+ "message": "προεπιλογή"
},
"deleteStyleConfirm": {
- "message": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το στυλ;",
- "description": "Confirmation before deleting a style"
+ "message": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το στυλ;"
},
"deleteStyleLabel": {
- "message": "Διαγραφή",
- "description": "Label for the button to delete a style"
+ "message": "Διαγραφή"
},
"description": {
- "message": "Επαναπροσδιορίση του διαδίκτυου με το Stylus, έναν διαχειριστή στυλ. Το Stylus σας επιτρέπει να εγκαταστήσετε εύκολα themes και skins για πολλές δημοφιλείς ιστοσελίδες.",
- "description": "Extension description"
+ "message": "Επαναπροσδιορίση του διαδίκτυου με το Stylus, έναν διαχειριστή στυλ. Το Stylus σας επιτρέπει να εγκαταστήσετε εύκολα themes και skins για πολλές δημοφιλείς ιστοσελίδες."
},
"disableAllStyles": {
- "message": "Απενεργοποιηση ολων των στυλ",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Απενεργοποιηση ολων των στυλ"
},
"disableStyleLabel": {
- "message": "Απενεργοποίηση",
- "description": "Label for the button to disable a style"
+ "message": "Απενεργοποίηση"
+ },
+ "dragDropMessage": {
+ "message": "Αποθέστε το αντίγραφο ασφαλείας σας οπουδήποτε σε αυτήν τη σελίδα για εισαγωγή."
+ },
+ "dragDropUsercssTabstrip": {
+ "message": "Για να εγκαταστήσετε το αρχείο, αποθέστε το στη λωρίδα καρτελών (την περιοχή όπου εμφανίζονται οι τίτλοι καρτελών)."
+ },
+ "editDeleteText": {
+ "message": "Διαγραφή"
},
"editGotoLine": {
- "message": "Μετάβαση στη γραμμή (ή line:col)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Μετάβαση στη γραμμή (ή line:col)"
},
"editStyleHeading": {
- "message": "Επεξεργασία Στυλ",
- "description": "Title of the page for editing styles"
+ "message": "Επεξεργασία Στυλ"
},
"editStyleLabel": {
- "message": "Επεξεργασία",
- "description": "Label for the button to go to the edit style page"
+ "message": "Επεξεργασία"
},
"editStyleTitle": {
"message": "Επεξεργασία του στυλ $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -134,92 +255,393 @@
}
},
"enableStyleLabel": {
- "message": "Ενεργοποίηση",
- "description": "Label for the button to enable a style"
+ "message": "Ενεργοποίηση"
+ },
+ "excludeStyleByDomainLabel": {
+ "message": "Εξαίρεση του τρέχοντος τομέα"
+ },
+ "excludeStyleByUrlLabel": {
+ "message": "Εξαίρεση του τρέχοντος URL"
+ },
+ "exportLabel": {
+ "message": "Εξαγωγή"
+ },
+ "exportSavedSuccess": {
+ "message": "Το αρχείο αποθηκεύτηκε επιτυχώς."
+ },
+ "externalFeedback": {
+ "message": "Σχόλια"
+ },
+ "externalHomepage": {
+ "message": "Αρχική σελίδα"
+ },
+ "externalLink": {
+ "message": "Εξωτερική σύνδεση"
+ },
+ "externalSupport": {
+ "message": "Υποστήριξη"
+ },
+ "externalUsercssDocument": {
+ "message": "Τεκμηρίωση για Usercss"
+ },
+ "filteredStyles": {
+ "message": "Βλέπετε $numShown$ από 2$numTotal$ συνολικά",
+ "placeholders": {
+ "numShown": {
+ "content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
+ }
+ }
+ },
+ "filteredStylesAllHidden": {
+ "message": "Τα φίλτρα που εφαρμόζονται αυτήν τη στιγμή δεν ταιριάζουν με κανένα στυλ"
+ },
+ "findStyles": {
+ "message": "Εύρεση στυλ"
},
"findStylesForSite": {
- "message": "Αναζήτηση περισσότερων στυλ για αυτή την ιστοσελίδα",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Αναζήτηση περισσότερων στυλ για αυτή την ιστοσελίδα"
+ },
+ "genericAdd": {
+ "message": "Προσθήκη"
+ },
+ "genericClone": {
+ "message": "Δημιουργία αντιγράφου"
+ },
+ "genericDisabledLabel": {
+ "message": "Απενεργοποιημένο"
+ },
+ "genericEnabledLabel": {
+ "message": "Ενεργοποιημένο"
+ },
+ "genericError": {
+ "message": "Σφάλμα"
+ },
+ "genericHistoryLabel": {
+ "message": "Ιστορικό"
+ },
+ "genericNext": {
+ "message": "Επόμενο"
+ },
+ "genericPrevious": {
+ "message": "Προηγούμενο"
+ },
+ "genericResetLabel": {
+ "message": "Επαναφορά"
+ },
+ "genericSavedMessage": {
+ "message": "Αποθηκεύτηκε"
+ },
+ "genericTitle": {
+ "message": "Τίτλος"
+ },
+ "genericUnknown": {
+ "message": "Άγνωστο"
+ },
+ "gettingStyles": {
+ "message": "Λήψη όλων των στυλ..."
},
"helpAlt": {
- "message": "Βοήθεια",
- "description": "Alternate text for help buttons"
+ "message": "Βοήθεια"
+ },
+ "helpKeyMapCommand": {
+ "message": "Πληκτρολογήστε μια εντολή"
+ },
+ "helpKeyMapHotkey": {
+ "message": "Πληκτρολογήστε ένα hotkey"
+ },
+ "importLabel": {
+ "message": "Εισαγωγή"
+ },
+ "importReplaceLabel": {
+ "message": "Αντικατάσταση στυλ"
+ },
+ "importReportLegendAdded": {
+ "message": "προστέθηκαν"
+ },
+ "importReportLegendUpdatedCode": {
+ "message": "ενημερωμένος κώδικας"
+ },
+ "importReportTitle": {
+ "message": "Η εισαγωγή στυλ τελείωσε"
+ },
+ "importReportUnchanged": {
+ "message": "Τίποτα δεν άλλαξε"
+ },
+ "importReportUndoneTitle": {
+ "message": "Η εισαγωγή έχει αναιρεθεί"
+ },
+ "installButton": {
+ "message": "Εγκατάσταση στυλ"
+ },
+ "installButtonInstalled": {
+ "message": "Το στυλ έχει εγκατασταθεί."
+ },
+ "installButtonReinstall": {
+ "message": "Επανεγκατάσταση στυλ"
+ },
+ "installButtonUpdate": {
+ "message": "Ενημέρωση στυλ"
},
"installUpdate": {
- "message": "Εγκατάσταση ενημέρωσης",
- "description": "Label for the button to install an update for a single style"
+ "message": "Εγκατάσταση ενημέρωσης"
+ },
+ "installUpdateFromLabel": {
+ "message": "Έλεγχος για ενημερώσεις"
+ },
+ "license": {
+ "message": "Άδεια χρήσης"
+ },
+ "linkGetHelp": {
+ "message": "Βοήθεια"
+ },
+ "linkGetStyles": {
+ "message": "Λήψη στυλ"
+ },
+ "linkTranslate": {
+ "message": "Μετάφραση"
+ },
+ "linterConfigTooltip": {
+ "message": "Πατήστε εδώ για να ρυθμίσετε το linter"
+ },
+ "linterIssues": {
+ "message": "Ζητήματα"
+ },
+ "linterJSONError": {
+ "message": "Μη έγκυρη μορφή JSON"
+ },
+ "linterResetMessage": {
+ "message": "Για αναίρεση μιας κατά λάθος επαναφοράς, πατήστε Ctrl-Z (ή Cmd-Z) στο πλαίσιο κειμένου"
+ },
+ "manageFaviconsHelp": {
+ "message": "Το Stylus χρησιμοποιεί μία εξωτερική υπηρεσία https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "Φίλτρα",
- "description": "Label for filters container"
+ "message": "Φίλτρα"
},
"manageHeading": {
- "message": "Εγκατεστημένα Στυλ",
- "description": "Heading for the manage page"
+ "message": "Εγκατεστημένα Στυλ"
+ },
+ "manageNewUI": {
+ "message": "Νέα διαχείριση διάταξης UI"
+ },
+ "manageOnlyDisabled": {
+ "message": "Μόνο απενεργοποιημένα στυλ"
},
"manageOnlyEnabled": {
- "message": "Μόνο ενεργοποιημένα στυλ",
- "description": "Checkbox to show only enabled styles"
+ "message": "Μόνο ενεργοποιημένα στυλ"
+ },
+ "manageOnlyExternal": {
+ "message": "Μόνο στυλ από άλλες ιστοσελίδες"
+ },
+ "manageOnlyLocal": {
+ "message": "Μόνο στυλ δημιουργημένα τοπικά"
},
"manageTitle": {
- "message": "Κομψή",
- "description": "Title for the manage page"
+ "message": "Κομψή"
},
"menuShowBadge": {
- "message": "Εμφάνιση ενεργους καταμέτρησης στυλ",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Εμφάνιση ενεργους καταμέτρησης στυλ"
+ },
+ "noFileToImport": {
+ "message": "Για να εισάγετε τα στυλ σας, πρέπει πρώτα να τα εξάγετε."
},
"noStylesForSite": {
- "message": "Δεν υπάρχουν εγκατεστημένα στυλ για αυτή την ιστοσελίδα.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Δεν υπάρχουν εγκατεστημένα στυλ για αυτή την ιστοσελίδα."
},
"openManage": {
- "message": "Διαχείριση εγκατεστημένων στυλ",
- "description": "Link to open the manage page."
+ "message": "Διαχείριση εγκατεστημένων στυλ"
+ },
+ "openOptions": {
+ "message": "Επιλογές"
+ },
+ "openStylesManager": {
+ "message": "Άνοιγμα διαχείρισης στυλ"
+ },
+ "optionsActions": {
+ "message": "Ενέργειες"
+ },
+ "optionsAdvanced": {
+ "message": "Για προχωρημένους"
+ },
+ "optionsAdvancedContextDelete": {
+ "message": "Προσθήκη του 'Delete' στο μενού περιβάλλοντος του προγράμματος επεξεργασίας"
+ },
+ "optionsBadgeDisabled": {
+ "message": "Χρώμα φόντου όταν είναι απενεργοποιημένο"
+ },
+ "optionsBadgeNormal": {
+ "message": "Χρώμα υποβάθρου"
+ },
+ "optionsCheck": {
+ "message": "Ενημέρωση στυλ"
+ },
+ "optionsCheckUpdate": {
+ "message": "Έλεγχος και εγκατάσταση διαθέσιμων ενημερώσεων"
+ },
+ "optionsCustomizeBadge": {
+ "message": "Σήμα στο εικονίδιο της γραμμής εργαλείων"
+ },
+ "optionsCustomizePopup": {
+ "message": "Αναδυόμενο παράθυρο"
+ },
+ "optionsCustomizeUpdate": {
+ "message": "Ενημερώσεις"
},
"optionsHeading": {
- "message": "Επιλογές",
- "description": "Heading for options section on manage page."
+ "message": "Επιλογές"
+ },
+ "optionsIconDark": {
+ "message": "Σκούρο θέμα φυλλομετρητή"
+ },
+ "optionsOpen": {
+ "message": "Άνοιγμα"
+ },
+ "optionsOpenManager": {
+ "message": "Διαχείριση στυλ"
+ },
+ "optionsPopupWidth": {
+ "message": "Πλάτος αναδυόμενου παραθύρου (σε pixels)"
+ },
+ "optionsReset": {
+ "message": "Επαναφορά ρυθμίσεων στις προεπιλεγμένες"
+ },
+ "optionsResetButton": {
+ "message": "Επαναφορά επιλογών"
+ },
+ "optionsSubheading": {
+ "message": "Περισσότερες επιλογές"
+ },
+ "optionsSyncConnect": {
+ "message": "Σύνδεση"
+ },
+ "optionsSyncDisconnect": {
+ "message": "Αποσύνδεση"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "Συνδεδεμένο"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "Σύνδεση..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "Αποσυνδέθηκε"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "Αποσύνδεση..."
+ },
+ "optionsSyncStatusSyncing": {
+ "message": "Συγχρονισμός ..."
+ },
+ "optionsSyncSyncNow": {
+ "message": "Συγχρονισμός τώρα"
+ },
+ "optionsUpdateInterval": {
+ "message": "Διάστημα αυτόματης ενημέρωσης των στυλ σε ώρες (0 για απενεργοποίηση)"
+ },
+ "paginationNext": {
+ "message": "Επόμενη σελίδα"
+ },
+ "paginationPrevious": {
+ "message": "Προηγούμενη σελίδα"
+ },
+ "popupBordersTooltip": {
+ "message": "Χρήσιμο για σκούρα θέματα στο καινούριο Chrome, καθώς δε βάφει πλέον τα ακριανά περιθώρια."
+ },
+ "popupOpenEditInPopup": {
+ "message": "Χρήση ενός απλού παραθύρου (χωρίς omnibox)"
+ },
+ "popupOpenEditInWindow": {
+ "message": "Άνοιγμα επεξαργαστή σε νέο παράθυρο"
},
"popupStylesFirst": {
- "message": "Στυλ λίστας πριν των εντολών στο μενού του κουμπιού γραμμής εργαλείων",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "Στυλ λίστας πριν των εντολών στο μενού του κουμπιού γραμμής εργαλείων"
},
"prefShowBadge": {
- "message": "Εμφάνιση αριθμού των στυλ που δραστηριοποιούνται για την τρέχουσα τοποθεσία στην μπάρα εργαλείων",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Εμφάνιση αριθμού των στυλ που δραστηριοποιούνται για την τρέχουσα τοποθεσία στην μπάρα εργαλείων"
+ },
+ "readingStyles": {
+ "message": "Ανάγνωση στυλ..."
+ },
+ "replace": {
+ "message": "Αντικατάσταση"
+ },
+ "replaceAll": {
+ "message": "Αντικατάσταση όλων"
+ },
+ "replaceWith": {
+ "message": "Αντικατάσταση με"
+ },
+ "retrieveBckp": {
+ "message": "Εισαγωγή στυλ"
+ },
+ "retrieveDropboxSync": {
+ "message": "Εισαγωγή από το Dropbox"
+ },
+ "search": {
+ "message": "Αναζήτηση"
+ },
+ "searchGlobalStyles": {
+ "message": "Επίσης, αναζητήστε καθολικά στυλ"
+ },
+ "searchRegexp": {
+ "message": "Χρησιμοποιήστε τη σύνταξη /re/ για αναζήτηση με regexp."
+ },
+ "searchResultInstallCount": {
+ "message": "Συνολικός αριθμός εγκαταστάσεων"
+ },
+ "searchResultUpdated": {
+ "message": "Ενημερωμένο"
+ },
+ "searchResultWeeklyCount": {
+ "message": "Εβδομαδιαίος αριθμός εγκαταστάσεων"
+ },
+ "searchStylesName": {
+ "message": "Όνομα"
},
"sectionAdd": {
- "message": "Προσθήκη ένος άλλου τμήματος",
- "description": "Label for the button to add a section"
+ "message": "Προσθήκη ένος άλλου τμήματος"
},
"sectionCode": {
- "message": "Κώδικας",
- "description": "Label for the code for a section"
+ "message": "Κώδικας"
},
"sectionRemove": {
- "message": "Αφαίρεση ενότητας",
- "description": "Label for the button to remove a section"
+ "message": "Αφαίρεση ενότητας"
+ },
+ "shortcuts": {
+ "message": "Συντομεύσεις"
+ },
+ "sortDateNewestFirst": {
+ "message": "πιο πρόσφατα πρώτα"
+ },
+ "sortDateOldestFirst": {
+ "message": "πιο παλιά πρώτα"
},
"styleBadRegexp": {
- "message": "Το Regexp δεν είναι έγκυρο.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Το Regexp δεν είναι έγκυρο."
+ },
+ "styleBeautify": {
+ "message": "Ωραιοποίηση"
+ },
+ "styleBeautifyIndentConditional": {
+ "message": "Διόρθωση εσοχής για @media και @supports"
+ },
+ "styleBeautifyPreserveNewlines": {
+ "message": "Διατήρηση νέων γραμμών (newlines)"
},
"styleCancelEditLabel": {
- "message": "Πίσω στη διαχείριση",
- "description": "Label for cancel button for style editing"
+ "message": "Πίσω στη διαχείριση"
},
"styleChangesNotSaved": {
- "message": "Έχετε κάνει αλλαγές σε αυτό το ύφος χωρίς αποθήκευση.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Έχετε κάνει αλλαγές σε αυτό το ύφος χωρίς αποθήκευση."
},
"styleEnabledLabel": {
- "message": "Ενεργοποιημένη",
- "description": "Label for the enabled state of styles"
+ "message": "Ενεργοποιημένη"
},
"styleInstall": {
"message": "Εγκατάσταση του '$stylename$' στο Stylus;",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -227,20 +649,19 @@
}
},
"styleMissingName": {
- "message": "Εισάγετε ένα όνομα",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Εισάγετε ένα όνομα"
+ },
+ "styleRegexpTestNone": {
+ "message": "Δε βρέθηκαν καρτέλες που αντιστοιχούν."
},
"styleSaveLabel": {
- "message": "Αποθήκευση",
- "description": "Label for save button for style editing"
+ "message": "Αποθήκευση"
},
"styleToMozillaFormatHelp": {
- "message": "Η μορφή του Mozilla κώδικα μπορεί να χρησιμοποιηθεί με το Stylish για το Firefox και μπορεί να υποβληθεί στο userstyles.org.",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Η μορφή του Mozilla κώδικα μπορεί να χρησιμοποιηθεί με το Stylish για το Firefox και μπορεί να υποβληθεί στο userstyles.org."
},
"styleUpdate": {
"message": "Είστε σίγουροι ότι θέλετε να ενημερώσετε το '$stylename$';",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -248,16 +669,43 @@
}
},
"stylusUnavailableForURL": {
- "message": "To Stylus δεν λειτουργεί σε σελίδες όπως αυτή.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "To Stylus δεν λειτουργεί σε σελίδες όπως αυτή."
+ },
+ "stylusUnavailableForURLdetails": {
+ "message": "Ως μέτρο ασφαλείας, ο φυλλομετρητής απαγορεύει στα πρόσθετα να επέμβουν στις built-in σελίδες του (όπως π.χ. chrome://version, η σελίδα νέας καρτέλας από το Chrome 61 και μετά, about:addons, κλπ.), καθώς και τις σελίδες άλλωων προσθέτων. Επιπλέον, κάθε φυλλομετρητής περιορίζει την πρόσβαση στο κατάστημα προσθέτων (όπως το Chrome Web Store ή το AMO)."
+ },
+ "syncDropboxStyles": {
+ "message": "Εξαγωγή από το Dropbox"
+ },
+ "syncError": {
+ "message": "Ο συγχρονισμός απέτυχε"
+ },
+ "syncErrorRelogin": {
+ "message": "Ο συγχρονισμός απέτυχε.\nΠροσπαθήστε να συνδεθείτε ξανά στις επιλογές Stylus:\nκάντε κλικ στο 'αποσύνδεση' πρώτα και μετά στο 'σύνδεση'."
+ },
+ "toggleStyle": {
+ "message": "Αλλαγή στυλ"
+ },
+ "undo": {
+ "message": "Αναίρεση"
+ },
+ "undoGlobal": {
+ "message": "Αναίρεση όλων των ενεργειών"
+ },
+ "unreachableFileHint": {
+ "message": "Το Stylus έχει πρόσβαση στις file:// διευθύνσεις URL μόνο αν έχετε επιλέξει το αντίστοιχο πλαίσιο ελέγχου για το πρόσθετο Stylus στη σελίδα chrome://extensions."
+ },
+ "unzipStyles": {
+ "message": "Αποσυμπίεση στυλ..."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "Όλα τα στυλ είναι ενημερωμένα.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Όλα τα στυλ είναι ενημερωμένα."
+ },
+ "updateAllCheckSucceededSomeEdited": {
+ "message": "Δεν έχει γίνει έλεγχος ενημερώσεων για κάποια στυλ, για να αποφευχθεί η πιθανότητα απώλειας τοπικών επεξεργασιών. Οι ενημερώσεις μπορούν να εξαναγκαστούν ελέγχοντας το κάθε στυλ ξεχωριστά ή ελέγχοντας πάλι όλα τα στυλ (τοπικές επεξεργασίες θα αντικατασταθούν)"
},
"updateCheckFailBadResponseCode": {
"message": "Αποτυχία ενημέρωσης: ο διακομιστής ανταποκρίθηκε με κωδικό $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -265,23 +713,39 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Αποτυχία ενημέρωσης: απρόσιτος διακομιστής.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Αποτυχία ενημέρωσης: απρόσιτος διακομιστής."
+ },
+ "updateCheckSkippedLocallyEdited": {
+ "message": "Το στυλ επεξεργάστηκε τοπικά στον υπολογιστή σας."
+ },
+ "updateCheckSkippedMaybeLocallyEdited": {
+ "message": "Το στυλ αυτό μπορεί να έχει επεξεργαστεί τοπικά στον υπολογιστή σας."
},
"updateCheckSucceededNoUpdate": {
- "message": "Το στυλ είναι ενημερωμένο.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "Το στυλ είναι ενημερωμένο."
},
"updateCompleted": {
- "message": "Η ενημέρωση ολοκληρώθηκε.",
- "description": "Text that displays when an update completed"
+ "message": "Η ενημέρωση ολοκληρώθηκε."
+ },
+ "updatesCurrentlyInstalled": {
+ "message": "Ενημερώσεις που εγκαταστάθηκαν"
+ },
+ "uploadingFile": {
+ "message": "Μεταφόρτωση αρχείου..."
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "Καθορίστε το @name στον κώδικα"
+ },
+ "versionInvalidOlder": {
+ "message": "Η έκδοση αυτή είναι παλαιότερη από αυτήν που είναι ήδη εγκατεστημένη."
},
"writeStyleFor": {
- "message": "Γράψτε νέο στυλ για:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
+ "message": "Γράψτε νέο στυλ για:"
},
"writeStyleForURL": {
- "message": "αυτή την διεύθυνση URL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
+ "message": "αυτή την διεύθυνση URL"
+ },
+ "zipStyles": {
+ "message": "Συμπίεση στυλ..."
}
-}
\ No newline at end of file
+}
diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 9d8ee6cd..66a885f8 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -1,4 +1,8 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylus can not access some file types (e.g. pdf & json files).",
+ "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ },
"addStyleLabel": {
"message": "Write new style",
"description": "Label for the button to go to the add style page"
@@ -182,6 +186,9 @@
"message": "Theme",
"description": "Label for the style editor's CSS theme."
},
+ "colorpickerPaletteHint": {
+ "message": "Right-click a swatch to cycle through its source lines"
+ },
"colorpickerSwitchFormatTooltip": {
"message": "Switch formats: HEX -> RGB -> HSL.\nShift-click to reverse the direction.\nAlso via PgUp (PageUp), PgDn (PageDown) keys.",
"description": "Tooltip for the switch button in the color picker popup in the style editor."
@@ -242,6 +249,12 @@
"message": "Yes",
"description": "'Yes' button in a confirm dialog"
},
+ "connectingDropbox": {
+ "message": "Connecting Dropbox..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "Connecting to Dropbox is only available in apps installed directly from the webstore"
+ },
"copied": {
"message": "Copied to clipboard",
"description": "Message shown when content has been copied to the clipboard"
@@ -257,6 +270,42 @@
"message": "Stop using customized name, switch to the style's own name",
"description": "Tooltip of 'x' button shown in editor when changing the name input of a) styles updated from a URL i.e. not locally created, b) UserCSS styles"
},
+ "dateAbbrDay": {
+ "message": "$value$d",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ },
+ "description": "Day suffix in a short relative date, for example: 8d"
+ },
+ "dateAbbrHour": {
+ "message": "$value$h",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ },
+ "description": "Hour suffix in a short relative date, for example: 8h"
+ },
+ "dateAbbrMonth": {
+ "message": "$value$m",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ },
+ "description": "Month suffix in a short relative date, for example: 8m"
+ },
+ "dateAbbrYear": {
+ "message": "$value$y",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ },
+ "description": "Year suffix in a short relative date, for example: 8y"
+ },
"dateInstalled": {
"message": "Date installed",
"description": "Option text for the user to sort the style by install date"
@@ -340,6 +389,9 @@
"message": "Export",
"description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
},
+ "exportSavedSuccess": {
+ "message": "File saved with success"
+ },
"externalFeedback": {
"message": "Feedback",
"description": "Label for the external link to send feedback for the style"
@@ -400,6 +452,9 @@
"message": "Clone",
"description": "Used in various places for an action that clones something"
},
+ "genericDescription": {
+ "message": "Description"
+ },
"genericDisabledLabel": {
"message": "Disabled",
"description": "Used in various lists/options to indicate that something is disabled"
@@ -440,6 +495,9 @@
"message": "Unknown",
"description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
},
+ "gettingStyles": {
+ "message": "Getting all styles..."
+ },
"helpAlt": {
"message": "Help",
"description": "Alternate text for help buttons"
@@ -468,6 +526,12 @@
"message": "Import",
"description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
},
+ "importPreprocessor": {
+ "message": "Style with a @preprocessor
won't work in the classic mode. You can switch the editor to Usercss mode: 1) open the style manager, 2) enable \"as Usercss\" checkbox, 3) click \"Write new style\"\n\nImport now anyway?"
+ },
+ "importPreprocessorTitle": {
+ "message": "Potential problem due to @preprocessor"
+ },
"importReplaceLabel": {
"message": "Overwrite style",
"description": "Label for the button to import and overwrite current style"
@@ -521,7 +585,7 @@
"description": "Label for install button"
},
"installButtonInstalled": {
- "message": "Style installed",
+ "message": "Style is installed",
"description": "Text displayed when the style is successfully installed"
},
"installButtonReinstall": {
@@ -573,6 +637,18 @@
"message": "Get styles",
"description": "Help link text on the manage page e.g. https://userstyles.org"
},
+ "linkGetStylesInfo": {
+ "message": "This archive site was created by a userstyle community member to back up the slow and unresponsive userstyles.org. The archive updates its contents approximately once a day.",
+ "description": "Info shown when clicking the (i) icon of the uso-archive link in the manager"
+ },
+ "linkGetShareStyles": {
+ "message": "Get and share styles",
+ "description": "Link text for https://userstyles.world/ on the manage page"
+ },
+ "linkGetShareStylesInfo": {
+ "message": "The new community-driven userstyles.world site is created by userstyle authors in order to replace userstyles.org, which has been so slow and unresponsive for the past year that many authors stopped updating their styles.",
+ "description": "Info shown when clicking the (i) icon of the userstyles.world link in the manager"
+ },
"linkStylusWiki": {
"message": "Wiki",
"description": "Wiki link text on the manage page e.g. https://github.com/openstyles/stylus/wiki"
@@ -730,105 +806,105 @@
},
"meta_invalidColor": {
"message": "Invalid @var color: $color$ is not a color",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when the value of @var color is invalid"
+ },
+ "meta_invalidNumber": {
+ "message": "Expect a number",
+ "description": "Error displayed when the value is expected to be a number"
},
"meta_invalidRange": {
"message": "Invalid @var $type$: value must be a number or an array",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
}
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "Invalid @var $type$: multiple units are defined",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "Invalid @var $type$: the array contains too many items",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeValue": {
- "message": "Invalid @var $type$: items in the array must be number, string, or null",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
},
"meta_invalidRangeDefault": {
"message": "Invalid @var $type$: default value is null",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
}
- }
- },
- "meta_invalidRangeMin": {
- "message": "Invalid @var $type$: default value is lower than the minimum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
},
"meta_invalidRangeMax": {
"message": "Invalid @var $type$: default value is larger than the maximum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
+ },
+ "meta_invalidRangeMin": {
+ "message": "Invalid @var $type$: default value is lower than the minimum",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "Invalid @var $type$: multiple units are defined",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
},
"meta_invalidRangeStep": {
"message": "Invalid @var $type$: default value is not a mutiple of the step",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "Invalid @var $type$: the array contains too many items",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
},
"meta_invalidRangeUnits": {
"message": "Invalid @var $type$: '$units$' is not a valid unit",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "units": {
+ "content": "$2"
+ },
+ "type": {
+ "content": "$1"
+ }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
+ },
+ "meta_invalidRangeValue": {
+ "message": "Invalid @var $type$: items in the array must be number, string, or null",
"placeholders": {
"type": {
"content": "$1"
- },
- "units": {
- "content": "$2"
}
- }
+ },
+ "description": "Error displayed when the value of @var range or @var number is invalid"
},
"meta_invalidSelect": {
"message": "Invalid @var select: the default value must be an array or an object",
"description": "Error displayed when the value of @var select is invalid"
},
- "meta_invalidSelectValue": {
- "message": "Invalid @var select: values inside the array/object must be a string",
- "description": "Error displayed when the value of @var select is invalid"
- },
"meta_invalidSelectEmptyOptions": {
"message": "Invalid @var select: options list is empty",
"description": "Error displayed when the value of @var select is invalid"
@@ -845,35 +921,30 @@
"message": "Invalid @var select: option name is duplicated",
"description": "Error displayed when the value of @var select is invalid"
},
+ "meta_invalidSelectValue": {
+ "message": "Invalid @var select: values inside the array/object must be a string",
+ "description": "Error displayed when the value of @var select is invalid"
+ },
"meta_invalidSelectValueMismatch": {
"message": "Invalid @var select: value doesn't exist in the option list",
"description": "Error displayed when the value of @var select is invalid"
},
+ "meta_invalidString": {
+ "message": "Expect a quoted string",
+ "description": "Error displayed when the value is expected to be a quoted string"
+ },
"meta_invalidURLProtocol": {
"message": "Invalid URL protocol. Only http and https are allowed: $protocol$",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when the protocol of the URL is invalid"
},
"meta_invalidVersion": {
- "message": "Invalid version number. The value doesn't match SemVer pattern: $version$",
- "description": "Error displayed when @version is invalid",
- "placeholders": {
- "version": {
- "content": "$1"
- }
- }
- },
- "meta_invalidNumber": {
- "message": "Expect a number",
- "description": "Error displayed when the value is expected to be a number"
- },
- "meta_invalidString": {
- "message": "Expect a quoted string",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "Invalid version number",
+ "description": "Error displayed when @version is invalid"
},
"meta_invalidWord": {
"message": "Expect a word",
@@ -881,12 +952,12 @@
},
"meta_missingChar": {
"message": "Expect characters: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when the value is expected to be some characters"
},
"meta_missingEOT": {
"message": "Expect EOT data",
@@ -894,56 +965,75 @@
},
"meta_missingMandatory": {
"message": "Missing mandatory metadata: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when mandatory keys are missing"
},
"meta_unknownJSONLiteral": {
"message": "Invalid JSON: $literal$ is not a valid JSON literal",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when JSON value is invalid"
},
"meta_unknownMeta": {
"message": "Unknown metadata: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when unknown metadata is parsed"
},
- "meta_unknownVarType": {
- "message": "Unknown @$varkey$ type: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
+ "meta_unknownMetaTypo": {
+ "message": "Maybe @$keyOk$? Unknown metadata: @$keyErr$",
"placeholders": {
- "varkey": {
+ "keyErr": {
"content": "$1"
},
- "vartype": {
+ "keyOk": {
"content": "$2"
}
- }
+ },
+ "description": "Try translating it so that at least the first placeholder is visible in our narrow panel. This is the error displayed when an unknown metadata key was sufficiently similar to a known one to consider it a typo."
},
"meta_unknownPreprocessor": {
"message": "Unknown @preprocessor: $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
"placeholders": {
"preprocessor": {
"content": "$1"
}
- }
+ },
+ "description": "Error displayed when unknown @preprocessor is parsed"
+ },
+ "meta_unknownVarType": {
+ "message": "Unknown @$varkey$ type: $vartype$",
+ "placeholders": {
+ "vartype": {
+ "content": "$2"
+ },
+ "varkey": {
+ "content": "$1"
+ }
+ },
+ "description": "Error displayed when unknown variable type is parsed"
+ },
+ "noFileToImport": {
+ "message": "To import your styles, you should export it first."
},
"noStylesForSite": {
"message": "No styles installed for this site.",
"description": "Text displayed when no styles are installed for the current site"
},
+ "numberedLine": {
+ "message": "Line:",
+ "description": "Will be followed by one or more line numbers in the editor."
+ },
"openManage": {
"message": "Manage",
"description": "Link to open the manage page."
@@ -987,6 +1077,12 @@
"optionsAdvancedAutoSwitchSchemeByTime": {
"message": "By night time:"
},
+ "optionsAdvancedPatchCsp": {
+ "message": "Patch CSP
to allow style assets"
+ },
+ "optionsAdvancedPatchCspNote": {
+ "message": "Enable this if styles contain images or fonts which fail to load on sites with a strict CSP
(Content-Security-Policy
).\n\nEnabling this setting will relax CSP
restrictions, allowing essential style content to load. This option is only intended for advanced users who understand the potential security implications, and accept responsibility for monitoring the content which they're allowing. Read about CSS-based attacks for more information.\n\nAlso be aware, this particular setting is not guaranteed to take effect if another installed extension modifies the network response first."
+ },
"optionsAdvancedStyleViaXhr": {
"message": "Instant inject mode"
},
@@ -1014,12 +1110,12 @@
"optionsCustomizePopup": {
"message": "Popup"
},
- "optionsCustomizeUpdate": {
- "message": "Updates"
- },
"optionsCustomizeSync": {
"message": "Sync to cloud"
},
+ "optionsCustomizeUpdate": {
+ "message": "Updates"
+ },
"optionsHeading": {
"message": "Options",
"description": "Heading for options section on manage page."
@@ -1052,27 +1148,30 @@
"message": "More Options",
"description": "Subheading for options section on manage page."
},
- "optionsUpdateImportNote": {
- "message": "When importing style backups from old version or from Stylish, do a one-time check for updates manually in the styles manager to ensure all styles are updated."
- },
- "optionsUpdateInterval": {
- "message": "Userstyle autoupdate interval in hours (specify 0 to disable)"
- },
- "optionsSyncNone": {
- "message": "None"
- },
"optionsSyncConnect": {
"message": "Connect"
},
"optionsSyncDisconnect": {
"message": "Disconnect"
},
- "optionsSyncSyncNow": {
- "message": "Sync now"
- },
"optionsSyncLogin": {
"message": "Login"
},
+ "optionsSyncNone": {
+ "message": "None"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "Connected"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "Connecting..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "Disconnected"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "Disconnecting..."
+ },
"optionsSyncStatusPull": {
"message": "Pulling style $loaded$ of $total$",
"placeholders": {
@@ -1095,20 +1194,23 @@
}
}
},
+ "optionsSyncStatusRelogin": {
+ "message": "Session expired, please login again."
+ },
"optionsSyncStatusSyncing": {
"message": "Syncing..."
},
- "optionsSyncStatusConnecting": {
- "message": "Connecting..."
+ "optionsSyncSyncNow": {
+ "message": "Sync now"
},
- "optionsSyncStatusConnected": {
- "message": "Connected"
+ "optionsUpdateImportNote": {
+ "message": "When importing style backups from old version or from Stylish, do a one-time check for updates manually in the styles manager to ensure all styles are updated."
},
- "optionsSyncStatusDisconnecting": {
- "message": "Disconnecting..."
+ "optionsUpdateInterval": {
+ "message": "Userstyle autoupdate interval in hours (specify 0 to disable)"
},
- "optionsSyncStatusDisconnected": {
- "message": "Disconnected"
+ "overwriteFileExport": {
+ "message": "Do you want to overwrite an existing file?"
},
"paginationCurrent": {
"message": "Current page",
@@ -1187,6 +1289,31 @@
"message": "Temporarily applies the changes without saving.\nSave the style to make the changes permanent.",
"description": "Tooltip for the checkbox in style editor to enable live preview while editing."
},
+ "publish": {
+ "message": "Publish",
+ "description": "Header for the section to link the style with userStyles.world"
+ },
+ "publishPush": {
+ "message": "Push update",
+ "description": "The 'Publish style' button's new name when a connection is established"
+ },
+ "publishReconnect": {
+ "message": "Try disconnecting then publish again"
+ },
+ "publishRetry": {
+ "message": "Stylus is still trying to publish this style, but you can retry if you see no authentication activity or popups. Retry now?"
+ },
+ "publishStyle": {
+ "message": "Publish style",
+ "description": "Publish the current style to userstyles.world"
+ },
+ "publishUsw": {
+ "message": "Using ",
+ "description": "Name of the link to https://userstyles.world in the editor"
+ },
+ "readingStyles": {
+ "message": "Reading styles..."
+ },
"reload": {
"message": "Reload Stylus extension",
"description": "Context menu reload"
@@ -1206,6 +1333,9 @@
"retrieveBckp": {
"message": "Import styles"
},
+ "retrieveDropboxSync": {
+ "message": "Dropbox Import"
+ },
"search": {
"message": "Search",
"description": "Label before the search input field in the editor shown on Ctrl-F"
@@ -1226,10 +1356,6 @@
"message": "Number of matches in code and applies-to values",
"description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
},
- "searchStyleQueryHint": {
- "message": "Search style names case-insensitively:\nsome words - all words in any order\n\"some phrase\" - this exact phrase without quotes\n2020 - a year like this also shows styles updated in 2020",
- "description": "Tooltip shown for the text input in the popup's inline style finder"
- },
"searchRegexp": {
"message": "Use /re/ syntax for regexp search",
"description": "Label after the search input field in the editor shown on Ctrl-F"
@@ -1242,6 +1368,12 @@
"message": "No styles found for this site.",
"description": "Error text in the popup when inline search didn't find any site-specific styles"
},
+ "searchResultNotMatching": {
+ "message": "The style is installed but it doesn't apply to the current site URL."
+ },
+ "searchResultNotMatchingNote": {
+ "message": "Try asking the author of this userstyle to add the URL.\n\nYou can also open the style in the manager and edit it yourself,\nbut be aware it disables automatic updates for this style."
+ },
"searchResultRating": {
"message": "Rating",
"description": "Text for label that shows the search result's rating"
@@ -1254,14 +1386,34 @@
"message": "Weekly installs",
"description": "Text for label that shows the number of times a search result was installed during last week"
},
- "searchStyles": {
- "message": "Search contents",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "searchStyleQueryHint": {
+ "message": "Search style names case-insensitively:\nsome words - all words in any order\n\"some phrase\" - this exact phrase without quotes\n2020 - a year like this also shows styles updated in 2020",
+ "description": "Tooltip shown for the text input in the popup's inline style finder"
+ },
+ "searchStylesAll": {
+ "message": "All",
+ "description": "Option for `find styles` scope selector in the manager."
+ },
+ "searchStylesCode": {
+ "message": "CSS code",
+ "description": "Option for `find styles` scope selector in the manager."
},
"searchStylesHelp": {
- "message": "> key focuses the search field.\nPlain text: search within the name, code, homepage URL and sites it is applied to. Words with less than 3 letters are ignored.\nStyles matching a full URL: prefix the search with , e.g. \nRegular expressions: include slashes and flags, e.g. \nExact words: wrap the query in double quotes, e.g. <\".header ~ div\">",
+ "message": "> or key focuses the search field.\nDefault mode is plain text search for all space-separated terms in any order.\nExact words: wrap the query in double quotes, e.g. <\".header ~ div\">\nRegular expressions: include slashes and flags, e.g. \n\"By URL\" in scope selector: finds styles that apply to a fully specified URL e.g. https://www.example.org/\n\"Metadata\" in scope selector: searches in names, \"applies to\" specifiers, installation URL, update URL, and the entire metadata block for usercss styles.",
"description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
},
+ "searchStylesMatchUrl": {
+ "message": "By URL",
+ "description": "Option for `find styles` scope selector in the manager. See searchMatchUrlHint for more info."
+ },
+ "searchStylesMeta": {
+ "message": "Metadata",
+ "description": "Option for `find styles` scope selector in the manager."
+ },
+ "searchStylesName": {
+ "message": "Name",
+ "description": "Option for `find styles` scope selector in the manager."
+ },
"sectionAdd": {
"message": "Add another section",
"description": "Label for the button to add a section"
@@ -1278,6 +1430,10 @@
"message": "Restore removed section",
"description": "Label for the button to restore a removed section"
},
+ "sections": {
+ "message": "Sections",
+ "description": "Header for the table of contents block listing style section names in the left panel of the classic editor"
+ },
"shortcuts": {
"message": "Shortcuts",
"description": "Go to shortcut configuration"
@@ -1394,6 +1550,9 @@
"message": "Mozilla Format",
"description": "Heading for the section with buttons to import/export Mozilla format of the style"
},
+ "styleName": {
+ "message": "Style name"
+ },
"styleNotAppliedRegexpProblemTooltip": {
"message": "Style was not applied due to its incorrect usage of 'regexp()'",
"description": "Tooltip in the popup for styles that were not applied at all"
@@ -1475,6 +1634,20 @@
"message": "As a security precaution, the browser prohibits extensions from affecting its built-in pages (like chrome://version, the standard new tab page as of Chrome 61, about:addons, and so on) as well as other extensions' pages. Each browser also restricts access to its own extensions gallery (like Chrome Web Store or AMO).",
"description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
},
+ "syncDropboxDeprecated": {
+ "message": "Dropbox import/export is replaced by a more advanced style sync in the options page."
+ },
+ "syncDropboxStyles": {
+ "message": "Dropbox Export"
+ },
+ "syncError": {
+ "message": "Sync failed",
+ "description": "Tooltip for the toolbar icon"
+ },
+ "syncErrorRelogin": {
+ "message": "Sync failed.\nTry to re-login in Stylus options:\nclick 'disconnect' first, then 'connect'.",
+ "description": "Tooltip for the toolbar icon"
+ },
"syncStorageErrorSaving": {
"message": "The value cannot be saved. Try reducing the amount of text.",
"description": "Displayed when trying to save an excessively big value via storage.sync API"
@@ -1499,14 +1672,6 @@
"message": "To allow access open , right-click the list, click 'New', then 'Boolean', paste and click OK, , OK, reload the page.",
"description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
},
- "unreachableAMOHintNewFF": {
- "message": "In Firefox 60 and newer you'll also have to remove AMO domain from in .",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Only Firefox 59 and newer can be configured to allow WebExtensions to add style elements on CSP-protected sites such as this one.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
- },
"unreachableContentScript": {
"message": "Could not communicate with the page. Try reloading the tab.",
"description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
@@ -1515,9 +1680,16 @@
"message": "Stylus can access file:// URLs only if you enable the corresponding checkbox for Stylus extension on chrome://extensions page.",
"description": "Note in the toolbar popup for file:// URLs"
},
- "InaccessibleFileHint": {
- "message": "Stylus can not access some file types (e.g. pdf & json files).",
- "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ "unreachableMozSiteHint": {
+ "message": "In Firefox 60 and newer you need to remove this domain from in .",
+ "description": "Note in the popup when opened on a restricted mozilla site in Firefox >= 60"
+ },
+ "unreachableMozSiteHintOldFF": {
+ "message": "Only Firefox 59 and newer can be configured to allow WebExtensions to add style elements on CSP-protected sites such as this one.",
+ "description": "Note in the popup when opened on a restricted mozilla site in Firefox < 59"
+ },
+ "unzipStyles": {
+ "message": "Unzipping styles..."
},
"updateAllCheckSucceededNoUpdate": {
"message": "No updates found.",
@@ -1571,6 +1743,9 @@
"message": "Updates installed:",
"description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
},
+ "uploadingFile": {
+ "message": "Uploading File..."
+ },
"usercssAvoidOverwriting": {
"message": "Please change the value of @name or @namespace to avoid overwriting an existing style.",
"description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
@@ -1605,43 +1780,7 @@
"message": "this URL",
"description": "Text for link in toolbar pop-up to write a new style for the current URL"
},
- "syncDropboxStyles": {
- "message": "Dropbox Export"
- },
- "syncDropboxDeprecated": {
- "message": "Dropbox import/export is replaced by a more advanced style sync in the options page."
- },
- "retrieveDropboxSync": {
- "message": "Dropbox Import"
- },
- "overwriteFileExport": {
- "message": "Do you want to overwrite an existing file?"
- },
- "exportSavedSuccess": {
- "message": "File saved with success"
- },
- "noFileToImport": {
- "message": "To import your styles, you should export it first."
- },
- "connectingDropbox": {
- "message": "Connecting Dropbox..."
- },
- "connectingDropboxNotAllowed": {
- "message": "Connecting to Dropbox is only available in apps installed directly from the webstore"
- },
- "gettingStyles": {
- "message": "Getting all styles..."
- },
"zipStyles": {
"message": "Zipping styles..."
- },
- "unzipStyles": {
- "message": "Unzipping styles..."
- },
- "readingStyles": {
- "message": "Reading styles..."
- },
- "uploadingFile": {
- "message": "Uploading File..."
}
}
diff --git a/_locales/en_GB/messages.json b/_locales/en_GB/messages.json
index e6a09217..ec6bb0eb 100644
--- a/_locales/en_GB/messages.json
+++ b/_locales/en_GB/messages.json
@@ -1,67 +1,51 @@
{
"appliesRemoveError": {
- "message": "Cannot remove last 'applies to' entry",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "Cannot remove last 'applies to' entry"
},
"checkAllUpdatesForce": {
- "message": "Check again—I didn't edit any styles!",
- "description": "Label for the button to apply all detected updates"
+ "message": "Check again—I didn't edit any styles!"
},
"cm_autoCloseBrackets": {
- "message": "Auto-close brackets and quotes",
- "description": "Label for the checkbox in the style editor."
+ "message": "Auto-close brackets and quotes"
},
"cm_colorpicker": {
- "message": "Colour pickers for CSS colours",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Colour pickers for CSS colours"
},
"cm_resizeGripHint": {
- "message": "Double-click to maximise/restore the height",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Double-click to maximise/restore the height"
},
"colorpickerTooltip": {
- "message": "Open colour picker",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Open colour picker"
},
"description": {
- "message": "Redesign the web with Stylus, a user-style manager. Stylus allows you to easily install themes and skins for many popular sites.",
- "description": "Extension description"
+ "message": "Redesign the web with Stylus, a user-style manager. Stylus allows you to easily install themes and skins for many popular sites."
},
"editGotoLine": {
- "message": "Go to line (or line:col)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Go to line (or line:col)"
},
"editStyleHeading": {
- "message": "Edit style",
- "description": "Title of the page for editing styles"
+ "message": "Edit style"
},
"license": {
- "message": "Licence",
- "description": "Label for the license"
+ "message": "Licence"
},
"manageFaviconsGray": {
- "message": "Greyed out",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Greyed out"
},
"optionsBadgeDisabled": {
- "message": "Background colour when disabled",
- "description": ""
+ "message": "Background colour when disabled"
},
"optionsBadgeNormal": {
- "message": "Background colour",
- "description": ""
+ "message": "Background colour"
},
"optionsUpdateImportNote": {
- "message": "When importing style backups from an old version or from Stylish, do a one-time check for updates manually in the styles manager to ensure all styles are updated.",
- "description": ""
+ "message": "When importing style backups from an old version or from Stylish, do a one-time check for updates manually in the styles manager to ensure all styles are updated."
},
"optionsUpdateInterval": {
- "message": "Userstyle auto-update interval in hours (specify 0 to disable)",
- "description": ""
+ "message": "Userstyle auto-update interval in hours (specify 0 to disable)"
},
"styleInstallFailed": {
"message": "Failed to install userstyle\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -69,15 +53,12 @@
}
},
"styleRegexpPartialExplanation": {
- "message": "This style uses partially matching regexps in violation of CSS4 @document specification which requires a full URL match. The affected CSS sections were not applied to the page. This style was probably created in Stylish-for-Chrome, which incorrectly checks 'regexp()' rules since the very first version (known bug).",
- "description": ""
+ "message": "This style uses partially matching regexps in violation of CSS4 @document specification which requires a full URL match. The affected CSS sections were not applied to the page. This style was probably created in Stylish-for-Chrome, which incorrectly checks 'regexp()' rules since the very first version (known bug)."
},
"styleUpdateDiscardChanges": {
- "message": "The style has been changed outside the editor. Would you like to reload the style?",
- "description": "Confirmation to update the style in the editor"
+ "message": "The style has been changed outside the editor. Would you like to reload the style?"
},
"usercssConfigIncomplete": {
- "message": "The style was updated or deleted after the configuration dialogue was shown. These variables were not saved to avoid corrupting the style's metadata:",
- "description": ""
+ "message": "The style was updated or deleted after the configuration dialogue was shown. These variables were not saved to avoid corrupting the style's metadata:"
}
-}
\ No newline at end of file
+}
diff --git a/_locales/es/messages.json b/_locales/es/messages.json
index ceb3dd1d..8ad64c0a 100644
--- a/_locales/es/messages.json
+++ b/_locales/es/messages.json
@@ -1,23 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylus no puede acceder a algunos tipos de archivos (p. ej. archivos pdf y json)."
+ },
"addStyleLabel": {
- "message": "Escribir un estilo nuevo",
- "description": "Label for the button to go to the add style page"
+ "message": "Escribir un estilo nuevo"
},
"addStyleTitle": {
- "message": "Agregar un estilo",
- "description": "Title of the page for adding styles"
+ "message": "Añadir estilo"
},
"alphaChannel": {
- "message": "Opacidad",
- "description": "Label of color's opacity"
+ "message": "Opacidad"
},
"appliesAdd": {
- "message": "Agregar",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Añadir"
},
"appliesDisplay": {
"message": "Se aplica a: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,288 +23,243 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "y más sitios",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "y más sitios"
},
"appliesDomainOption": {
- "message": "URLs en el dominio",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URLs en el dominio"
},
"appliesHelp": {
- "message": "Utilice los controles 'Se aplica a' para limitar a qué URLs se aplica el código de esta sección.",
- "description": "Help text for 'applies to' section"
+ "message": "Utilice los controles 'Se aplica a' para limitar a qué URLs se aplica el código de esta sección."
},
"appliesLabel": {
- "message": "Se aplica a",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Se aplica a"
},
"appliesLineWidgetLabel": {
- "message": "Muestra la información 'Se aplica a'",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "Muestra la información 'Se aplica a'"
},
"appliesLineWidgetWarning": {
- "message": "No funciona con CSS minificado",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "No funciona con CSS minificado"
},
"appliesRegexpOption": {
- "message": "URLs que coinciden con la regexp",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URLs que coinciden con la regexp"
},
"appliesRemove": {
- "message": "Eliminar",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Eliminar"
},
"appliesRemoveError": {
- "message": "No se puede eliminar la última entrada 'Se aplica a'",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "No se puede eliminar la última entrada 'Se aplica a'"
},
"appliesSpecify": {
- "message": "Especificar",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Especificar"
},
"appliesToEverything": {
- "message": "Todos los sitios",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Todos los sitios"
},
"appliesUrlPrefixOption": {
- "message": "URLs que empiezan con",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URLs que empiezan con"
},
"applyAllUpdates": {
- "message": "Aplicar todas las actualizaciones",
- "description": "Label for the button to apply all detected updates"
+ "message": "Aplicar todas las actualizaciones"
},
"author": {
- "message": "Autor",
- "description": "Label for the style author"
+ "message": "Autor"
},
"backupButtons": {
- "message": "Copia de seguridad",
- "description": "Heading for backup"
+ "message": "Respaldo"
},
"backupMessage": {
- "message": "Al exportar hará una copia de respaldo de TODOS los estilos instalados. Para restaurar una copia de respaldo, importe el archivo o arrástrelo a esta página.",
- "description": "Message for backup"
+ "message": "Al exportar hará una copia de respaldo de TODOS los estilos instalados. Para restaurar una copia de respaldo, importe el archivo o arrástrelo a esta página."
},
"bckpInstStyles": {
- "message": "Exportar estilos",
- "description": ""
+ "message": "Exportar estilos"
},
"checkAllUpdates": {
- "message": "Buscar actualizaciones para todos los estilos",
- "description": "Label for the button to check all styles for updates"
+ "message": "Buscar actualizaciones para todos los estilos"
},
"checkAllUpdatesForce": {
- "message": "Comprobar de nuevo, ¡no he editado ningún estilo!",
- "description": "Label for the button to apply all detected updates"
+ "message": "Comprobar de nuevo, ¡no he editado ningún estilo!"
},
"checkForUpdate": {
- "message": "Buscar actualización",
- "description": "Label for the button to check a single style for an update"
+ "message": "Buscar actualización"
},
"checkingForUpdate": {
- "message": "Buscando...",
- "description": "Text to display when checking a style for an update"
+ "message": "Buscando..."
},
"clickToUninstall": {
- "message": "Haga clic para desinstalar",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Haz clic para desinstalar"
},
"cm_autoCloseBrackets": {
- "message": "Cerrar automáticamente corchetes y comillas",
- "description": "Label for the checkbox in the style editor."
+ "message": "Cerrar automáticamente corchetes y comillas"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Añade automáticamente un equivalente de cierre al escribir uno de apertura de ()[]{}''\"\"",
- "description": "Label for the checkbox in the style editor."
+ "message": "Añadir automáticamente un equivalente de cierre al escribir uno de apertura de ()[]{}''\"\""
},
"cm_autocompleteOnTyping": {
- "message": "Autocompletar al escribir",
- "description": "Label for the checkbox in the style editor."
+ "message": "Autocompletar al escribir"
},
"cm_colorpicker": {
- "message": "Selectores de color para colores CSS",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Selectores de color para colores CSS"
},
"cm_indentWithTabs": {
- "message": "Usar tabulaciones con sangría inteligente",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Usar tabulaciones con sangría inteligente"
},
"cm_keyMap": {
- "message": "Mapa de teclado",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Mapa de teclado"
},
"cm_lineWrapping": {
- "message": "Ajuste de línea",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Ajuste de línea"
},
"cm_linter": {
- "message": "Validador lint",
- "description": "Select the linter to check for CSS issues"
+ "message": "Validador lint"
},
"cm_matchHighlight": {
- "message": "Resaltar",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Resaltar"
},
"cm_matchHighlightSelection": {
- "message": "Sólo selección",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Solo selección"
},
"cm_matchHighlightToken": {
- "message": "Resaltado de palabra señalada",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Resaltado de palabra señalada"
},
"cm_resizeGripHint": {
- "message": "Doble-clic para maximizar/restaurar la altura",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Doble clic para maximizar/restaurar la altura"
},
"cm_selectByTokens": {
- "message": "Al hacer doble clic se seleccionan los tokens",
- "description": "Label for the checkbox in the editor."
+ "message": "Al hacer doble clic se seleccionan los tokens"
},
"cm_selectByTokensTooltip": {
- "message": "Ejemplos de tokens: .foo-bar-2 #aabbcc 0.32 !important\nCuando está desactivado: se seleccionan las palabras delimitadas por puntos.",
- "description": ""
+ "message": "Ejemplos de tokens: .foo-bar-2 #aabbcc 0.32 !important\nCuando está deshabilitado: se seleccionan las palabras delimitadas por puntos."
},
"cm_smartIndent": {
- "message": "Usar sangría inteligente",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Usar sangría inteligente"
},
"cm_tabSize": {
- "message": "Tamaño de la tabulación",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Tamaño de la tabulación"
},
"cm_theme": {
- "message": "Temas",
- "description": "Label for the style editor's CSS theme."
+ "message": "Temas"
+ },
+ "colorpickerPaletteHint": {
+ "message": "Haz clic con el botón derecho en una muestra para mostrar las líneas de código fuente"
},
"colorpickerSwitchFormatTooltip": {
- "message": "Alternar formatos: HEX -> RGB -> HSL.\nMayús+Clic para invertir la dirección.\nTambién con las teclas RePág (Retroceso de página), AvPág (Avance de página).",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "Alternar formatos: HEX -> RGB -> HSL.\nMayús+Clic para invertir la dirección.\nTambién con las teclas RePág (Retroceso de página), AvPág (Avance de página)."
},
"colorpickerTooltip": {
- "message": "Abrir selector de color",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Abrir selector de color"
},
"configOnChange": {
- "message": "al cambiar",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "al cambiar"
},
"configOnChangeTooltip": {
- "message": "Guardar y aplicar los cambios automáticamente",
- "description": ""
+ "message": "Guardar y aplicar los cambios automáticamente"
},
"configureStyle": {
- "message": "Configurar",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "Configurar"
},
"configureStyleOnHomepage": {
- "message": "Configurar en la página de inicio",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "Configurar en la página de inicio"
},
"confirmCancel": {
- "message": "Cancelar",
- "description": ""
+ "message": "Cancelar"
},
"confirmClose": {
- "message": "Cerrar",
- "description": "'Close' button in a confirm dialog"
+ "message": "Cerrar"
},
"confirmDefault": {
- "message": "Usar predeterminado",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "Usar predeterminado"
},
"confirmDelete": {
- "message": "Eliminar",
- "description": ""
+ "message": "Eliminar"
},
"confirmDiscardChanges": {
- "message": "¿Descartar los cambios?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "¿Descartar los cambios?"
},
"confirmOK": {
- "message": "Aceptar",
- "description": ""
+ "message": "Aceptar"
},
"confirmSave": {
- "message": "Guardar",
- "description": "'Save' button in a confirm dialog"
+ "message": "Guardar"
},
"confirmStop": {
- "message": "Detener",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Detener"
},
"confirmYes": {
- "message": "Sí",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Sí"
+ },
+ "connectingDropbox": {
+ "message": "Conectando a Dropbox...."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "La conexión a Dropbox sólo está disponible en aplicaciones instaladas directamente desde la tienda web."
},
"copied": {
- "message": "Copiado al portapapeles",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "Copiado al portapapeles"
},
"copy": {
- "message": "Copiar al portapapeles",
- "description": "Tooltip for elements which can be copied"
+ "message": "Copiar al portapapeles"
+ },
+ "customNameHint": {
+ "message": "Ingresa un nombre personalizado aquí para cambiar el nombre de estilo del diseño sin romper sus actualizaciones"
+ },
+ "customNameResetHint": {
+ "message": "Dejar de usar el nombre personalizado, cambiar al nombre del estilo"
+ },
+ "dateAbbrYear": {
+ "message": "$value$a",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ }
},
"dateInstalled": {
- "message": "Fecha de instalación",
- "description": "Option text for the user to sort the style by install date"
+ "message": "Fecha de instalación"
},
"dateUpdated": {
- "message": "Fecha de actualización",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "Fecha de actualización"
},
"dbError": {
- "message": "Ocurrió un error con la base de datos de Stylus. ¿Desea visitar una página web con posibles soluciones?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Ocurrió un error con la base de datos de Stylus. ¿Deseas visitar una página web con posibles soluciones?"
},
"defaultTheme": {
- "message": "predeterminado",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "predeterminado"
},
"deleteStyleConfirm": {
- "message": "¿Confirma que quiere eliminar este estilo?",
- "description": "Confirmation before deleting a style"
+ "message": "¿Estás seguro de que quieres eliminar este estilo?"
},
"deleteStyleLabel": {
- "message": "Eliminar",
- "description": "Label for the button to delete a style"
+ "message": "Eliminar"
},
"description": {
- "message": "Rediseñe la web con Stylus, un administrador de estilos de usuario. Stylus le permite instalar fácilmente temas y coberturas para muchos sitios populares.",
- "description": "Extension description"
+ "message": "Rediseña la web con Stylus, un administrador de estilos de usuario. Stylus te permite instalar fácilmente temas y coberturas para muchos sitios populares."
},
"disableAllStyles": {
- "message": "Desactivar todos los estilos",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Desactivar todos los estilos"
},
"disableStyleLabel": {
- "message": "Desactivar",
- "description": "Label for the button to disable a style"
+ "message": "Deshabilitar"
},
"dragDropMessage": {
- "message": "Deje caer su archivo de copia de seguridad en cualquier lugar de esta página para importarlo.",
- "description": "Drag'n'drop message"
+ "message": "Arrastra tu archivo de respaldo en cualquier lugar de esta página para importar."
+ },
+ "dragDropUsercssTabstrip": {
+ "message": "Para instalar el archivo, suéltalo en la barra de pestañas (el área donde se muestran los títulos de las pestañas)."
},
"editDeleteText": {
- "message": "Eliminar",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Eliminar"
},
"editGotoLine": {
- "message": "Ir a la línea (o a línea:col)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Ir a la línea (o a línea:col)"
},
"editStyleHeading": {
- "message": "Editar estilo",
- "description": "Title of the page for editing styles"
+ "message": "Editar estilo"
},
"editStyleLabel": {
- "message": "Editar",
- "description": "Label for the button to go to the edit style page"
+ "message": "Editar"
},
"editStyleTitle": {
"message": "Editar estilo $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -314,212 +267,180 @@
}
},
"enableStyleLabel": {
- "message": "Activar",
- "description": "Label for the button to enable a style"
+ "message": "Habilitar"
},
"excludeStyleByDomainLabel": {
- "message": "Excluir el dominio Actual",
- "description": ""
+ "message": "Excluir el dominio Actual"
},
"excludeStyleByUrlLabel": {
- "message": "Excluir la URL actual",
- "description": ""
+ "message": "Excluir la URL actual"
},
"exportLabel": {
- "message": "Exportar",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Exportar"
+ },
+ "exportSavedSuccess": {
+ "message": "Archivo guardado correctamente"
},
"externalFeedback": {
- "message": "Comentarios",
- "description": "Label for the external link to send feedback for the style"
+ "message": "Comentarios"
},
"externalHomepage": {
- "message": "Página de inicio",
- "description": "Label for the external link to style's homepage"
+ "message": "Página de inicio"
},
"externalLink": {
- "message": "Enlace externo",
- "description": "Label for external links"
+ "message": "Enlace externo"
},
"externalSupport": {
- "message": "Asistencia",
- "description": "Label for the external link to style's support site"
+ "message": "Asistencia"
},
"externalUsercssDocument": {
- "message": "Documentación para Usercss",
- "description": "Label for the external link to usercss documentation"
+ "message": "Documentación para UserCSS"
},
"filteredStyles": {
"message": "$numShown$ mostrados de $numTotal$ en total",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "Los filtros actualmente aplicados no coinciden con estilo alguno",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "Los filtros actualmente aplicados no coinciden con estilo alguno"
},
"findStyles": {
- "message": "Buscar estilos",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Buscar estilos"
},
"findStylesForSite": {
- "message": "Buscar más estilos para este sitio",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Buscar más estilos para este sitio"
},
"findStylesInline": {
- "message": "Dentro",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "Dentro"
},
"findStylesInlineTooltip": {
- "message": "Muestra los resultados de búsqueda dentro de esta ventana.",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "Muestra los resultados de búsqueda dentro de esta ventana."
},
"genericAdd": {
- "message": "Agregar",
- "description": "Used in various places for an action that adds something"
+ "message": "Añadir"
},
"genericClone": {
- "message": "Clonar",
- "description": "Used in various places for an action that clones something"
+ "message": "Clonar"
+ },
+ "genericDescription": {
+ "message": "Descripción"
},
"genericDisabledLabel": {
- "message": "Desactivado",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Deshabilitado"
},
"genericEnabledLabel": {
- "message": "Habilitado",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "Habilitado"
},
"genericHistoryLabel": {
- "message": "Historial",
- "description": "Used in various places to show a history log of something"
+ "message": "Historial"
},
"genericNext": {
- "message": "Siguiente",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "Siguiente"
},
"genericPrevious": {
- "message": "Anterior",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "Anterior"
},
"genericResetLabel": {
- "message": "Restablecer",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "Restablecer"
},
"genericSavedMessage": {
- "message": "Guardado",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "Guardado"
},
"genericTitle": {
- "message": "Título",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "Título"
},
"genericUnknown": {
- "message": "Desconocido",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "Desconocido"
+ },
+ "gettingStyles": {
+ "message": "Obteniendo todos los estilos..."
},
"helpAlt": {
- "message": "Ayuda",
- "description": "Alternate text for help buttons"
+ "message": "Ayuda"
},
"helpKeyMapCommand": {
- "message": "Nombre del comando",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Nombre del comando"
},
"helpKeyMapHotkey": {
- "message": "Pulse un atajo",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Pulsa un atajo de teclado"
+ },
+ "hostDisabled": {
+ "message": "Este host ha sido deshabilitado debido a un error en la versión actual del navegador que se está utilizando."
},
"importAppendLabel": {
- "message": "Adicionar al estilo",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Adicionar al estilo"
},
"importAppendTooltip": {
- "message": "Agrega el estilo importado al estilo actual",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Agrega el estilo importado al estilo actual"
},
"importLabel": {
- "message": "Importar",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Importar"
+ },
+ "importPreprocessor": {
+ "message": "Los estilos con @preprocessor
no funcionarán en el modo clásico. Puedes cambiar el editor para usar el modo UserCSS: 1) Abre el administrador de estilos. 2) Activa la casilla «como UserCSS». 3) Haz clic en «Escribir un estilo nuevo»\n\n¿Quieres importarlo de todos modos?"
+ },
+ "importPreprocessorTitle": {
+ "message": "Problema potencial debido a @preprocessor"
},
"importReplaceLabel": {
- "message": "Sobrescribir estilo",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Sobrescribir estilo"
},
"importReplaceTooltip": {
- "message": "Descartar el contenido del estilo actual y sobrescribirlo con el estilo importado",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Descartar el contenido del estilo actual y sobrescribirlo con el estilo importado"
},
"importReportLegendAdded": {
- "message": "agregados",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "añadido"
},
"importReportLegendIdentical": {
- "message": "idénticos omitidos",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "idénticos omitidos"
},
"importReportLegendInvalid": {
- "message": "no válidos omitidos",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "no válidos omitidos"
},
"importReportLegendUpdatedBoth": {
- "message": "actualizado tanto metadatos como código",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "actualizado tanto metadatos como código"
},
"importReportLegendUpdatedCode": {
- "message": "código actualizado",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "código actualizado"
},
"importReportLegendUpdatedMeta": {
- "message": "metadatos actualizados",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "metadatos actualizados"
},
"importReportTitle": {
- "message": "Se completó la importación de estilos",
- "description": "Title of the report shown after importing styles"
+ "message": "Se completó la importación de estilos"
},
"importReportUnchanged": {
- "message": "No se cambió nada.",
- "description": "Message in the report shown after importing styles"
+ "message": "No se cambió nada."
},
"importReportUndone": {
- "message": "estilos fueron revertidos",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "estilos fueron revertidos"
},
"importReportUndoneTitle": {
- "message": "La importación ha sido anulada",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "La importación ha sido anulada"
},
"installButton": {
- "message": "Instalar estilo",
- "description": "Label for install button"
+ "message": "Instalar estilo"
},
"installButtonInstalled": {
- "message": "Estilo instalado",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Estilo instalado"
},
"installButtonReinstall": {
- "message": "Reinstalar estilo",
- "description": "Label for reinstall button"
+ "message": "Reinstalar estilo"
},
"installButtonUpdate": {
- "message": "Actualizar estilo",
- "description": "Label for update button"
+ "message": "Actualizar estilo"
},
"installUpdate": {
- "message": "Instalar actualización",
- "description": "Label for the button to install an update for a single style"
+ "message": "Instalar actualización"
},
"installUpdateFrom": {
"message": "Actualmente el estilo se actualiza desde $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -527,28 +448,22 @@
}
},
"installUpdateFromLabel": {
- "message": "Buscar actualizaciones",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Buscar actualizaciones"
},
"license": {
- "message": "Licencia",
- "description": "Label for the license"
+ "message": "Licencia"
},
"linkGetHelp": {
- "message": "Obtener ayuda",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Obtener ayuda"
},
"linkGetStyles": {
- "message": "Obtener estilos",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Obtener estilos"
},
"linkTranslate": {
- "message": "Traducir",
- "description": "Transifex link text on the manage page"
+ "message": "Traducir"
},
"linterCSSLintIncompatible": {
"message": "CSSLint no soporta el preprocesador $preprocessorname$",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -556,12 +471,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(Establezca la regla como: 0 = deshabilitada; 1 = advertencia; 2 = error)",
- "description": "CSSLint rule config values"
+ "message": "(Establecer regla como: 0 = deshabilitada; 1 = advertencia; 2 = error)"
},
"linterConfigPopupTitle": {
"message": "Establecer configuración de $linter$ reglas",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -569,20 +482,16 @@
}
},
"linterConfigTooltip": {
- "message": "Pulse para configurar este deshilvanador (linter)",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Haz clic para configurar este linter"
},
"linterInvalidConfigError": {
- "message": "No se guardó debido a estos ajustes de configuración no válidos:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "No se guardó debido a estos ajustes de configuración no válidos:"
},
"linterIssues": {
- "message": "Problemas",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Problemas"
},
"linterIssuesHelp": {
"message": "Estos problemas fueron encontrados por $link$:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -590,136 +499,93 @@
}
},
"linterJSONError": {
- "message": "Formato JSON no válido",
- "description": "Setting linter config with invalid JSON"
+ "message": "Formato JSON no válido"
},
"linterResetMessage": {
- "message": "Para deshacer este restablecimiento accidental, pulse Ctrl+Z (o Cmd+Z) en el cuadro de texto",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "Para deshacer este restablecimiento accidental, pulse Ctrl+Z (o Cmd+Z) en el cuadro de texto"
},
"linterRulesLink": {
- "message": "Vea una lista completa de reglas",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Vea una lista completa de reglas"
},
"liveReloadError": {
- "message": "Se ha producido un error al visualizar el archivo",
- "description": "The label of live-reload error"
+ "message": "Se ha producido un error al visualizar el archivo"
+ },
+ "liveReloadInstallHint": {
+ "message": "Mantener esta pestaña abierta para actualizar automáticamente el estilo a los cambios externos."
+ },
+ "liveReloadInstallHintFF": {
+ "message": "Mantener tanto esta pestaña como la pestaña original abiertas para actualizar automáticamente el estilo a los cambios externos."
},
"liveReloadLabel": {
- "message": "Recarga en tiempo real",
- "description": "The label of live-reload feature"
+ "message": "Recarga en tiempo real"
},
"manageFavicons": {
- "message": "Favicons en la columna 'Se aplica a'",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Favicons en la columna 'Se aplica a'"
},
"manageFaviconsGray": {
- "message": "Atenuado",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Atenuado"
},
"manageFaviconsHelp": {
- "message": "Stylus usa un servicio externo https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus usa un servicio externo https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "Filtros",
- "description": "Label for filters container"
+ "message": "Filtros"
},
"manageHeading": {
- "message": "Estilos instalados",
- "description": "Heading for the manage page"
+ "message": "Estilos instalados"
},
"manageMaxTargets": {
- "message": "Número de elementos 'Se aplica a'",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "Número de elementos 'Se aplica a'"
},
"manageNewStyleAsUsercss": {
- "message": "como Usercss",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "como UserCSS"
},
"manageNewUI": {
- "message": "Nuevo diseño de la administración",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Nuevo diseño de la administración"
},
"manageOnlyDisabled": {
- "message": "Sólo estilos deshabilitados",
- "description": "Checkbox to show only disabled styles"
+ "message": "Solo estilos deshabilitados"
},
"manageOnlyEnabled": {
- "message": "Sólo estilos activos",
- "description": "Checkbox to show only enabled styles"
+ "message": "Solo estilos habilitados"
},
"manageOnlyExternal": {
- "message": "Sólo estilos externos",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Solo estilos externos"
},
"manageOnlyLocal": {
- "message": "Sólo estilos creados localmente",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Solo estilos creados localmente"
},
"manageOnlyLocalTooltip": {
- "message": "(los estilos no instalados a través de una página userstyles.org)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(los estilos no instalados a través de una página userstyles.org)"
},
"manageOnlyNonUsercss": {
- "message": "Sólo estilos no-Usercss",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Solo estilos no UserCSS"
},
"manageOnlyUpdates": {
- "message": "Sólo con actualizaciones o problemas",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Solo con actualizaciones o problemas"
},
"manageOnlyUsercss": {
- "message": "Sólo estilos Usercss",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Solo estilos UserCSS"
},
"menuShowBadge": {
- "message": "Mostrar número de estilos activos",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Mostrar número de estilos activos"
},
"meta_invalidCheckboxDefault": {
- "message": "@var checkbox no válida: el valor debe ser 0 o 1",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "@var checkbox no válida: el valor debe ser 0 o 1"
},
"meta_invalidColor": {
"message": "@var color no válido: $color$ no es un color",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
}
}
},
+ "meta_invalidNumber": {
+ "message": "Se espera un número"
+ },
"meta_invalidRange": {
"message": "@var $type$no válido: debe ser un número o un array",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "@var $type$ no válido: se han definido múltiples unidades",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "@var $type$ no válido: el array contiene demasiados elementos",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeValue": {
- "message": "@var $type$ no válido: los elementos en el array deben ser número, cadena o nulo",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -728,16 +594,6 @@
},
"meta_invalidRangeDefault": {
"message": "@var $type$ no válido: el valor por defecto es nulo",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMin": {
- "message": "@var $type$ no válido: el valor por defecto es inferior al mínimo",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -746,7 +602,22 @@
},
"meta_invalidRangeMax": {
"message": "@var $type$ no válido: el valor por defecto es mayor al máximo",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMin": {
+ "message": "@var $type$ no válido: el valor por defecto es inferior al mínimo",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "@var $type$ no válido: se han definido múltiples unidades",
"placeholders": {
"type": {
"content": "$1"
@@ -755,7 +626,14 @@
},
"meta_invalidRangeStep": {
"message": "@var $type$ no válido: el valor por defecto no es un múltiplo del intervalo",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "@var $type$ no válido: el array contiene demasiados elementos",
"placeholders": {
"type": {
"content": "$1"
@@ -764,7 +642,6 @@
},
"meta_invalidRangeUnits": {
"message": "@var $type$ no válido: '$units$' no es una unidad válida",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -774,37 +651,40 @@
}
}
},
- "meta_invalidSelect": {
- "message": "@var select no válido: el valor por defecto debe ser un array o un objeto",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidRangeValue": {
+ "message": "@var $type$ no válido: los elementos en el array deben ser número, cadena o nulo",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
},
- "meta_invalidSelectValue": {
- "message": "@var select no válido: los valores dentro del array/objeto deben ser una cadena",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidSelect": {
+ "message": "@var select no válido: el valor por defecto debe ser un array o un objeto"
},
"meta_invalidSelectEmptyOptions": {
- "message": "@var select no válido: la lista de opciones está vacía",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select no válido: la lista de opciones está vacía"
},
"meta_invalidSelectLabel": {
- "message": "@var select no válido: la etiqueta de opción está vacía",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select no válido: la etiqueta de opción está vacía"
},
"meta_invalidSelectMultipleDefaults": {
- "message": "@var select no válido: se han definido múltiples opciones por defecto",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select no válido: se han definido múltiples opciones por defecto"
},
"meta_invalidSelectNameDuplicated": {
- "message": "@var select no válido: el nombre de la opción está duplicado",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select no válido: el nombre de la opción está duplicado"
+ },
+ "meta_invalidSelectValue": {
+ "message": "@var select no válido: los valores dentro del array/objeto deben ser una cadena"
},
"meta_invalidSelectValueMismatch": {
- "message": "@var select no válido: no existe en la lista de opciones",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select no válido: no existe en la lista de opciones"
+ },
+ "meta_invalidString": {
+ "message": "Se espera una cadena de texto entre comillas"
},
"meta_invalidURLProtocol": {
"message": "Protocolo URL no válido. Sólo se permiten http y https: $protocol$",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
@@ -812,29 +692,13 @@
}
},
"meta_invalidVersion": {
- "message": "Número de versión no válido. El valor no coincide con el patrón SemVer: $version$",
- "description": "Error displayed when @version is invalid",
- "placeholders": {
- "version": {
- "content": "$1"
- }
- }
- },
- "meta_invalidNumber": {
- "message": "Se espera un número",
- "description": "Error displayed when the value is expected to be a number"
- },
- "meta_invalidString": {
- "message": "Se espera una cadena de texto entre comillas",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "Número de versión no válido"
},
"meta_invalidWord": {
- "message": "Se espera una palabra",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "Se espera una palabra"
},
"meta_missingChar": {
"message": "Se esperan caracteres: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -842,12 +706,10 @@
}
},
"meta_missingEOT": {
- "message": "Se esperan datos EOT",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "Se esperan datos EOT"
},
"meta_missingMandatory": {
"message": "Faltan metadatos obligatorios: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -856,7 +718,6 @@
},
"meta_unknownJSONLiteral": {
"message": "JSON no válido: $literal$ no es un literal válido de JSON",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
@@ -865,16 +726,33 @@
},
"meta_unknownMeta": {
"message": "Metadatos desconocidos: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
}
},
+ "meta_unknownMetaTypo": {
+ "message": "¿Querías decir @$keyOk$? Metadatos desconocidos: @$keyErr$",
+ "placeholders": {
+ "keyErr": {
+ "content": "$1"
+ },
+ "keyOk": {
+ "content": "$2"
+ }
+ }
+ },
+ "meta_unknownPreprocessor": {
+ "message": "@preprocessor desconocido: $preprocessor$",
+ "placeholders": {
+ "preprocessor": {
+ "content": "$1"
+ }
+ }
+ },
"meta_unknownVarType": {
"message": "Tipo de @$varkey$ desconocido: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -884,390 +762,408 @@
}
}
},
- "meta_unknownPreprocessor": {
- "message": "@preprocessor desconocido: $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
+ "noFileToImport": {
+ "message": "Para importar sus estilos, debe exportarlos primero."
+ },
+ "noStylesForSite": {
+ "message": "No hay estilos instalados para este sitio."
+ },
+ "numberedLine": {
+ "message": "Línea:"
+ },
+ "openManage": {
+ "message": "Administrar"
+ },
+ "openOptions": {
+ "message": "Opciones"
+ },
+ "openStylesManager": {
+ "message": "Abrir administrador de estilos"
+ },
+ "optionsActions": {
+ "message": "Acciones"
+ },
+ "optionsAdvanced": {
+ "message": "Avanzado"
+ },
+ "optionsAdvancedContextDelete": {
+ "message": "Añadir 'Eliminar' al menú contextual del editor"
+ },
+ "optionsAdvancedExposeIframes": {
+ "message": "Visualizar marcos integrados (iframes) a través de HTML[stylus-iframe]"
+ },
+ "optionsAdvancedExposeIframesNote": {
+ "message": "Muestra el dominio del sitio principal en cada iframe.\nPermite escribir código CSS específico para iframes, como en el ejemplo siguiente:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
+ },
+ "optionsAdvancedNewStyleAsUsercss": {
+ "message": "Escribir nuevo estilo como UserCSS"
+ },
+ "optionsAdvancedPatchCsp": {
+ "message": "Cambiar CSP
para permitir recursos de estilos"
+ },
+ "optionsAdvancedPatchCspNote": {
+ "message": "Activa esta opción si los estilos contienen imágenes o fuentes que no se cargan en un sitio con una configuración estricta de CSP
(Política de seguridad de contenido
).\n\nAl activar esta opción, se reducen las restricciones de CSP
para que puedan cargarse los contenidos de estilo necesarios. Esta opción va dirigida únicamente a usuarios avanzados que comprenden las posibles implicaciones de seguridad y aceptan la responsabilidad de supervisar el contenido que permiten que se cargue. Antes de usar esta opción, obtén más información sobre los ataques basados en CSS.\n\nAdemás, puede que esta opción específica no se aplique si otra extensión modifica antes la respuesta de red."
+ },
+ "optionsAdvancedStyleViaXhr": {
+ "message": "Modo de inserción instantánea"
+ },
+ "optionsAdvancedStyleViaXhrNote": {
+ "message": "Activa esta opción si aparecen y desaparecen rápidamente contenidos sin estilo al cargarse páginas (el efecto es más visible con temas oscuros).\n\nLa explicación técnica es que Chrome/Chromium pospone la comunicación asincrónica de las extensiones. Esta función intenta mejorar la velocidad de carga de las páginas, aunque no siempre es efectiva y puede causar que los estilos se apliquen con retraso. Para evitar este problema (ya que las extensiones del tipo WebExtensions no pueden usar una API sincrónica), Stylus ofrece esta opción para usar la API web XMLHttpRequest sincrónica (en desuso) para obtener los estilos correspondientes. No debería causar problemas, ya que la petición se completa en solo unos milisegundos, mientras se carga la página del servidor.\n\nDe todos modos, Chromium mostrará una advertencia en la consola de herramientas de desarrollador. Para evitar que se muestren este tipo de advertencias en el futuro, haz clic con el botón derecho sobre una advertencia y selecciona la opción para ocultarla."
+ },
+ "optionsBadgeDisabled": {
+ "message": "Color de fondo cuando está deshabilitado"
+ },
+ "optionsBadgeNormal": {
+ "message": "Color de fondo"
+ },
+ "optionsCheck": {
+ "message": "Actualizar estilos"
+ },
+ "optionsCheckUpdate": {
+ "message": "Buscar e instalar todas las actualizaciones disponibles"
+ },
+ "optionsCustomizeBadge": {
+ "message": "Distintivo en el icono de barra de herramientas"
+ },
+ "optionsCustomizeIcon": {
+ "message": "Icono de barra de herramientas"
+ },
+ "optionsCustomizePopup": {
+ "message": "Ventana emergente"
+ },
+ "optionsCustomizeSync": {
+ "message": "Sincronizar con la nube"
+ },
+ "optionsCustomizeUpdate": {
+ "message": "Actualizaciones"
+ },
+ "optionsHeading": {
+ "message": "Opciones"
+ },
+ "optionsIconDark": {
+ "message": "Temas de navegador oscuros"
+ },
+ "optionsIconLight": {
+ "message": "Temas de navegador claros"
+ },
+ "optionsOpen": {
+ "message": "Abrir"
+ },
+ "optionsOpenManager": {
+ "message": "Administrar estilos"
+ },
+ "optionsPopupWidth": {
+ "message": "Anchura del diálogo emergente (en píxeles)"
+ },
+ "optionsReset": {
+ "message": "Restablecer las opciones a sus valores predeterminados."
+ },
+ "optionsResetButton": {
+ "message": "Restablecer opciones"
+ },
+ "optionsStylusThemes": {
+ "message": "Buscar un tema de Stylus"
+ },
+ "optionsSubheading": {
+ "message": "Más opciones"
+ },
+ "optionsSyncConnect": {
+ "message": "Conectar"
+ },
+ "optionsSyncDisconnect": {
+ "message": "Desconectar"
+ },
+ "optionsSyncLogin": {
+ "message": "Iniciar sesión"
+ },
+ "optionsSyncNone": {
+ "message": "Ninguno"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "Conectado"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "Conectando..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "Desconectado"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "Desconectando..."
+ },
+ "optionsSyncStatusPull": {
+ "message": "Obteniendo estilo $loaded$ de $total$",
"placeholders": {
- "preprocessor": {
+ "loaded": {
"content": "$1"
+ },
+ "total": {
+ "content": "$2"
}
}
},
- "noStylesForSite": {
- "message": "No hay estilos instalados para este sitio.",
- "description": "Text displayed when no styles are installed for the current site"
+ "optionsSyncStatusPush": {
+ "message": "Publicando estilo $loaded$ de $total$",
+ "placeholders": {
+ "loaded": {
+ "content": "$1"
+ },
+ "total": {
+ "content": "$2"
+ }
+ }
},
- "openManage": {
- "message": "Administrar",
- "description": "Link to open the manage page."
- },
- "openOptions": {
- "message": "Opciones",
- "description": "Go to Options UI"
- },
- "openStylesManager": {
- "message": "Abrir administrador de estilos",
- "description": "Label for the style maanger opener in the browser action context menu."
- },
- "optionsActions": {
- "message": "Acciones",
- "description": ""
- },
- "optionsAdvanced": {
- "message": "Avanzado",
- "description": ""
- },
- "optionsAdvancedContextDelete": {
- "message": "Agregar 'Eliminar' al menú contextual del editor",
- "description": ""
- },
- "optionsAdvancedExposeIframes": {
- "message": "Visualizar marcos integrados (iframes) a través de HTML[stylus-iframe]",
- "description": ""
- },
- "optionsAdvancedNewStyleAsUsercss": {
- "message": "Escribir nuevo estilo como usercss",
- "description": ""
- },
- "optionsBadgeDisabled": {
- "message": "Color de fondo cuando está desactivado",
- "description": ""
- },
- "optionsBadgeNormal": {
- "message": "Color de fondo",
- "description": ""
- },
- "optionsCheck": {
- "message": "Actualizar estilos",
- "description": ""
- },
- "optionsCheckUpdate": {
- "message": "Buscar e instalar todas las actualizaciones disponibles",
- "description": ""
- },
- "optionsCustomizeBadge": {
- "message": "Distintivo en el icono de barra de herramientas",
- "description": ""
- },
- "optionsCustomizeIcon": {
- "message": "Icono de barra de herramientas",
- "description": ""
- },
- "optionsCustomizePopup": {
- "message": "Ventana emergente",
- "description": ""
- },
- "optionsCustomizeUpdate": {
- "message": "Actualizaciones",
- "description": ""
- },
- "optionsHeading": {
- "message": "Opciones",
- "description": "Heading for options section on manage page."
- },
- "optionsIconDark": {
- "message": "Temas de navegador oscuros",
- "description": ""
- },
- "optionsIconLight": {
- "message": "Temas de navegador claros",
- "description": ""
- },
- "optionsOpen": {
- "message": "Abrir",
- "description": ""
- },
- "optionsOpenManager": {
- "message": "Administrar estilos",
- "description": ""
- },
- "optionsPopupWidth": {
- "message": "Anchura del diálogo emergente (en píxeles)",
- "description": ""
- },
- "optionsReset": {
- "message": "Restablecer las opciones a sus valores predeterminados.",
- "description": ""
- },
- "optionsResetButton": {
- "message": "Restablecer opciones",
- "description": ""
- },
- "optionsSubheading": {
- "message": "Más opciones",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "Al importar copias de seguridad de estilos desde una versión antigua o desde Stylish, realice una única búsqueda manual de actualizaciones en el administrador de estilos para asegurarse de que todos los estilos están actualizados.",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "Intervalo de actualización automática en horas (especifique 0 para deshabilitar)",
- "description": ""
- },
- "optionsSyncConnect": {
- "message": "Conectar",
- "description": ""
- },
- "optionsSyncDisconnect": {
- "message": "Desconectar",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "Sincronizar ahora",
- "description": ""
- },
- "optionsSyncLogin": {
- "message": "Iniciar Sesión",
- "description": ""
+ "optionsSyncStatusRelogin": {
+ "message": "La sesión ha expirado, por favor inicia sesión de nuevo."
},
"optionsSyncStatusSyncing": {
- "message": "Sincronizando...",
- "description": ""
+ "message": "Sincronizando..."
},
- "optionsSyncStatusConnecting": {
- "message": "Conectando...",
- "description": ""
+ "optionsSyncSyncNow": {
+ "message": "Sincronizar ahora"
},
- "optionsSyncStatusConnected": {
- "message": "Conectado",
- "description": ""
+ "optionsUpdateImportNote": {
+ "message": "Al importar los respaldos de estilos desde una versión antigua o desde Stylish, comprueba una vez las actualizaciones manualmente en el administrador de estilos para asegurarte de que todos los estilos estén actualizados."
},
- "optionsSyncStatusDisconnecting": {
- "message": "Desconectando...",
- "description": ""
+ "optionsUpdateInterval": {
+ "message": "Intervalo de actualización automática en horas (especificar 0 para deshabilitar)"
},
- "optionsSyncStatusDisconnected": {
- "message": "Desconectado",
- "description": ""
+ "overwriteFileExport": {
+ "message": "¿Desea sobrescribir un archivo existente?"
},
"paginationCurrent": {
- "message": "Página actual",
- "description": "Tooltip for the current page index in search results"
+ "message": "Página actual"
},
"paginationEstimated": {
- "message": "Número estimado de páginas",
- "description": "Tooltip for the total page count in search results"
+ "message": "Número estimado de páginas"
},
"paginationNext": {
- "message": "Página siguiente",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "Página siguiente"
},
"paginationPrevious": {
- "message": "Página anterior",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "Página anterior"
},
"paginationTotal": {
- "message": "Páginas totales",
- "description": ""
+ "message": "Páginas totales"
},
"parseUsercssError": {
- "message": "Stylus no pudo interpretar el usercss:",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "Stylus no pudo interpretar el UserCSS:"
+ },
+ "popupAutoResort": {
+ "message": "Al activar esta opción, se muestran los estilos en una ventana emergente"
},
"popupBorders": {
- "message": "Añadir bordes blancos en los laterales",
- "description": ""
+ "message": "Añadir bordes blancos en los laterales"
},
"popupBordersTooltip": {
- "message": "Útil para temas oscuros en el nuevo Chrome ya que no pinta los bordes laterales",
- "description": ""
+ "message": "Útil para temas oscuros en el nuevo Chrome ya que no pinta los bordes laterales"
},
"popupHotkeysInfo": {
- "message": "<1>-<9>, <0>, también en el teclado numérico - acciona el n-esimo estilo (0 es 10)\n- acciona el primer estilo con un nombre que comienza con la letra\n abre el editor en lugar de accionar\n habilita los estilos listados\n deshabilita los estilos listados\n y <`> (acento grave) - acciona los estilos habilitados inicialmente; no se aplica a los estilos habilitados subsecuentemente mientras el cuadro emergente está abierto, así que puede restaurar la selección inicial tras probar el material: simplemente deshabilite todo, y luego accione, es decir \nMás información en el wiki",
- "description": "NOTE1: preserve < and > symbols so that is styled as a key.\nNOTE2: the last line is displayed as a text of the link to the wiki page.\nNOTE3: this is the list of hotkeys displayed after clicking the right edge of the extension popup."
+ "message": "<1>-<9>, <0>, también en el teclado numérico - acciona el n-esimo estilo (0 es 10)\n- acciona el primer estilo con un nombre que comienza con la letra\n abre el editor en lugar de accionar\n habilita los estilos listados\n deshabilita los estilos listados\n y <`> (acento grave) - acciona los estilos habilitados inicialmente; no se aplica a los estilos habilitados subsecuentemente mientras el cuadro emergente está abierto, así que puede restaurar la selección inicial tras probar el material: simplemente deshabilite todo, y luego accione, es decir \nMás información en el wiki"
},
"popupHotkeysTooltip": {
- "message": "Pulse para ver teclas de atajo disponibles.",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "Haz clic para ver los atajos de teclado disponibles"
},
"popupManageTooltip": {
- "message": "Mayús+clic o clic secundario abre el administrador con estilos aplicables para el sitio actual.",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Mayús+clic o clic secundario abre el administrador con estilos aplicables para el sitio actual."
},
"popupMenuButtonTooltip": {
- "message": "Acciones",
- "description": "Tooltip for menu button in popup."
+ "message": "Acciones"
+ },
+ "popupOpenEditInPopup": {
+ "message": "Usar ventana simple (en lugar de la barra de direcciones)"
},
"popupOpenEditInWindow": {
- "message": "Abrir editor en una nueva ventana",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Abrir editor en una nueva ventana"
},
"popupOpenEditInWindowTooltip": {
- "message": "También se habilita al desacoplar la pestaña del editor de una ventana de navegador,\ny se deshabilita al acoplar una única pestaña de editor en otra ventana.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "También se habilita al desacoplar la pestaña del editor de una ventana de navegador,\ny se deshabilita al acoplar una única pestaña de editor en otra ventana."
},
"popupStylesFirst": {
- "message": "Estilos antes que las órdenes",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "Estilos antes que las órdenes"
},
"prefShowBadge": {
- "message": "Número de estilos activos en el sitio actual",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Número de estilos activos en el sitio actual"
},
"previewLabel": {
- "message": "Vista previa en tiempo real",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "Vista previa en tiempo real"
},
"previewTooltip": {
- "message": "Aplica temporalmente los cambios sin guardar.\nGuarde el estilo para que los cambios sean permanentes.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "Aplica temporalmente los cambios sin guardar.\nGuarde el estilo para que los cambios sean permanentes."
+ },
+ "publish": {
+ "message": "Publicar"
+ },
+ "publishPush": {
+ "message": "Publicar actualización"
+ },
+ "publishReconnect": {
+ "message": "Prueba a desconectar y, después, vuelve a publicar"
+ },
+ "publishRetry": {
+ "message": "Stylus aún está intentando publicar este estilo. Puedes volver a intentarlo si no ves mensajes emergentes ni actividad de autenticación. ¿Quieres intentarlo de nuevo?"
+ },
+ "publishStyle": {
+ "message": "Publicar estilo"
+ },
+ "publishUsw": {
+ "message": "Usando "
+ },
+ "readingStyles": {
+ "message": "Leyendo los estilos..."
+ },
+ "reload": {
+ "message": "Recargar extensión Stylus"
},
"replace": {
- "message": "Reemplazar",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Reemplazar"
},
"replaceAll": {
- "message": "Reemplazar todo",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Reemplazar todo"
},
"replaceWith": {
- "message": "Reemplazar con",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Reemplazar con"
},
"retrieveBckp": {
- "message": "Importar estilos",
- "description": ""
+ "message": "Importar estilos"
+ },
+ "retrieveDropboxSync": {
+ "message": "Importar desde Dropbox"
},
"search": {
- "message": "Buscar",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Buscar"
},
"searchCaseSensitive": {
- "message": "Diferenciar mayúsculas y minúsculas",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "Diferenciar mayúsculas y minúsculas"
+ },
+ "searchGlobalStyles": {
+ "message": "También buscar estilos globales"
},
"searchNumberOfResults": {
- "message": "Número de coincidencias",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Número de coincidencias"
},
"searchNumberOfResults2": {
- "message": "Número de coincidencias en el código y en los valores 'Se aplica a'",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Número de coincidencias en el código y en los valores 'Se aplica a'"
},
"searchRegexp": {
- "message": "Use la sintaxis /re/ para búsquedas con expresiones regulares",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "Use la sintaxis /re/ para búsquedas con expresiones regulares"
},
"searchResultInstallCount": {
- "message": "Instalaciones totales",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "Instalaciones totales"
},
"searchResultNoneFound": {
- "message": "No se encontraron estilos para este sitio.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "No se encontraron estilos para este sitio."
+ },
+ "searchResultNotMatching": {
+ "message": "El estilo se ha instalado, pero no es válido para la URL del sitio actual."
+ },
+ "searchResultNotMatchingNote": {
+ "message": "Intenta pedir al autor de este estilo de usuario que añada la URL.\n\nTambién puedes abrir el estilo en el administrador y editarlo tú mismo,\npero ten en cuenta que deshabilita las actualizaciones automáticas de\neste estilo."
},
"searchResultRating": {
- "message": "Valoración",
- "description": "Text for label that shows the search result's rating"
+ "message": "Valoración"
},
"searchResultUpdated": {
- "message": "Actualizado",
- "description": "Text for label that shows the search result's last update date"
+ "message": "Actualizado"
},
"searchResultWeeklyCount": {
- "message": "Instalaciones semanales",
- "description": "Text for label that shows the number of times a search result was installed during last week"
+ "message": "Instalaciones semanales"
},
- "searchStyles": {
- "message": "Buscar contenidos",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "searchStyleQueryHint": {
+ "message": "La búsqueda de nombres de estilo no distingue mayúsculas de minúsculas:\nalgunas palabras: todas las palabras en cualquier orden\n\"una frase\": esta frase exacta (sin comillas)\n2020: al escribir un año, se muestran estilos que se actualizaron ese año"
+ },
+ "searchStylesAll": {
+ "message": "Todos"
+ },
+ "searchStylesCode": {
+ "message": "Código CSS"
},
"searchStylesHelp": {
- "message": "La tecla > pone el foco en el campo de búsqueda.\nTexto simple: Busque por nombre, código, URL de la página principal, y sitios a los que se apllica. Las palabras con menos de 3 letras son ignoradas.\nURL coincidente: Prefije la búsqueda con , ej. \nExpresiones regulares: Incluya barras e indicadores, ej.. \nPalabras exactas: Ponga la consulta entre comillas dobles, ej.. <\".header ~ div\">",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
+ "message": "Al pulsar > o , se coloca el cursor en el campo de búsqueda .\nEl modo predeterminado es la búsqueda de texto sin formato de todos los términos separados por espacios en cualquier orden.\nPalabras exactas: escribe la consulta entre comillas dobles. Ejemplo: <\".header ~ div\">\nExpresiones regulares: se incluyen barras y marcas. Ejemplo: )\n«Por URL» en el selector de ámbito: busca los estilos que se aplican en una URL completa especificada. Ejemplo: https://www.example.org/\n«Metadatos» en el selector de ámbito: busca en nombres, especificadores de «se aplica a», URL de instalación, URL de actualización y todo el bloque de metadatos para estilos de UserCSS."
+ },
+ "searchStylesMatchUrl": {
+ "message": "Por URL"
+ },
+ "searchStylesMeta": {
+ "message": "Metadatos"
+ },
+ "searchStylesName": {
+ "message": "Nombre"
},
"sectionAdd": {
- "message": "Agregar otra sección",
- "description": "Label for the button to add a section"
+ "message": "Añadir otra sección"
},
"sectionCode": {
- "message": "Código",
- "description": "Label for the code for a section"
+ "message": "Código"
},
"sectionRemove": {
- "message": "Eliminar sección",
- "description": "Label for the button to remove a section"
+ "message": "Eliminar sección"
},
"sectionRestore": {
- "message": "Restaurar sección eliminada",
- "description": "Label for the button to restore a removed section"
+ "message": "Restaurar sección eliminada"
+ },
+ "sections": {
+ "message": "Secciones"
},
"shortcuts": {
- "message": "Atajos",
- "description": "Go to shortcut configuration"
+ "message": "Atajos"
},
"shortcutsNote": {
- "message": "Defina atajos de teclado",
- "description": ""
+ "message": "Defina atajos de teclado"
},
"sortDateNewestFirst": {
- "message": "los más nuevos primero",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "los más nuevos primero"
},
"sortDateOldestFirst": {
- "message": "el más antiguo primero",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "el más antiguo primero"
},
"sortLabel": {
- "message": "Seleccione un orden a aplicar a los estilos instalados",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "Seleccione un orden a aplicar a los estilos instalados"
},
"sortLabelTitleAsc": {
- "message": "Título ascendentemente",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "Título ascendentemente"
},
"sortLabelTitleDesc": {
- "message": "Título descendentemente",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "Título descendentemente"
},
"sortStylesHelp": {
- "message": "Escoja el tipo de orden a aplicar a las entradas instaladas desde el menú desplegable de ordenación. La configuración predeterminada aplica un orden ascendente (A a Z) a los títulos de las entradas. Las ordenaciones del grupo \"Título descendentemente\" aplicarán un orden descendente (Z a A) al título.\nHay otros preajustes que permitirán ordenar las entradas según múltiples criterios. Piense en esto como en ordenar una tabla con múltiples columnas, y en cada categoría en una selección (entre los signos más) representa una columna o grupo.\nPor ejemplo, si la configuración es \"Habilitados (primero) + Título\", las entradas se ordenarían de forma que las entradas habilitadas quedarían en la parte superior de la lista, luego se aplica un orden ascendente (A a Z) de títulos de las entradas tanto para las entradas habilitadas como las deshabilitadas de forma separada.",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the sort input field on the Manage styles page"
+ "message": "Escoja el tipo de orden a aplicar a las entradas instaladas desde el menú desplegable de ordenación. La configuración predeterminada aplica un orden ascendente (A a Z) a los títulos de las entradas. Las ordenaciones del grupo \"Título descendentemente\" aplicarán un orden descendente (Z a A) al título.\nHay otros preajustes que permitirán ordenar las entradas según múltiples criterios. Piense en esto como en ordenar una tabla con múltiples columnas, y en cada categoría en una selección (entre los signos más) representa una columna o grupo.\nPor ejemplo, si la configuración es \"Habilitados (primero) + Título\", las entradas se ordenarían de forma que las entradas habilitadas quedarían en la parte superior de la lista, luego se aplica un orden ascendente (A a Z) de títulos de las entradas tanto para las entradas habilitadas como las deshabilitadas de forma separada."
},
"sortStylesHelpTitle": {
- "message": "Ordenar contenidos",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "Ordenar contenidos"
},
"styleBadRegexp": {
- "message": "La expresión regular proporcionada no es válida.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "La expresión regular proporcionada no es válida."
},
"styleBeautify": {
- "message": "Formatear",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "Formatear"
+ },
+ "styleBeautifyHint": {
+ "message": "Sugerencia: Haz clic con el botón derecho en el botón «Formatear» o usa el método abreviado de teclado que se indica a continuación para dar formato al texto sin mostrar este panel"
},
"styleBeautifyIndentConditional": {
- "message": "Sangrar @media, @supports",
- "description": "CSS-beautifier option"
+ "message": "Sangrar @media, @supports"
},
"styleBeautifyPreserveNewlines": {
- "message": "Conservar nuevas líneas",
- "description": "CSS-beautifier option"
+ "message": "Conservar nuevas líneas"
},
"styleCancelEditLabel": {
- "message": "Volver al administrador",
- "description": "Label for cancel button for style editing"
+ "message": "Volver al administrador"
},
"styleChangesNotSaved": {
- "message": "Ha realizado cambios en este estilo sin guardarlos.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Has realizado cambios en este estilo sin guardarlos."
},
"styleEnabledLabel": {
- "message": "Activado",
- "description": "Label for the enabled state of styles"
+ "message": "Activado"
},
"styleFromMozillaFormatError": {
- "message": "No se pudo importar desde el formato Mozilla",
- "description": "Label for the import error"
+ "message": "No se pudo importar desde el formato Mozilla"
},
"styleFromMozillaFormatPrompt": {
- "message": "Pegue el código de formato Mozilla",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Pegue el código de formato Mozilla"
},
"styleInstall": {
"message": "¿Quiere instalar «$stylename$» en Stylus?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1276,7 +1172,6 @@
},
"styleInstallFailed": {
"message": "¡No se pudo instalar el estilo de usuario!\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1285,86 +1180,71 @@
},
"styleInstallOverwrite": {
"message": "'$stylename$' ya está instalado ¿Sobrescribirlo?\nVersión: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "Introduzca un nombre",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Ingresa un nombre"
},
"styleMozillaFormatHeading": {
- "message": "Formato Mozilla",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Formato Mozilla"
+ },
+ "styleName": {
+ "message": "Nombre del estilo"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "El estilo no se aplicó debido a su uso incorrecto de 'regexp()'",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "El estilo no se aplicó debido a su uso incorrecto de 'regexp()'"
},
"styleRegexpInvalidExplanation": {
- "message": "Algunas reglas «regexp()» que no se pudieron compilar en absoluto.",
- "description": ""
+ "message": "Algunas reglas «regexp()» que no se pudieron compilar en absoluto."
},
"styleRegexpPartialExplanation": {
- "message": "Este estilo utiliza expresiones regulares (regexps) con coincidencias parciales, infringiendo la especificación @document de CSS4 que requiere una coincidencia de URL completa. \nLas secciones CSS correspondientes a estas expresiones regulares no se aplicaron a la página. Este estilo fue probablemente creado con Stylish para Chrome que evalúa incorrectamente las reglas 'regexp()' desde la primera versión (fallo conocido).",
- "description": ""
+ "message": "Este estilo utiliza expresiones regulares (regexps) con coincidencias parciales, infringiendo la especificación @document de CSS4 que requiere una coincidencia de URL completa. \nLas secciones CSS correspondientes a estas expresiones regulares no se aplicaron a la página. Este estilo fue probablemente creado con Stylish para Chrome que evalúa incorrectamente las reglas 'regexp()' desde la primera versión (fallo conocido)."
},
"styleRegexpProblemTooltip": {
- "message": "Número de secciones no aplicadas debido a un uso incorrecto de 'regexp()'",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "Número de secciones no aplicadas debido a un uso incorrecto de 'regexp()'"
},
"styleRegexpTestButton": {
- "message": "Probar regexp",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "Probar regexp"
},
"styleRegexpTestFull": {
- "message": "Pestañas coincidentes",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "Pestañas coincidentes"
},
"styleRegexpTestInvalid": {
- "message": "Expresiones regulares no válidas omitidas",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "Expresiones regulares no válidas omitidas"
},
"styleRegexpTestNone": {
- "message": "No hay pestañas que coincidan",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "No hay pestañas que coincidan"
},
"styleRegexpTestNote": {
- "message": "Nota: Use una única \\ como caracter de escape en el campo de entrada de la expresión regular (regexp), que se convertirá automátiascamente a \\\\ en el código del estilo igual que por especificación para cadenas entrecomilladas en CSS.",
- "description": "RegExp test report: a note displayed at the bottom of the dialog"
+ "message": "Nota: Use una única \\ como caracter de escape en el campo de entrada de la expresión regular (regexp), que se convertirá automátiascamente a \\\\ en el código del estilo igual que por especificación para cadenas entrecomilladas en CSS."
},
"styleRegexpTestPartial": {
- "message": "No coincide completamente, por lo que se omitió",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "No coincide completamente, por lo que se omitió"
},
"styleRegexpTestTitle": {
- "message": "Lista de pestañas abiertas que coinciden (haga clic en la URL para enfocar su pestaña)",
- "description": "RegExp test report: title of the report"
+ "message": "Lista de pestañas abiertas que coinciden (haga clic en la URL para enfocar su pestaña)"
},
"styleSaveLabel": {
- "message": "Guardar",
- "description": "Label for save button for style editing"
+ "message": "Guardar"
},
"styleToMozillaFormatHelp": {
- "message": "El formato Mozilla del código se puede enviar a userstyles.org y usarse con el Stylish para Firefox clásico.",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "El formato Mozilla del código se puede enviar a userstyles.org y usarse con el Stylish para Firefox clásico."
},
"styleToMozillaFormatTitle": {
- "message": "Estilo en formato Mozilla",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Estilo en formato Mozilla"
},
"styleUpdate": {
- "message": "¿Confirma que quiere actualizar «$stylename$»?",
- "description": "Confirmation when updating a style",
+ "message": "¿Estás seguro de que quieres actualizar '$stylename$'?",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1372,72 +1252,67 @@
}
},
"styleUpdateDiscardChanges": {
- "message": "El estilo se ha modificado fuera del editor. ¿Desea recargar el estilo?",
- "description": "Confirmation to update the style in the editor"
+ "message": "El estilo se ha modificado fuera del editor. ¿Desea recargar el estilo?"
},
"stylusUnavailableForURL": {
- "message": "Stylus no funciona en páginas como esta.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Stylus no funciona en páginas como esta."
},
"stylusUnavailableForURLdetails": {
- "message": "Como medida de seguridad, el navegador impide que las extensiones afecten a sus páginas incorporadas(como chrome://version, la página de pestaña nueva a partir de Chrome 61, about:addons, etc.), así como a las páginas de otras extensiones. Cada navegador también restringe el acceso a su propia galería de extensiones (como Chrome Web Store o AMO).",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Como medida de seguridad, el navegador impide que las extensiones afecten a sus páginas incorporadas (como chrome://version, la página de pestaña nueva a partir de Chrome 61, about:addons, etc.), así como a las páginas de otras extensiones. Cada navegador también restringe el acceso a su propia galería de extensiones (como Chrome Web Store o AMO)."
+ },
+ "syncDropboxDeprecated": {
+ "message": "La importación/exportación de Dropbox se reemplaza por una sincronización de estilo más avanzado en la página de opciones."
+ },
+ "syncDropboxStyles": {
+ "message": "Exportar a Dropbox"
+ },
+ "syncError": {
+ "message": "No se pudo sincronizar"
+ },
+ "syncErrorRelogin": {
+ "message": "No se pudo sincronizar.\nIntenta volver a iniciar sesión en las opciones de Stylus:\nprimero haz clic en 'desconectar', y luego en 'conectar'."
},
"syncStorageErrorSaving": {
- "message": "El valor no se puede guardar. Trate de reducir la longitud del texto.",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "El valor no se puede guardar. Trate de reducir la longitud del texto."
},
"toggleStyle": {
- "message": "Activar/Desactivar estilo",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "Activar/Desactivar estilo"
},
"undo": {
- "message": "Deshacer",
- "description": "Button label"
+ "message": "Deshacer"
},
"undoGlobal": {
- "message": "Deshacer en todas las secciones",
- "description": "CSS-beautify global Undo button label"
+ "message": "Deshacer en todas las secciones"
},
"unreachableAMO": {
- "message": "Firefox prohibe el acceso al sitio",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "Firefox prohibe el acceso al sitio"
},
"unreachableAMOHint": {
- "message": "Para permitir el acceso abra , haga clic secundario en la lista, pulse 'Nuevo', luego 'Booleano', pegue y pulse Aceptar, , Aceptar, y recargue la página .",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintNewFF": {
- "message": "En Firefox 60 y versiones posteriores también deberá eliminar el dominio AMO de en .",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Sólo Firefox 59 y posteriores se pueden configurar para permitir que WebExtensions añada elementos de estilo en sitios protegidos-por-CSP (política de seguridad de contenidos) como este.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "Para permitir el acceso abra , haga clic secundario en la lista, pulse 'Nuevo', luego 'Booleano', pegue y pulse Aceptar, , Aceptar, y recargue la página ."
},
"unreachableContentScript": {
- "message": "No se pudo comunicar con la página. Pruebe a recargar la pestaña.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "No se pudo comunicar con la página. Prueba recargando la pestaña."
},
"unreachableFileHint": {
- "message": "Stylus puede acceder a las URLs file:// sólo si activa la casilla correspondiente para la extensión Stylus en la página chrome://extensions.",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "Stylus puede acceder a las URLs file:// sólo si activa la casilla correspondiente para la extensión Stylus en la página chrome://extensions."
},
- "InaccessibleFileHint": {
- "message": "Stylus no puede acceder a algunos tipos de archivos (p. ej. archivos pdf y json).",
- "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ "unreachableMozSiteHint": {
+ "message": "En Firefox 60 y versiones posteriores, quita este dominio de en ."
+ },
+ "unreachableMozSiteHintOldFF": {
+ "message": "Se necesita Firefox 59 y versiones posteriores para que las extensiones del tipo WebExtensions agreguen elementos de estilo en sitios protegidos mediante CSP como este."
+ },
+ "unzipStyles": {
+ "message": "Descomprimiendo los estilos..."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "No se encontraron actualizaciones.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "No se encontraron actualizaciones."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "No se buscaron actualizaciones de algunos estilos actualizables para evitar la pérdida de posibles ediciones locales. Se puede forzar la búsqueda de actualizaciones mediante comprobación individual, o ejecutando otra búsqueda para todos los estilos (las ediciones locales se sobrescribirán).",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "No se buscaron actualizaciones de algunos estilos actualizables para evitar la pérdida de posibles ediciones locales. Se puede forzar la búsqueda de actualizaciones mediante comprobación individual, o ejecutando otra búsqueda para todos los estilos (las ediciones locales se sobrescribirán)."
},
"updateCheckFailBadResponseCode": {
"message": "Error de actualización: el servidor ha respondido con el código $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1445,123 +1320,63 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Error de actualización: no se pudo contactar con el servidor.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Error de actualización: no se pudo contactar con el servidor."
},
"updateCheckHistory": {
- "message": "Historial de búsqueda de actualizaciones",
- "description": ""
+ "message": "Historial de búsqueda de actualizaciones"
},
"updateCheckManualUpdateForce": {
- "message": "Instalar actualización (se sobrescribirán las ediciones locales)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Instalar actualización (se sobrescribirán las ediciones locales)"
},
"updateCheckManualUpdateHint": {
- "message": "Forzar una actualización sobrescribirá cualquier edición local.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Forzar una actualización sobrescribirá cualquier edición local."
},
"updateCheckSkippedLocallyEdited": {
- "message": "Este estilo se editó localmente.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Este estilo se editó localmente."
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "Este estilo podría haber sido editado localmente.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "Este estilo podría haber sido editado localmente."
},
"updateCheckSucceededNoUpdate": {
- "message": "El estilo está actualizado.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "El estilo está actualizado."
},
"updateCompleted": {
- "message": "Actualización completada.",
- "description": "Text that displays when an update completed"
+ "message": "Actualización completada."
},
"updatesCurrentlyInstalled": {
- "message": "Actualizaciones instaladas:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "Por favor, cambie el valor de @name o @namespace para no sobrescribir un estilo existente.",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssConfigIncomplete": {
- "message": "El estilo se actualizó o borró después de que se mostrara el cuadro de diálogo de configuración. Estas variables no se guardaron para evitar corromper los metadatos del estilo:",
- "description": ""
- },
- "usercssEditorNamePlaceholder": {
- "message": "Especifique @name en el código",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateConfirmation": {
- "message": "¿Reemplazar con el código actual la plantilla predeterminada para nuevos estilos Usercss?",
- "description": ""
- },
- "usercssReplaceTemplateName": {
- "message": "@name vacío reemplaza la plantilla predeterminada",
- "description": "The text shown after @name when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "Inserte el código aquí...",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "La versión es más antigua que el estilo instalado.",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "Escribir estilo para:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "este URL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "syncDropboxStyles": {
- "message": "Exportar a Dropbox",
- "description": ""
- },
- "retrieveDropboxSync": {
- "message": "Importar desde Dropbox",
- "description": ""
- },
- "overwriteFileExport": {
- "message": "¿Desea sobrescribir un archivo existente?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "Archivo guardado correctamente",
- "description": ""
- },
- "noFileToImport": {
- "message": "Para importar sus estilos, debe exportarlos primero.",
- "description": ""
- },
- "connectingDropbox": {
- "message": "Conectando a Dropbox....",
- "description": ""
- },
- "connectingDropboxNotAllowed": {
- "message": "La conexión a Dropbox sólo está disponible en aplicaciones instaladas directamente desde la tienda web.",
- "description": ""
- },
- "gettingStyles": {
- "message": "Obteniendo todos los estilos...",
- "description": ""
- },
- "zipStyles": {
- "message": "Comprimiendo los estilos...",
- "description": ""
- },
- "unzipStyles": {
- "message": "Descomprimiendo los estilos...",
- "description": ""
- },
- "readingStyles": {
- "message": "Leyendo los estilos...",
- "description": ""
+ "message": "Actualizaciones instaladas:"
},
"uploadingFile": {
- "message": "Subiendo el archivo....",
- "description": ""
+ "message": "Subiendo el archivo...."
+ },
+ "usercssAvoidOverwriting": {
+ "message": "Por favor, cambia el valor de @name o @namespace para no sobrescribir un estilo existente."
+ },
+ "usercssConfigIncomplete": {
+ "message": "El estilo se actualizó o borró después de que se mostrara el cuadro de diálogo de configuración. Estas variables no se guardaron para evitar corromper los metadatos del estilo:"
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "Especifique @name en el código"
+ },
+ "usercssReplaceTemplateConfirmation": {
+ "message": "¿Reemplazar con el código actual la plantilla predeterminada para nuevos estilos UserCSS?"
+ },
+ "usercssReplaceTemplateName": {
+ "message": "@name vacío reemplaza la plantilla predeterminada"
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "Inserte el código aquí..."
+ },
+ "versionInvalidOlder": {
+ "message": "La versión es más antigua que el estilo instalado."
+ },
+ "writeStyleFor": {
+ "message": "Escribir estilo para:"
+ },
+ "writeStyleForURL": {
+ "message": "este URL"
+ },
+ "zipStyles": {
+ "message": "Comprimiendo los estilos..."
}
}
diff --git a/_locales/et/messages.json b/_locales/et/messages.json
index 57066641..b7057d53 100644
--- a/_locales/et/messages.json
+++ b/_locales/et/messages.json
@@ -1,23 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylus ei saa osadele failitüüpidele ligi pääseda (nt. pdf & json failid)."
+ },
"addStyleLabel": {
- "message": "Kirjuta uus stiil",
- "description": "Label for the button to go to the add style page"
+ "message": "Kirjuta uus stiil"
},
"addStyleTitle": {
- "message": "Lisa stiil",
- "description": "Title of the page for adding styles"
+ "message": "Lisa stiil"
},
"alphaChannel": {
- "message": "Läbipaistmatus",
- "description": "Label of color's opacity"
+ "message": "Läbipaistmatus"
},
"appliesAdd": {
- "message": "Lisa",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Lisa"
},
"appliesDisplay": {
"message": "Rakendub saitidele: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,288 +23,223 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "ja veel",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "ja veel"
},
"appliesDomainOption": {
- "message": "URLid domeenis",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URLid domeenis"
},
"appliesHelp": {
- "message": "Kasuta \"rakendub\" valikuid, et piirata, mis URLidele selles jaotises olev kood rakendub.",
- "description": "Help text for 'applies to' section"
+ "message": "Kasuta \"rakendub\" valikuid, et piirata, mis URLidele selles jaotises olev kood rakendub."
},
"appliesLabel": {
- "message": "Rakendub saitidele",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Rakendub saitidele"
},
"appliesLineWidgetLabel": {
- "message": "Näita 'Rakendub' teavet",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "Näita 'Rakendub' teavet"
},
"appliesLineWidgetWarning": {
- "message": "Ei tööta minimeeritud CSS-iga",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "Ei tööta minimeeritud CSS-iga"
},
"appliesRegexpOption": {
- "message": "Regulaaravaldisele vastavad URLid",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "Regulaaravaldisele vastavad URLid"
},
"appliesRemove": {
- "message": "Eemalda",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Eemalda"
},
"appliesRemoveError": {
- "message": "Viimast 'rakendub'-sisestust ei saa eemaldada",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "Viimast 'rakendub'-sisestust ei saa eemaldada"
},
"appliesSpecify": {
- "message": "Täpsusta",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Täpsusta"
},
"appliesToEverything": {
- "message": "Kõik",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Kõik"
},
"appliesUrlPrefixOption": {
- "message": "URLid algusega",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URLid algusega"
},
"applyAllUpdates": {
- "message": "Rakenda kõik uuendused",
- "description": "Label for the button to apply all detected updates"
+ "message": "Rakenda kõik uuendused"
},
"author": {
- "message": "Autor",
- "description": "Label for the style author"
+ "message": "Autor"
},
"backupButtons": {
- "message": "Varunda",
- "description": "Heading for backup"
+ "message": "Varunda"
},
"backupMessage": {
- "message": "Vali fail või lohista see siia lehele.",
- "description": "Message for backup"
+ "message": "Vali fail või lohista see siia lehele."
},
"bckpInstStyles": {
- "message": "Ekspordi stiilid",
- "description": ""
+ "message": "Ekspordi stiilid"
},
"checkAllUpdates": {
- "message": "Kontrolli kõikide stiilide uuendusi",
- "description": "Label for the button to check all styles for updates"
+ "message": "Kontrolli kõikide stiilide uuendusi"
},
"checkAllUpdatesForce": {
- "message": "Kontrolli uuesti, ma ei muutnud ühtegi stiili!",
- "description": "Label for the button to apply all detected updates"
+ "message": "Kontrolli uuesti, ma ei muutnud ühtegi stiili!"
},
"checkForUpdate": {
- "message": "Kontrolli uuendusi",
- "description": "Label for the button to check a single style for an update"
+ "message": "Kontrolli uuendusi"
},
"checkingForUpdate": {
- "message": "Kontrollin...",
- "description": "Text to display when checking a style for an update"
+ "message": "Kontrollin..."
},
"clickToUninstall": {
- "message": "Eemaldamiseks klõpsa",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Eemaldamiseks klõpsa"
},
"cm_autoCloseBrackets": {
- "message": "Automaatselt sulge sulud ja jutumärgid",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automaatselt sulge sulud ja jutumärgid"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Automaatselt lisab sulgeva paarilise, kui kirjutad avava ühest järgnevast: ()[]{}''\"\"",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automaatselt lisab sulgeva paarilise, kui kirjutad avava ühest järgnevast: ()[]{}''\"\""
},
"cm_autocompleteOnTyping": {
- "message": "Automaattäide kirjutamisel",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automaattäide kirjutamisel"
},
"cm_colorpicker": {
- "message": "CSS-värvide värvivalijad",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "CSS-värvide värvivalijad"
},
"cm_indentWithTabs": {
- "message": "Kasuta tabeldusmärke targa taandega",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Kasuta tabeldusmärke targa taandega"
},
"cm_keyMap": {
- "message": "Klahvimäärangud",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Klahvimäärangud"
},
"cm_lineWrapping": {
- "message": "Reamurdmine",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Reamurdmine"
},
"cm_matchHighlight": {
- "message": "Tõsta esile",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Tõsta esile"
},
"cm_matchHighlightSelection": {
- "message": "Ainult valik",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Ainult valik"
},
"cm_matchHighlightToken": {
- "message": "Kursori all olev sõne",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Kursori all olev sõne"
},
"cm_resizeGripHint": {
- "message": "Topeltklõpsa, et maksimeerida/taastada kõrgus",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Topeltklõpsa, et maksimeerida/taastada kõrgus"
},
"cm_selectByTokens": {
- "message": "Topeltklõps valib sõnesid",
- "description": "Label for the checkbox in the editor."
+ "message": "Topeltklõps valib sõnesid"
},
"cm_selectByTokensTooltip": {
- "message": "Sõnede näited: .foo-bar-2 #aabbcc 0.32 !important\nKeelamisel valitakse punktidega eraldatud sõnad.",
- "description": ""
+ "message": "Sõnede näited: .foo-bar-2 #aabbcc 0.32 !important\nKeelamisel valitakse punktidega eraldatud sõnad."
},
"cm_smartIndent": {
- "message": "Kasuta tarka taanet",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Kasuta tarka taanet"
},
"cm_tabSize": {
- "message": "Tabeldussuurus",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Tabeldussuurus"
},
"cm_theme": {
- "message": "Teema",
- "description": "Label for the style editor's CSS theme."
+ "message": "Teema"
},
"colorpickerSwitchFormatTooltip": {
- "message": "Vaheta formaate: HEX -> RGB -> HSL.\nShift-klõps vastupidise suuna jaoks.\nSamuti klahvidega PgUp (PageUp), PgDn (PageDown).",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "Vaheta formaate: HEX -> RGB -> HSL.\nShift-klõps vastupidise suuna jaoks.\nSamuti klahvidega PgUp (PageUp), PgDn (PageDown)."
},
"colorpickerTooltip": {
- "message": "Ava värvivalija",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Ava värvivalija"
},
"configOnChange": {
- "message": "muutmisel",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "muutmisel"
},
"configOnChangeTooltip": {
- "message": "Automaatselt salvesta ja rakenda muudatused",
- "description": ""
+ "message": "Automaatselt salvesta ja rakenda muudatused"
},
"configureStyle": {
- "message": "Seadista",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "Seadista"
},
"configureStyleOnHomepage": {
- "message": "Seadista kodulehel",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "Seadista kodulehel"
},
"confirmCancel": {
- "message": "Tühista",
- "description": ""
+ "message": "Tühista"
},
"confirmClose": {
- "message": "Sulge",
- "description": "'Close' button in a confirm dialog"
+ "message": "Sulge"
},
"confirmDefault": {
- "message": "Kasuta vaikesätet",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "Kasuta vaikesätet"
},
"confirmDelete": {
- "message": "Kustuta",
- "description": ""
+ "message": "Kustuta"
},
"confirmDiscardChanges": {
- "message": "Tühistada muudatused?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "Tühistada muudatused?"
},
"confirmNo": {
- "message": "Ei",
- "description": "'No' button in a confirm dialog"
+ "message": "Ei"
},
"confirmSave": {
- "message": "Salvesta",
- "description": "'Save' button in a confirm dialog"
+ "message": "Salvesta"
},
"confirmStop": {
- "message": "Peata",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Peata"
},
"confirmYes": {
- "message": "Jah",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Jah"
+ },
+ "connectingDropbox": {
+ "message": "Dropboxiga ühendumine..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "Dropboxiga ühendumine on saadaval ainult veebipoe kaudu installitud rakendustes"
},
"copied": {
- "message": "Kopeeritud lõikelauale",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "Kopeeritud lõikelauale"
},
"copy": {
- "message": "Kopeeri lõikelauale",
- "description": "Tooltip for elements which can be copied"
+ "message": "Kopeeri lõikelauale"
},
"dateInstalled": {
- "message": "Paigaldamise kuupäev",
- "description": "Option text for the user to sort the style by install date"
+ "message": "Paigaldamise kuupäev"
},
"dateUpdated": {
- "message": "Uuendamise kuupäev",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "Uuendamise kuupäev"
},
"dbError": {
- "message": "Stylus'i andmebaasi uuendamisel esines viga. Kas soovid külastada võimalike lahendustega veebilehte?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Stylus'i andmebaasi uuendamisel esines viga. Kas soovid külastada võimalike lahendustega veebilehte?"
},
"defaultTheme": {
- "message": "vaikimisi",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "vaikimisi"
},
"deleteStyleConfirm": {
- "message": "Kas soovid kindlasti selle stiili kustutada?",
- "description": "Confirmation before deleting a style"
+ "message": "Kas soovid kindlasti selle stiili kustutada?"
},
"deleteStyleLabel": {
- "message": "Kustuta",
- "description": "Label for the button to delete a style"
+ "message": "Kustuta"
},
"description": {
- "message": "Disaini veeb ümber kasutajastiilide halduri Stylus'iga. Stylus võimaldab sul lihtsalt paigaldada teemasid ja välimusi mitmetele populaarsetele saitidele.",
- "description": "Extension description"
+ "message": "Disaini veeb ümber kasutajastiilide halduri Stylus'iga. Stylus võimaldab sul lihtsalt paigaldada teemasid ja välimusi mitmetele populaarsetele saitidele."
},
"disableAllStyles": {
- "message": "Lülita kõik stiilid välja",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Lülita kõik stiilid välja"
},
"disableStyleLabel": {
- "message": "Keela",
- "description": "Label for the button to disable a style"
+ "message": "Keela"
},
"dragDropMessage": {
- "message": "Lohista importimiseks oma varundusfail kuskile siia lehele.",
- "description": "Drag'n'drop message"
+ "message": "Lohista importimiseks oma varundusfail kuskile siia lehele."
},
"dragDropUsercssTabstrip": {
- "message": "Faili installimiseks lohista see kaartide ribale (ala, kus näidatakse kaartide pealkirju).",
- "description": "Message popup shown when erroneously dropping a usercss file into the manager page"
+ "message": "Faili installimiseks lohista see kaartide ribale (ala, kus näidatakse kaartide pealkirju)."
},
"editDeleteText": {
- "message": "Kustuta",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Kustuta"
},
"editGotoLine": {
- "message": "Mine reale (või rida:tulp)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Mine reale (või rida:tulp)"
},
"editStyleHeading": {
- "message": "Muuda stiili",
- "description": "Title of the page for editing styles"
+ "message": "Muuda stiili"
},
"editStyleLabel": {
- "message": "Muuda",
- "description": "Label for the button to go to the edit style page"
+ "message": "Muuda"
},
"editStyleTitle": {
"message": "Muuda stiili $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -314,220 +247,174 @@
}
},
"enableStyleLabel": {
- "message": "Luba",
- "description": "Label for the button to enable a style"
+ "message": "Luba"
},
"excludeStyleByDomainLabel": {
- "message": "Välista praegune domeen",
- "description": ""
+ "message": "Välista praegune domeen"
},
"excludeStyleByUrlLabel": {
- "message": "Välista praegune URL",
- "description": ""
+ "message": "Välista praegune URL"
},
"exportLabel": {
- "message": "Ekspordi",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Ekspordi"
+ },
+ "exportSavedSuccess": {
+ "message": "Fail edukalt salvestatud"
},
"externalFeedback": {
- "message": "Tagasiside",
- "description": "Label for the external link to send feedback for the style"
+ "message": "Tagasiside"
},
"externalHomepage": {
- "message": "Koduleht",
- "description": "Label for the external link to style's homepage"
+ "message": "Koduleht"
},
"externalLink": {
- "message": "Väline link",
- "description": "Label for external links"
+ "message": "Väline link"
},
"externalSupport": {
- "message": "Kasutajatugi",
- "description": "Label for the external link to style's support site"
+ "message": "Kasutajatugi"
},
"externalUsercssDocument": {
- "message": "Usercss dokumentatsioon",
- "description": "Label for the external link to usercss documentation"
+ "message": "Usercss dokumentatsioon"
},
"filteredStyles": {
"message": "$numShown$/$numTotal$ kuvatud",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "Hetkel rakendatud filtritele ei vasta ükski stiil",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "Hetkel rakendatud filtritele ei vasta ükski stiil"
},
"findStyles": {
- "message": "Leia stiile",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Leia stiile"
},
"findStylesForSite": {
- "message": "Leia sellele saidile veel stiile",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Leia sellele saidile veel stiile"
},
"findStylesInline": {
- "message": "Aknasisene",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "Aknasisene"
},
"findStylesInlineTooltip": {
- "message": "Näita otsingu tulemusi selles aknas.",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "Näita otsingu tulemusi selles aknas."
},
"genericAdd": {
- "message": "Lisa",
- "description": "Used in various places for an action that adds something"
+ "message": "Lisa"
},
"genericClone": {
- "message": "Klooni",
- "description": "Used in various places for an action that clones something"
+ "message": "Klooni"
},
"genericDisabledLabel": {
- "message": "Keelatud",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Keelatud"
},
"genericEnabledLabel": {
- "message": "Lubatud",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "Lubatud"
},
"genericError": {
- "message": "Viga",
- "description": "Used in various places to indicate some error occurred."
+ "message": "Viga"
},
"genericHistoryLabel": {
- "message": "Ajalugu",
- "description": "Used in various places to show a history log of something"
+ "message": "Ajalugu"
},
"genericNext": {
- "message": "Järgmine",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "Järgmine"
},
"genericPrevious": {
- "message": "Eelmine",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "Eelmine"
},
"genericResetLabel": {
- "message": "Lähtesta",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "Lähtesta"
},
"genericSavedMessage": {
- "message": "Salvestatud",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "Salvestatud"
},
"genericTitle": {
- "message": "Pealkiri",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "Pealkiri"
},
"genericUnknown": {
- "message": "Tundmatu",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "Tundmatu"
+ },
+ "gettingStyles": {
+ "message": "Kõigi stiilide hankimine..."
},
"helpAlt": {
- "message": "Abi",
- "description": "Alternate text for help buttons"
+ "message": "Abi"
},
"helpKeyMapCommand": {
- "message": "Kirjuta käsu nimi",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Kirjuta käsu nimi"
},
"helpKeyMapHotkey": {
- "message": "Vajuta kiirklahvi",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Vajuta kiirklahvi"
},
"hostDisabled": {
- "message": "See host on keelatud hetkel kasutatavas brauseri praeguses versioonis oleva vea tõttu",
- "description": "Tooltip for cloud host disabled"
+ "message": "See host on keelatud hetkel kasutatavas brauseri praeguses versioonis oleva vea tõttu"
},
"importAppendLabel": {
- "message": "Lisa stiilile",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Lisa stiilile"
},
"importAppendTooltip": {
- "message": "Lisa imporditud stiil praegusele stiilile",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Lisa imporditud stiil praegusele stiilile"
},
"importLabel": {
- "message": "Impordi",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Impordi"
},
"importReplaceLabel": {
- "message": "Kirjuta stiil üle",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Kirjuta stiil üle"
},
"importReplaceTooltip": {
- "message": "Tühista praeguse stiili sisu ja kirjuta see üle imporditud stiiliga",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Tühista praeguse stiili sisu ja kirjuta see üle imporditud stiiliga"
},
"importReportLegendAdded": {
- "message": "lisatud",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "lisatud"
},
"importReportLegendIdentical": {
- "message": "identset vahele jäetud",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "identset vahele jäetud"
},
"importReportLegendInvalid": {
- "message": "sobimatut vahele jäetud",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "sobimatut vahele jäetud"
},
"importReportLegendUpdatedBoth": {
- "message": "said uuenduse nii metaandmetele kui koodile",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "said uuenduse nii metaandmetele kui koodile"
},
"importReportLegendUpdatedCode": {
- "message": "uuendatud kood",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "uuendatud kood"
},
"importReportLegendUpdatedMeta": {
- "message": "metainfo uuendatud",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "metainfo uuendatud"
},
"importReportTitle": {
- "message": "Stiilide importimine lõpetatud",
- "description": "Title of the report shown after importing styles"
+ "message": "Stiilide importimine lõpetatud"
},
"importReportUnchanged": {
- "message": "Midagi ei muudetud.",
- "description": "Message in the report shown after importing styles"
+ "message": "Midagi ei muudetud."
},
"importReportUndone": {
- "message": "stiili võeti tagasi",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "stiili võeti tagasi"
},
"importReportUndoneTitle": {
- "message": "Importimine on tagasi võetud",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "Importimine on tagasi võetud"
},
"installButton": {
- "message": "Paigalda stiil",
- "description": "Label for install button"
+ "message": "Paigalda stiil"
},
"installButtonInstalled": {
- "message": "Stiil paigaldatud",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Stiil paigaldatud"
},
"installButtonReinstall": {
- "message": "Paigalda stiil uuesti",
- "description": "Label for reinstall button"
+ "message": "Paigalda stiil uuesti"
},
"installButtonUpdate": {
- "message": "Uuenda stiil",
- "description": "Label for update button"
+ "message": "Uuenda stiil"
},
"installUpdate": {
- "message": "Paigalda uuendus",
- "description": "Label for the button to install an update for a single style"
+ "message": "Paigalda uuendus"
},
"installUpdateFrom": {
"message": "Praegu uuendatakse stiili aadressilt $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -535,32 +422,25 @@
}
},
"installUpdateFromLabel": {
- "message": "Kontrolli uuendusi",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Kontrolli uuendusi"
},
"license": {
- "message": "Litsents",
- "description": "Label for the license"
+ "message": "Litsents"
},
"linkGetHelp": {
- "message": "Hangi abi",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Hangi abi"
},
"linkGetStyles": {
- "message": "Hangi stiile",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Hangi stiile"
},
"linkStylusWiki": {
- "message": "Viki",
- "description": "Wiki link text on the manage page e.g. https://github.com/openstyles/stylus/wiki"
+ "message": "Viki"
},
"linkTranslate": {
- "message": "Tõlgi",
- "description": "Transifex link text on the manage page"
+ "message": "Tõlgi"
},
"linterCSSLintIncompatible": {
"message": "CSSLint ei toeta eeltöötlejat $preprocessorname$",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -568,12 +448,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(Määra reegel kui: 0 = keelatud; 1 = hoiatus; 2 = viga)",
- "description": "CSSLint rule config values"
+ "message": "(Määra reegel kui: 0 = keelatud; 1 = hoiatus; 2 = viga)"
},
"linterConfigPopupTitle": {
"message": "Linteri $linter$ reeglite seadistuse määramine",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -581,20 +459,16 @@
}
},
"linterConfigTooltip": {
- "message": "Selle linteri seadistamiseks klõpsa",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Selle linteri seadistamiseks klõpsa"
},
"linterInvalidConfigError": {
- "message": "Ei salvestatud nende vigaste seadistuste tõttu:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "Ei salvestatud nende vigaste seadistuste tõttu:"
},
"linterIssues": {
- "message": "Vead",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Vead"
},
"linterIssuesHelp": {
"message": "$link$ leidis need vead:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -602,100 +476,76 @@
}
},
"linterJSONError": {
- "message": "Vigane JSON-formaat",
- "description": "Setting linter config with invalid JSON"
+ "message": "Vigane JSON-formaat"
},
"linterResetMessage": {
- "message": "Kogemata tehtud lähtestamiste tagasi võtmiseks vajuta tekstikastis Ctrl-Z (või Cmd-Z)",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "Kogemata tehtud lähtestamiste tagasi võtmiseks vajuta tekstikastis Ctrl-Z (või Cmd-Z)"
},
"linterRulesLink": {
- "message": "Vaata reeglite täielikku loendit",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Vaata reeglite täielikku loendit"
},
"liveReloadError": {
- "message": "Faili vaatamisel esines viga",
- "description": "The label of live-reload error"
+ "message": "Faili vaatamisel esines viga"
},
"liveReloadLabel": {
- "message": "Reaalajas uuestilaadimine",
- "description": "The label of live-reload feature"
+ "message": "Reaalajas uuestilaadimine"
},
"manageFavicons": {
- "message": "Lehe ikoonid rakendub-tulbas",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Lehe ikoonid rakendub-tulbas"
},
"manageFaviconsGray": {
- "message": "Tee halliks",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Tee halliks"
},
"manageFaviconsHelp": {
- "message": "Stylus kasutab välist teenust https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus kasutab välist teenust https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "Filtrid",
- "description": "Label for filters container"
+ "message": "Filtrid"
},
"manageHeading": {
- "message": "Paigaldatud stiilid",
- "description": "Heading for the manage page"
+ "message": "Paigaldatud stiilid"
},
"manageMaxTargets": {
- "message": "Rakendub-üksuste arv",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "Rakendub-üksuste arv"
},
"manageNewStyleAsUsercss": {
- "message": "Usercss-ina",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "Usercss-ina"
},
"manageNewUI": {
- "message": "Uus haldusliidese välimus",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Uus haldusliidese välimus"
},
"manageOnlyDisabled": {
- "message": "Ainult keelatud stiilid",
- "description": "Checkbox to show only disabled styles"
+ "message": "Ainult keelatud stiilid"
},
"manageOnlyEnabled": {
- "message": "Ainult lubatud stiilid",
- "description": "Checkbox to show only enabled styles"
+ "message": "Ainult lubatud stiilid"
},
"manageOnlyExternal": {
- "message": "Ainult välised stiilid",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Ainult välised stiilid"
},
"manageOnlyLocal": {
- "message": "Ainult kohalikult loodud stiilid",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Ainult kohalikult loodud stiilid"
},
"manageOnlyLocalTooltip": {
- "message": "(stiilid, mida ei paigaldatud lehelt userstyles.org)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(stiilid, mida ei paigaldatud lehelt userstyles.org)"
},
"manageOnlyNonUsercss": {
- "message": "Ainult mitte-Usercss stiilid",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Ainult mitte-Usercss stiilid"
},
"manageOnlyUpdates": {
- "message": "Ainult uuenduste või vigadega",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Ainult uuenduste või vigadega"
},
"manageOnlyUsercss": {
- "message": "Ainult Usercss stiilid",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Ainult Usercss stiilid"
},
"menuShowBadge": {
- "message": "Kuva aktiivsete stiilide hulka",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Kuva aktiivsete stiilide hulka"
},
"meta_invalidCheckboxDefault": {
- "message": "Vigane @var märkeruut: väärtus peab olema 0 või 1",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "Vigane @var märkeruut: väärtus peab olema 0 või 1"
},
"meta_invalidColor": {
"message": "Vigane @var värv: $color$ pole värv",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
@@ -704,34 +554,6 @@
},
"meta_invalidRange": {
"message": "Vigane @var $type$: väärtus peab olema arv või massiiv",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "Vigane @var $type$: määratletud on mitu ühikut",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "Vigane @var $type$: massiiv sisaldab liiga palju elemente",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMin": {
- "message": "Vigane @var $type$: vaikimisi väärtus on miinimumist madalam",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -740,7 +562,30 @@
},
"meta_invalidRangeMax": {
"message": "Vigane @var $type$: vaikimisi väärtus on maksimumist suurem",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMin": {
+ "message": "Vigane @var $type$: vaikimisi väärtus on miinimumist madalam",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "Vigane @var $type$: määratletud on mitu ühikut",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "Vigane @var $type$: massiiv sisaldab liiga palju elemente",
"placeholders": {
"type": {
"content": "$1"
@@ -749,7 +594,6 @@
},
"meta_invalidRangeUnits": {
"message": "Vigane @var $type$: '$units$' pole lubatud ühik",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -761,7 +605,6 @@
},
"meta_invalidURLProtocol": {
"message": "Vigane URL protokoll. Lubatud on ainult http ja https: $protocol$",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
@@ -770,7 +613,6 @@
},
"meta_missingMandatory": {
"message": "Kohustuslikud metaandmed puudu: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -779,16 +621,22 @@
},
"meta_unknownMeta": {
"message": "Tundmatud metaandmed: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
}
},
+ "meta_unknownPreprocessor": {
+ "message": "Tundmatu @preprocessor: $preprocessor$",
+ "placeholders": {
+ "preprocessor": {
+ "content": "$1"
+ }
+ }
+ },
"meta_unknownVarType": {
"message": "Tundmatu @$varkey$ tüüp: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -798,390 +646,293 @@
}
}
},
- "meta_unknownPreprocessor": {
- "message": "Tundmatu @preprocessor: $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
- "placeholders": {
- "preprocessor": {
- "content": "$1"
- }
- }
+ "noFileToImport": {
+ "message": "Oma stiilide importimiseks peaksid esmalt selle eksportima."
},
"noStylesForSite": {
- "message": "Sellele saidile pole stiile paigaldatud.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Sellele saidile pole stiile paigaldatud."
},
"openManage": {
- "message": "Halda",
- "description": "Link to open the manage page."
+ "message": "Halda"
},
"openOptions": {
- "message": "Valikud",
- "description": "Go to Options UI"
+ "message": "Valikud"
},
"openStylesManager": {
- "message": "Ava stiilihaldur",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "Ava stiilihaldur"
},
"optionsActions": {
- "message": "Tegevused",
- "description": ""
+ "message": "Tegevused"
},
"optionsAdvanced": {
- "message": "Täpsem",
- "description": ""
+ "message": "Täpsem"
},
"optionsAdvancedContextDelete": {
- "message": "Lisa \"Kustuta\" redaktori kontekstmenüüsse",
- "description": ""
+ "message": "Lisa \"Kustuta\" redaktori kontekstmenüüsse"
},
"optionsAdvancedExposeIframes": {
- "message": "Paljasta iframe-id HTML[stylus-iframe] kaudu",
- "description": ""
+ "message": "Paljasta iframe-id HTML[stylus-iframe] kaudu"
},
"optionsAdvancedExposeIframesNote": {
- "message": "Paljastab tipp-domeeni igas iframe'is.\nVõimaldab iframe'i-põhise CSS-koodi kirjutamise näiteks selliselt:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }",
- "description": "Add attribute to iframe; make sure to include the double $$ in the css example, or the `$=` will be omitted in the displayed text."
+ "message": "Paljastab tipp-domeeni igas iframe'is.\nVõimaldab iframe'i-põhise CSS-koodi kirjutamise näiteks selliselt:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "Kirjuta uus stiil usercss-ina",
- "description": ""
+ "message": "Kirjuta uus stiil usercss-ina"
},
"optionsBadgeDisabled": {
- "message": "Taustavärv keelatud olekus",
- "description": ""
+ "message": "Taustavärv keelatud olekus"
},
"optionsBadgeNormal": {
- "message": "Taustavärv",
- "description": ""
+ "message": "Taustavärv"
},
"optionsCheck": {
- "message": "Uuenda stiile",
- "description": ""
+ "message": "Uuenda stiile"
},
"optionsCheckUpdate": {
- "message": "Kontrolli ja paigalda kõik saadaolevad uuendused",
- "description": ""
+ "message": "Kontrolli ja paigalda kõik saadaolevad uuendused"
},
"optionsCustomizeBadge": {
- "message": "Number tööriistaribaikoonil",
- "description": ""
+ "message": "Number tööriistaribaikoonil"
},
"optionsCustomizeIcon": {
- "message": "Tööriistaribaikoon",
- "description": ""
+ "message": "Tööriistaribaikoon"
},
"optionsCustomizePopup": {
- "message": "Hüpikaken",
- "description": ""
- },
- "optionsCustomizeUpdate": {
- "message": "Uuendused",
- "description": ""
+ "message": "Hüpikaken"
},
"optionsCustomizeSync": {
- "message": "Sünkrooni pilve",
- "description": ""
+ "message": "Sünkrooni pilve"
+ },
+ "optionsCustomizeUpdate": {
+ "message": "Uuendused"
},
"optionsHeading": {
- "message": "Valikud",
- "description": "Heading for options section on manage page."
+ "message": "Valikud"
},
"optionsIconDark": {
- "message": "Tumedad brauseriteemad",
- "description": ""
+ "message": "Tumedad brauseriteemad"
},
"optionsIconLight": {
- "message": "Heledad brauseriteemad",
- "description": ""
+ "message": "Heledad brauseriteemad"
},
"optionsOpen": {
- "message": "Ava",
- "description": ""
+ "message": "Ava"
},
"optionsOpenManager": {
- "message": "Halda stiile",
- "description": ""
+ "message": "Halda stiile"
},
"optionsPopupWidth": {
- "message": "Hüpikakna laius (pikslites)",
- "description": ""
+ "message": "Hüpikakna laius (pikslites)"
},
"optionsReset": {
- "message": "Lähtesta valikud vaikeväärtustele",
- "description": ""
+ "message": "Lähtesta valikud vaikeväärtustele"
},
"optionsResetButton": {
- "message": "Lähtesta valikud",
- "description": ""
+ "message": "Lähtesta valikud"
},
"optionsSubheading": {
- "message": "Rohkem valikuid",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "Kui impordid stiilide varundusi vanast versioonist või Stylish'ist, tee ühekordne käsitsi uuenduste kontroll stiilide halduris, et veenduda kõikide stiilide ajakohasuses.",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "Kasutajastiilide automaatse uuendamise ajavahe (keelamiseks pane 0)",
- "description": ""
+ "message": "Rohkem valikuid"
},
"optionsSyncNone": {
- "message": "Pole",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "Sünkrooni kohe",
- "description": ""
- },
- "optionsSyncStatusSyncing": {
- "message": "Sünkroonimine...",
- "description": ""
- },
- "optionsSyncStatusConnecting": {
- "message": "Ühendumine...",
- "description": ""
+ "message": "Pole"
},
"optionsSyncStatusConnected": {
- "message": "Ühendatud",
- "description": ""
+ "message": "Ühendatud"
},
- "optionsSyncStatusDisconnecting": {
- "message": "Lahtiühendamine...",
- "description": ""
+ "optionsSyncStatusConnecting": {
+ "message": "Ühendumine..."
},
"optionsSyncStatusDisconnected": {
- "message": "Lahti ühendatud",
- "description": ""
+ "message": "Lahti ühendatud"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "Lahtiühendamine..."
+ },
+ "optionsSyncStatusSyncing": {
+ "message": "Sünkroonimine..."
+ },
+ "optionsSyncSyncNow": {
+ "message": "Sünkrooni kohe"
+ },
+ "optionsUpdateImportNote": {
+ "message": "Kui impordid stiilide varundusi vanast versioonist või Stylish'ist, tee ühekordne käsitsi uuenduste kontroll stiilide halduris, et veenduda kõikide stiilide ajakohasuses."
+ },
+ "optionsUpdateInterval": {
+ "message": "Kasutajastiilide automaatse uuendamise ajavahe (keelamiseks pane 0)"
+ },
+ "overwriteFileExport": {
+ "message": "Kas tahad olemasoleva faili üle kirjutada?"
},
"paginationCurrent": {
- "message": "Praegune leht",
- "description": "Tooltip for the current page index in search results"
+ "message": "Praegune leht"
},
"paginationEstimated": {
- "message": "Hinnanguline lehtede arv",
- "description": "Tooltip for the total page count in search results"
+ "message": "Hinnanguline lehtede arv"
},
"paginationNext": {
- "message": "Järgmine leht",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "Järgmine leht"
},
"paginationPrevious": {
- "message": "Eelmine leht",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "Eelmine leht"
},
"paginationTotal": {
- "message": "Lehti kokku",
- "description": ""
+ "message": "Lehti kokku"
},
"parseUsercssError": {
- "message": "Stylus ei suutnud usercss-i analüüsida:",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "Stylus ei suutnud usercss-i analüüsida:"
},
"popupBorders": {
- "message": "Lisa äärtesse valged piirjooned",
- "description": ""
+ "message": "Lisa äärtesse valged piirjooned"
},
"popupBordersTooltip": {
- "message": "Kasulik tumedate teemade puhul Chrome'is, kuna see ei joonista enam külje piirjooni",
- "description": ""
+ "message": "Kasulik tumedate teemade puhul Chrome'is, kuna see ei joonista enam külje piirjooni"
},
"popupHotkeysInfo": {
- "message": "<1>-<9>, <0>, ka numbriklahvidel - lülitab N. stiili (0 on 10)\n- lülitab esimest stiili, mille nimi algab selle tähega\n avab redaktori lülitamise asemel\n lubab nimekirjas olevad stiilid\n keelab nimekirjas olevad stiilid\n ja <`> (graavis) - lülitab esialgu lubatud stiilid; ei rakendu järgnevalt lubatud stiilidele hüpiku avatud olekus, seega saad taastada esialgse valiku peale asjade testimist: lihtsalt keela kõik ning lülita, seega \nRohkem teavet vikis",
- "description": "NOTE1: preserve < and > symbols so that is styled as a key.\nNOTE2: the last line is displayed as a text of the link to the wiki page.\nNOTE3: this is the list of hotkeys displayed after clicking the right edge of the extension popup."
+ "message": "<1>-<9>, <0>, ka numbriklahvidel - lülitab N. stiili (0 on 10)\n- lülitab esimest stiili, mille nimi algab selle tähega\n avab redaktori lülitamise asemel\n lubab nimekirjas olevad stiilid\n keelab nimekirjas olevad stiilid\n ja <`> (graavis) - lülitab esialgu lubatud stiilid; ei rakendu järgnevalt lubatud stiilidele hüpiku avatud olekus, seega saad taastada esialgse valiku peale asjade testimist: lihtsalt keela kõik ning lülita, seega \nRohkem teavet vikis"
},
"popupHotkeysTooltip": {
- "message": "Kiirklahvide nägemiseks klõpsa",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "Kiirklahvide nägemiseks klõpsa"
},
"popupManageTooltip": {
- "message": "Shift+klõps või paremklõps avab halduri praeguse saidi kohta käivate stiilidega",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Shift+klõps või paremklõps avab halduri praeguse saidi kohta käivate stiilidega"
},
"popupMenuButtonTooltip": {
- "message": "Tegevuste menüü",
- "description": "Tooltip for menu button in popup."
+ "message": "Tegevuste menüü"
},
"popupOpenEditInWindow": {
- "message": "Ava redaktor uues aknas",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Ava redaktor uues aknas"
},
"popupOpenEditInWindowTooltip": {
- "message": "Lubatakse ka redaktori kaardi veebilehitseja aknast eraldamisel,\nja keelatakse üksiku redaktori kaardi haakimisel teise aknasse.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Lubatakse ka redaktori kaardi veebilehitseja aknast eraldamisel,\nja keelatakse üksiku redaktori kaardi haakimisel teise aknasse."
},
"popupStylesFirst": {
- "message": "Stiilid enne käske",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "Stiilid enne käske"
},
"prefShowBadge": {
- "message": "Praegusel saidil aktiivsete stiilide arv",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Praegusel saidil aktiivsete stiilide arv"
},
"previewLabel": {
- "message": "Reaalajas eelvaade",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "Reaalajas eelvaade"
},
"previewTooltip": {
- "message": "Ajutiselt rakendab muudatused ilma salvestamata.\nMuudatuste püsivaks tegemiseks salvesta stiil.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "Ajutiselt rakendab muudatused ilma salvestamata.\nMuudatuste püsivaks tegemiseks salvesta stiil."
+ },
+ "readingStyles": {
+ "message": "Stiilide lugemine..."
},
"replace": {
- "message": "Asenda",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Asenda"
},
"replaceAll": {
- "message": "Asenda kõik",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Asenda kõik"
},
"replaceWith": {
- "message": "Asenda tekstiga",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Asenda tekstiga"
},
"retrieveBckp": {
- "message": "Impordi stiilid",
- "description": ""
+ "message": "Impordi stiilid"
+ },
+ "retrieveDropboxSync": {
+ "message": "Dropboxi importimine"
},
"search": {
- "message": "Otsi",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Otsi"
},
"searchCaseSensitive": {
- "message": "Tõstutundlik",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "Tõstutundlik"
},
"searchNumberOfResults": {
- "message": "Vastete arv",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Vastete arv"
},
"searchNumberOfResults2": {
- "message": "Vasteid koodis ja rakendub-üksuste väärtustes",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Vasteid koodis ja rakendub-üksuste väärtustes"
},
"searchRegexp": {
- "message": "Kasuta /re/ süntaksit regulaaravaldise otsinguks",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "Kasuta /re/ süntaksit regulaaravaldise otsinguks"
},
"searchResultInstallCount": {
- "message": "Paigaldusi kokku",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "Paigaldusi kokku"
},
"searchResultNoneFound": {
- "message": "Sellele saidile ei leitud stiile.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "Sellele saidile ei leitud stiile."
},
"searchResultRating": {
- "message": "Hinnang",
- "description": "Text for label that shows the search result's rating"
+ "message": "Hinnang"
},
"searchResultUpdated": {
- "message": "Uuendatud",
- "description": "Text for label that shows the search result's last update date"
+ "message": "Uuendatud"
},
"searchResultWeeklyCount": {
- "message": "Paigaldus nädalas",
- "description": "Text for label that shows the number of times a search result was installed during last week"
- },
- "searchStyles": {
- "message": "Otsi sisu",
- "description": "Label for the search filter textbox on the Manage styles page"
- },
- "searchStylesHelp": {
- "message": "> klahv fokuseerib otsinguvälja.\nLihttekst: otsi nimest, koodist, kodulehe URList ja rakendatavatest saitidest. Sõnu alla 3 tähemärgi ignoreeritakse.\nVastav URL: kasuta otsingus eesliidet , nt \nRegulaaravaldised sisaldavad kaldkriipse ja lippe, nt \nTäpsed sõnad: kirjuta väljendi ümber jutumärgid, nt <\".header ~ div\">",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
+ "message": "Paigaldus nädalas"
},
"sectionAdd": {
- "message": "Lisa uus jaotis",
- "description": "Label for the button to add a section"
+ "message": "Lisa uus jaotis"
},
"sectionCode": {
- "message": "Kood",
- "description": "Label for the code for a section"
+ "message": "Kood"
},
"sectionRemove": {
- "message": "Eemalda jaotis",
- "description": "Label for the button to remove a section"
+ "message": "Eemalda jaotis"
},
"sectionRestore": {
- "message": "Taasta eemaldatud jaotis",
- "description": "Label for the button to restore a removed section"
+ "message": "Taasta eemaldatud jaotis"
},
"shortcuts": {
- "message": "Otseteed",
- "description": "Go to shortcut configuration"
+ "message": "Otseteed"
},
"shortcutsNote": {
- "message": "Defineeri klaviatuuriotseteed",
- "description": ""
+ "message": "Defineeri klaviatuuriotseteed"
},
"sortDateNewestFirst": {
- "message": "uuemad eespool",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "uuemad eespool"
},
"sortDateOldestFirst": {
- "message": "vanemad eespool",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "vanemad eespool"
},
"sortLabel": {
- "message": "Vali, milline järjestus paigaldatud stiilidele rakendada",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "Vali, milline järjestus paigaldatud stiilidele rakendada"
},
"sortLabelTitleAsc": {
- "message": "Pealkiri tõusvas järjestuses",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "Pealkiri tõusvas järjestuses"
},
"sortLabelTitleDesc": {
- "message": "Pealkiri laskuvas järjestuses",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "Pealkiri laskuvas järjestuses"
},
"sortStylesHelp": {
- "message": "Vali paigaldatud üksustele rakendatav sorteerimismeetod sorteerimise rippmenüüst. Vaikimisi seadistus rakendab kasvava sorteerimise (A-st Z-ni) üksuste pealkirjades. Sorteerimised grupis \"Kahanev pealkiri\" rakendavad pealkirjale kahaneva sorteerimise (Z-st A-ni).\nOn olemas ka teisi eelseadistusi, mis võimaldavad üksuste sorteerimist mitme kriteeriumi järgi. Mõtle sellest, nagu sorteeriksid mitme veeruga tabelit ja iga kategooria valikus (plussmärkide vahel) tähistab veergu või gruppi.\nNäiteks, kui valik on \"Lubatud (esimene) + pealkiri\", sorteeritakse üksused nii, et kõik lubatud üksused on nimekirja tipus ning nimekirja pealkirja kasvav sorteerimine (A-st Z-ni) rakendatakse nii lubatud kui keelatud üksustele eraldi.",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the sort input field on the Manage styles page"
+ "message": "Vali paigaldatud üksustele rakendatav sorteerimismeetod sorteerimise rippmenüüst. Vaikimisi seadistus rakendab kasvava sorteerimise (A-st Z-ni) üksuste pealkirjades. Sorteerimised grupis \"Kahanev pealkiri\" rakendavad pealkirjale kahaneva sorteerimise (Z-st A-ni).\nOn olemas ka teisi eelseadistusi, mis võimaldavad üksuste sorteerimist mitme kriteeriumi järgi. Mõtle sellest, nagu sorteeriksid mitme veeruga tabelit ja iga kategooria valikus (plussmärkide vahel) tähistab veergu või gruppi.\nNäiteks, kui valik on \"Lubatud (esimene) + pealkiri\", sorteeritakse üksused nii, et kõik lubatud üksused on nimekirja tipus ning nimekirja pealkirja kasvav sorteerimine (A-st Z-ni) rakendatakse nii lubatud kui keelatud üksustele eraldi."
},
"sortStylesHelpTitle": {
- "message": "Järjesta sisu",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "Järjesta sisu"
},
"styleBadRegexp": {
- "message": "Regulaaravaldis on sobimatu.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Regulaaravaldis on sobimatu."
},
"styleBeautify": {
- "message": "Ilusta",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "Ilusta"
},
"styleBeautifyIndentConditional": {
- "message": "Taanda @media, @supports",
- "description": "CSS-beautifier option"
+ "message": "Taanda @media, @supports"
},
"styleBeautifyPreserveNewlines": {
- "message": "Säilita reavahetused",
- "description": "CSS-beautifier option"
+ "message": "Säilita reavahetused"
},
"styleCancelEditLabel": {
- "message": "Tagasi haldusesse",
- "description": "Label for cancel button for style editing"
+ "message": "Tagasi haldusesse"
},
"styleChangesNotSaved": {
- "message": "Sa oled teinud sellele stiilile muutusi ilma salvestamata.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Sa oled teinud sellele stiilile muutusi ilma salvestamata."
},
"styleEnabledLabel": {
- "message": "Lubatud",
- "description": "Label for the enabled state of styles"
+ "message": "Lubatud"
},
"styleFromMozillaFormatError": {
- "message": "Mozilla-vormingust importimine ebaõnnestus",
- "description": "Label for the import error"
+ "message": "Mozilla-vormingust importimine ebaõnnestus"
},
"styleFromMozillaFormatPrompt": {
- "message": "Kleebi Mozilla-vormingus koodi",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Kleebi Mozilla-vormingus koodi"
},
"styleInstall": {
"message": "Paigaldad \"$stylename$\" Stylus'isse?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1190,7 +941,6 @@
},
"styleInstallFailed": {
"message": "Kasutajastiili paigaldamine ebaõnnestus!\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1199,86 +949,68 @@
},
"styleInstallOverwrite": {
"message": "'$stylename$' on juba paigaldatud. Kas kirjutada üle?\nVersioon: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "Sisesta nimi",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Sisesta nimi"
},
"styleMozillaFormatHeading": {
- "message": "Mozilla-vorming",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Mozilla-vorming"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "Stiili ei rakendatud selle \"regexp()\" vale kasutuse tõttu",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "Stiili ei rakendatud selle \"regexp()\" vale kasutuse tõttu"
},
"styleRegexpInvalidExplanation": {
- "message": "Teatud \"regexp()\" reegleid ei suudetud üldse kompileerida.",
- "description": ""
+ "message": "Teatud \"regexp()\" reegleid ei suudetud üldse kompileerida."
},
"styleRegexpPartialExplanation": {
- "message": "See stiil kasutab osaliselt vastavaid regulaaravaldisi, olles CSS4 @dokument standardiga vastuolus, mis nõuab terve URLi vastet. Mõjutatud CSS-jaotisi ei rakendatud lehele. See stiil tehti tõenäoliselt Chrome'i Stylish'is, mis kontrollib \"regexp()\" reegleid valesti alates esimesest versioonist (teadaolev viga).",
- "description": ""
+ "message": "See stiil kasutab osaliselt vastavaid regulaaravaldisi, olles CSS4 @dokument standardiga vastuolus, mis nõuab terve URLi vastet. Mõjutatud CSS-jaotisi ei rakendatud lehele. See stiil tehti tõenäoliselt Chrome'i Stylish'is, mis kontrollib \"regexp()\" reegleid valesti alates esimesest versioonist (teadaolev viga)."
},
"styleRegexpProblemTooltip": {
- "message": "\"regexp()\" vale kasutuse tõttu rakendamata jaotiste arv",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "\"regexp()\" vale kasutuse tõttu rakendamata jaotiste arv"
},
"styleRegexpTestButton": {
- "message": "Regulaaravaldise katsetus",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "Regulaaravaldise katsetus"
},
"styleRegexpTestFull": {
- "message": "Vastavad kaardid",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "Vastavad kaardid"
},
"styleRegexpTestInvalid": {
- "message": "Sobimatud regulaaravaldised vahele jäetud",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "Sobimatud regulaaravaldised vahele jäetud"
},
"styleRegexpTestNone": {
- "message": "Pole vastavaid kaarte",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "Pole vastavaid kaarte"
},
"styleRegexpTestNote": {
- "message": "Märkus: kasuta üksikut \\, et keelata märgi töötlemine regulaaravaldise sisendväljas, mis konverteeritakse automaatselt \\\\-ks stiili koodis, nagu CSSi tsiteeritud sõnede spetsifikatsioon ette näeb.",
- "description": "RegExp test report: a note displayed at the bottom of the dialog"
+ "message": "Märkus: kasuta üksikut \\, et keelata märgi töötlemine regulaaravaldise sisendväljas, mis konverteeritakse automaatselt \\\\-ks stiili koodis, nagu CSSi tsiteeritud sõnede spetsifikatsioon ette näeb."
},
"styleRegexpTestPartial": {
- "message": "Ei vasta täielikult, seega vahele jäetud",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "Ei vasta täielikult, seega vahele jäetud"
},
"styleRegexpTestTitle": {
- "message": "Vastavate avatud kaardide nimekiri (klõpsa URLile selle kaardi fookustamiseks)",
- "description": "RegExp test report: title of the report"
+ "message": "Vastavate avatud kaardide nimekiri (klõpsa URLile selle kaardi fookustamiseks)"
},
"styleSaveLabel": {
- "message": "Salvesta",
- "description": "Label for save button for style editing"
+ "message": "Salvesta"
},
"styleToMozillaFormatHelp": {
- "message": "Koodi Mozilla-vormingut saab üles laadida saidile userstyles.org ja kasutada klassikalise Firefoxi Stylish'iga",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Koodi Mozilla-vormingut saab üles laadida saidile userstyles.org ja kasutada klassikalise Firefoxi Stylish'iga"
},
"styleToMozillaFormatTitle": {
- "message": "Stiil Mozilla-vormingus",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Stiil Mozilla-vormingus"
},
"styleUpdate": {
"message": "Kas soovid kindlasti uuendada \"$stylename$\"?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1286,72 +1018,55 @@
}
},
"styleUpdateDiscardChanges": {
- "message": "Stiili on redaktoriväliselt muudetud. Kas soovid stiili uuesti laadida?",
- "description": "Confirmation to update the style in the editor"
+ "message": "Stiili on redaktoriväliselt muudetud. Kas soovid stiili uuesti laadida?"
},
"stylusUnavailableForURL": {
- "message": "Stylus ei tööta sellistel lehtedel.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Stylus ei tööta sellistel lehtedel."
},
"stylusUnavailableForURLdetails": {
- "message": "Turvakaalutlustel keelab brauser laiendustel sisseehitatud lehtede (nagu chrome://version, standardne uue kaardi leht alates versioonist Chrome 61, about:addons jne) ning ka teiste laienduste lehtede muutmise. Iga brauser piirab lisaks juurdepääsu oma laienduste galeriile (nagu Chrome'i veebipood või AMO).",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Turvakaalutlustel keelab brauser laiendustel sisseehitatud lehtede (nagu chrome://version, standardne uue kaardi leht alates versioonist Chrome 61, about:addons jne) ning ka teiste laienduste lehtede muutmise. Iga brauser piirab lisaks juurdepääsu oma laienduste galeriile (nagu Chrome'i veebipood või AMO)."
+ },
+ "syncDropboxDeprecated": {
+ "message": "Dropboxi importimine/eksportimine on asendatud edasijõudnuma stiilide sünkroonijaga valikute lehel."
+ },
+ "syncDropboxStyles": {
+ "message": "Dropboxi eksportimine"
},
"syncStorageErrorSaving": {
- "message": "Väärtust ei saa salvestada. Proovi teksti hulka vähendada.",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "Väärtust ei saa salvestada. Proovi teksti hulka vähendada."
},
"toggleStyle": {
- "message": "Luba/keela stiil",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "Luba/keela stiil"
},
"undo": {
- "message": "Võta tagasi",
- "description": "Button label"
+ "message": "Võta tagasi"
},
"undoGlobal": {
- "message": "Võta kõigis jaotistes tagasi",
- "description": "CSS-beautify global Undo button label"
+ "message": "Võta kõigis jaotistes tagasi"
},
"unreachableAMO": {
- "message": "Firefox keelab ligipääsu sellele saidile.",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "Firefox keelab ligipääsu sellele saidile."
},
"unreachableAMOHint": {
- "message": "Ligipääsu lubamiseks ava , parem-klõpsa nimekirjal, vali 'Uus', seejärel 'Tõeväärtus', kleebi ja klõpsa Sobib, , Sobib, laadi leht uuesti.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintNewFF": {
- "message": "Firefox 60-s ja uuemas pead ka lehel eelistusest eemaldama AMO domeeni.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Ainult Firefox 59 ja uuem on võimalik seadistada lubama WebExtensionsil lisada stiilielemente CSP-kaitstud saitidele nagu see.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "Ligipääsu lubamiseks ava , parem-klõpsa nimekirjal, vali 'Uus', seejärel 'Tõeväärtus', kleebi ja klõpsa Sobib, , Sobib, laadi leht uuesti."
},
"unreachableContentScript": {
- "message": "Lehega ei saanud ühendust. Proovi kaart uuesti laadida.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "Lehega ei saanud ühendust. Proovi kaart uuesti laadida."
},
"unreachableFileHint": {
- "message": "Stylus saab ligi pääseda file:// URLidele ainult siis, kui märgistad vastava kasti Stylus laiendusel chrome://extensions lehel",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "Stylus saab ligi pääseda file:// URLidele ainult siis, kui märgistad vastava kasti Stylus laiendusel chrome://extensions lehel"
},
- "InaccessibleFileHint": {
- "message": "Stylus ei saa osadele failitüüpidele ligi pääseda (nt. pdf & json failid).",
- "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ "unzipStyles": {
+ "message": "Stiilide lahtipakkimine..."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "Uuendusi ei leitud.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Uuendusi ei leitud."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "Mõndasid uuendatavaid stiile ei kontrollitud, et vältida võimalike kohalike muutuste kadu. Uuendusi saab sundida, kontrollides ükshaaval või käivitades uue kontrolli kõikidele stiilidele (kohalikud muutused kirjutatakse üle).",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Mõndasid uuendatavaid stiile ei kontrollitud, et vältida võimalike kohalike muutuste kadu. Uuendusi saab sundida, kontrollides ükshaaval või käivitades uue kontrolli kõikidele stiilidele (kohalikud muutused kirjutatakse üle)."
},
"updateCheckFailBadResponseCode": {
"message": "Uuendamine ebaõnnestus: server vastas koodiga $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1359,127 +1074,63 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Uuendamine ebaõnnestus: server on kättesaamatu.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Uuendamine ebaõnnestus: server on kättesaamatu."
},
"updateCheckHistory": {
- "message": "Uuenduskontrollide ajalugu",
- "description": ""
+ "message": "Uuenduskontrollide ajalugu"
},
"updateCheckManualUpdateForce": {
- "message": "Paigalda uuendus (kohalikud muutused kirjutatakse üle)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Paigalda uuendus (kohalikud muutused kirjutatakse üle)"
},
"updateCheckManualUpdateHint": {
- "message": "Uuenduse sundimine kirjutab üle mistahes kohalikud muutused.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Uuenduse sundimine kirjutab üle mistahes kohalikud muutused."
},
"updateCheckSkippedLocallyEdited": {
- "message": "Seda stiili muudeti kohalikult.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Seda stiili muudeti kohalikult."
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "Seda stiili võib olla kohalikult muudetud.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "Seda stiili võib olla kohalikult muudetud."
},
"updateCheckSucceededNoUpdate": {
- "message": "Stiil on ajakohane.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "Stiil on ajakohane."
},
"updateCompleted": {
- "message": "Uuendus teostatud.",
- "description": "Text that displays when an update completed"
+ "message": "Uuendus teostatud."
},
"updatesCurrentlyInstalled": {
- "message": "Uuendused paigaldatud:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "Olemasoleva stiili ülekirjutamise vältimiseks palun muuda @name või @namespace väärtused.",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssConfigIncomplete": {
- "message": "Stiili uuendati või eemaldati pärast seadistusdialoogi kuvamist. Neid muutujaid ei salvestatud, et vältida stiili metaandmete korrumpeerumist:",
- "description": ""
- },
- "usercssEditorNamePlaceholder": {
- "message": "Kirjelda koodis @name",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateConfirmation": {
- "message": "Asendad vaikimisi malli uutes kasutajacss stiilides praeguse koodiga?",
- "description": ""
- },
- "usercssReplaceTemplateName": {
- "message": "Tühi @name asendab vaikimisi malli",
- "description": "The text shown after @name when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "Sisesta kood siia...",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "Versioon on paigaldatud stiilist vanem.",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "Kirjuta stiil:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "see URL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "syncDropboxStyles": {
- "message": "Dropboxi eksportimine",
- "description": ""
- },
- "syncDropboxDeprecated": {
- "message": "Dropboxi importimine/eksportimine on asendatud edasijõudnuma stiilide sünkroonijaga valikute lehel.",
- "description": ""
- },
- "retrieveDropboxSync": {
- "message": "Dropboxi importimine",
- "description": ""
- },
- "overwriteFileExport": {
- "message": "Kas tahad olemasoleva faili üle kirjutada?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "Fail edukalt salvestatud",
- "description": ""
- },
- "noFileToImport": {
- "message": "Oma stiilide importimiseks peaksid esmalt selle eksportima.",
- "description": ""
- },
- "connectingDropbox": {
- "message": "Dropboxiga ühendumine...",
- "description": ""
- },
- "connectingDropboxNotAllowed": {
- "message": "Dropboxiga ühendumine on saadaval ainult veebipoe kaudu installitud rakendustes",
- "description": ""
- },
- "gettingStyles": {
- "message": "Kõigi stiilide hankimine...",
- "description": ""
- },
- "zipStyles": {
- "message": "Stiilide kokkupakkimine...",
- "description": ""
- },
- "unzipStyles": {
- "message": "Stiilide lahtipakkimine...",
- "description": ""
- },
- "readingStyles": {
- "message": "Stiilide lugemine...",
- "description": ""
+ "message": "Uuendused paigaldatud:"
},
"uploadingFile": {
- "message": "Faili üleslaadimine...",
- "description": ""
+ "message": "Faili üleslaadimine..."
+ },
+ "usercssAvoidOverwriting": {
+ "message": "Olemasoleva stiili ülekirjutamise vältimiseks palun muuda @name või @namespace väärtused."
+ },
+ "usercssConfigIncomplete": {
+ "message": "Stiili uuendati või eemaldati pärast seadistusdialoogi kuvamist. Neid muutujaid ei salvestatud, et vältida stiili metaandmete korrumpeerumist:"
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "Kirjelda koodis @name"
+ },
+ "usercssReplaceTemplateConfirmation": {
+ "message": "Asendad vaikimisi malli uutes kasutajacss stiilides praeguse koodiga?"
+ },
+ "usercssReplaceTemplateName": {
+ "message": "Tühi @name asendab vaikimisi malli"
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "Sisesta kood siia..."
+ },
+ "versionInvalidOlder": {
+ "message": "Versioon on paigaldatud stiilist vanem."
+ },
+ "writeStyleFor": {
+ "message": "Kirjuta stiil:"
+ },
+ "writeStyleForURL": {
+ "message": "see URL"
+ },
+ "zipStyles": {
+ "message": "Stiilide kokkupakkimine..."
}
}
diff --git a/_locales/fi/messages.json b/_locales/fi/messages.json
index 51e76576..b2b970ef 100644
--- a/_locales/fi/messages.json
+++ b/_locales/fi/messages.json
@@ -1,19 +1,15 @@
{
"addStyleLabel": {
- "message": "Uusi Tyyli",
- "description": "Label for the button to go to the add style page"
+ "message": "Uusi Tyyli"
},
"addStyleTitle": {
- "message": "Lisää Tyyli",
- "description": "Title of the page for adding styles"
+ "message": "Lisää Tyyli"
},
"appliesAdd": {
- "message": "Lisää",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Lisää"
},
"appliesDisplay": {
"message": "Kooskee: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -21,80 +17,61 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "ja lisää",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "ja lisää"
},
"appliesDomainOption": {
- "message": "URL ositteita domainilla",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL ositteita domainilla"
},
"appliesHelp": {
- "message": "Käytä 'Koskee' kontrolleja rajoittaaksesi mitä URL osoitteisiin tämä osio koodista koskee.",
- "description": "Help text for 'applies to' section"
+ "message": "Käytä 'Koskee' kontrolleja rajoittaaksesi mitä URL osoitteisiin tämä osio koodista koskee."
},
"appliesLabel": {
- "message": "Koskee",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Koskee"
},
"appliesRegexpOption": {
- "message": "URL ositteet jotka vastaavat regexpiä",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URL ositteet jotka vastaavat regexpiä"
},
"appliesRemove": {
- "message": "Poista",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Poista"
},
"appliesSpecify": {
- "message": "Tarkenna",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Tarkenna"
},
"appliesToEverything": {
- "message": "Kaikki",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Kaikki"
},
"appliesUrlPrefixOption": {
- "message": "URL osoitteet jotka alkavat",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL osoitteet jotka alkavat"
},
"checkAllUpdates": {
- "message": "Tarkista kaikki tyylit päivityksien varalta",
- "description": "Label for the button to check all styles for updates"
+ "message": "Tarkista kaikki tyylit päivityksien varalta"
},
"checkForUpdate": {
- "message": "Hae päivityksiä",
- "description": "Label for the button to check a single style for an update"
+ "message": "Hae päivityksiä"
},
"checkingForUpdate": {
- "message": "Tarkistetaan...",
- "description": "Text to display when checking a style for an update"
+ "message": "Tarkistetaan..."
},
"deleteStyleConfirm": {
- "message": "Oletko varma että haluat poistaa tämän tyylin?",
- "description": "Confirmation before deleting a style"
+ "message": "Oletko varma että haluat poistaa tämän tyylin?"
},
"deleteStyleLabel": {
- "message": "Poista",
- "description": "Label for the button to delete a style"
+ "message": "Poista"
},
"description": {
- "message": "Uudelleen stailaa netti Stylusillä, käyttäjän tyyli hallintapaneelilla. Stylus antaa sinun helposti asentaa teemoja ja skinejä palvelluille kuten Google, Facebook, YouTube, Orkut, ja monelle, monelle muulle sivustolle.",
- "description": "Extension description"
+ "message": "Uudelleen stailaa netti Stylusillä, käyttäjän tyyli hallintapaneelilla. Stylus antaa sinun helposti asentaa teemoja ja skinejä palvelluille kuten Google, Facebook, YouTube, Orkut, ja monelle, monelle muulle sivustolle."
},
"disableStyleLabel": {
- "message": "Poista Käytöstä",
- "description": "Label for the button to disable a style"
+ "message": "Poista Käytöstä"
},
"editStyleHeading": {
- "message": "Muokkaa Tyyliä",
- "description": "Title of the page for editing styles"
+ "message": "Muokkaa Tyyliä"
},
"editStyleLabel": {
- "message": "Muokkaa",
- "description": "Label for the button to go to the edit style page"
+ "message": "Muokkaa"
},
"editStyleTitle": {
"message": "Muokkaa Tyyliä $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -102,76 +79,58 @@
}
},
"enableStyleLabel": {
- "message": "Aktivoi",
- "description": "Label for the button to enable a style"
+ "message": "Aktivoi"
},
"findStylesForSite": {
- "message": "Hae lisää tyylejä tälle sivustolle",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Hae lisää tyylejä tälle sivustolle"
},
"helpAlt": {
- "message": "Apu",
- "description": "Alternate text for help buttons"
+ "message": "Apu"
},
"installUpdate": {
- "message": "Asenna päivitys",
- "description": "Label for the button to install an update for a single style"
+ "message": "Asenna päivitys"
},
"manageHeading": {
- "message": "Asennetut Tyylit",
- "description": "Heading for the manage page"
+ "message": "Asennetut Tyylit"
},
"manageTitle": {
- "message": "Tyylikäs",
- "description": "Title for the manage page"
+ "message": "Tyylikäs"
},
"noStylesForSite": {
- "message": "Ei asennettuja tyylejä tällä sivustolla.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Ei asennettuja tyylejä tällä sivustolla."
},
"openManage": {
- "message": "Hallitse asennettuja tyylejä",
- "description": "Link to open the manage page."
+ "message": "Hallitse asennettuja tyylejä"
},
"popupStylesFirst": {
- "message": "List styles before commands in the toolbar button menu",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "List styles before commands in the toolbar button menu"
},
"prefShowBadge": {
- "message": "Show number of styles active for the current site on the toolbar button",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Show number of styles active for the current site on the toolbar button"
},
"sectionAdd": {
- "message": "Lisää uusi osio",
- "description": "Label for the button to add a section"
+ "message": "Lisää uusi osio"
},
"sectionCode": {
- "message": "Koodi",
- "description": "Label for the code for a section"
+ "message": "Koodi"
},
"sectionRemove": {
- "message": "Poista osio",
- "description": "Label for the button to remove a section"
+ "message": "Poista osio"
},
"styleBadRegexp": {
- "message": "Regexp ei kelpaa.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Regexp ei kelpaa."
},
"styleCancelEditLabel": {
- "message": "Takaisin hallintapaneeliin",
- "description": "Label for cancel button for style editing"
+ "message": "Takaisin hallintapaneeliin"
},
"styleChangesNotSaved": {
- "message": "Olet tehnyt muutoksia tähän tyyliin tallentamatta.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Olet tehnyt muutoksia tähän tyyliin tallentamatta."
},
"styleEnabledLabel": {
- "message": "Aktivoitu",
- "description": "Label for the enabled state of styles"
+ "message": "Aktivoitu"
},
"styleInstall": {
"message": "Asennetaanko '$stylename$' Stylusiin?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -179,24 +138,19 @@
}
},
"styleMissingName": {
- "message": "Syötä nimi",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Syötä nimi"
},
"styleSaveLabel": {
- "message": "Tallenna",
- "description": "Label for save button for style editing"
+ "message": "Tallenna"
},
"styleToMozillaFormatHelp": {
- "message": "Mozilla formaattia koodista voidaan käyttää Stylish Firefoxille ohjelmassa ja voidaan lähettää userstyles.orgiin.",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Mozilla formaattia koodista voidaan käyttää Stylish Firefoxille ohjelmassa ja voidaan lähettää userstyles.orgiin."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "All styles are up to date.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "All styles are up to date."
},
"updateCheckFailBadResponseCode": {
"message": "Päivitys epäonnistui: palvelin vastasi koodilla $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -204,15 +158,12 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Päivitys epäonnistui: ei voitu yhdistää palvelimeen.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Päivitys epäonnistui: ei voitu yhdistää palvelimeen."
},
"updateCheckSucceededNoUpdate": {
- "message": "Tyyli on ajan tasalla.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "Tyyli on ajan tasalla."
},
"updateCompleted": {
- "message": "Päivitys suoritettu.",
- "description": "Text that displays when an update completed"
+ "message": "Päivitys suoritettu."
}
-}
\ No newline at end of file
+}
diff --git a/_locales/fr/messages.json b/_locales/fr/messages.json
index e2aad9cd..c3b763ac 100644
--- a/_locales/fr/messages.json
+++ b/_locales/fr/messages.json
@@ -1,23 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylus ne peut pas accéder à certains types de fichiers (ex: fichiers .pdf et .json)."
+ },
"addStyleLabel": {
- "message": "Créer un nouveau style",
- "description": "Label for the button to go to the add style page"
+ "message": "Créer un nouveau style"
},
"addStyleTitle": {
- "message": "Ajouter un style",
- "description": "Title of the page for adding styles"
+ "message": "Ajouter un style"
},
"alphaChannel": {
- "message": "Opacité",
- "description": "Label of color's opacity"
+ "message": "Opacité"
},
"appliesAdd": {
- "message": "Ajouter",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Ajouter"
},
"appliesDisplay": {
"message": "S'applique à : $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,296 +23,229 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "et bien plus encore",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "et bien plus encore"
},
"appliesDomainOption": {
- "message": "URL sur le domaine",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL sur le domaine"
},
"appliesHelp": {
- "message": "Utilisez l'option « S'applique à » pour préciser les URL auxquelles le code de cette section s'applique.",
- "description": "Help text for 'applies to' section"
+ "message": "Utilisez l'option « S'applique à » pour préciser les URL auxquelles le code de cette section s'applique."
},
"appliesLabel": {
- "message": "S'applique à",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "S'applique à"
},
"appliesLineWidgetLabel": {
- "message": "Afficher les informations « s’applique à »",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "Afficher les informations « s’applique à »"
},
"appliesLineWidgetWarning": {
- "message": "Ne fonctionne pas avec le CSS minifié",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "Ne fonctionne pas avec le CSS minifié"
},
"appliesRegexpOption": {
- "message": "URL correspondant à l'expression régulière",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URL correspondant à l'expression régulière"
},
"appliesRemove": {
- "message": "Supprimer",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Supprimer"
},
"appliesRemoveError": {
- "message": "Impossible de supprimer la dernière entrée « s’applique à »",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "Impossible de supprimer la dernière entrée « s’applique à »"
},
"appliesSpecify": {
- "message": "Préciser",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Préciser"
},
"appliesToEverything": {
- "message": "Tout",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Tout"
},
"appliesUrlPrefixOption": {
- "message": "URL commençant par",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL commençant par"
},
"applyAllUpdates": {
- "message": "Appliquer toutes les mises à jour",
- "description": "Label for the button to apply all detected updates"
+ "message": "Appliquer toutes les mises à jour"
},
"author": {
- "message": "Auteur",
- "description": "Label for the style author"
+ "message": "Auteur"
},
"backupButtons": {
- "message": "Sauvegarde",
- "description": "Heading for backup"
+ "message": "Sauvegarde"
},
"backupMessage": {
- "message": "Sélectionner un fichier ou le glisser-déposer sur cette page",
- "description": "Message for backup"
+ "message": "Sélectionner un fichier ou le glisser-déposer sur cette page"
},
"bckpInstStyles": {
- "message": "Exporter des styles",
- "description": ""
+ "message": "Exporter des styles"
},
"checkAllUpdates": {
- "message": "Rechercher des mises à jour",
- "description": "Label for the button to check all styles for updates"
+ "message": "Rechercher des mises à jour"
},
"checkAllUpdatesForce": {
- "message": "Vérifiez à nouveau, je n’ai modifié aucun style !",
- "description": "Label for the button to apply all detected updates"
+ "message": "Vérifiez à nouveau, je n’ai modifié aucun style !"
},
"checkForUpdate": {
- "message": "Rechercher une mise à jour",
- "description": "Label for the button to check a single style for an update"
+ "message": "Rechercher une mise à jour"
},
"checkingForUpdate": {
- "message": "Vérification en cours…",
- "description": "Text to display when checking a style for an update"
+ "message": "Vérification en cours…"
},
"clickToUninstall": {
- "message": "Cliquer pour désinstaller",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Cliquer pour désinstaller"
},
"cm_autoCloseBrackets": {
- "message": "Fermer automatiquement les caractères ouvrants",
- "description": "Label for the checkbox in the style editor."
+ "message": "Fermer automatiquement les caractères ouvrants"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Ajoute automatiquement le caractère fermant quand vous tapez le caractère ouvrant parmi ()[]{}''\"\"",
- "description": "Label for the checkbox in the style editor."
+ "message": "Ajoute automatiquement le caractère fermant quand vous tapez le caractère ouvrant parmi ()[]{}''\"\""
},
"cm_autocompleteOnTyping": {
- "message": "Autocomplétion pendant la frappe",
- "description": "Label for the checkbox in the style editor."
+ "message": "Autocomplétion pendant la frappe"
},
"cm_colorpicker": {
- "message": "Sélecteur de couleur pour les couleurs CSS",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Sélecteur de couleur pour les couleurs CSS"
},
"cm_indentWithTabs": {
- "message": "Utiliser les tabulations avec indentation intelligente",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Utiliser les tabulations avec indentation intelligente"
},
"cm_keyMap": {
- "message": "Raccourcis clavier",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Raccourcis clavier"
},
"cm_lineWrapping": {
- "message": "Retour à la ligne automatique",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Retour à la ligne automatique"
},
"cm_linter": {
- "message": "Vérificateur CSS",
- "description": "Select the linter to check for CSS issues"
+ "message": "Vérificateur CSS"
},
"cm_matchHighlight": {
- "message": "Surligner",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Surligner"
},
"cm_matchHighlightSelection": {
- "message": "Sélection uniquement",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Sélection uniquement"
},
"cm_matchHighlightToken": {
- "message": "Entité sous le curseur",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Entité sous le curseur"
},
"cm_resizeGripHint": {
- "message": "Double-cliquez pour maximiser/restaurer la taille",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Double-cliquez pour maximiser/restaurer la taille"
},
"cm_selectByTokens": {
- "message": "Double-cliquer sélectionne des entités",
- "description": "Label for the checkbox in the editor."
+ "message": "Double-cliquer sélectionne des entités"
},
"cm_selectByTokensTooltip": {
- "message": "Exemples d’entités : .foo-bar-2 #aabbcc 0.32 !important\nSi désactivé : les mots délimités par la ponctuation sont sélectionnés.",
- "description": ""
+ "message": "Exemples d’entités : .foo-bar-2 #aabbcc 0.32 !important\nSi désactivé : les mots délimités par la ponctuation sont sélectionnés."
},
"cm_smartIndent": {
- "message": "Utiliser l'indentation intelligente",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Utiliser l'indentation intelligente"
},
"cm_tabSize": {
- "message": "Taille des tabulations",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Taille des tabulations"
},
"cm_theme": {
- "message": "Thème",
- "description": "Label for the style editor's CSS theme."
+ "message": "Thème"
},
"colorpickerSwitchFormatTooltip": {
- "message": "Changer de format : HEX → RGB → HSL.\nMaj-clic pour inverser la direction.\nÉgalement via les touches ⇞ (Page précédente), \f (Page précédente).",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "Changer de format : HEX → RGB → HSL.\nMaj-clic pour inverser la direction.\nÉgalement via les touches ⇞ (Page précédente), \f (Page précédente)."
},
"colorpickerTooltip": {
- "message": "Ouvrir le sélecteur de couleurs",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Ouvrir le sélecteur de couleurs"
},
"configOnChange": {
- "message": "automatique",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "automatique"
},
"configOnChangeTooltip": {
- "message": "Sauvegarde et applique les changements automatiquement",
- "description": ""
+ "message": "Sauvegarde et applique les changements automatiquement"
},
"configureStyle": {
- "message": "Configurer",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "Configurer"
},
"configureStyleOnHomepage": {
- "message": "Configurer sur la page d’accueil",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "Configurer sur la page d’accueil"
},
"confirmCancel": {
- "message": "Annuler",
- "description": ""
+ "message": "Annuler"
},
"confirmClose": {
- "message": "Fermer",
- "description": "'Close' button in a confirm dialog"
+ "message": "Fermer"
},
"confirmDefault": {
- "message": "Réglage par défaut",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "Réglage par défaut"
},
"confirmDelete": {
- "message": "Supprimer",
- "description": ""
+ "message": "Supprimer"
},
"confirmDiscardChanges": {
- "message": "Annuler les changements ?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "Annuler les changements ?"
},
"confirmNo": {
- "message": "Non",
- "description": "'No' button in a confirm dialog"
+ "message": "Non"
},
"confirmOK": {
- "message": "Valider",
- "description": ""
+ "message": "Valider"
},
"confirmSave": {
- "message": "Enregistrer",
- "description": "'Save' button in a confirm dialog"
+ "message": "Enregistrer"
},
"confirmStop": {
- "message": "Arrêt ",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Arrêt "
},
"confirmYes": {
- "message": "Oui",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Oui"
+ },
+ "connectingDropbox": {
+ "message": "Connexion à Dropbox…"
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "La connexion à Dropbox est disponible uniquement dans les applications installées directement depuis le Web Store."
},
"copied": {
- "message": "Copié dans le presse-papier",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "Copié dans le presse-papier"
},
"copy": {
- "message": "Copier dans le presse-papier",
- "description": "Tooltip for elements which can be copied"
+ "message": "Copier dans le presse-papier"
},
"dateInstalled": {
- "message": "Date d'installation",
- "description": "Option text for the user to sort the style by install date"
+ "message": "Date d'installation"
},
"dateUpdated": {
- "message": "Date de mise à jour",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "Date de mise à jour"
},
"dbError": {
- "message": "Une erreur s'est produite dans la base de donnée de Stylus. Voulez-vous visiter une page web avec les solutions possibles ?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Une erreur s'est produite dans la base de donnée de Stylus. Voulez-vous visiter une page web avec les solutions possibles ?"
},
"defaultTheme": {
- "message": "défaut",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "défaut"
},
"deleteStyleConfirm": {
- "message": "Voulez-vous vraiment supprimer ce style ?",
- "description": "Confirmation before deleting a style"
+ "message": "Voulez-vous vraiment supprimer ce style ?"
},
"deleteStyleLabel": {
- "message": "Supprimer",
- "description": "Label for the button to delete a style"
+ "message": "Supprimer"
},
"description": {
- "message": "Changez l'apparence du Web grâce à Stylus, un outil de gestion des styles utilisateur. Stylus vous permet d'installer facilement des thèmes et des habillages pour Google, Facebook, YouTube, orkut et bien d'autres sites encore.",
- "description": "Extension description"
+ "message": "Changez l'apparence du Web grâce à Stylus, un outil de gestion des styles utilisateur. Stylus vous permet d'installer facilement des thèmes et des habillages pour Google, Facebook, YouTube, orkut et bien d'autres sites encore."
},
"disableAllStyles": {
- "message": "Désactiver tous les styles",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Désactiver tous les styles"
},
"disableStyleLabel": {
- "message": "Désactiver",
- "description": "Label for the button to disable a style"
+ "message": "Désactiver"
},
"dragDropMessage": {
- "message": "Glisser votre fichier de sauvegarde n’importe où sur cette page pour l’importer.",
- "description": "Drag'n'drop message"
+ "message": "Glisser votre fichier de sauvegarde n’importe où sur cette page pour l’importer."
},
"dragDropUsercssTabstrip": {
- "message": "Pour installer le fichier, glisser le fichier sur la barre des onglets (la zone où les titres des onglets sont affichés).",
- "description": "Message popup shown when erroneously dropping a usercss file into the manager page"
+ "message": "Pour installer le fichier, glisser le fichier sur la barre des onglets (la zone où les titres des onglets sont affichés)."
},
"editDeleteText": {
- "message": "Supprimer",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Supprimer"
},
"editGotoLine": {
- "message": "Aller à la ligne (ou ligne:colonne)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Aller à la ligne (ou ligne:colonne)"
},
"editStyleHeading": {
- "message": "Modifier le style",
- "description": "Title of the page for editing styles"
+ "message": "Modifier le style"
},
"editStyleLabel": {
- "message": "Modifier",
- "description": "Label for the button to go to the edit style page"
+ "message": "Modifier"
},
"editStyleTitle": {
"message": "Modifier le style $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -322,216 +253,171 @@
}
},
"enableStyleLabel": {
- "message": "Activer",
- "description": "Label for the button to enable a style"
+ "message": "Activer"
},
"excludeStyleByDomainLabel": {
- "message": "Exclure le domaine actuel",
- "description": ""
+ "message": "Exclure le domaine actuel"
},
"excludeStyleByUrlLabel": {
- "message": "Exclure l’URL actuelle",
- "description": ""
+ "message": "Exclure l’URL actuelle"
},
"exportLabel": {
- "message": "Exporter",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Exporter"
+ },
+ "exportSavedSuccess": {
+ "message": "Fichier sauvegardé avec succès"
},
"externalFeedback": {
- "message": "Commentaires",
- "description": "Label for the external link to send feedback for the style"
+ "message": "Commentaires"
},
"externalHomepage": {
- "message": "Page d’accueil",
- "description": "Label for the external link to style's homepage"
+ "message": "Page d’accueil"
},
"externalLink": {
- "message": "Lien externe",
- "description": "Label for external links"
+ "message": "Lien externe"
},
"externalUsercssDocument": {
- "message": "Documentation d'Usercss",
- "description": "Label for the external link to usercss documentation"
+ "message": "Documentation d'Usercss"
},
"filteredStyles": {
"message": "$numShown$ montrés sur $numTotal$ au total",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "Les filtres appliqués actuellement ne correspondent à aucun style",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "Les filtres appliqués actuellement ne correspondent à aucun style"
},
"findStyles": {
- "message": "Trouver des styles",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Trouver des styles"
},
"findStylesForSite": {
- "message": "Rechercher d'autres styles pour ce site",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Rechercher d'autres styles pour ce site"
},
"findStylesInline": {
- "message": "Dans la popup",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "Dans la popup"
},
"findStylesInlineTooltip": {
- "message": "Affiche les résultats de recherche dans cette fenêtre",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "Affiche les résultats de recherche dans cette fenêtre"
},
"genericAdd": {
- "message": "Ajouter",
- "description": "Used in various places for an action that adds something"
+ "message": "Ajouter"
},
"genericClone": {
- "message": "Dupliquer",
- "description": "Used in various places for an action that clones something"
+ "message": "Dupliquer"
},
"genericDisabledLabel": {
- "message": "Désactivé",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Désactivé"
},
"genericEnabledLabel": {
- "message": "Activé",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "Activé"
},
"genericError": {
- "message": "Erreur",
- "description": "Used in various places to indicate some error occurred."
+ "message": "Erreur"
},
"genericHistoryLabel": {
- "message": "Historique",
- "description": "Used in various places to show a history log of something"
+ "message": "Historique"
},
"genericNext": {
- "message": "Suivant",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "Suivant"
},
"genericPrevious": {
- "message": "Précédent",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "Précédent"
},
"genericResetLabel": {
- "message": "Ré-initialiser",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "Ré-initialiser"
},
"genericSavedMessage": {
- "message": "Enregistré",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "Enregistré"
},
"genericTitle": {
- "message": "Titre",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "Titre"
},
"genericUnknown": {
- "message": "Inconnu(e)",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "Inconnu(e)"
+ },
+ "gettingStyles": {
+ "message": "Récupération de tous les styles…"
},
"helpAlt": {
- "message": "Aide",
- "description": "Alternate text for help buttons"
+ "message": "Aide"
},
"helpKeyMapCommand": {
- "message": "Saisissez un nom de commande",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Saisissez un nom de commande"
},
"helpKeyMapHotkey": {
- "message": "Pressez un raccourci clavier",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Pressez un raccourci clavier"
},
"hostDisabled": {
- "message": "Cet hôte a été désactivé en raison d'un bogue dans la version actuelle du navigateur utilisé",
- "description": "Tooltip for cloud host disabled"
+ "message": "Cet hôte a été désactivé en raison d'un bogue dans la version actuelle du navigateur utilisé"
},
"importAppendLabel": {
- "message": "Ajouter au style",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Ajouter au style"
},
"importAppendTooltip": {
- "message": "Ajouter le style importé au style actuel",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Ajouter le style importé au style actuel"
},
"importLabel": {
- "message": "Importer",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Importer"
},
"importReplaceLabel": {
- "message": "Remplacer le style",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Remplacer le style"
},
"importReplaceTooltip": {
- "message": "Abandonner le contenu du style actuel et le remplacer par le style importé",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Abandonner le contenu du style actuel et le remplacer par le style importé"
},
"importReportLegendAdded": {
- "message": "ajouté(s)",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "ajouté(s)"
},
"importReportLegendIdentical": {
- "message": "identiques ignorés",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "identiques ignorés"
},
"importReportLegendInvalid": {
- "message": "invalides ignorés",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "invalides ignorés"
},
"importReportLegendUpdatedBoth": {
- "message": "codes et méta-informations mis à jour",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "codes et méta-informations mis à jour"
},
"importReportLegendUpdatedCode": {
- "message": "codes mis à jour",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "codes mis à jour"
},
"importReportLegendUpdatedMeta": {
- "message": "méta-informations mises à jour",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "méta-informations mises à jour"
},
"importReportTitle": {
- "message": "Import des styles terminé",
- "description": "Title of the report shown after importing styles"
+ "message": "Import des styles terminé"
},
"importReportUnchanged": {
- "message": "Rien n’a changé.",
- "description": "Message in the report shown after importing styles"
+ "message": "Rien n’a changé."
},
"importReportUndone": {
- "message": "styles sont revenus à leur version antérieure",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "styles sont revenus à leur version antérieure"
},
"importReportUndoneTitle": {
- "message": "L’import a été annulé",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "L’import a été annulé"
},
"installButton": {
- "message": "Installer le style",
- "description": "Label for install button"
+ "message": "Installer le style"
},
"installButtonInstalled": {
- "message": "Style installé",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Style installé"
},
"installButtonReinstall": {
- "message": "Ré-installer le style",
- "description": "Label for reinstall button"
+ "message": "Ré-installer le style"
},
"installButtonUpdate": {
- "message": "Mettre à jour le style",
- "description": "Label for update button"
+ "message": "Mettre à jour le style"
},
"installUpdate": {
- "message": "Installer la mise à jour",
- "description": "Label for the button to install an update for a single style"
+ "message": "Installer la mise à jour"
},
"installUpdateFrom": {
"message": "Le style est actuellement mis à jour depuis $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -539,28 +425,22 @@
}
},
"installUpdateFromLabel": {
- "message": "Rechercher les mises à jour",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Rechercher les mises à jour"
},
"license": {
- "message": "Licence",
- "description": "Label for the license"
+ "message": "Licence"
},
"linkGetHelp": {
- "message": "Consulter l'aide",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Consulter l'aide"
},
"linkGetStyles": {
- "message": "Obtenir des styles",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Obtenir des styles"
},
"linkTranslate": {
- "message": "Traduire",
- "description": "Transifex link text on the manage page"
+ "message": "Traduire"
},
"linterCSSLintIncompatible": {
"message": "CSSLint ne prend pas en charge le préprocesseur $preprocessorname$",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -568,12 +448,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(Valeur des règles : 0 = désactivé, 1 = avertissement, 2 = erreur)",
- "description": "CSSLint rule config values"
+ "message": "(Valeur des règles : 0 = désactivé, 1 = avertissement, 2 = erreur)"
},
"linterConfigPopupTitle": {
"message": "Configurer les règles de $linter$",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -581,20 +459,16 @@
}
},
"linterConfigTooltip": {
- "message": "Cliquez pour configurer ce vérificateur",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Cliquez pour configurer ce vérificateur"
},
"linterInvalidConfigError": {
- "message": "Non sauvegardé à cause de ces paramètres invalides :",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "Non sauvegardé à cause de ces paramètres invalides :"
},
"linterIssues": {
- "message": "Problèmes",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Problèmes"
},
"linterIssuesHelp": {
"message": "Ces problèmes ont été trouvés par $link$ :",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -602,144 +476,93 @@
}
},
"linterJSONError": {
- "message": "Format JSON invalide",
- "description": "Setting linter config with invalid JSON"
+ "message": "Format JSON invalide"
},
"linterResetMessage": {
- "message": "Pour annuler une réinitialisation accidentelle, faites Ctrl-Z (ou Cmd-Z) dans la zone de texte",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "Pour annuler une réinitialisation accidentelle, faites Ctrl-Z (ou Cmd-Z) dans la zone de texte"
},
"linterRulesLink": {
- "message": "Voir la liste complète des règles",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Voir la liste complète des règles"
},
"liveReloadError": {
- "message": "Une erreur est survenue durant la surveillance du fichier",
- "description": "The label of live-reload error"
+ "message": "Une erreur est survenue durant la surveillance du fichier"
},
"liveReloadInstallHint": {
- "message": "Gardez cet onglet ouvert pour mettre à jour le style automatiquement basé sur les modifications extérieures.",
- "description": "The label of live-reload feature"
+ "message": "Gardez cet onglet ouvert pour mettre à jour le style automatiquement basé sur les modifications extérieures."
},
"liveReloadInstallHintFF": {
- "message": "Gardez cet onglet ouvert ainsi que l´onglet original pour mettre à jour le style automatiquement basé sur les modifications extérieures.",
- "description": "The extra hint of live-reload feature shown only for file:// URLs in Firefox"
+ "message": "Gardez cet onglet ouvert ainsi que l´onglet original pour mettre à jour le style automatiquement basé sur les modifications extérieures."
},
"liveReloadLabel": {
- "message": "Rechargement immédiat",
- "description": "The label of live-reload feature"
+ "message": "Rechargement immédiat"
},
"manageFavicons": {
- "message": "Favicons dans la colonne « s’applique à »",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Favicons dans la colonne « s’applique à »"
},
"manageFaviconsGray": {
- "message": "Grisés",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Grisés"
},
"manageFaviconsHelp": {
- "message": "Stylus utilise le service externe https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus utilise le service externe https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "Filtres",
- "description": "Label for filters container"
+ "message": "Filtres"
},
"manageHeading": {
- "message": "Styles installés",
- "description": "Heading for the manage page"
+ "message": "Styles installés"
},
"manageMaxTargets": {
- "message": "Nombre d’items « s’applique à »",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "Nombre d’items « s’applique à »"
},
"manageNewStyleAsUsercss": {
- "message": "en tant que Usercss",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "en tant que Usercss"
},
"manageNewUI": {
- "message": "Nouvelle disposition de l’UI de gestion",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Nouvelle disposition de l’UI de gestion"
},
"manageOnlyDisabled": {
- "message": "Seulement les styles désactivés",
- "description": "Checkbox to show only disabled styles"
+ "message": "Seulement les styles désactivés"
},
"manageOnlyEnabled": {
- "message": "Seulement les styles activés",
- "description": "Checkbox to show only enabled styles"
+ "message": "Seulement les styles activés"
},
"manageOnlyExternal": {
- "message": "Seulement les styles externes",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Seulement les styles externes"
},
"manageOnlyLocal": {
- "message": "Seulement les styles créés localement",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Seulement les styles créés localement"
},
"manageOnlyLocalTooltip": {
- "message": "(les styles non installés via une page userstyles.org)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(les styles non installés via une page userstyles.org)"
},
"manageOnlyNonUsercss": {
- "message": "Styles non Usercss uniquement",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Styles non Usercss uniquement"
},
"manageOnlyUpdates": {
- "message": "Avec mises à jour ou problèmes uniquement",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Avec mises à jour ou problèmes uniquement"
},
"manageOnlyUsercss": {
- "message": "Styles Usercss uniquement",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Styles Usercss uniquement"
},
"menuShowBadge": {
- "message": "Montrer le nombre de styles actifs",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Montrer le nombre de styles actifs"
},
"meta_invalidCheckboxDefault": {
- "message": "Case à cocher @var invalide : la valeur doit être 0 ou 1",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "Case à cocher @var invalide : la valeur doit être 0 ou 1"
},
"meta_invalidColor": {
"message": "Couleur @var invalide : $color$ n’est pas une couleur",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
}
}
},
+ "meta_invalidNumber": {
+ "message": "Nombre attendu"
+ },
"meta_invalidRange": {
"message": "@var $type$ invalide : la valeur doit être un nombre ou un tableau",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "@var $type$ invalide : plusieurs unités sont définies",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "@var $type$ invalide : le tableau contient trop d’items",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeValue": {
- "message": "@var $type$ invalide : les items dans le tableau doivent être des nombres, chaines de caractères ou null",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -748,16 +571,6 @@
},
"meta_invalidRangeDefault": {
"message": "@var $type$ invalide : la valeur par défaut est null",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMin": {
- "message": "@var $type$ invalide : la valeur par défaut est en dessous du minimum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -766,7 +579,22 @@
},
"meta_invalidRangeMax": {
"message": "@var $type$ invalide : la valeur par défaut est au-dessus du maximum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMin": {
+ "message": "@var $type$ invalide : la valeur par défaut est en dessous du minimum",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "@var $type$ invalide : plusieurs unités sont définies",
"placeholders": {
"type": {
"content": "$1"
@@ -775,7 +603,14 @@
},
"meta_invalidRangeStep": {
"message": "@var $type$ invalide : la valeur par défaut n’est pas un multiple du pas",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "@var $type$ invalide : le tableau contient trop d’items",
"placeholders": {
"type": {
"content": "$1"
@@ -784,7 +619,6 @@
},
"meta_invalidRangeUnits": {
"message": "@var $type$ invalide : '$units$' n’est pas une unité valide",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -794,37 +628,40 @@
}
}
},
- "meta_invalidSelect": {
- "message": "@var select invalide : la valeur par défaut doit être un tableau ou un objet",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidRangeValue": {
+ "message": "@var $type$ invalide : les items dans le tableau doivent être des nombres, chaines de caractères ou null",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
},
- "meta_invalidSelectValue": {
- "message": "@var select invalide : les valeurs dans le tableau/objet doivent être des chaines de caractères",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidSelect": {
+ "message": "@var select invalide : la valeur par défaut doit être un tableau ou un objet"
},
"meta_invalidSelectEmptyOptions": {
- "message": "@var select invalide : la liste d’options est vide",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select invalide : la liste d’options est vide"
},
"meta_invalidSelectLabel": {
- "message": "@var select invalide : le label de l’option est vide",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select invalide : le label de l’option est vide"
},
"meta_invalidSelectMultipleDefaults": {
- "message": "@var select invalide : plusieurs options par défaut sont définies",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select invalide : plusieurs options par défaut sont définies"
},
"meta_invalidSelectNameDuplicated": {
- "message": "@var select invalide : nom d’option dupliqué",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select invalide : nom d’option dupliqué"
+ },
+ "meta_invalidSelectValue": {
+ "message": "@var select invalide : les valeurs dans le tableau/objet doivent être des chaines de caractères"
},
"meta_invalidSelectValueMismatch": {
- "message": "@var select invalide : la valeur n’existe pas dans la liste d’options",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "@var select invalide : la valeur n’existe pas dans la liste d’options"
+ },
+ "meta_invalidString": {
+ "message": "Chaine entre guillemets attendue"
},
"meta_invalidURLProtocol": {
"message": "Protocole de l’URL invalide. Seuls http et https sont autorisés : $protocol$",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
@@ -832,29 +669,13 @@
}
},
"meta_invalidVersion": {
- "message": "Numéro de version invalide. La valeur ne correspond pas au motif SemVer : $version$",
- "description": "Error displayed when @version is invalid",
- "placeholders": {
- "version": {
- "content": "$1"
- }
- }
- },
- "meta_invalidNumber": {
- "message": "Nombre attendu",
- "description": "Error displayed when the value is expected to be a number"
- },
- "meta_invalidString": {
- "message": "Chaine entre guillemets attendue",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "Numéro de version invalide"
},
"meta_invalidWord": {
- "message": "Mot attendu",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "Mot attendu"
},
"meta_missingChar": {
"message": "Caractères attendus : $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -862,12 +683,10 @@
}
},
"meta_missingEOT": {
- "message": "Données EOT attendues",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "Données EOT attendues"
},
"meta_missingMandatory": {
"message": "Métadonnée obligatoire manquante: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -876,7 +695,6 @@
},
"meta_unknownJSONLiteral": {
"message": "JSON invalide : $literal$ n’est pas une valeur JSON valide",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
@@ -885,16 +703,22 @@
},
"meta_unknownMeta": {
"message": "Métadonnée inconnue: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
}
},
+ "meta_unknownPreprocessor": {
+ "message": "@preprocessor inconnu: $preprocessor$",
+ "placeholders": {
+ "preprocessor": {
+ "content": "$1"
+ }
+ }
+ },
"meta_unknownVarType": {
"message": "Type @$varkey$ inconnu : $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -904,142 +728,107 @@
}
}
},
- "meta_unknownPreprocessor": {
- "message": "@preprocessor inconnu: $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
- "placeholders": {
- "preprocessor": {
- "content": "$1"
- }
- }
+ "noFileToImport": {
+ "message": "Pour importer vos styles, vous devez d’abord les exporter."
},
"noStylesForSite": {
- "message": "Aucun style n'est installé pour ce site.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Aucun style n'est installé pour ce site."
},
"openManage": {
- "message": "Gestion",
- "description": "Link to open the manage page."
+ "message": "Gestion"
},
"openStylesManager": {
- "message": "Ouvrir le gestionnaire de styles",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "Ouvrir le gestionnaire de styles"
},
"optionsAdvanced": {
- "message": "Avancé",
- "description": ""
+ "message": "Avancé"
},
"optionsAdvancedContextDelete": {
- "message": "Ajouter « Supprimer » dans le menu contextuel de l’extension",
- "description": ""
+ "message": "Ajouter « Supprimer » dans le menu contextuel de l’extension"
},
"optionsAdvancedExposeIframes": {
- "message": "Exposer les iframes via HTML[stylus-iframe]",
- "description": ""
+ "message": "Exposer les iframes via HTML[stylus-iframe]"
},
"optionsAdvancedExposeIframesNote": {
- "message": "Expose le domaine principal dans chaque iframe.\nPermet d’écrire du CSS spécifique aux iframe tel que :\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }",
- "description": "Add attribute to iframe; make sure to include the double $$ in the css example, or the `$=` will be omitted in the displayed text."
+ "message": "Expose le domaine principal dans chaque iframe.\nPermet d’écrire du CSS spécifique aux iframe tel que :\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "Écrire un nouveau style en tant que usercss",
- "description": ""
+ "message": "Écrire un nouveau style en tant que usercss"
},
"optionsBadgeDisabled": {
- "message": "Couleur d'arrière plan si désactivé",
- "description": ""
+ "message": "Couleur d'arrière plan si désactivé"
},
"optionsBadgeNormal": {
- "message": "Couleur d'arrière plan",
- "description": ""
+ "message": "Couleur d'arrière plan"
},
"optionsCheck": {
- "message": "Mettre à jour les styles",
- "description": ""
+ "message": "Mettre à jour les styles"
},
"optionsCheckUpdate": {
- "message": "Vérifier et installer toutes les mises à jour disponibles",
- "description": ""
+ "message": "Vérifier et installer toutes les mises à jour disponibles"
},
"optionsCustomizeBadge": {
- "message": "Badge sur l’icône de la barre d’outils",
- "description": ""
+ "message": "Badge sur l’icône de la barre d’outils"
},
"optionsCustomizeIcon": {
- "message": "Icône de la barre d’outils",
- "description": ""
- },
- "optionsCustomizeUpdate": {
- "message": "Mises à jour",
- "description": ""
+ "message": "Icône de la barre d’outils"
},
"optionsCustomizeSync": {
- "message": "Synchroniser dans le nuage",
- "description": ""
+ "message": "Synchroniser dans le nuage"
+ },
+ "optionsCustomizeUpdate": {
+ "message": "Mises à jour"
},
"optionsIconDark": {
- "message": "Thème foncé",
- "description": ""
+ "message": "Thème foncé"
},
"optionsIconLight": {
- "message": "Thème clair",
- "description": ""
+ "message": "Thème clair"
},
"optionsOpen": {
- "message": "Ouvrir",
- "description": ""
+ "message": "Ouvrir"
},
"optionsOpenManager": {
- "message": "Gérer les styles",
- "description": ""
+ "message": "Gérer les styles"
},
"optionsPopupWidth": {
- "message": "Largeur de la popup (en pixels)",
- "description": ""
+ "message": "Largeur de la popup (en pixels)"
},
"optionsReset": {
- "message": "Ré-initialiser les options",
- "description": ""
+ "message": "Ré-initialiser les options"
},
"optionsResetButton": {
- "message": "Ré-initialiser les options",
- "description": ""
+ "message": "Ré-initialiser les options"
},
"optionsSubheading": {
- "message": "Plus de paramètres",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "Quand vous importez des sauvegardes de style d’une ancienne version ou de Stylish, faites une vérification manuellement pour vous assurez que tous les styles sont à jour.",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "Intervalle de mise à jour automatique des styles utilisateur en heures (spécifier 0 pour désactiver)",
- "description": ""
- },
- "optionsSyncNone": {
- "message": "Aucun",
- "description": ""
+ "message": "Plus de paramètres"
},
"optionsSyncConnect": {
- "message": "Connecter",
- "description": ""
+ "message": "Connecter"
},
"optionsSyncDisconnect": {
- "message": "Disconnecter",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "Synchroniser maintenant",
- "description": ""
+ "message": "Déconnecter"
},
"optionsSyncLogin": {
- "message": "Se connecter",
- "description": ""
+ "message": "Se connecter"
+ },
+ "optionsSyncNone": {
+ "message": "Aucun"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "Connecté"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "Connection..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "Déconnecté"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "Déconnexion..."
},
"optionsSyncStatusPull": {
"message": "Récupération du style $loaded$de $total$",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1051,7 +840,6 @@
},
"optionsSyncStatusPush": {
"message": "Application du style $loaded$ de $total$",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1062,256 +850,193 @@
}
},
"optionsSyncStatusSyncing": {
- "message": "Synchronisation...",
- "description": ""
+ "message": "Synchronisation..."
},
- "optionsSyncStatusConnecting": {
- "message": "Connection...",
- "description": ""
+ "optionsSyncSyncNow": {
+ "message": "Synchroniser maintenant"
},
- "optionsSyncStatusConnected": {
- "message": "Connecté",
- "description": ""
+ "optionsUpdateImportNote": {
+ "message": "Quand vous importez des sauvegardes de style d’une ancienne version ou de Stylish, faites une vérification manuellement pour vous assurez que tous les styles sont à jour."
},
- "optionsSyncStatusDisconnecting": {
- "message": "Disconnection...",
- "description": ""
+ "optionsUpdateInterval": {
+ "message": "Intervalle de mise à jour automatique des styles utilisateur en heures (spécifier 0 pour désactiver)"
},
- "optionsSyncStatusDisconnected": {
- "message": "Disconnecté",
- "description": ""
+ "overwriteFileExport": {
+ "message": "Voulez-vous écraser un fichier existant ?"
},
"paginationCurrent": {
- "message": "Page courante",
- "description": "Tooltip for the current page index in search results"
+ "message": "Page courante"
},
"paginationEstimated": {
- "message": "Nombre de pages estimé",
- "description": "Tooltip for the total page count in search results"
+ "message": "Nombre de pages estimé"
},
"paginationNext": {
- "message": "Page suivante",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "Page suivante"
},
"paginationPrevious": {
- "message": "Page précédente",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "Page précédente"
},
"paginationTotal": {
- "message": "Pages au total",
- "description": ""
+ "message": "Pages au total"
},
"parseUsercssError": {
- "message": "Stylus a échoué à parser le usercss :",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "Stylus a échoué à parser le usercss :"
},
"popupAutoResort": {
- "message": "Retrier les styles dans la popup à chaque (dés)activation",
- "description": "Label for the checkbox controlling popup resorting."
+ "message": "Retrier les styles dans la popup à chaque (dés)activation"
},
"popupBorders": {
- "message": "Ajouter des bordures blanches sur les côtés",
- "description": ""
+ "message": "Ajouter des bordures blanches sur les côtés"
},
"popupBordersTooltip": {
- "message": "Utile pour les thèmes sombres dans le nouveau Chrome qui ne décore plus les bordures sur les côtés",
- "description": ""
+ "message": "Utile pour les thèmes sombres dans le nouveau Chrome qui ne décore plus les bordures sur les côtés"
},
"popupHotkeysInfo": {
- "message": "<1>-<9>, <0>, aussi sur le pavé numérique - (dés)active le Nième style (0 correspond à 10)\n- (dés)active le 1er style avec un nom qui commence par la lettre\n ouvre l’éditeur au lieu de (dés)activer\n active les styles listés\n désactive les styles listés\n et <`> (accent grave) — désactive les styles initialement activés ; ne s’applique pas aux styles activés ensuite pendant que la popup est ouverte pour que vous puissiez restaurer la sélection initiale après avoir tester des choses : désactive simplement tout, puis (dés)active par ex. \nPlus d’informations sur le wiki",
- "description": "NOTE1: preserve < and > symbols so that is styled as a key.\nNOTE2: the last line is displayed as a text of the link to the wiki page.\nNOTE3: this is the list of hotkeys displayed after clicking the right edge of the extension popup."
+ "message": "<1>-<9>, <0>, aussi sur le pavé numérique - (dés)active le Nième style (0 correspond à 10)\n- (dés)active le 1er style avec un nom qui commence par la lettre\n ouvre l’éditeur au lieu de (dés)activer\n active les styles listés\n désactive les styles listés\n et <`> (accent grave) — désactive les styles initialement activés ; ne s’applique pas aux styles activés ensuite pendant que la popup est ouverte pour que vous puissiez restaurer la sélection initiale après avoir tester des choses : désactive simplement tout, puis (dés)active par ex. \nPlus d’informations sur le wiki"
},
"popupHotkeysTooltip": {
- "message": "Cliquez pour voir les raccourcis clavier disponibles",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "Cliquez pour voir les raccourcis clavier disponibles"
},
"popupManageTooltip": {
- "message": "Maj-clic ou clic droit ouvre le gestionnaire avec les styles applicables au site courant.",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Maj-clic ou clic droit ouvre le gestionnaire avec les styles applicables au site courant."
},
"popupMenuButtonTooltip": {
- "message": "Actions",
- "description": "Tooltip for menu button in popup."
+ "message": "Actions"
},
"popupOpenEditInWindow": {
- "message": "Ouvrir l'éditeur dans une nouvelle fenêtre",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Ouvrir l'éditeur dans une nouvelle fenêtre"
},
"popupOpenEditInWindowTooltip": {
- "message": "Également activé en détachant l’onglet de l’éditeur depuis une fenêtre du navigateur,\net désactivé en attachant un unique onglet de l’éditeur dans une autre fenêtre.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Également activé en détachant l’onglet de l’éditeur depuis une fenêtre du navigateur,\net désactivé en attachant un unique onglet de l’éditeur dans une autre fenêtre."
},
"popupStylesFirst": {
- "message": "List styles before commands in the toolbar button menu",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "List styles before commands in the toolbar button menu"
},
"prefShowBadge": {
- "message": "Afficher le nombre de styles actifs pour le site actuel sur le boutton Stylus",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Afficher le nombre de styles actifs pour le site actuel sur le boutton Stylus"
},
"previewLabel": {
- "message": "Prévisualiser en direct",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "Prévisualiser en direct"
},
"previewTooltip": {
- "message": "Applique temporairement les changements sans sauvegarder.\nSauvegarde le style pour rendre les changements permanents.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "Applique temporairement les changements sans sauvegarder.\nSauvegarde le style pour rendre les changements permanents."
+ },
+ "readingStyles": {
+ "message": "Lecture des styles…"
},
"reload": {
- "message": "Recharger l´extension Stylus",
- "description": "Context menu reload"
+ "message": "Recharger l´extension Stylus"
},
"replace": {
- "message": "Remplacer",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Remplacer"
},
"replaceAll": {
- "message": "Tout remplacer",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Tout remplacer"
},
"replaceWith": {
- "message": "Remplacer par",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Remplacer par"
},
"retrieveBckp": {
- "message": "Importer des styles",
- "description": ""
+ "message": "Importer des styles"
+ },
+ "retrieveDropboxSync": {
+ "message": "Importer depuis Dropbox"
},
"search": {
- "message": "Rechercher",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Rechercher"
},
"searchCaseSensitive": {
- "message": "Sensible à la casse",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "Sensible à la casse"
},
"searchNumberOfResults": {
- "message": "Nombre de correspondances",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Nombre de correspondances"
},
"searchNumberOfResults2": {
- "message": "Nombre de correspondances dans le code et les valeurs « s’applique à »",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Nombre de correspondances dans le code et les valeurs « s’applique à »"
},
"searchRegexp": {
- "message": "Utilisez la syntaxe /re/ pour rechercher par regexp",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "Utilisez la syntaxe /re/ pour rechercher par regexp"
},
"searchResultInstallCount": {
- "message": "Total d'installations",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "Total d'installations"
},
"searchResultNoneFound": {
- "message": "Aucun style trouvé pour ce site",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "Aucun style trouvé pour ce site"
},
"searchResultRating": {
- "message": "Note",
- "description": "Text for label that shows the search result's rating"
+ "message": "Note"
},
"searchResultUpdated": {
- "message": "Mis à jour",
- "description": "Text for label that shows the search result's last update date"
+ "message": "Mis à jour"
},
"searchResultWeeklyCount": {
- "message": "Installations hebdomadaires",
- "description": "Text for label that shows the number of times a search result was installed during last week"
- },
- "searchStyles": {
- "message": "Rechercher dans le contenu",
- "description": "Label for the search filter textbox on the Manage styles page"
- },
- "searchStylesHelp": {
- "message": "La touche > place le curseur dans le champ de recherche.\nText brut : cherche parmi le nom, code, URL de la page d’accueil et les sites auquel il s’applique. Les mots avec moins de 3 lettres sont ignorés.\nStyles correspondant à une URL complète : préfixez la recherche avec , par ex. \nExpressions rationnelles : incluez les slash et les chevrons, par ex. \nMots exacts : entourez la requête de guillemets droits, par ex. <\".header ~ div\">",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
+ "message": "Installations hebdomadaires"
},
"sectionAdd": {
- "message": "Ajouter une section",
- "description": "Label for the button to add a section"
+ "message": "Ajouter une section"
},
"sectionRemove": {
- "message": "Supprimer la section",
- "description": "Label for the button to remove a section"
+ "message": "Supprimer la section"
},
"sectionRestore": {
- "message": "Restaurer la section supprimée",
- "description": "Label for the button to restore a removed section"
+ "message": "Restaurer la section supprimée"
},
"shortcuts": {
- "message": "Raccourcis",
- "description": "Go to shortcut configuration"
+ "message": "Raccourcis"
},
"shortcutsNote": {
- "message": "Définir les raccourcis clavier",
- "description": ""
+ "message": "Définir les raccourcis clavier"
},
"sortDateNewestFirst": {
- "message": "les plus récents en premier",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "les plus récents en premier"
},
"sortDateOldestFirst": {
- "message": "les plus anciens en premier",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "les plus anciens en premier"
},
"sortLabel": {
- "message": "Choisissez un tri à appliquer aux styles installés",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "Choisissez un tri à appliquer aux styles installés"
},
"sortLabelTitleAsc": {
- "message": "Titre croissant",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "Titre croissant"
},
"sortLabelTitleDesc": {
- "message": "Titre décroissant",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "Titre décroissant"
},
"sortStylesHelp": {
- "message": "Choisir le type de tri à appliquer aux entrées installées à l’intérieur du menu de tri. La configuration par défaut applique un tri croissant (de A à Z) aux titres des entrées. Le tri « Titre décroissant » va appliquer un tri décroissant (de Z à A) aux titres.\nIl y a d’autres préréglages qui vous permettent de trier les entrées par de multiples critères. Pensez à ça comme trier un tableau avec de multiples colonnes et chaque catégorie dans une sélection (entre les signes plus) représente une colonne, ou groupe.\nPar exemple, si le paramètre est « Activé (en premier) + Titre », les entrées vont être triées de telle sorte que les entrées activées sont triées en haut de la liste, puis un tri croissant (de A à Z) est appliqué séparément sur les titres des entrées activées et des entrées désactivées.",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the sort input field on the Manage styles page"
+ "message": "Choisir le type de tri à appliquer aux entrées installées à l’intérieur du menu de tri. La configuration par défaut applique un tri croissant (de A à Z) aux titres des entrées. Le tri « Titre décroissant » va appliquer un tri décroissant (de Z à A) aux titres.\nIl y a d’autres préréglages qui vous permettent de trier les entrées par de multiples critères. Pensez à ça comme trier un tableau avec de multiples colonnes et chaque catégorie dans une sélection (entre les signes plus) représente une colonne, ou groupe.\nPar exemple, si le paramètre est « Activé (en premier) + Titre », les entrées vont être triées de telle sorte que les entrées activées sont triées en haut de la liste, puis un tri croissant (de A à Z) est appliqué séparément sur les titres des entrées activées et des entrées désactivées."
},
"sortStylesHelpTitle": {
- "message": "Trier les contenus",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "Trier les contenus"
},
"styleBadRegexp": {
- "message": "Le Regexp est éronné",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Le Regexp est éronné"
},
"styleBeautify": {
- "message": "Embellir ",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "Embellir "
},
"styleBeautifyIndentConditional": {
- "message": "Indenter @media, @supports",
- "description": "CSS-beautifier option"
+ "message": "Indenter @media, @supports"
},
"styleBeautifyPreserveNewlines": {
- "message": "Conserver les sauts de ligne",
- "description": "CSS-beautifier option"
+ "message": "Conserver les sauts de ligne"
},
"styleCancelEditLabel": {
- "message": "Retour à la gestion",
- "description": "Label for cancel button for style editing"
+ "message": "Retour à la gestion"
},
"styleChangesNotSaved": {
- "message": "Vous avez apporté des modifications à ce style sans les enregistrer.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Vous avez apporté des modifications à ce style sans les enregistrer."
},
"styleEnabledLabel": {
- "message": "Activé",
- "description": "Label for the enabled state of styles"
+ "message": "Activé"
},
"styleFromMozillaFormatError": {
- "message": "Échec de l'importation depuis le format Mozilla",
- "description": "Label for the import error"
+ "message": "Échec de l'importation depuis le format Mozilla"
},
"styleFromMozillaFormatPrompt": {
- "message": "Coller le code au format Mozilla",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Coller le code au format Mozilla"
},
"styleInstall": {
"message": "Installer \"$stylename$\" dans Stylus ?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1320,7 +1045,6 @@
},
"styleInstallFailed": {
"message": "Échec de l’installation du style utilisateur !\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1329,86 +1053,68 @@
},
"styleInstallOverwrite": {
"message": "\"$stylename$\" est déjà installé. L'écraser ?\nVersion : $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "Veuillez saisir un nom",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Veuillez saisir un nom"
},
"styleMozillaFormatHeading": {
- "message": "Format Mozilla",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Format Mozilla"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "Le style n'a pu s'appliquer en raison d'une utilisation erronée de 'regexp()'",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "Le style n'a pu s'appliquer en raison d'une utilisation erronée de 'regexp()'"
},
"styleRegexpInvalidExplanation": {
- "message": "Quelques règles 'regexp()' qui n’ont pas pu être compilées",
- "description": ""
+ "message": "Quelques règles 'regexp()' qui n’ont pas pu être compilées"
},
"styleRegexpPartialExplanation": {
- "message": "Ce style utilise des regexps correspondant partiellement en violation de la spécification CSS4 @document qui demande une correspondance totale de l’URL. Les sections de CSS affectées n’ont pas été appliquées à la page. Ce style a probablement été créé dans Stylish-for-Chrome qui vérifie mal les règles « regexp() » depuis sa toute première version (bug connu).",
- "description": ""
+ "message": "Ce style utilise des regexps correspondant partiellement en violation de la spécification CSS4 @document qui demande une correspondance totale de l’URL. Les sections de CSS affectées n’ont pas été appliquées à la page. Ce style a probablement été créé dans Stylish-for-Chrome qui vérifie mal les règles « regexp() » depuis sa toute première version (bug connu)."
},
"styleRegexpProblemTooltip": {
- "message": "Nombre de sections non appliquées à cause d’une utilisation incorrecte de 'regexp()'",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "Nombre de sections non appliquées à cause d’une utilisation incorrecte de 'regexp()'"
},
"styleRegexpTestButton": {
- "message": "Test d’expression rationnelle",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "Test d’expression rationnelle"
},
"styleRegexpTestFull": {
- "message": "Onglets correspondants",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "Onglets correspondants"
},
"styleRegexpTestInvalid": {
- "message": "Expression rationnelle invalides ignorées",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "Expression rationnelle invalides ignorées"
},
"styleRegexpTestNone": {
- "message": "Aucun onglet correspondant",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "Aucun onglet correspondant"
},
"styleRegexpTestNote": {
- "message": "Note : utilisez un simple \\ pour échapper dans le champ de regexp, qui sera automatiquement converti en \\\\ dans le code conformément à la spécification des chaines citées en CSS.",
- "description": "RegExp test report: a note displayed at the bottom of the dialog"
+ "message": "Note : utilisez un simple \\ pour échapper dans le champ de regexp, qui sera automatiquement converti en \\\\ dans le code conformément à la spécification des chaines citées en CSS."
},
"styleRegexpTestPartial": {
- "message": "Correspondance partielle, donc ignorée",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "Correspondance partielle, donc ignorée"
},
"styleRegexpTestTitle": {
- "message": "Liste d’onglets ouverts correspondants (cliquez sur l’URL pour focaliser son onglet)",
- "description": "RegExp test report: title of the report"
+ "message": "Liste d’onglets ouverts correspondants (cliquez sur l’URL pour focaliser son onglet)"
},
"styleSaveLabel": {
- "message": "Enregistrer",
- "description": "Label for save button for style editing"
+ "message": "Enregistrer"
},
"styleToMozillaFormatHelp": {
- "message": "Le code au format Mozilla peut être utilisé dans Stylish for Firefox et envoyé à userstyles.org.",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Le code au format Mozilla peut être utilisé dans Stylish for Firefox et envoyé à userstyles.org."
},
"styleToMozillaFormatTitle": {
- "message": "Style au format Mozilla",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Style au format Mozilla"
},
"styleUpdate": {
"message": "Voulez-vous mettre à jour « $stylename$ » ?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1416,72 +1122,55 @@
}
},
"styleUpdateDiscardChanges": {
- "message": "Le style a été changé en dehors de l’éditeur. Voulez-vous recharger le style ?",
- "description": "Confirmation to update the style in the editor"
+ "message": "Le style a été changé en dehors de l’éditeur. Voulez-vous recharger le style ?"
},
"stylusUnavailableForURL": {
- "message": "Stylus ne fonctionne pas sur les pages de ce genre",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Stylus ne fonctionne pas sur les pages de ce genre"
},
"stylusUnavailableForURLdetails": {
- "message": "Par mesure de sécurité, le navigateur interdit aux extensions d’affecter ses pages internes (comme chrome://version, la page nouvel onglet standard de Chrome 61, about:addons, etc.) ainsi que les pages d’autres extensions. Chaque navigateur restreint également l’accès à sa propre galerie d’extensions (tel que le Chrome Web Store ou AMO).",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Par mesure de sécurité, le navigateur interdit aux extensions d’affecter ses pages internes (comme chrome://version, la page nouvel onglet standard de Chrome 61, about:addons, etc.) ainsi que les pages d’autres extensions. Chaque navigateur restreint également l’accès à sa propre galerie d’extensions (tel que le Chrome Web Store ou AMO)."
+ },
+ "syncDropboxDeprecated": {
+ "message": "L´import/export Dropbox est remplacé par une méthode de synchronisation de styles plus avancés dans la page des options"
+ },
+ "syncDropboxStyles": {
+ "message": "Exporter vers Dropbox"
},
"syncStorageErrorSaving": {
- "message": "La valeur ne peut pas être sauvegardée. Essayez de réduire la quantité de texte.",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "La valeur ne peut pas être sauvegardée. Essayez de réduire la quantité de texte."
},
"toggleStyle": {
- "message": "(Dés)activer le style",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "(Dés)activer le style"
},
"undo": {
- "message": "Annuler",
- "description": "Button label"
+ "message": "Annuler"
},
"undoGlobal": {
- "message": "Tout annuler",
- "description": "CSS-beautify global Undo button label"
+ "message": "Tout annuler"
},
"unreachableAMO": {
- "message": "Firefox interdit l'accès pour ce site",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "Firefox interdit l'accès pour ce site"
},
"unreachableAMOHint": {
- "message": "Pour autoriser l’accès, ouvrir , clic-droit sur la liste, cliquez sur « Nouvelle » puis « Valeur booléenne », coller et cliquer sur OK, , OK, et rechargez la page .",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintNewFF": {
- "message": "Pour Firefox 60 et suivants, vous devez également supprimer le domaine AMO de dans .",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Seul Firefox 59 et supérieur peut être configuré pour autoriser les WebExtensions à ajouter des éléments de style sur des sites protégés par CSP comme celui-ci.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "Pour autoriser l’accès, ouvrir , clic-droit sur la liste, cliquez sur « Nouvelle » puis « Valeur booléenne », coller et cliquer sur OK, , OK, et rechargez la page ."
},
"unreachableContentScript": {
- "message": "Impossible de communiquer avec la page. Essayez de recharger l’onglet.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "Impossible de communiquer avec la page. Essayez de recharger l’onglet."
},
"unreachableFileHint": {
- "message": "Stylus peut accéder aux URL file:// uniquement si vous cochez la case correspondante pour l’extension Stylus sur la page chrome://extensions.",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "Stylus peut accéder aux URL file:// uniquement si vous cochez la case correspondante pour l’extension Stylus sur la page chrome://extensions."
},
- "InaccessibleFileHint": {
- "message": "Stylus ne peut pas accéder à certains types de fichiers (ex: fichiers .pdf et .json).",
- "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ "unzipStyles": {
+ "message": "Décompression des styles…"
},
"updateAllCheckSucceededNoUpdate": {
- "message": "Aucune mise à jour trouvée.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Aucune mise à jour trouvée."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "Certains styles pouvant être mis à jour n’ont pas été vérifiés pour éviter de perdre de potentiels modifications locales. Les mises à jour peuvent être forcées en vérifiant individuellement, ou en lançant une autre vérification pour tous les styles (les modifications locales seront perdues).",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Certains styles pouvant être mis à jour n’ont pas été vérifiés pour éviter de perdre de potentiels modifications locales. Les mises à jour peuvent être forcées en vérifiant individuellement, ou en lançant une autre vérification pour tous les styles (les modifications locales seront perdues)."
},
"updateCheckFailBadResponseCode": {
"message": "Échec de la mise à jour: le serveur a renvoyé le code $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1489,127 +1178,63 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Échec de la mise à jour: le serveur est inaccessible.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Échec de la mise à jour: le serveur est inaccessible."
},
"updateCheckHistory": {
- "message": "Historique des vérifications de mises à jour",
- "description": ""
+ "message": "Historique des vérifications de mises à jour"
},
"updateCheckManualUpdateForce": {
- "message": "Installer les mises à jour (les modifications locales seront écrasées)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Installer les mises à jour (les modifications locales seront écrasées)"
},
"updateCheckManualUpdateHint": {
- "message": "Forcer une mise à jour écrasera les modifications faites localement.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Forcer une mise à jour écrasera les modifications faites localement."
},
"updateCheckSkippedLocallyEdited": {
- "message": "Ce style a été modifié localement",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Ce style a été modifié localement"
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "Ce style a peut-être été modifié localement.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "Ce style a peut-être été modifié localement."
},
"updateCheckSucceededNoUpdate": {
- "message": "Le style est à jour.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "Le style est à jour."
},
"updateCompleted": {
- "message": "Mise à jour terminée.",
- "description": "Text that displays when an update completed"
+ "message": "Mise à jour terminée."
},
"updatesCurrentlyInstalled": {
- "message": "Mises à jour installées :",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "Veuillez changer la valeur de @name ou @namespace afin d'éviter d'écraser un style pré-existant.",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssConfigIncomplete": {
- "message": "Le style a été mis à jour ou supprimer après l’apparition du dialogue de confirmation. Ces variables n’ont pas été sauvegardées pour éviter de corrompre les métadonnées du style :",
- "description": ""
- },
- "usercssEditorNamePlaceholder": {
- "message": "Spécifiez @name dans le code",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateConfirmation": {
- "message": "Remplacer le modèle par défaut pour les nouveaux styles Usercss par le code actuel ?",
- "description": ""
- },
- "usercssReplaceTemplateName": {
- "message": "Un @name vide remplace le modèle par défaut",
- "description": "The text shown after @name when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "Insérer le code ici...",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "La version est antérieure à celle déjà installée.",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "Écrire un style pour :",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "cette URL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "syncDropboxStyles": {
- "message": "Exporter vers Dropbox",
- "description": ""
- },
- "syncDropboxDeprecated": {
- "message": "L´import/export Dropbox est remplacé par une méthode de synchronisation de styles plus avancés dans la page des options",
- "description": ""
- },
- "retrieveDropboxSync": {
- "message": "Importer depuis Dropbox",
- "description": ""
- },
- "overwriteFileExport": {
- "message": "Voulez-vous écraser un fichier existant ?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "Fichier sauvegardé avec succès",
- "description": ""
- },
- "noFileToImport": {
- "message": "Pour importer vos styles, vous devez d’abord les exporter.",
- "description": ""
- },
- "connectingDropbox": {
- "message": "Connexion à Dropbox…",
- "description": ""
- },
- "connectingDropboxNotAllowed": {
- "message": "La connexion à Dropbox est disponible uniquement dans les applications installées directement depuis le Web Store.",
- "description": ""
- },
- "gettingStyles": {
- "message": "Récupération de tous les styles…",
- "description": ""
- },
- "zipStyles": {
- "message": "Compression des styles…",
- "description": ""
- },
- "unzipStyles": {
- "message": "Décompression des styles…",
- "description": ""
- },
- "readingStyles": {
- "message": "Lecture des styles…",
- "description": ""
+ "message": "Mises à jour installées :"
},
"uploadingFile": {
- "message": "Envoi du fichier…",
- "description": ""
+ "message": "Envoi du fichier…"
+ },
+ "usercssAvoidOverwriting": {
+ "message": "Veuillez changer la valeur de @name ou @namespace afin d'éviter d'écraser un style pré-existant."
+ },
+ "usercssConfigIncomplete": {
+ "message": "Le style a été mis à jour ou supprimer après l’apparition du dialogue de confirmation. Ces variables n’ont pas été sauvegardées pour éviter de corrompre les métadonnées du style :"
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "Spécifiez @name dans le code"
+ },
+ "usercssReplaceTemplateConfirmation": {
+ "message": "Remplacer le modèle par défaut pour les nouveaux styles Usercss par le code actuel ?"
+ },
+ "usercssReplaceTemplateName": {
+ "message": "Un @name vide remplace le modèle par défaut"
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "Insérer le code ici..."
+ },
+ "versionInvalidOlder": {
+ "message": "La version est antérieure à celle déjà installée."
+ },
+ "writeStyleFor": {
+ "message": "Écrire un style pour :"
+ },
+ "writeStyleForURL": {
+ "message": "cette URL"
+ },
+ "zipStyles": {
+ "message": "Compression des styles…"
}
}
diff --git a/_locales/fy/messages.json b/_locales/fy/messages.json
index b31422bb..e186fc6a 100644
--- a/_locales/fy/messages.json
+++ b/_locales/fy/messages.json
@@ -1,19 +1,15 @@
{
"addStyleLabel": {
- "message": "Nije styl skriuwe",
- "description": "Label for the button to go to the add style page"
+ "message": "Nije styl skriuwe"
},
"addStyleTitle": {
- "message": "Styl tafoegje",
- "description": "Title of the page for adding styles"
+ "message": "Styl tafoegje"
},
"appliesAdd": {
- "message": "Tafoegje",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Tafoegje"
},
"appliesDisplay": {
"message": "Fan tapassing op: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -21,107 +17,81 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "en mear",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "en mear"
},
"appliesDomainOption": {
- "message": "URL’s op it domein",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL’s op it domein"
},
"appliesHelp": {
- "message": "Brûk de ‘Fan tapassing op’-funksjes om de URL’s foar de koade yn dizze seksje te beheinen.",
- "description": "Help text for 'applies to' section"
+ "message": "Brûk de ‘Fan tapassing op’-funksjes om de URL’s foar de koade yn dizze seksje te beheinen."
},
"appliesLabel": {
- "message": "Fan tapassing op",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Fan tapassing op"
},
"appliesRegexpOption": {
- "message": "URL’s oerienkommend mei de regexp",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URL’s oerienkommend mei de regexp"
},
"appliesRemove": {
- "message": "Fuortsmite",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Fuortsmite"
},
"appliesSpecify": {
- "message": "Spesifisearje",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Spesifisearje"
},
"appliesToEverything": {
- "message": "Alles",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Alles"
},
"appliesUrlPrefixOption": {
- "message": "URL’s begjinnend mei",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL’s begjinnend mei"
},
"applyAllUpdates": {
- "message": "Alle fernijingen tapasse",
- "description": "Label for the button to apply all detected updates"
+ "message": "Alle fernijingen tapasse"
},
"checkAllUpdates": {
- "message": "Alle stilen kontrolearje op fernijingen",
- "description": "Label for the button to check all styles for updates"
+ "message": "Alle stilen kontrolearje op fernijingen"
},
"checkForUpdate": {
- "message": "Kontrolearje op fernijing",
- "description": "Label for the button to check a single style for an update"
+ "message": "Kontrolearje op fernijing"
},
"checkingForUpdate": {
- "message": "Kontrolearje...",
- "description": "Text to display when checking a style for an update"
+ "message": "Kontrolearje..."
},
"cm_indentWithTabs": {
- "message": "Ljepblêden mei tûke ynspringing brûke",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Ljepblêden mei tûke ynspringing brûke"
},
"cm_keyMap": {
- "message": "Toetseboerdyndieling",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Toetseboerdyndieling"
},
"cm_lineWrapping": {
- "message": "Teksttebekrin",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Teksttebekrin"
},
"cm_smartIndent": {
- "message": "Tûke ynspringing brûke",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Tûke ynspringing brûke"
},
"cm_tabSize": {
- "message": "Ljepblêdgrutte",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Ljepblêdgrutte"
},
"cm_theme": {
- "message": "Tema",
- "description": "Label for the style editor's CSS theme."
+ "message": "Tema"
},
"confirmNo": {
- "message": "Nee",
- "description": "'No' button in a confirm dialog"
+ "message": "Nee"
},
"confirmStop": {
- "message": "Stoppe",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Stoppe"
},
"confirmYes": {
- "message": "Ja",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Ja"
},
"dbError": {
- "message": "Der is in flater bard by it brûken fan de Stylus-database. Wolle jo in webside mei mooglike oplossingen besykje?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Der is in flater bard by it brûken fan de Stylus-database. Wolle jo in webside mei mooglike oplossingen besykje?"
},
"defaultTheme": {
- "message": "standert",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "standert"
},
"deleteStyleConfirm": {
- "message": "Binne jo wis dat jo dizze styl fuortsmite wolle?",
- "description": "Confirmation before deleting a style"
+ "message": "Binne jo wis dat jo dizze styl fuortsmite wolle?"
},
"deleteStyleLabel": {
- "message": "Fuortsmite",
- "description": "Label for the button to delete a style"
+ "message": "Fuortsmite"
}
-}
\ No newline at end of file
+}
diff --git a/_locales/gl/messages.json b/_locales/gl/messages.json
index 2aea3704..2f3b1c55 100644
--- a/_locales/gl/messages.json
+++ b/_locales/gl/messages.json
@@ -1,19 +1,15 @@
{
"addStyleTitle": {
- "message": "Engadir Estilo",
- "description": "Title of the page for adding styles"
+ "message": "Engadir Estilo"
},
"alphaChannel": {
- "message": "Opacidade",
- "description": "Label of color's opacity"
+ "message": "Opacidade"
},
"appliesAdd": {
- "message": "Engadir",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Engadir"
},
"appliesDisplay": {
"message": "Aplica a: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -21,47 +17,36 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "e mais",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "e mais"
},
"appliesDomainOption": {
- "message": "URLs no dominio",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URLs no dominio"
},
"appliesLabel": {
- "message": "Aplica para",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Aplica para"
},
"appliesLineWidgetWarning": {
- "message": "Non funciona con CSS minificado",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "Non funciona con CSS minificado"
},
"appliesRegexpOption": {
- "message": "URLs que concorden co regexp",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URLs que concorden co regexp"
},
"appliesRemove": {
- "message": "Suprimir",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Suprimir"
},
"appliesSpecify": {
- "message": "Especificar",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Especificar"
},
"appliesToEverything": {
- "message": "Todo",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Todo"
},
"appliesUrlPrefixOption": {
- "message": "URLs que comecen por",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URLs que comecen por"
},
"applyAllUpdates": {
- "message": "Aplicar tódalas actualizacións",
- "description": "Label for the button to apply all detected updates"
+ "message": "Aplicar tódalas actualizacións"
},
"author": {
- "message": "Autor",
- "description": "Label for the style author"
+ "message": "Autor"
}
-}
\ No newline at end of file
+}
diff --git a/_locales/he/messages.json b/_locales/he/messages.json
index c9b25a9a..a41eb011 100644
--- a/_locales/he/messages.json
+++ b/_locales/he/messages.json
@@ -1,23 +1,18 @@
{
"addStyleLabel": {
- "message": "כתוב עיצוב חדש",
- "description": "Label for the button to go to the add style page"
+ "message": "כתוב עיצוב חדש"
},
"addStyleTitle": {
- "message": "הוסף עיצוב",
- "description": "Title of the page for adding styles"
+ "message": "הוסף עיצוב"
},
"alphaChannel": {
- "message": "שקיפות",
- "description": "Label of color's opacity"
+ "message": "שקיפות"
},
"appliesAdd": {
- "message": "הוסף",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "הוסף"
},
"appliesDisplay": {
"message": "חל על: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,296 +20,229 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "עוד",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "עוד"
},
"appliesDomainOption": {
- "message": "קישורים תחת הדומיין",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "קישורים תחת הדומיין"
},
"appliesHelp": {
- "message": "השתמש בהגדרות 'חל על' כדי להגביל את כתובות האתרים שהקוד בסעיף זה חל עליהם.",
- "description": "Help text for 'applies to' section"
+ "message": "השתמש בהגדרות 'חל על' כדי להגביל את כתובות האתרים שהקוד בסעיף זה חל עליהם."
},
"appliesLabel": {
- "message": "חל על",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "חל על"
},
"appliesLineWidgetLabel": {
- "message": "הצג אינפורמציית 'חל על'",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "הצג אינפורמציית 'חל על'"
},
"appliesLineWidgetWarning": {
- "message": "לא עובד עם CSS מוקטן (minified)",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "לא עובד עם CSS מוקטן (minified)"
},
"appliesRegexpOption": {
- "message": "קישורים התואמים את ה־regexp",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "קישורים התואמים את ה־regexp"
},
"appliesRemove": {
- "message": "הסר",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "הסר"
},
"appliesRemoveError": {
- "message": "לא ניתן להסיר את הערך 'חל על' האחרון",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "לא ניתן להסיר את הערך 'חל על' האחרון"
},
"appliesSpecify": {
- "message": "פרט",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "פרט"
},
"appliesToEverything": {
- "message": "כל האתרים",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "כל האתרים"
},
"appliesUrlOption": {
- "message": "כתובת אתר",
- "description": "Option to make the style apply to the entered string as a URL"
+ "message": "כתובת אתר"
},
"appliesUrlPrefixOption": {
- "message": "קישורים המתחילים ב",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "קישורים המתחילים ב"
},
"applyAllUpdates": {
- "message": "החל את כל העדכונים",
- "description": "Label for the button to apply all detected updates"
+ "message": "החל את כל העדכונים"
},
"author": {
- "message": "מחבר",
- "description": "Label for the style author"
+ "message": "מחבר"
},
"backupButtons": {
- "message": "גיבוי",
- "description": "Heading for backup"
+ "message": "גיבוי"
},
"backupMessage": {
- "message": "בחר קובץ או גרור ושחרר אותו בדף זה.",
- "description": "Message for backup"
+ "message": "בחר קובץ או גרור ושחרר אותו בדף זה."
},
"bckpInstStyles": {
- "message": "ייצא עיצובים",
- "description": ""
+ "message": "ייצא עיצובים"
},
"checkAllUpdates": {
- "message": "בדוקים עדכונים עבור כל העיצובים",
- "description": "Label for the button to check all styles for updates"
+ "message": "בדוקים עדכונים עבור כל העיצובים"
},
"checkAllUpdatesForce": {
- "message": "בדוק שוב, לא ערכתי אף עיצוב!",
- "description": "Label for the button to apply all detected updates"
+ "message": "בדוק שוב, לא ערכתי אף עיצוב!"
},
"checkForUpdate": {
- "message": "בדוק עדכונים",
- "description": "Label for the button to check a single style for an update"
+ "message": "בדוק עדכונים"
},
"checkingForUpdate": {
- "message": "בודק...",
- "description": "Text to display when checking a style for an update"
+ "message": "בודק..."
},
"clickToUninstall": {
- "message": "הקלק להסרה",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "הקלק להסרה"
},
"cm_autoCloseBrackets": {
- "message": "סגור באופן אוטומטי סוגריים וגרשיים",
- "description": "Label for the checkbox in the style editor."
+ "message": "סגור באופן אוטומטי סוגריים וגרשיים"
},
"cm_autoCloseBracketsTooltip": {
- "message": "הוסף סוגר באופן אוטומטי כשמקלידים את אחת מהפותחים של ()[]{}''\"\"",
- "description": "Label for the checkbox in the style editor."
+ "message": "הוסף סוגר באופן אוטומטי כשמקלידים את אחת מהפותחים של ()[]{}''\"\""
},
"cm_autocompleteOnTyping": {
- "message": "השלמה אוטומטית בזמן הכתיבה",
- "description": "Label for the checkbox in the style editor."
+ "message": "השלמה אוטומטית בזמן הכתיבה"
},
"cm_colorpicker": {
- "message": "פלטות בחירת צבעים עבור צבעי CSS",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "פלטות בחירת צבעים עבור צבעי CSS"
},
"cm_indentWithTabs": {
- "message": "השתמש בטאבים יחד עם הזחה חכמה",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "השתמש בטאבים יחד עם הזחה חכמה"
},
"cm_keyMap": {
- "message": "מפת מקשים",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "מפת מקשים"
},
"cm_lineWrapping": {
- "message": "עטיפת מילים",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "עטיפת מילים"
},
"cm_linter": {
- "message": "עורך שגיאות CSS",
- "description": "Select the linter to check for CSS issues"
+ "message": "עורך שגיאות CSS"
},
"cm_matchHighlight": {
- "message": "הדגש",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "הדגש"
},
"cm_matchHighlightSelection": {
- "message": "בחירה בלבד",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "בחירה בלבד"
},
"cm_matchHighlightToken": {
- "message": "תג תחת הסמן",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "תג תחת הסמן"
},
"cm_resizeGripHint": {
- "message": "דאבל קליק להגדלה מירבית/איפוס הגובה",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "דאבל קליק להגדלה מירבית/איפוס הגובה"
},
"cm_selectByTokens": {
- "message": "דאבל קליק בוחר תגים",
- "description": "Label for the checkbox in the editor."
+ "message": "דאבל קליק בוחר תגים"
},
"cm_selectByTokensTooltip": {
- "message": "דוגמאות לתגים: .foo-bar-2 #aabbcc 0.32 !important\nבמצב מושבת: נבחרות מילים המופרדות בין פיסוק.",
- "description": ""
+ "message": "דוגמאות לתגים: .foo-bar-2 #aabbcc 0.32 !important\nבמצב מושבת: נבחרות מילים המופרדות בין פיסוק."
},
"cm_smartIndent": {
- "message": "השתמש בהזחה חכמה",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "השתמש בהזחה חכמה"
},
"cm_tabSize": {
- "message": "גודל הכרטיסייה",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "גודל הכרטיסייה"
},
"cm_theme": {
- "message": "ערכת נושא",
- "description": "Label for the style editor's CSS theme."
+ "message": "ערכת נושא"
},
"colorpickerSwitchFormatTooltip": {
- "message": "החלף פורמטים: HEX -> RGB -> HSL.\nלחץ Shift כדי להפוך את הכיוון.\nגם באמצעות מקשי PgUp (PageUp), PgDn (PageDown).",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "החלף פורמטים: HEX -> RGB -> HSL.\nלחץ Shift כדי להפוך את הכיוון.\nגם באמצעות מקשי PgUp (PageUp), PgDn (PageDown)."
},
"colorpickerTooltip": {
- "message": "פתח את פלטת בחירת הצבעים",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "פתח את פלטת בחירת הצבעים"
},
"configOnChange": {
- "message": "בעת שינוי",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "בעת שינוי"
},
"configOnChangeTooltip": {
- "message": "שמור והחל שינויים באופן אוטומטי",
- "description": ""
+ "message": "שמור והחל שינויים באופן אוטומטי"
},
"configureStyle": {
- "message": "הגדר",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "הגדר"
},
"configureStyleOnHomepage": {
- "message": "הגדר בדף הבית",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "הגדר בדף הבית"
},
"confirmCancel": {
- "message": "ביטול",
- "description": ""
+ "message": "ביטול"
},
"confirmClose": {
- "message": "סגור",
- "description": "'Close' button in a confirm dialog"
+ "message": "סגור"
},
"confirmDefault": {
- "message": "השתמש בברירת מחדל",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "השתמש בברירת מחדל"
},
"confirmDelete": {
- "message": "מחיקה",
- "description": ""
+ "message": "מחיקה"
},
"confirmDiscardChanges": {
- "message": "למחוק את השינויים?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "למחוק את השינויים?"
},
"confirmNo": {
- "message": "לא",
- "description": "'No' button in a confirm dialog"
+ "message": "לא"
},
"confirmOK": {
- "message": "אוקיי",
- "description": ""
+ "message": "אוקיי"
},
"confirmSave": {
- "message": "שמור",
- "description": "'Save' button in a confirm dialog"
+ "message": "שמור"
},
"confirmStop": {
- "message": "עצור",
- "description": "'Stop' button in a confirm dialog"
+ "message": "עצור"
},
"confirmYes": {
- "message": "כן",
- "description": "'Yes' button in a confirm dialog"
+ "message": "כן"
+ },
+ "connectingDropbox": {
+ "message": "מתחבר אל Dropbox..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "התחברות אל Dropbox זמינה רק בהרחבות המותקנות ישירות מחנות האינטרנט"
},
"copied": {
- "message": "הועתק אל לוח ההעתקה",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "הועתק אל לוח ההעתקה"
},
"copy": {
- "message": "העתק אל לוח ההעתקה",
- "description": "Tooltip for elements which can be copied"
+ "message": "העתק אל לוח ההעתקה"
},
"dateInstalled": {
- "message": "תאריך התקנה",
- "description": "Option text for the user to sort the style by install date"
+ "message": "תאריך התקנה"
},
"dateUpdated": {
- "message": "תאריך עדכון",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "תאריך עדכון"
},
"dbError": {
- "message": "אירעה שגיאה בשימוש במסד הנתונים של Stylus. האם ברצונך לבקר בדף אינטרנט עם פתרונות אפשריים?",
- "description": "Prompt when a DB error is encountered"
+ "message": "אירעה שגיאה בשימוש במסד הנתונים של Stylus. האם ברצונך לבקר בדף אינטרנט עם פתרונות אפשריים?"
},
"defaultTheme": {
- "message": "ברירת מחדל",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "ברירת מחדל"
},
"deleteStyleConfirm": {
- "message": "האם אתה בטוח שברצונך למחוק עיצוב זה?",
- "description": "Confirmation before deleting a style"
+ "message": "האם אתה בטוח שברצונך למחוק עיצוב זה?"
},
"deleteStyleLabel": {
- "message": "מחק",
- "description": "Label for the button to delete a style"
+ "message": "מחק"
},
"description": {
- "message": "עיצוב מחדש של האינטרנט באמצעות Stylus, מנהל סגנונות משתמש. Stylus מאפשר לך להתקין בקלות עיצובים וערכות נושא עבור אתרים פופולריים רבים.",
- "description": "Extension description"
+ "message": "עיצוב מחדש של האינטרנט באמצעות Stylus, מנהל סגנונות משתמש. Stylus מאפשר לך להתקין בקלות עיצובים וערכות נושא עבור אתרים פופולריים רבים."
},
"disableAllStyles": {
- "message": "השבת את כל העיצובים",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "השבת את כל העיצובים"
},
"disableStyleLabel": {
- "message": "השבת",
- "description": "Label for the button to disable a style"
+ "message": "השבת"
},
"dragDropMessage": {
- "message": "שחרר את קובץ הגיבוי שלך בכל מקום בדף זה על־מנת לייבא אותו.",
- "description": "Drag'n'drop message"
+ "message": "שחרר את קובץ הגיבוי שלך בכל מקום בדף זה על־מנת לייבא אותו."
},
"editDeleteText": {
- "message": "מחק",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "מחק"
},
"editGotoLine": {
- "message": "גש לשורה (או line:col)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "גש לשורה (או line:col)"
},
"editStyleHeading": {
- "message": "ערוך עיצוב",
- "description": "Title of the page for editing styles"
+ "message": "ערוך עיצוב"
},
"editStyleLabel": {
- "message": "ערוך",
- "description": "Label for the button to go to the edit style page"
+ "message": "ערוך"
},
"editStyleTitle": {
"message": "עריכת העיצוב $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -322,220 +250,174 @@
}
},
"enableStyleLabel": {
- "message": "אפשר",
- "description": "Label for the button to enable a style"
+ "message": "אפשר"
},
"excludeStyleByDomainLabel": {
- "message": "אל תכלול את הדומיין הנוכחי",
- "description": ""
+ "message": "אל תכלול את הדומיין הנוכחי"
},
"excludeStyleByUrlLabel": {
- "message": "אל תכלול את כתובת האתר הנוכחית",
- "description": ""
+ "message": "אל תכלול את כתובת האתר הנוכחית"
},
"exportLabel": {
- "message": "ייצא",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "ייצא"
+ },
+ "exportSavedSuccess": {
+ "message": "קובץ נשמר בהצלחה"
},
"externalFeedback": {
- "message": "חוות דעת",
- "description": "Label for the external link to send feedback for the style"
+ "message": "חוות דעת"
},
"externalHomepage": {
- "message": "דף הבית",
- "description": "Label for the external link to style's homepage"
+ "message": "דף הבית"
},
"externalLink": {
- "message": "קישור חיצוני",
- "description": "Label for external links"
+ "message": "קישור חיצוני"
},
"externalSupport": {
- "message": "תמיכה",
- "description": "Label for the external link to style's support site"
+ "message": "תמיכה"
},
"externalUsercssDocument": {
- "message": "תיעוד ל־Usercss",
- "description": "Label for the external link to usercss documentation"
+ "message": "תיעוד ל־Usercss"
},
"filteredStyles": {
"message": "$numShown$ מתוך $numTotal$ סך־הכל",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "מסננים שהוחלו כעת אינם תואמים עיצובים",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "מסננים שהוחלו כעת אינם תואמים עיצובים"
},
"findStyles": {
- "message": "מצא עיצובים",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "מצא עיצובים"
},
"findStylesForSite": {
- "message": "מצא סגנונות נוספים לאתר זה",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "מצא סגנונות נוספים לאתר זה"
},
"findStylesInline": {
- "message": "מוטבע",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "מוטבע"
},
"findStylesInlineTooltip": {
- "message": "הצג תוצאות חיפוש בחלון זה.",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "הצג תוצאות חיפוש בחלון זה."
},
"genericAdd": {
- "message": "הוספה",
- "description": "Used in various places for an action that adds something"
+ "message": "הוספה"
},
"genericClone": {
- "message": "שכפול",
- "description": "Used in various places for an action that clones something"
+ "message": "שכפול"
},
"genericDisabledLabel": {
- "message": "מושבת",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "מושבת"
},
"genericEnabledLabel": {
- "message": "מאופשר",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "מאופשר"
},
"genericError": {
- "message": "שגיאה",
- "description": "Used in various places to indicate some error occurred."
+ "message": "שגיאה"
},
"genericHistoryLabel": {
- "message": "היסטוריה",
- "description": "Used in various places to show a history log of something"
+ "message": "היסטוריה"
},
"genericNext": {
- "message": "הבא",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "הבא"
},
"genericPrevious": {
- "message": "הקודם",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "הקודם"
},
"genericResetLabel": {
- "message": "איפוס",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "איפוס"
},
"genericSavedMessage": {
- "message": "נשמר",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "נשמר"
},
"genericTitle": {
- "message": "כותרת",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "כותרת"
},
"genericUnknown": {
- "message": "לא ידוע",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "לא ידוע"
+ },
+ "gettingStyles": {
+ "message": "טוען את כל העיצובים..."
},
"helpAlt": {
- "message": "עזרה",
- "description": "Alternate text for help buttons"
+ "message": "עזרה"
},
"helpKeyMapCommand": {
- "message": "הקלד שם פקודה",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "הקלד שם פקודה"
},
"helpKeyMapHotkey": {
- "message": "לחץ על המקש החם",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "לחץ על המקש החם"
},
"hostDisabled": {
- "message": "מארח זה הושבת בגלל באג בגרסה הנוכחית של הדפדפן בו נעשה שימוש",
- "description": "Tooltip for cloud host disabled"
+ "message": "מארח זה הושבת בגלל באג בגרסה הנוכחית של הדפדפן בו נעשה שימוש"
},
"importAppendLabel": {
- "message": "צרף לעיצוב",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "צרף לעיצוב"
},
"importAppendTooltip": {
- "message": "צרף את העיצוב המיובא לעיצוב הנוכחי",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "צרף את העיצוב המיובא לעיצוב הנוכחי"
},
"importLabel": {
- "message": "ייבא",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "ייבא"
},
"importReplaceLabel": {
- "message": "דרוס עיצוב",
- "description": "Label for the button to import and overwrite current style"
+ "message": "דרוס עיצוב"
},
"importReplaceTooltip": {
- "message": "הסר את התוכן של הסגנון הנוכחי והחלף אותו עם העיצוב המיובא",
- "description": "Label for the button to import and overwrite current style"
+ "message": "הסר את התוכן של הסגנון הנוכחי והחלף אותו עם העיצוב המיובא"
},
"importReportLegendAdded": {
- "message": "נוספו",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "נוספו"
},
"importReportLegendIdentical": {
- "message": "זהה דולג",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "זהה דולג"
},
"importReportLegendInvalid": {
- "message": "לא חוקי דולג",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "לא חוקי דולג"
},
"importReportLegendUpdatedBoth": {
- "message": "מטא דאטה והקוד עודכנו",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "מטא דאטה והקוד עודכנו"
},
"importReportLegendUpdatedCode": {
- "message": "קודים עודכנו",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "קודים עודכנו"
},
"importReportLegendUpdatedMeta": {
- "message": "מטא דאטה עודכן",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "מטא דאטה עודכן"
},
"importReportTitle": {
- "message": "סיום ייבוא עיצובים",
- "description": "Title of the report shown after importing styles"
+ "message": "סיום ייבוא עיצובים"
},
"importReportUnchanged": {
- "message": "שום דבר לא השתנה.",
- "description": "Message in the report shown after importing styles"
+ "message": "שום דבר לא השתנה."
},
"importReportUndone": {
- "message": "עיצובים הוחזרו",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "עיצובים הוחזרו"
},
"importReportUndoneTitle": {
- "message": "הייבוא בוטל",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "הייבוא בוטל"
},
"installButton": {
- "message": "התקן עיצוב",
- "description": "Label for install button"
+ "message": "התקן עיצוב"
},
"installButtonInstalled": {
- "message": "העיצוב הותקן בהצלחה",
- "description": "Text displayed when the style is successfully installed"
+ "message": "העיצוב הותקן בהצלחה"
},
"installButtonReinstall": {
- "message": "התקן עיצוב מחדש",
- "description": "Label for reinstall button"
+ "message": "התקן עיצוב מחדש"
},
"installButtonUpdate": {
- "message": "עדכן עיצוב",
- "description": "Label for update button"
+ "message": "עדכן עיצוב"
},
"installUpdate": {
- "message": "התקן עדכון",
- "description": "Label for the button to install an update for a single style"
+ "message": "התקן עדכון"
},
"installUpdateFrom": {
"message": "נכון לעכשיו הסגנון מעודכן מ־ $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -543,28 +425,22 @@
}
},
"installUpdateFromLabel": {
- "message": "בדוק עדכונים",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "בדוק עדכונים"
},
"license": {
- "message": "רישיון",
- "description": "Label for the license"
+ "message": "רישיון"
},
"linkGetHelp": {
- "message": "קבל עזרה",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "קבל עזרה"
},
"linkGetStyles": {
- "message": "מצא עיצובים",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "מצא עיצובים"
},
"linkTranslate": {
- "message": "תרגום",
- "description": "Transifex link text on the manage page"
+ "message": "תרגום"
},
"linterCSSLintIncompatible": {
"message": "עורך שגיאות ה־CSS אינו תומך ב־ $preprocessorname$ כמעבד מקדים",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -572,12 +448,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(הגדר כלל כ: 0 = מושבת; 1 = אזהרה; 2 = שגיאה)",
- "description": "CSSLint rule config values"
+ "message": "(הגדר כלל כ: 0 = מושבת; 1 = אזהרה; 2 = שגיאה)"
},
"linterConfigPopupTitle": {
"message": "הגדר $linter$ כללי תצורה",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -585,20 +459,16 @@
}
},
"linterConfigTooltip": {
- "message": "לחץ להגדרת linter זה",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "לחץ להגדרת linter זה"
},
"linterInvalidConfigError": {
- "message": "לא נשמר עקב הגדרות תצורה לא חוקיות אלה:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "לא נשמר עקב הגדרות תצורה לא חוקיות אלה:"
},
"linterIssues": {
- "message": "תקלות",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "תקלות"
},
"linterIssuesHelp": {
"message": "התקלות האלו נמצאו על־ידי $link$:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -606,112 +476,85 @@
}
},
"linterJSONError": {
- "message": "פורמט JSON לא תקין",
- "description": "Setting linter config with invalid JSON"
+ "message": "פורמט JSON לא תקין"
},
"linterResetMessage": {
- "message": "על־מנת לבטל איפוסים לא רצוניים, לחץ Ctrl-Z (או Cmd-Z) בתיבת הטקסט",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "על־מנת לבטל איפוסים לא רצוניים, לחץ Ctrl-Z (או Cmd-Z) בתיבת הטקסט"
},
"linterRulesLink": {
- "message": "ראה רשימת חוקים מלאה",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "ראה רשימת חוקים מלאה"
},
"liveReloadError": {
- "message": "התרחשה שגיאה בזמן הצפייה בקובץ",
- "description": "The label of live-reload error"
+ "message": "התרחשה שגיאה בזמן הצפייה בקובץ"
},
"liveReloadLabel": {
- "message": "רענון לייב (live)",
- "description": "The label of live-reload feature"
+ "message": "רענון לייב (live)"
},
"manageFavicons": {
- "message": "הצגת אייקונים בעמודת 'חל על'",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "הצגת אייקונים בעמודת 'חל על'"
},
"manageFaviconsGray": {
- "message": "האפרת האייקונים",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "האפרת האייקונים"
},
"manageFaviconsHelp": {
- "message": "Stylus משתמש בשירות חיצוני https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus משתמש בשירות חיצוני https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "מסננים",
- "description": "Label for filters container"
+ "message": "מסננים"
},
"manageHeading": {
- "message": "עיצובים מותקנים",
- "description": "Heading for the manage page"
+ "message": "עיצובים מותקנים"
},
"manageMaxTargets": {
- "message": "מספר הפריטים ה־'מוחלים על'",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "מספר הפריטים ה־'מוחלים על'"
},
"manageNewStyleAsUsercss": {
- "message": "כ־Usercss",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "כ־Usercss"
},
"manageNewUI": {
- "message": "פריסת ממשק משתמש ניהול חדשה",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "פריסת ממשק משתמש ניהול חדשה"
},
"manageOnlyDisabled": {
- "message": "רק עיצובים מושבתים",
- "description": "Checkbox to show only disabled styles"
+ "message": "רק עיצובים מושבתים"
},
"manageOnlyEnabled": {
- "message": "רק עיצובים מאופשרים",
- "description": "Checkbox to show only enabled styles"
+ "message": "רק עיצובים מאופשרים"
},
"manageOnlyExternal": {
- "message": "רק עיצובים חיצוניים",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "רק עיצובים חיצוניים"
},
"manageOnlyLocal": {
- "message": "רק עיצובים שנוצרו באופן מקומי",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "רק עיצובים שנוצרו באופן מקומי"
},
"manageOnlyLocalTooltip": {
- "message": "(הסגנונות שלא הותקנו דרך דף userstyles.org)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(הסגנונות שלא הותקנו דרך דף userstyles.org)"
},
"manageOnlyNonUsercss": {
- "message": "רק לא עיצובי Usercss",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "רק לא עיצובי Usercss"
},
"manageOnlyUpdates": {
- "message": "רק עם עדכונים או תקלות",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "רק עם עדכונים או תקלות"
},
"manageOnlyUsercss": {
- "message": "רק עיצובי Usercss",
- "description": "Checkbox to show only Usercss styles"
+ "message": "רק עיצובי Usercss"
},
"menuShowBadge": {
- "message": "הצג כמות עיצובים מאופשרים",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "הצג כמות עיצובים מאופשרים"
},
"meta_invalidCheckboxDefault": {
- "message": "תיבת סימון @var לא חוקית: הערך חייב להיות 0 או 1",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "תיבת סימון @var לא חוקית: הערך חייב להיות 0 או 1"
},
"meta_invalidNumber": {
- "message": "נדרש מספר",
- "description": "Error displayed when the value is expected to be a number"
+ "message": "נדרש מספר"
},
"meta_invalidString": {
- "message": "נדרשת מחרוזת בתוך גרשיים",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "נדרשת מחרוזת בתוך גרשיים"
},
"meta_invalidWord": {
- "message": "נדרשת מילה",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "נדרשת מילה"
},
"meta_missingChar": {
"message": "נדרשים תווים: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -719,152 +562,121 @@
}
},
"meta_missingEOT": {
- "message": "נדרש מידע EOT",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "נדרש מידע EOT"
+ },
+ "noFileToImport": {
+ "message": "כדי לייבא את הסגנונות שלך, עליך לייצא אותם תחילה."
},
"noStylesForSite": {
- "message": "לא הותקנו עיצובים עבור אתר זה.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "לא הותקנו עיצובים עבור אתר זה."
},
"openManage": {
- "message": "ניהול",
- "description": "Link to open the manage page."
+ "message": "ניהול"
},
"openOptions": {
- "message": "אפשרויות",
- "description": "Go to Options UI"
+ "message": "אפשרויות"
},
"openStylesManager": {
- "message": "פתח את מנהל העיצובים",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "פתח את מנהל העיצובים"
},
"optionsActions": {
- "message": "פעולות",
- "description": ""
+ "message": "פעולות"
},
"optionsAdvanced": {
- "message": "מתקדם",
- "description": ""
+ "message": "מתקדם"
},
"optionsAdvancedContextDelete": {
- "message": "הוספת 'מחק' בתפריט העורך",
- "description": ""
+ "message": "הוספת 'מחק' בתפריט העורך"
},
"optionsAdvancedExposeIframes": {
- "message": "חשוף iframes באמצעות HTML [stylus-iframe]",
- "description": ""
+ "message": "חשוף iframes באמצעות HTML [stylus-iframe]"
},
"optionsAdvancedExposeIframesNote": {
- "message": "חושף את תחום האתר העליון בכל iframe.\nמאפשר כתיבת CSS ספציפית ל־iframe כך:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }",
- "description": "Add attribute to iframe; make sure to include the double $$ in the css example, or the `$=` will be omitted in the displayed text."
+ "message": "חושף את תחום האתר העליון בכל iframe.\nמאפשר כתיבת CSS ספציפית ל־iframe כך:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "כתוב עיצוב חדש בתור usercss",
- "description": ""
+ "message": "כתוב עיצוב חדש בתור usercss"
},
"optionsBadgeDisabled": {
- "message": "צבע רקע בעת השבתה",
- "description": ""
+ "message": "צבע רקע בעת השבתה"
},
"optionsBadgeNormal": {
- "message": "צבע רקע",
- "description": ""
+ "message": "צבע רקע"
},
"optionsCheck": {
- "message": "עדכן עיצובים",
- "description": ""
+ "message": "עדכן עיצובים"
},
"optionsCheckUpdate": {
- "message": "בדוק והתקן את כל העדכונים הזמינים",
- "description": ""
+ "message": "בדוק והתקן את כל העדכונים הזמינים"
},
"optionsCustomizeBadge": {
- "message": "תג על האייקון בסרגל הכלים",
- "description": ""
+ "message": "תג על האייקון בסרגל הכלים"
},
"optionsCustomizeIcon": {
- "message": "אייקון בסרגל הכלים",
- "description": ""
+ "message": "אייקון בסרגל הכלים"
},
"optionsCustomizePopup": {
- "message": "חלון קופץ",
- "description": ""
- },
- "optionsCustomizeUpdate": {
- "message": "עדכונים",
- "description": ""
+ "message": "חלון קופץ"
},
"optionsCustomizeSync": {
- "message": "סנכרון לענן",
- "description": ""
+ "message": "סנכרון לענן"
+ },
+ "optionsCustomizeUpdate": {
+ "message": "עדכונים"
},
"optionsHeading": {
- "message": "אפשרויות",
- "description": "Heading for options section on manage page."
+ "message": "אפשרויות"
},
"optionsIconDark": {
- "message": "ערכות נושא כהות לדפדפן",
- "description": ""
+ "message": "ערכות נושא כהות לדפדפן"
},
"optionsIconLight": {
- "message": "ערכות נושא בהירות לדפדפן",
- "description": ""
+ "message": "ערכות נושא בהירות לדפדפן"
},
"optionsOpen": {
- "message": "פתח",
- "description": ""
+ "message": "פתח"
},
"optionsOpenManager": {
- "message": "נהל עיצובים",
- "description": ""
+ "message": "נהל עיצובים"
},
"optionsPopupWidth": {
- "message": "רוחב החלון הקופץ (בפיקסלים)",
- "description": ""
+ "message": "רוחב החלון הקופץ (בפיקסלים)"
},
"optionsReset": {
- "message": "איפוס האפשרויות לערכי ברירת המחדל",
- "description": ""
+ "message": "איפוס האפשרויות לערכי ברירת המחדל"
},
"optionsResetButton": {
- "message": "אפס אפשרויות",
- "description": ""
+ "message": "אפס אפשרויות"
},
"optionsSubheading": {
- "message": "אפשרויות נוספות",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "בעת ייבוא גיבויים לסגנון מגרסה ישנה או מ־Stylish, בדוק באופן חד פעמי אם יש עדכונים באופן ידני במנהל הסגנונות כדי לוודא שכל הסגנונות מעודכנים.",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "עדכון אוטומטי של Userstyle בשעות (הגדר 0 להשבתה)",
- "description": ""
- },
- "optionsSyncNone": {
- "message": "ללא",
- "description": ""
+ "message": "אפשרויות נוספות"
},
"optionsSyncConnect": {
- "message": "התחבר",
- "description": ""
+ "message": "התחבר"
},
"optionsSyncDisconnect": {
- "message": "התנתק",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "סנכרן כעת",
- "description": ""
+ "message": "התנתק"
},
"optionsSyncLogin": {
- "message": "היכנס",
- "description": ""
+ "message": "היכנס"
+ },
+ "optionsSyncNone": {
+ "message": "ללא"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "מחובר"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "מתחבר..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "מנותק"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "מתנתק..."
},
"optionsSyncStatusPull": {
"message": "מושך סגנון $loaded$ מתוך $total$",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -876,7 +688,6 @@
},
"optionsSyncStatusPush": {
"message": "מפרסם סגנון $loaded$ מתוך $total$",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -887,236 +698,181 @@
}
},
"optionsSyncStatusSyncing": {
- "message": "מסנכרן...",
- "description": ""
+ "message": "מסנכרן..."
},
- "optionsSyncStatusConnecting": {
- "message": "מתחבר...",
- "description": ""
+ "optionsSyncSyncNow": {
+ "message": "סנכרן כעת"
},
- "optionsSyncStatusConnected": {
- "message": "מחובר",
- "description": ""
+ "optionsUpdateImportNote": {
+ "message": "בעת ייבוא גיבויים לסגנון מגרסה ישנה או מ־Stylish, בדוק באופן חד פעמי אם יש עדכונים באופן ידני במנהל הסגנונות כדי לוודא שכל הסגנונות מעודכנים."
},
- "optionsSyncStatusDisconnecting": {
- "message": "מתנתק...",
- "description": ""
+ "optionsUpdateInterval": {
+ "message": "עדכון אוטומטי של Userstyle בשעות (הגדר 0 להשבתה)"
},
- "optionsSyncStatusDisconnected": {
- "message": "מנותק",
- "description": ""
+ "overwriteFileExport": {
+ "message": "האם ברצונך להחליף קובץ קיים?"
},
"paginationCurrent": {
- "message": "הדף הנוכחי",
- "description": "Tooltip for the current page index in search results"
+ "message": "הדף הנוכחי"
},
"paginationEstimated": {
- "message": "מספר דפים משוער",
- "description": "Tooltip for the total page count in search results"
+ "message": "מספר דפים משוער"
},
"paginationNext": {
- "message": "הדף הבא",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "הדף הבא"
},
"paginationPrevious": {
- "message": "הדף הקודם",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "הדף הקודם"
},
"paginationTotal": {
- "message": "סה״כ דפים",
- "description": ""
+ "message": "סה״כ דפים"
},
"parseUsercssError": {
- "message": "Stylus נכשל בניתוח usercss:",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "Stylus נכשל בניתוח usercss:"
},
"popupBorders": {
- "message": "הוספת שוליים לבנים בצדדים",
- "description": ""
+ "message": "הוספת שוליים לבנים בצדדים"
},
"popupBordersTooltip": {
- "message": "שימושי לעיצובים כהים ב־Chrome החדש מכיוון שהוא כבר לא מצייר את גבולות הצד",
- "description": ""
+ "message": "שימושי לעיצובים כהים ב־Chrome החדש מכיוון שהוא כבר לא מצייר את גבולות הצד"
},
"popupHotkeysTooltip": {
- "message": "לחץ על־מנת לצפות במקשים החמים הזמינים",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "לחץ על־מנת לצפות במקשים החמים הזמינים"
},
"popupManageTooltip": {
- "message": "לחיצה על Shift או מקש ימני בעכבר פותח את מנהל העיצובים",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "לחיצה על Shift או מקש ימני בעכבר פותח את מנהל העיצובים"
},
"popupMenuButtonTooltip": {
- "message": "תפריט פעולות",
- "description": "Tooltip for menu button in popup."
+ "message": "תפריט פעולות"
},
"popupOpenEditInWindow": {
- "message": "פתח את העורך בחלון חדש",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "פתח את העורך בחלון חדש"
},
"popupOpenEditInWindowTooltip": {
- "message": "מופעל גם על ידי ניתוק לשונית העורך מחלון הדפדפן,\nומושבת על ידי חיבור לשונית עורך יחידה לחלון אחר.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "מופעל גם על ידי ניתוק לשונית העורך מחלון הדפדפן,\nומושבת על ידי חיבור לשונית עורך יחידה לחלון אחר."
},
"popupStylesFirst": {
- "message": "עיצובים לפני הפקודות",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "עיצובים לפני הפקודות"
},
"prefShowBadge": {
- "message": "מספר העיצובים המאופשרים באתר הנוכחי",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "מספר העיצובים המאופשרים באתר הנוכחי"
},
"previewLabel": {
- "message": "תצוגת לייב (live)",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "תצוגת לייב (live)"
},
"previewTooltip": {
- "message": "החלת השינויים באופן זמני ללא שמירה.\nשמור את העיצוב על־מנת להפוך את השינויים לקבועים.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "החלת השינויים באופן זמני ללא שמירה.\nשמור את העיצוב על־מנת להפוך את השינויים לקבועים."
+ },
+ "readingStyles": {
+ "message": "קורא עיצובים..."
},
"reload": {
- "message": "טען מחדש את Stylus",
- "description": "Context menu reload"
+ "message": "טען מחדש את Stylus"
},
"replace": {
- "message": "החלף",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "החלף"
},
"replaceAll": {
- "message": "החלף הכל",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "החלף הכל"
},
"replaceWith": {
- "message": "החלף עם",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "החלף עם"
},
"retrieveBckp": {
- "message": "ייבוא עיצובים",
- "description": ""
+ "message": "ייבוא עיצובים"
+ },
+ "retrieveDropboxSync": {
+ "message": "Dropbox ייבוא"
},
"search": {
- "message": "חיפוש",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "חיפוש"
},
"searchCaseSensitive": {
- "message": "רגיש לאותיות גדולות/קטנות",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "רגיש לאותיות גדולות/קטנות"
},
"searchNumberOfResults": {
- "message": "מספר ההתאמות",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "מספר ההתאמות"
},
"searchNumberOfResults2": {
- "message": "מספר ההתאמות בקוד ובערכים ה'מוחלים על'",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "מספר ההתאמות בקוד ובערכים ה'מוחלים על'"
},
"searchRegexp": {
- "message": "השתמש ב־/re/ לחיפוש באמצעות ביטוי regexp",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "השתמש ב־/re/ לחיפוש באמצעות ביטוי regexp"
},
"searchResultInstallCount": {
- "message": "סה״כ התקנות",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "סה״כ התקנות"
},
"searchResultNoneFound": {
- "message": "לא נמצאו עיצובים לאתר זה.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "לא נמצאו עיצובים לאתר זה."
},
"searchResultRating": {
- "message": "דירוג",
- "description": "Text for label that shows the search result's rating"
+ "message": "דירוג"
},
"searchResultUpdated": {
- "message": "עודכן",
- "description": "Text for label that shows the search result's last update date"
+ "message": "עודכן"
},
"searchResultWeeklyCount": {
- "message": "התקנות שבועיות",
- "description": "Text for label that shows the number of times a search result was installed during last week"
- },
- "searchStyles": {
- "message": "חיפוש תוכן",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "message": "התקנות שבועיות"
},
"sectionAdd": {
- "message": "הוסף מקטע נוסף",
- "description": "Label for the button to add a section"
+ "message": "הוסף מקטע נוסף"
},
"sectionCode": {
- "message": "קוד",
- "description": "Label for the code for a section"
+ "message": "קוד"
},
"sectionRemove": {
- "message": "הסר סעיף",
- "description": "Label for the button to remove a section"
+ "message": "הסר סעיף"
},
"sectionRestore": {
- "message": "שחזר סעיף שהוסר",
- "description": "Label for the button to restore a removed section"
+ "message": "שחזר סעיף שהוסר"
},
"shortcuts": {
- "message": "קיצורי מקשים",
- "description": "Go to shortcut configuration"
+ "message": "קיצורי מקשים"
},
"shortcutsNote": {
- "message": "הגדר קיצורי מקשים",
- "description": ""
+ "message": "הגדר קיצורי מקשים"
},
"sortDateNewestFirst": {
- "message": "החדש ביותר ראשון",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "החדש ביותר ראשון"
},
"sortDateOldestFirst": {
- "message": "הישן ביותר ראשון",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "הישן ביותר ראשון"
},
"sortLabel": {
- "message": "בחר שיטת מיון להחלה על העיצובים המותקנים",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "בחר שיטת מיון להחלה על העיצובים המותקנים"
},
"sortStylesHelpTitle": {
- "message": "סידור תכנים",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "סידור תכנים"
},
"styleBadRegexp": {
- "message": "ביטוי ה־regexp לא תקין.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "ביטוי ה־regexp לא תקין."
},
"styleBeautify": {
- "message": "ייפה CSS",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "ייפה CSS"
},
"styleBeautifyIndentConditional": {
- "message": "הזחת @media, @supports",
- "description": "CSS-beautifier option"
+ "message": "הזחת @media, @supports"
},
"styleBeautifyPreserveNewlines": {
- "message": "שמור שורות חדשות",
- "description": "CSS-beautifier option"
+ "message": "שמור שורות חדשות"
},
"styleCancelEditLabel": {
- "message": "חזרה לניהול",
- "description": "Label for cancel button for style editing"
+ "message": "חזרה לניהול"
},
"styleChangesNotSaved": {
- "message": "ביצעת שינויים בסגנון זה מבלי לשמור.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "ביצעת שינויים בסגנון זה מבלי לשמור."
},
"styleEnabledLabel": {
- "message": "מאופשר",
- "description": "Label for the enabled state of styles"
+ "message": "מאופשר"
},
"styleFromMozillaFormatError": {
- "message": "הייבוא נכשל מ־Mozilla format",
- "description": "Label for the import error"
+ "message": "הייבוא נכשל מ־Mozilla format"
},
"styleFromMozillaFormatPrompt": {
- "message": "הדבק את הקוד ב־Mozilla-format",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "הדבק את הקוד ב־Mozilla-format"
},
"styleInstall": {
"message": "להתקין ';$stylename$' אל Stylus?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1125,7 +881,6 @@
},
"styleInstallFailed": {
"message": "נכשל בהתקנת העיצוב!\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1134,82 +889,65 @@
},
"styleInstallOverwrite": {
"message": "';$stylename$' כבר מותקן. האם לדרוס?\nגרסה: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "הזן שם",
- "description": "Error displayed when user saves without providing a name"
+ "message": "הזן שם"
},
"styleMozillaFormatHeading": {
- "message": "Mozilla-format",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Mozilla-format"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "הסגנון לא הוחל בגלל השימוש בו שגוי ב־'regexp()'",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "הסגנון לא הוחל בגלל השימוש בו שגוי ב־'regexp()'"
},
"styleRegexpInvalidExplanation": {
- "message": "לא היה ניתן להחיל מספר כללי 'regexp()' כלל.",
- "description": ""
+ "message": "לא היה ניתן להחיל מספר כללי 'regexp()' כלל."
},
"styleRegexpPartialExplanation": {
- "message": "סגנון זה משתמש ב- regexps תואם חלקית בניגוד למפרט CSS4 @document המצריך התאמה מלאה של כתובת אתר. קטעי ה־CSS המושפעים לא הוחלו על הדף. סגנון זה נוצר ככל הנראה ב־Stylish-for-Chrome שבודק באופן שגוי את כללי 'regexp()' מאז הגרסה הראשונה (באג ידוע).",
- "description": ""
+ "message": "סגנון זה משתמש ב- regexps תואם חלקית בניגוד למפרט CSS4 @document המצריך התאמה מלאה של כתובת אתר. קטעי ה־CSS המושפעים לא הוחלו על הדף. סגנון זה נוצר ככל הנראה ב־Stylish-for-Chrome שבודק באופן שגוי את כללי 'regexp()' מאז הגרסה הראשונה (באג ידוע)."
},
"styleRegexpProblemTooltip": {
- "message": "מספר המקטעים שלא הוחלו עקב שימוש שגוי ב־'regexp()'",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "מספר המקטעים שלא הוחלו עקב שימוש שגוי ב־'regexp()'"
},
"styleRegexpTestButton": {
- "message": "בדוק RegExp",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "בדוק RegExp"
},
"styleRegexpTestFull": {
- "message": "כרטיסיות תואמות",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "כרטיסיות תואמות"
},
"styleRegexpTestInvalid": {
- "message": "ביטוי regrxp לא תקין",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "ביטוי regrxp לא תקין"
},
"styleRegexpTestNone": {
- "message": "לא תואם אף כרטיסייה",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "לא תואם אף כרטיסייה"
},
"styleRegexpTestPartial": {
- "message": "לא תואם לחלוטין, לכן דולג",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "לא תואם לחלוטין, לכן דולג"
},
"styleRegexpTestTitle": {
- "message": "רשימת לשוניות פתוחות בהתאמה (לחץ על כתובת אתר למיקוד הלשונית שלה)",
- "description": "RegExp test report: title of the report"
+ "message": "רשימת לשוניות פתוחות בהתאמה (לחץ על כתובת אתר למיקוד הלשונית שלה)"
},
"styleSaveLabel": {
- "message": "שמור",
- "description": "Label for save button for style editing"
+ "message": "שמור"
},
"styleToMozillaFormatHelp": {
- "message": "ניתן לפרסם את ה־Mozilla format של הקוד לאתר userstyles.org ולהשתמש בו עם Stylish הקלאסי עבור Firefox",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "ניתן לפרסם את ה־Mozilla format של הקוד לאתר userstyles.org ולהשתמש בו עם Stylish הקלאסי עבור Firefox"
},
"styleToMozillaFormatTitle": {
- "message": "עיצוב ב־Mozilla-format",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "עיצוב ב־Mozilla-format"
},
"styleUpdate": {
"message": "האם אתה בטוח שברצונך לעדכן את '$stylename$'?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1217,52 +955,46 @@
}
},
"stylusUnavailableForURL": {
- "message": "Stylus לא עובד על דפים כמו זה.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Stylus לא עובד על דפים כמו זה."
},
"stylusUnavailableForURLdetails": {
- "message": "כאמצעי אבטחה, הדפדפן אוסר על הרחבות להשפיע על הדפים המובנים שלו (כמו chrome://version, הכרטיסייה החדשה הרגילה החל מ־Chrome 61, about:addons וכן הלאה), וכן על דפי הרחבות אחרים. כל דפדפן גם מגביל את הגישה לגלריית התוספים שלו (כמו חנות האינטרנט של Chrome או AMO).",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "כאמצעי אבטחה, הדפדפן אוסר על הרחבות להשפיע על הדפים המובנים שלו (כמו chrome://version, הכרטיסייה החדשה הרגילה החל מ־Chrome 61, about:addons וכן הלאה), וכן על דפי הרחבות אחרים. כל דפדפן גם מגביל את הגישה לגלריית התוספים שלו (כמו חנות האינטרנט של Chrome או AMO)."
+ },
+ "syncDropboxStyles": {
+ "message": "ייצוא Dropbox"
},
"syncStorageErrorSaving": {
- "message": "הערך לא יכול להשמר. אנא נסה להקטין את גודל הטקסט.",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "הערך לא יכול להשמר. אנא נסה להקטין את גודל הטקסט."
},
"toggleStyle": {
- "message": "אפשר או השבת עיצוב",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "אפשר או השבת עיצוב"
},
"undo": {
- "message": "בטל",
- "description": "Button label"
+ "message": "בטל"
},
"undoGlobal": {
- "message": "בטל בכל הסעיפים",
- "description": "CSS-beautify global Undo button label"
+ "message": "בטל בכל הסעיפים"
},
"unreachableAMO": {
- "message": "Firefox לא מאפשרת גישה לאתר זה.",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "Firefox לא מאפשרת גישה לאתר זה."
},
"unreachableContentScript": {
- "message": "לא ניתן לתקשר עם הדף. אנא טען מחדש את הכרטיסייה.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "לא ניתן לתקשר עם הדף. אנא טען מחדש את הכרטיסייה."
},
"unreachableFileHint": {
- "message": "Stylus יכול לגשת לכתובות אתר file:// רק אם תיבת הסימון המתאימה עבור סיומת Stylus פעילה בדף chrome://extensions.",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "Stylus יכול לגשת לכתובות אתר file:// רק אם תיבת הסימון המתאימה עבור סיומת Stylus פעילה בדף chrome://extensions."
+ },
+ "unzipStyles": {
+ "message": "מחלץ עיצובים..."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "לא נמצאו עדכונים.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "לא נמצאו עדכונים."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "כמה סגנונות הניתנים לעדכון לא נבדקו כדי להימנע מאבדן עריכות מקומיות אפשריות. ניתן לאלץ עדכונים על ידי בדיקה באופן פרטני, או על ידי הפעלת בדיקה אחרת לכל הסגנונות (עריכות מקומיות יידרסו).",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "כמה סגנונות הניתנים לעדכון לא נבדקו כדי להימנע מאבדן עריכות מקומיות אפשריות. ניתן לאלץ עדכונים על ידי בדיקה באופן פרטני, או על ידי הפעלת בדיקה אחרת לכל הסגנונות (עריכות מקומיות יידרסו)."
},
"updateCheckFailBadResponseCode": {
"message": "העדכון נכשל: השרת החזיר תגובה עם הקוד $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1270,111 +1002,54 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "העדכון נכשל: השרת לא זמין.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "העדכון נכשל: השרת לא זמין."
},
"updateCheckHistory": {
- "message": "היסטוריה של בדיקת עדכונים",
- "description": ""
+ "message": "היסטוריה של בדיקת עדכונים"
},
"updateCheckManualUpdateForce": {
- "message": "התקן עדכון (עריכות מקומיות יידרסו)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "התקן עדכון (עריכות מקומיות יידרסו)"
},
"updateCheckManualUpdateHint": {
- "message": "אילוץ עדכון ידרוס כל עריכה מקומית.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "אילוץ עדכון ידרוס כל עריכה מקומית."
},
"updateCheckSkippedLocallyEdited": {
- "message": "עיצוב זה נערך באופן מקומי.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "עיצוב זה נערך באופן מקומי."
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "ייתכן כי עיצוב זה נערך באופן מקומי.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "ייתכן כי עיצוב זה נערך באופן מקומי."
},
"updateCheckSucceededNoUpdate": {
- "message": "העיצוב מעודכן.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "העיצוב מעודכן."
},
"updateCompleted": {
- "message": "העדכון הושלם.",
- "description": "Text that displays when an update completed"
+ "message": "העדכון הושלם."
},
"updatesCurrentlyInstalled": {
- "message": "העדכונים הותקנו.",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "אנא שנה את הערך של @name or @namespace על־מנת להמנע מדריסה של עיצוב קיים.",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssEditorNamePlaceholder": {
- "message": "ציין @name בקוד",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "הכנס כאן קוד...",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "הגרסה ישנה יותר מהעיצוב המותקן.",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "כתוב עיצוב עבור: ",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "הקישור הנוכחי",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "syncDropboxStyles": {
- "message": "ייצוא Dropbox",
- "description": ""
- },
- "retrieveDropboxSync": {
- "message": "Dropbox ייבוא",
- "description": ""
- },
- "overwriteFileExport": {
- "message": "האם ברצונך להחליף קובץ קיים?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "קובץ נשמר בהצלחה",
- "description": ""
- },
- "noFileToImport": {
- "message": "כדי לייבא את הסגנונות שלך, עליך לייצא אותם תחילה.",
- "description": ""
- },
- "connectingDropbox": {
- "message": "מתחבר אל Dropbox...",
- "description": ""
- },
- "connectingDropboxNotAllowed": {
- "message": "התחברות אל Dropbox זמינה רק בהרחבות המותקנות ישירות מחנות האינטרנט",
- "description": ""
- },
- "gettingStyles": {
- "message": "טוען את כל העיצובים...",
- "description": ""
- },
- "zipStyles": {
- "message": "מקבץ עיצובים...",
- "description": ""
- },
- "unzipStyles": {
- "message": "מחלץ עיצובים...",
- "description": ""
- },
- "readingStyles": {
- "message": "קורא עיצובים...",
- "description": ""
+ "message": "העדכונים הותקנו."
},
"uploadingFile": {
- "message": "מעלה קובץ...",
- "description": ""
+ "message": "מעלה קובץ..."
+ },
+ "usercssAvoidOverwriting": {
+ "message": "אנא שנה את הערך של @name or @namespace על־מנת להמנע מדריסה של עיצוב קיים."
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "ציין @name בקוד"
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "הכנס כאן קוד..."
+ },
+ "versionInvalidOlder": {
+ "message": "הגרסה ישנה יותר מהעיצוב המותקן."
+ },
+ "writeStyleFor": {
+ "message": "כתוב עיצוב עבור: "
+ },
+ "writeStyleForURL": {
+ "message": "הקישור הנוכחי"
+ },
+ "zipStyles": {
+ "message": "מקבץ עיצובים..."
}
}
diff --git a/_locales/hr/messages.json b/_locales/hr/messages.json
deleted file mode 100644
index 9e26dfee..00000000
--- a/_locales/hr/messages.json
+++ /dev/null
@@ -1 +0,0 @@
-{}
\ No newline at end of file
diff --git a/_locales/hu/messages.json b/_locales/hu/messages.json
index 1195eb83..1e6e7a66 100644
--- a/_locales/hu/messages.json
+++ b/_locales/hu/messages.json
@@ -1,23 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "A Stylus nem tud bizonyos fájltípusokhoz hozzáférni (pl. PDF- & JSON-fájlokhoz)"
+ },
"addStyleLabel": {
- "message": "Új stílus írása",
- "description": "Label for the button to go to the add style page"
+ "message": "Új stílus írása"
},
"addStyleTitle": {
- "message": "Stílus hozzáadása",
- "description": "Title of the page for adding styles"
+ "message": "Stílus hozzáadása"
},
"alphaChannel": {
- "message": "Átlátszatlanság",
- "description": "Label of color's opacity"
+ "message": "Átlátszatlanság"
},
"appliesAdd": {
- "message": "Hozzáadás",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Hozzáadás"
},
"appliesDisplay": {
"message": "Érvényes erre:$applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,284 +23,220 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "és ennél is több",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "és ennél is több"
},
"appliesDomainOption": {
- "message": "URL-ek a tartományban",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL-ek a tartományban"
},
"appliesHelp": {
- "message": "Az \"Érvényes erre\" beállítással korlártozható, hogy milyen URL-ekre vonatkozik az itt lévő kód.",
- "description": "Help text for 'applies to' section"
+ "message": "Az \"Érvényes erre\" beállítással korlártozható, hogy milyen URL-ekre vonatkozik az itt lévő kód."
},
"appliesLabel": {
- "message": "Érvényes erre",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Érvényes erre"
},
"appliesLineWidgetLabel": {
- "message": "Információ arról, hogy mire érvényes",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "Információ arról, hogy mire érvényes"
},
"appliesLineWidgetWarning": {
- "message": "Nem működik minimalizált CSS-sel",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "Nem működik minimalizált CSS-sel"
},
"appliesRegexpOption": {
- "message": "Reguláris kifejezésre (regexp) illeszkedő URL-ek",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "Reguláris kifejezésre (regexp) illeszkedő URL-ek"
},
"appliesRemove": {
- "message": "Eltávolítás",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Eltávolítás"
},
"appliesRemoveError": {
- "message": "Nem lehet eltávolítani az utolsó 'érvényes erre' bejegyzést",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "Nem lehet eltávolítani az utolsó 'érvényes erre' bejegyzést"
},
"appliesSpecify": {
- "message": "Szűkítés",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Szűkítés"
},
"appliesToEverything": {
- "message": "Minden",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Minden"
},
"appliesUrlPrefixOption": {
- "message": "URL-ek adott kezdettel",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL-ek adott kezdettel"
},
"applyAllUpdates": {
- "message": "Minden módosítás alkalmazása",
- "description": "Label for the button to apply all detected updates"
+ "message": "Minden módosítás alkalmazása"
},
"author": {
- "message": "Szerző",
- "description": "Label for the style author"
+ "message": "Szerző"
},
"backupButtons": {
- "message": "Biztonsági mentés",
- "description": "Heading for backup"
+ "message": "Biztonsági mentés"
},
"backupMessage": {
- "message": "Válassz ki egy fájlt vagy húzd erre az oldalra!",
- "description": "Message for backup"
+ "message": "Válassz ki egy fájlt vagy húzd erre az oldalra!"
},
"bckpInstStyles": {
- "message": "Stílusok exportálása",
- "description": ""
+ "message": "Stílusok exportálása"
},
"checkAllUpdates": {
- "message": "Összes stílus frissítésének ellenőrzése",
- "description": "Label for the button to check all styles for updates"
+ "message": "Összes stílus frissítésének ellenőrzése"
},
"checkAllUpdatesForce": {
- "message": "Ellenőrizd újra, nem módosítottam egy stílust sem!",
- "description": "Label for the button to apply all detected updates"
+ "message": "Ellenőrizd újra, nem módosítottam egy stílust sem!"
},
"checkForUpdate": {
- "message": "Frissítések ellenőrzése",
- "description": "Label for the button to check a single style for an update"
+ "message": "Frissítések ellenőrzése"
},
"checkingForUpdate": {
- "message": "Ellenőrzés...",
- "description": "Text to display when checking a style for an update"
+ "message": "Ellenőrzés..."
},
"clickToUninstall": {
- "message": "Kattints az eltávolításhoz",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Kattints az eltávolításhoz"
},
"cm_autoCloseBrackets": {
- "message": "Zárójelek és idézőjelek automatikus bezárása",
- "description": "Label for the checkbox in the style editor."
+ "message": "Zárójelek és idézőjelek automatikus bezárása"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Nyitó '([{'zárójel gépelésekor lezáró ')]}' zárójel automatikus hozzáadása",
- "description": "Label for the checkbox in the style editor."
+ "message": "Nyitó '([{'zárójel gépelésekor lezáró ')]}' zárójel automatikus hozzáadása"
},
"cm_autocompleteOnTyping": {
- "message": "Automatikus kiegészítés gépeléskor",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automatikus kiegészítés gépeléskor"
},
"cm_colorpicker": {
- "message": "Színválasztó CSS-színekhez",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Színválasztó CSS-színekhez"
},
"cm_indentWithTabs": {
- "message": "Tabulátorok használata intelligens behúzásra",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Tabulátorok használata intelligens behúzásra"
},
"cm_keyMap": {
- "message": "Billentyűműveletek",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Billentyűműveletek"
},
"cm_lineWrapping": {
- "message": "Automatikus sortörés",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Automatikus sortörés"
},
"cm_matchHighlight": {
- "message": "Kijelölés",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Kijelölés"
},
"cm_matchHighlightSelection": {
- "message": "Csak kiválasztás",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Csak kiválasztás"
},
"cm_matchHighlightToken": {
- "message": "Kurzor alatti kifejezés",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Kurzor alatti kifejezés"
},
"cm_resizeGripHint": {
- "message": "Kattints duplán a magasság maximalizálásához/visszaállításához",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Kattints duplán a magasság maximalizálásához/visszaállításához"
},
"cm_selectByTokens": {
- "message": "Kifejezések kijelölése dupla kattintással",
- "description": "Label for the checkbox in the editor."
+ "message": "Kifejezések kijelölése dupla kattintással"
},
"cm_selectByTokensTooltip": {
- "message": "Példák kifejezésekre: .valami-2 #aabbcc 0.32 !important\nAmikor ki van kapcsolva: a központosítással elválasztott szavak ki lesznek jelölve.",
- "description": ""
+ "message": "Példák kifejezésekre: .valami-2 #aabbcc 0.32 !important\nAmikor ki van kapcsolva: a központosítással elválasztott szavak ki lesznek jelölve."
},
"cm_smartIndent": {
- "message": "Intelligens behúzás",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Intelligens behúzás"
},
"cm_tabSize": {
- "message": "Tabulátorméret",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Tabulátorméret"
},
"cm_theme": {
- "message": "Téma",
- "description": "Label for the style editor's CSS theme."
+ "message": "Téma"
},
"colorpickerSwitchFormatTooltip": {
- "message": "Formátumváltás: HEX -> RGB -> HSL.\nShift-kattintás megfordítja az irányt.\nA PgUp (PageUp) és PgDn (PageDown) billentyűkkel is lehet váltani.",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "Formátumváltás: HEX -> RGB -> HSL.\nShift-kattintás megfordítja az irányt.\nA PgUp (PageUp) és PgDn (PageDown) billentyűkkel is lehet váltani."
},
"colorpickerTooltip": {
- "message": "Színválasztó megnyitása",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Színválasztó megnyitása"
},
"configOnChange": {
- "message": "változtatáskor",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "változtatáskor"
},
"configOnChangeTooltip": {
- "message": "Automatikus mentés és alkalmazás",
- "description": ""
+ "message": "Automatikus mentés és alkalmazás"
},
"configureStyle": {
- "message": "Konfigurálás",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "Konfigurálás"
},
"configureStyleOnHomepage": {
- "message": "Beállítás a honlapon",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "Beállítás a honlapon"
},
"confirmCancel": {
- "message": "Mégsem",
- "description": ""
+ "message": "Mégsem"
},
"confirmClose": {
- "message": "Bezárás",
- "description": "'Close' button in a confirm dialog"
+ "message": "Bezárás"
},
"confirmDefault": {
- "message": "Alapértelmezés használata",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "Alapértelmezés használata"
},
"confirmDelete": {
- "message": "Törlés",
- "description": ""
+ "message": "Törlés"
},
"confirmDiscardChanges": {
- "message": "Elveted a változásokat?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "Elveted a változásokat?"
},
"confirmNo": {
- "message": "Nem",
- "description": "'No' button in a confirm dialog"
+ "message": "Nem"
},
"confirmSave": {
- "message": "Mentés",
- "description": "'Save' button in a confirm dialog"
+ "message": "Mentés"
},
"confirmStop": {
- "message": "Állj",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Állj"
},
"confirmYes": {
- "message": "Igen",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Igen"
+ },
+ "connectingDropbox": {
+ "message": "Kapcsolódás Dropboxhoz..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "Dropboxhoz csak közvetlenül a web-boltból telepített alkalmazásból lehet kapcsolódni."
},
"copied": {
- "message": "Vágólapra másolva",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "Vágólapra másolva"
},
"copy": {
- "message": "Másolás vágólapra",
- "description": "Tooltip for elements which can be copied"
+ "message": "Másolás vágólapra"
},
"dateInstalled": {
- "message": "Telepítés dátuma",
- "description": "Option text for the user to sort the style by install date"
+ "message": "Telepítés dátuma"
},
"dateUpdated": {
- "message": "Frissítés dátuma",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "Frissítés dátuma"
},
"dbError": {
- "message": "Hiba történt a Stylus adatbázisának használatakor. Szeretnéd meglátogatni a lehetséges megoldásokat tartalmazó weboldalt?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Hiba történt a Stylus adatbázisának használatakor. Szeretnéd meglátogatni a lehetséges megoldásokat tartalmazó weboldalt?"
},
"defaultTheme": {
- "message": "alapértelmezett",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "alapértelmezett"
},
"deleteStyleConfirm": {
- "message": "Biztos, hogy törölni akarod ezt a stílust?",
- "description": "Confirmation before deleting a style"
+ "message": "Biztos, hogy törölni akarod ezt a stílust?"
},
"deleteStyleLabel": {
- "message": "Törlés",
- "description": "Label for the button to delete a style"
+ "message": "Törlés"
},
"description": {
- "message": "Tervezd újra a webet a Stylus stíluskezelővel. A Stylus lehetővé teszi a témák és egyéni külsők egyszerű telepítését sok népszerű oldalhoz.",
- "description": "Extension description"
+ "message": "Tervezd újra a webet a Stylus stíluskezelővel. A Stylus lehetővé teszi a témák és egyéni külsők egyszerű telepítését sok népszerű oldalhoz."
},
"disableAllStyles": {
- "message": "Összes stílus kikapcsolása",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Összes stílus kikapcsolása"
},
"disableStyleLabel": {
- "message": "Letiltás",
- "description": "Label for the button to disable a style"
+ "message": "Letiltás"
},
"dragDropMessage": {
- "message": "Ejtsd a biztonsági másolat fájlt bárhova erre az oldalra az importáláshoz!",
- "description": "Drag'n'drop message"
+ "message": "Ejtsd a biztonsági másolat fájlt bárhova erre az oldalra az importáláshoz!"
},
"editDeleteText": {
- "message": "Törlés",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Törlés"
},
"editGotoLine": {
- "message": "Sorra (vagy sor:oszlopra) ugrás",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Sorra (vagy sor:oszlopra) ugrás"
},
"editStyleHeading": {
- "message": "Stílus szerkesztése",
- "description": "Title of the page for editing styles"
+ "message": "Stílus szerkesztése"
},
"editStyleLabel": {
- "message": "Szerkesztés",
- "description": "Label for the button to go to the edit style page"
+ "message": "Szerkesztés"
},
"editStyleTitle": {
"message": "A(z) $stylename$ stílus szerkesztése",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -310,216 +244,171 @@
}
},
"enableStyleLabel": {
- "message": "Engedélyezés",
- "description": "Label for the button to enable a style"
+ "message": "Engedélyezés"
},
"excludeStyleByDomainLabel": {
- "message": "Aktuális tartományt kivéve",
- "description": ""
+ "message": "Aktuális tartományt kivéve"
},
"excludeStyleByUrlLabel": {
- "message": "Aktuális URL-t kivéve",
- "description": ""
+ "message": "Aktuális URL-t kivéve"
},
"exportLabel": {
- "message": "Exportálás",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Exportálás"
+ },
+ "exportSavedSuccess": {
+ "message": "A fájl sikeresen elmentve."
},
"externalFeedback": {
- "message": "Visszajelzés",
- "description": "Label for the external link to send feedback for the style"
+ "message": "Visszajelzés"
},
"externalHomepage": {
- "message": "Kezdőoldal",
- "description": "Label for the external link to style's homepage"
+ "message": "Kezdőoldal"
},
"externalLink": {
- "message": "Külső hivatkozás",
- "description": "Label for external links"
+ "message": "Külső hivatkozás"
},
"externalSupport": {
- "message": "Támogatás",
- "description": "Label for the external link to style's support site"
+ "message": "Támogatás"
},
"externalUsercssDocument": {
- "message": "Usercss dokumentáció",
- "description": "Label for the external link to usercss documentation"
+ "message": "Usercss dokumentáció"
},
"filteredStyles": {
"message": "$numShown$ mutatva $numTotal$-ból/-ből",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "Nincs illeszkedés a jelenleg alkalmazott szűrőkre",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "Nincs illeszkedés a jelenleg alkalmazott szűrőkre"
},
"findStyles": {
- "message": "Stílusok keresése",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Stílusok keresése"
},
"findStylesForSite": {
- "message": "További stílusok keresése ehhez az oldalhoz",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "További stílusok keresése ehhez az oldalhoz"
},
"findStylesInline": {
- "message": "Helyben",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "Helyben"
},
"findStylesInlineTooltip": {
- "message": "Keresési eredmények megjelenítése ebben az ablakban.",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "Keresési eredmények megjelenítése ebben az ablakban."
},
"genericAdd": {
- "message": "Hozzáadás",
- "description": "Used in various places for an action that adds something"
+ "message": "Hozzáadás"
},
"genericClone": {
- "message": "Klónozás",
- "description": "Used in various places for an action that clones something"
+ "message": "Klónozás"
},
"genericDisabledLabel": {
- "message": "Letiltott",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Letiltott"
},
"genericEnabledLabel": {
- "message": "Engedélyezve",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "Engedélyezve"
},
"genericError": {
- "message": "Hiba",
- "description": "Used in various places to indicate some error occurred."
+ "message": "Hiba"
},
"genericHistoryLabel": {
- "message": "Előzmények",
- "description": "Used in various places to show a history log of something"
+ "message": "Előzmények"
},
"genericNext": {
- "message": "Következő",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "Következő"
},
"genericPrevious": {
- "message": "Előző",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "Előző"
},
"genericResetLabel": {
- "message": "VIsszaállítás",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "VIsszaállítás"
},
"genericSavedMessage": {
- "message": "Mentve",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "Mentve"
},
"genericTitle": {
- "message": "Cím",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "Cím"
},
"genericUnknown": {
- "message": "Ismeretlen",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "Ismeretlen"
+ },
+ "gettingStyles": {
+ "message": "Minden stílus fogadása..."
},
"helpAlt": {
- "message": "Segítség",
- "description": "Alternate text for help buttons"
+ "message": "Segítség"
},
"helpKeyMapCommand": {
- "message": "Írj be egy parancsot",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Írj be egy parancsot"
},
"helpKeyMapHotkey": {
- "message": "Gyorsbillentyű",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Gyorsbillentyű"
},
"importAppendLabel": {
- "message": "Hozzáfűzés stílushoz",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Hozzáfűzés stílushoz"
},
"importAppendTooltip": {
- "message": "Az importált stílus hozzáadása a jelenlegi stílushoz",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Az importált stílus hozzáadása a jelenlegi stílushoz"
},
"importLabel": {
- "message": "Importálás",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Importálás"
},
"importReplaceLabel": {
- "message": "Stílus felülírása",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Stílus felülírása"
},
"importReplaceTooltip": {
- "message": "A jelenlegi stílus tartalmának elvetése és annak felülírása az importált stílussal",
- "description": "Label for the button to import and overwrite current style"
+ "message": "A jelenlegi stílus tartalmának elvetése és annak felülírása az importált stílussal"
},
"importReportLegendAdded": {
- "message": "hozzáadva",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "hozzáadva"
},
"importReportLegendIdentical": {
- "message": "kihagyott egyezések",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "kihagyott egyezések"
},
"importReportLegendInvalid": {
- "message": "kihagyott érvénytelen",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "kihagyott érvénytelen"
},
"importReportLegendUpdatedBoth": {
- "message": "metainformáció és kód frissítve",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "metainformáció és kód frissítve"
},
"importReportLegendUpdatedCode": {
- "message": "frissített kód",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "frissített kód"
},
"importReportLegendUpdatedMeta": {
- "message": "metainfó frissítve",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "metainfó frissítve"
},
"importReportTitle": {
- "message": "A stílusok importálása befejeződött.",
- "description": "Title of the report shown after importing styles"
+ "message": "A stílusok importálása befejeződött."
},
"importReportUnchanged": {
- "message": "Nincs változás.",
- "description": "Message in the report shown after importing styles"
+ "message": "Nincs változás."
},
"importReportUndone": {
- "message": "stílusok visszavonva",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "stílusok visszavonva"
},
"importReportUndoneTitle": {
- "message": "Az importálás vissza lett vonva",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "Az importálás vissza lett vonva"
},
"installButton": {
- "message": "Stílus telepítése",
- "description": "Label for install button"
+ "message": "Stílus telepítése"
},
"installButtonInstalled": {
- "message": "Stílus telepítve",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Stílus telepítve"
},
"installButtonReinstall": {
- "message": "Stílus újratelepítése",
- "description": "Label for reinstall button"
+ "message": "Stílus újratelepítése"
},
"installButtonUpdate": {
- "message": "Stílus frissítése",
- "description": "Label for update button"
+ "message": "Stílus frissítése"
},
"installUpdate": {
- "message": "Frissítés telepítése",
- "description": "Label for the button to install an update for a single style"
+ "message": "Frissítés telepítése"
},
"installUpdateFrom": {
"message": "A stílus jelenleg innen frissül: $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -527,28 +416,22 @@
}
},
"installUpdateFromLabel": {
- "message": "Frissítések keresése",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Frissítések keresése"
},
"license": {
- "message": "Licenc",
- "description": "Label for the license"
+ "message": "Licenc"
},
"linkGetHelp": {
- "message": "Segítség kérése",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Segítség kérése"
},
"linkGetStyles": {
- "message": "Szerezz be stílusokat",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Szerezz be stílusokat"
},
"linkTranslate": {
- "message": "Fordítás",
- "description": "Transifex link text on the manage page"
+ "message": "Fordítás"
},
"linterCSSLintIncompatible": {
"message": "A CSSLint nem támogatja a(z) $preprocessorname$ nevű előfeldolgozót",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -556,12 +439,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(Szabály megadása: 0 = letiltva; 1 = figyelmeztetés; 2 = hiba)",
- "description": "CSSLint rule config values"
+ "message": "(Szabály megadása: 0 = letiltva; 1 = figyelmeztetés; 2 = hiba)"
},
"linterConfigPopupTitle": {
"message": "$linter$ szabály beállítása",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -569,20 +450,16 @@
}
},
"linterConfigTooltip": {
- "message": "Linter beállítása",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Linter beállítása"
},
"linterInvalidConfigError": {
- "message": "Nincs mentve a következő érvénytelen beállítások miatt:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "Nincs mentve a következő érvénytelen beállítások miatt:"
},
"linterIssues": {
- "message": "Problémák",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Problémák"
},
"linterIssuesHelp": {
"message": "$link$a következő hibákat találta:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -590,136 +467,87 @@
}
},
"linterJSONError": {
- "message": "Érvénytelen JSON-formátum",
- "description": "Setting linter config with invalid JSON"
+ "message": "Érvénytelen JSON-formátum"
},
"linterResetMessage": {
- "message": "Egy véletlen visszaállítás visszavonásához nyomj Ctrl-Z-t (vagy Cmd-Z) a szövegdobozon belül)",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "Egy véletlen visszaállítás visszavonásához nyomj Ctrl-Z-t (vagy Cmd-Z) a szövegdobozon belül)"
},
"linterRulesLink": {
- "message": "Összes szabály listája",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Összes szabály listája"
},
"liveReloadError": {
- "message": "Hiba történt a fájl figyelése közben",
- "description": "The label of live-reload error"
+ "message": "Hiba történt a fájl figyelése közben"
},
"liveReloadLabel": {
- "message": "Valós idejű újratöltés",
- "description": "The label of live-reload feature"
+ "message": "Valós idejű újratöltés"
},
"manageFavicons": {
- "message": "Faviconok az 'Érvényes erre' oszlopban",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Faviconok az 'Érvényes erre' oszlopban"
},
"manageFaviconsGray": {
- "message": "Megjelenítés szürkítve",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Megjelenítés szürkítve"
},
"manageFaviconsHelp": {
- "message": "A Stylus külső szolgáltatást használ (https://www.google.com/s2/favicons)",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "A Stylus külső szolgáltatást használ (https://www.google.com/s2/favicons)"
},
"manageFilters": {
- "message": "Szűrők",
- "description": "Label for filters container"
+ "message": "Szűrők"
},
"manageHeading": {
- "message": "Telepített stílusok",
- "description": "Heading for the manage page"
+ "message": "Telepített stílusok"
},
"manageMaxTargets": {
- "message": "'Érvényes erre' elemek kijelzendő száma",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "'Érvényes erre' elemek kijelzendő száma"
},
"manageNewStyleAsUsercss": {
- "message": "Usercss-ként",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "Usercss-ként"
},
"manageNewUI": {
- "message": "Új kezelői felület",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Új kezelői felület"
},
"manageOnlyDisabled": {
- "message": "Csak a letiltott stílusok",
- "description": "Checkbox to show only disabled styles"
+ "message": "Csak a letiltott stílusok"
},
"manageOnlyEnabled": {
- "message": "Csak a telepített stílusok",
- "description": "Checkbox to show only enabled styles"
+ "message": "Csak a telepített stílusok"
},
"manageOnlyExternal": {
- "message": "Csak külső stílusok",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Csak külső stílusok"
},
"manageOnlyLocal": {
- "message": "Csak helyileg létrehozott stílusok",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Csak helyileg létrehozott stílusok"
},
"manageOnlyLocalTooltip": {
- "message": "(a stílusok nem a userstyles.org egyik oldaláról települtek)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(a stílusok nem a userstyles.org egyik oldaláról települtek)"
},
"manageOnlyNonUsercss": {
- "message": "Csak nem Usercss stílusok",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Csak nem Usercss stílusok"
},
"manageOnlyUpdates": {
- "message": "Csak a frissíthetők vagy problémásak",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Csak a frissíthetők vagy problémásak"
},
"manageOnlyUsercss": {
- "message": "Csak Usercss stílusok",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Csak Usercss stílusok"
},
"menuShowBadge": {
- "message": "Aktív stílusok számlálójának mutatása",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Aktív stílusok számlálójának mutatása"
},
"meta_invalidCheckboxDefault": {
- "message": "Érvénytelen jelölő négyzet @var: az érték csak 0 vagy 1 lehet",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "Érvénytelen jelölő négyzet @var: az érték csak 0 vagy 1 lehet"
},
"meta_invalidColor": {
"message": "Érvénytelen szín @var: a(z) $color$ nem szín",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
}
}
},
+ "meta_invalidNumber": {
+ "message": "Várt elem: szám"
+ },
"meta_invalidRange": {
"message": "Érvénytelen változó @var (típus: $type$): az érték csak szám vagy tömb lehet",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "Érvénytelen változó @var (típus: $type$): többféle egység van megadva",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "Érvénytelen változó @var (típus: $type$): a tömb túl sok elemet tartalmaz",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeValue": {
- "message": "Érvénytelen változó @var (típus: $type$): csak szám, karakterlánc vagy null típusú elem lehet a tömbben",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -728,16 +556,6 @@
},
"meta_invalidRangeDefault": {
"message": "Érvénytelen változó @var (típus: $type$): az alapértelmezett értéke null",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMin": {
- "message": "Érvénytelen változó @var (típus: $type$): az alapértelmezett érték kisebb, mint a minimum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -746,7 +564,22 @@
},
"meta_invalidRangeMax": {
"message": "Érvénytelen változó @var (típus: $type$): az alapértelmezett érték nagyobb, mint a maximum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMin": {
+ "message": "Érvénytelen változó @var (típus: $type$): az alapértelmezett érték kisebb, mint a minimum",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "Érvénytelen változó @var (típus: $type$): többféle egység van megadva",
"placeholders": {
"type": {
"content": "$1"
@@ -755,7 +588,14 @@
},
"meta_invalidRangeStep": {
"message": "Érvénytelen változó @var (típus: $type$): az alapértelmezett érték nem a lépésköz többszöröse",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "Érvénytelen változó @var (típus: $type$): a tömb túl sok elemet tartalmaz",
"placeholders": {
"type": {
"content": "$1"
@@ -764,7 +604,6 @@
},
"meta_invalidRangeUnits": {
"message": "Érvénytelen változó @var (típus: $type$): a(z) '$units$' nem érvényes egység",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -774,37 +613,40 @@
}
}
},
- "meta_invalidSelect": {
- "message": "Érvénytelen kiválasztó lista @var: az alapértelmezett érték tömb vagy objektum lehet csak",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidRangeValue": {
+ "message": "Érvénytelen változó @var (típus: $type$): csak szám, karakterlánc vagy null típusú elem lehet a tömbben",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
},
- "meta_invalidSelectValue": {
- "message": "Érvénytelen kiválasztó lista @var: a tömbön/objektumon belüli érték csak karakterlánc lehet",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidSelect": {
+ "message": "Érvénytelen kiválasztó lista @var: az alapértelmezett érték tömb vagy objektum lehet csak"
},
"meta_invalidSelectEmptyOptions": {
- "message": "Érvénytelen kiválasztó lista @var: a lista üres",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Érvénytelen kiválasztó lista @var: a lista üres"
},
"meta_invalidSelectLabel": {
- "message": "Érvénytelen kiválasztó lista @var: a listaelem címkéje üres",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Érvénytelen kiválasztó lista @var: a listaelem címkéje üres"
},
"meta_invalidSelectMultipleDefaults": {
- "message": "Érvénytelen kiválasztó lista @var: egynél több alapértelmezett elem van megadva",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Érvénytelen kiválasztó lista @var: egynél több alapértelmezett elem van megadva"
},
"meta_invalidSelectNameDuplicated": {
- "message": "Érvénytelen kiválasztó lista @var: egy listaelem kétszer szerepel",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Érvénytelen kiválasztó lista @var: egy listaelem kétszer szerepel"
+ },
+ "meta_invalidSelectValue": {
+ "message": "Érvénytelen kiválasztó lista @var: a tömbön/objektumon belüli érték csak karakterlánc lehet"
},
"meta_invalidSelectValueMismatch": {
- "message": "Érvénytelen kiválasztó lista @var: az érték nem található a listaelemek között",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Érvénytelen kiválasztó lista @var: az érték nem található a listaelemek között"
+ },
+ "meta_invalidString": {
+ "message": "Várt elem: idézőjelek közti karakterlánc"
},
"meta_invalidURLProtocol": {
"message": "Érvénytelen URL-protokoll. Csak 'http' vagy 'https' engedett: $protocol$",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
@@ -812,29 +654,13 @@
}
},
"meta_invalidVersion": {
- "message": "Érvénytelen verziószám. Az érték nem illeszkedik a SemVer mintájához: $version$",
- "description": "Error displayed when @version is invalid",
- "placeholders": {
- "version": {
- "content": "$1"
- }
- }
- },
- "meta_invalidNumber": {
- "message": "Várt elem: szám",
- "description": "Error displayed when the value is expected to be a number"
- },
- "meta_invalidString": {
- "message": "Várt elem: idézőjelek közti karakterlánc",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "Érvénytelen verziószám"
},
"meta_invalidWord": {
- "message": "Várt elem: szó",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "Várt elem: szó"
},
"meta_missingChar": {
"message": "Várt karakterek: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -842,12 +668,10 @@
}
},
"meta_missingEOT": {
- "message": "Várt elem: EOT-adat",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "Várt elem: EOT-adat"
},
"meta_missingMandatory": {
"message": "Kötelező metaadat hiányzik: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -856,7 +680,6 @@
},
"meta_unknownJSONLiteral": {
"message": "Érvénytelen JSON: a(z) $literal$ nem érvényes JSON-karakterlánc (literális)",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
@@ -865,16 +688,22 @@
},
"meta_unknownMeta": {
"message": "Ismeretlen metaadat: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
}
},
+ "meta_unknownPreprocessor": {
+ "message": "Ismeretlen @preprocesszor (előfeldolgozó): $preprocessor$",
+ "placeholders": {
+ "preprocessor": {
+ "content": "$1"
+ }
+ }
+ },
"meta_unknownVarType": {
"message": "Ismeretlen @$varkey$ változó, típus: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -884,154 +713,116 @@
}
}
},
- "meta_unknownPreprocessor": {
- "message": "Ismeretlen @preprocesszor (előfeldolgozó): $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
- "placeholders": {
- "preprocessor": {
- "content": "$1"
- }
- }
+ "noFileToImport": {
+ "message": "A stílusok importálásához előbb exportálni kell őket."
},
"noStylesForSite": {
- "message": "Nincs telepítve stílus ehhez az oldalhoz.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Nincs telepítve stílus ehhez az oldalhoz."
},
"openManage": {
- "message": "Kezelés",
- "description": "Link to open the manage page."
+ "message": "Kezelés"
},
"openStylesManager": {
- "message": "Stíluskezelő megnyitása",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "Stíluskezelő megnyitása"
},
"optionsActions": {
- "message": "Műveletek",
- "description": ""
+ "message": "Műveletek"
},
"optionsAdvanced": {
- "message": "Haladó",
- "description": ""
+ "message": "Haladó"
},
"optionsAdvancedContextDelete": {
- "message": "'Törlés' parancs a szerkesztő helyi menüjében",
- "description": ""
+ "message": "'Törlés' parancs a szerkesztő helyi menüjében"
},
"optionsAdvancedExposeIframes": {
- "message": "iframe-ek kitevése HTML[stylus-iframe]-en keresztül",
- "description": ""
+ "message": "iframe-ek kitevése HTML[stylus-iframe]-en keresztül"
},
"optionsAdvancedExposeIframesNote": {
- "message": "Az oldal felső tartományának jelölése minden iframe-ben.\nLehetővé teszi az iframe-specifikus CSS írását, mint pl.:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }",
- "description": "Add attribute to iframe; make sure to include the double $$ in the css example, or the `$=` will be omitted in the displayed text."
+ "message": "Az oldal felső tartományának jelölése minden iframe-ben.\nLehetővé teszi az iframe-specifikus CSS írását, mint pl.:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "Új stílus írása usercss-ként",
- "description": ""
+ "message": "Új stílus írása usercss-ként"
},
"optionsBadgeDisabled": {
- "message": "Háttérszín, amikor le van tiltva",
- "description": ""
+ "message": "Háttérszín, amikor le van tiltva"
},
"optionsBadgeNormal": {
- "message": "Háttérszín",
- "description": ""
+ "message": "Háttérszín"
},
"optionsCheck": {
- "message": "Stílusok frissítése",
- "description": ""
+ "message": "Stílusok frissítése"
},
"optionsCheckUpdate": {
- "message": "Az összes frissítés ellenőrzése és telepítése",
- "description": ""
+ "message": "Az összes frissítés ellenőrzése és telepítése"
},
"optionsCustomizeBadge": {
- "message": "Ikon képe az eszköztáron",
- "description": ""
+ "message": "Ikon képe az eszköztáron"
},
"optionsCustomizeIcon": {
- "message": "Eszköztárikon",
- "description": ""
+ "message": "Eszköztárikon"
},
"optionsCustomizePopup": {
- "message": "Felugró ablak",
- "description": ""
- },
- "optionsCustomizeUpdate": {
- "message": "Frissítések",
- "description": ""
+ "message": "Felugró ablak"
},
"optionsCustomizeSync": {
- "message": "Szinkronizálás felhővel",
- "description": ""
+ "message": "Szinkronizálás felhővel"
+ },
+ "optionsCustomizeUpdate": {
+ "message": "Frissítések"
},
"optionsHeading": {
- "message": "Beállítások",
- "description": "Heading for options section on manage page."
+ "message": "Beállítások"
},
"optionsIconDark": {
- "message": "Sötét böngészőtémák",
- "description": ""
+ "message": "Sötét böngészőtémák"
},
"optionsIconLight": {
- "message": "Világos böngészőtémák",
- "description": ""
+ "message": "Világos böngészőtémák"
},
"optionsOpen": {
- "message": "Megnyitás",
- "description": ""
+ "message": "Megnyitás"
},
"optionsOpenManager": {
- "message": "Stílusok kezelése",
- "description": ""
+ "message": "Stílusok kezelése"
},
"optionsPopupWidth": {
- "message": "Felugró ablak szélessége (pixelben)",
- "description": ""
+ "message": "Felugró ablak szélessége (pixelben)"
},
"optionsReset": {
- "message": "Beállítások visszaállítása alapértelmezett értékre",
- "description": ""
+ "message": "Beállítások visszaállítása alapértelmezett értékre"
},
"optionsResetButton": {
- "message": "Alapértelmezés visszaállítása",
- "description": ""
+ "message": "Alapértelmezés visszaállítása"
},
"optionsSubheading": {
- "message": "További beállítások",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "Amikor régebbi verzióból vagy a Stylishból importálsz stílusokat, egyszer manuálisan frissítsd a stílusokat a stíluskezelőben, hogy megbizonyosodj afelől, hogy mindegyik frissítve van!",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "Felhasználói stílus automatikus frissítési időköze órában (0=kikapcsolva)",
- "description": ""
- },
- "optionsSyncNone": {
- "message": "Nincs",
- "description": ""
+ "message": "További beállítások"
},
"optionsSyncConnect": {
- "message": "Kapcsolódás",
- "description": ""
+ "message": "Kapcsolódás"
},
"optionsSyncDisconnect": {
- "message": "Kapcsolat bontása",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "Szinkronizálás most",
- "description": ""
+ "message": "Kapcsolat bontása"
},
"optionsSyncLogin": {
- "message": "Bejelentkezés",
- "description": ""
+ "message": "Bejelentkezés"
+ },
+ "optionsSyncNone": {
+ "message": "Nincs"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "Kapcsolódva"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "Kapcsolódás..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "Nincs kapcsolat"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "Kapcsolat bontása..."
},
"optionsSyncStatusPull": {
"message": "Stílusok helyi frissítése (pull): $loaded$/$total$",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1043,7 +834,6 @@
},
"optionsSyncStatusPush": {
"message": "Stílusok távoli frissítése (push): $loaded$/$total$",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1054,256 +844,193 @@
}
},
"optionsSyncStatusSyncing": {
- "message": "Szinkronizálás...",
- "description": ""
+ "message": "Szinkronizálás..."
},
- "optionsSyncStatusConnecting": {
- "message": "Kapcsolódás...",
- "description": ""
+ "optionsSyncSyncNow": {
+ "message": "Szinkronizálás most"
},
- "optionsSyncStatusConnected": {
- "message": "Kapcsolódva",
- "description": ""
+ "optionsUpdateImportNote": {
+ "message": "Amikor régebbi verzióból vagy a Stylishból importálsz stílusokat, egyszer manuálisan frissítsd a stílusokat a stíluskezelőben, hogy megbizonyosodj afelől, hogy mindegyik frissítve van!"
},
- "optionsSyncStatusDisconnecting": {
- "message": "Kapcsolat bontása...",
- "description": ""
+ "optionsUpdateInterval": {
+ "message": "Felhasználói stílus automatikus frissítési időköze órában (0=kikapcsolva)"
},
- "optionsSyncStatusDisconnected": {
- "message": "Nincs kapcsolat",
- "description": ""
+ "overwriteFileExport": {
+ "message": "Felülírjuk a létező fájlt?"
},
"paginationCurrent": {
- "message": "Jelenlegi oldal",
- "description": "Tooltip for the current page index in search results"
+ "message": "Jelenlegi oldal"
},
"paginationEstimated": {
- "message": "Becsült oldalak száma",
- "description": "Tooltip for the total page count in search results"
+ "message": "Becsült oldalak száma"
},
"paginationNext": {
- "message": "Következő oldal",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "Következő oldal"
},
"paginationPrevious": {
- "message": "Előző oldal",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "Előző oldal"
},
"paginationTotal": {
- "message": "Összes oldal",
- "description": ""
+ "message": "Összes oldal"
},
"parseUsercssError": {
- "message": "A Stylus nem tudta elemezni a usercss-t",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "A Stylus nem tudta elemezni a usercss-t"
},
"popupAutoResort": {
- "message": "Stílusok újrarendezése a felugró ablakban átkapcsoláskor",
- "description": "Label for the checkbox controlling popup resorting."
+ "message": "Stílusok újrarendezése a felugró ablakban átkapcsoláskor"
},
"popupBorders": {
- "message": "Fehér szegély az oldalakon",
- "description": ""
+ "message": "Fehér szegély az oldalakon"
},
"popupBordersTooltip": {
- "message": "Hasznos az új Chrome sötét témáinál, mert nem színezi át az oldalszegélyeket",
- "description": ""
+ "message": "Hasznos az új Chrome sötét témáinál, mert nem színezi át az oldalszegélyeket"
},
"popupHotkeysInfo": {
- "message": "<1>-<9>, <0>, a numpaden is - be-/kikapcsolja az n-nedik stílust (a 0 10-et jelent)\n- az adott betűvel kezdődő első stílust kapcsolja be/ki \n kapcsolgatás helyett megnyitja a szerkesztőt\n listázott stílusokat engedélyez\n listázott stílusokat tilt le\n és <`> (fordított félidézőjel) - kezdeti állapotban engedélyezett stílusokat kapcsol; nem vonatkozik azokra a stílusokra, amiket később engedélyeztél, mialatt a felugró ablakocska nyitva volt, hogy vissza tudd állítani a kezdeti kiválasztást tesztelés után: egyszerűen tilts le mindent, majd pl. vagy \nTovábbi információ a wikiben",
- "description": "NOTE1: preserve < and > symbols so that is styled as a key.\nNOTE2: the last line is displayed as a text of the link to the wiki page.\nNOTE3: this is the list of hotkeys displayed after clicking the right edge of the extension popup."
+ "message": "<1>-<9>, <0>, a numpaden is - be-/kikapcsolja az n-nedik stílust (a 0 10-et jelent)\n- az adott betűvel kezdődő első stílust kapcsolja be/ki \n kapcsolgatás helyett megnyitja a szerkesztőt\n listázott stílusokat engedélyez\n listázott stílusokat tilt le\n és <`> (fordított félidézőjel) - kezdeti állapotban engedélyezett stílusokat kapcsol; nem vonatkozik azokra a stílusokra, amiket később engedélyeztél, mialatt a felugró ablakocska nyitva volt, hogy vissza tudd állítani a kezdeti kiválasztást tesztelés után: egyszerűen tilts le mindent, majd pl. vagy \nTovábbi információ a wikiben"
},
"popupHotkeysTooltip": {
- "message": "Elérhető gyorsbillentyűk megtekintése",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "Elérhető gyorsbillentyűk megtekintése"
},
"popupManageTooltip": {
- "message": "Shift+kattintás vagy jobb kattintás: a stíluskezelő megnyitása a jelenlegi oldalra érvényes stílusokkal",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Shift+kattintás vagy jobb kattintás: a stíluskezelő megnyitása a jelenlegi oldalra érvényes stílusokkal"
},
"popupMenuButtonTooltip": {
- "message": "Műveletmenü",
- "description": "Tooltip for menu button in popup."
+ "message": "Műveletmenü"
},
"popupOpenEditInWindow": {
- "message": "Szerkesztő megnyitása új ablakban",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Szerkesztő megnyitása új ablakban"
},
"popupOpenEditInWindowTooltip": {
- "message": "A fül a böngésző ablakától történő leválasztásával is engedélyezhető, és letiltható a fül egy másik ablakhoz való hozzácsatolásával.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "A fül a böngésző ablakától történő leválasztásával is engedélyezhető, és letiltható a fül egy másik ablakhoz való hozzácsatolásával."
},
"popupStylesFirst": {
- "message": "Stílusnevek a parancsok előtt",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "Stílusnevek a parancsok előtt"
},
"prefShowBadge": {
- "message": "A jelenlegi oldalon aktív stílusok száma",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "A jelenlegi oldalon aktív stílusok száma"
},
"previewLabel": {
- "message": "Valós idejű előnézet",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "Valós idejű előnézet"
},
"previewTooltip": {
- "message": "Átmenetileg alkalmazza a változtatásokat mentés nélkül.\nMentsd a stílust, hogy a változtatások véglegesek legyenek!",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "Átmenetileg alkalmazza a változtatásokat mentés nélkül.\nMentsd a stílust, hogy a változtatások véglegesek legyenek!"
+ },
+ "readingStyles": {
+ "message": "Stílusok olvasása..."
},
"replace": {
- "message": "Csere",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Csere"
},
"replaceAll": {
- "message": "Az összes cseréje",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Az összes cseréje"
},
"replaceWith": {
- "message": "Csere a következővel",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Csere a következővel"
},
"retrieveBckp": {
- "message": "Stílusok importálása",
- "description": ""
+ "message": "Stílusok importálása"
+ },
+ "retrieveDropboxSync": {
+ "message": "Importálás Dropboxból"
},
"search": {
- "message": "Keresés",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Keresés"
},
"searchCaseSensitive": {
- "message": "Kis- és nagybetű megkülönböztetése",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "Kis- és nagybetű megkülönböztetése"
},
"searchNumberOfResults": {
- "message": "Illeszkedések száma",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Illeszkedések száma"
},
"searchNumberOfResults2": {
- "message": "Illeszkedések száma a kódban és célértékek",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Illeszkedések száma a kódban és célértékek"
},
"searchRegexp": {
- "message": "Használd a /re/ szintaxist a regexp kereséshez",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "Használd a /re/ szintaxist a regexp kereséshez"
},
"searchResultInstallCount": {
- "message": "Összes telepítés",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "Összes telepítés"
},
"searchResultNoneFound": {
- "message": "Nem találhatók stílusok ehhez az oldalhoz.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "Nem találhatók stílusok ehhez az oldalhoz."
},
"searchResultRating": {
- "message": "Értékelés",
- "description": "Text for label that shows the search result's rating"
+ "message": "Értékelés"
},
"searchResultUpdated": {
- "message": "Frissítve",
- "description": "Text for label that shows the search result's last update date"
+ "message": "Frissítve"
},
"searchResultWeeklyCount": {
- "message": "Heti telepítések",
- "description": "Text for label that shows the number of times a search result was installed during last week"
- },
- "searchStyles": {
- "message": "Tartalom keresése",
- "description": "Label for the search filter textbox on the Manage styles page"
- },
- "searchStylesHelp": {
- "message": "A > billentyűvel a keresési mezőre ugrasz.\nSima szöveg: keresés a névben, kódban, honlap URL-ben és érvényes oldalakban. A 3 betűnél kevesebb szavak figyelmen kívül vannak hagyva.\nIlleszkedő URL: kezdd a keresést „”-lel, pl. \nReguláris kifejezések: ide tartoznak a per-jelek és a flagek, pl. \nPontos szavak: írj idézőjeleket a keresési kifejezés köré, pl. <\".header ~ div\">",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
+ "message": "Heti telepítések"
},
"sectionAdd": {
- "message": "Új szakasz hozzáadása",
- "description": "Label for the button to add a section"
+ "message": "Új szakasz hozzáadása"
},
"sectionCode": {
- "message": "Kód",
- "description": "Label for the code for a section"
+ "message": "Kód"
},
"sectionRemove": {
- "message": "Szekció eltávolítása",
- "description": "Label for the button to remove a section"
+ "message": "Szekció eltávolítása"
},
"sectionRestore": {
- "message": "Eltávolított szekció visszaállítása",
- "description": "Label for the button to restore a removed section"
+ "message": "Eltávolított szekció visszaállítása"
},
"shortcuts": {
- "message": "Gyorsbillentyűk",
- "description": "Go to shortcut configuration"
+ "message": "Gyorsbillentyűk"
},
"shortcutsNote": {
- "message": "Gyorsbillentyűk megadása",
- "description": ""
+ "message": "Gyorsbillentyűk megadása"
},
"sortDateNewestFirst": {
- "message": "újabb elöl",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "újabb elöl"
},
"sortDateOldestFirst": {
- "message": "régebbi elöl",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "régebbi elöl"
},
"sortLabel": {
- "message": "Telepített stílusok sorbarendezésének módja",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "Telepített stílusok sorbarendezésének módja"
},
"sortLabelTitleAsc": {
- "message": "Cím - növekvő sorrend",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "Cím - növekvő sorrend"
},
"sortLabelTitleDesc": {
- "message": "Cím - csökkenő sorrend",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "Cím - csökkenő sorrend"
},
"sortStylesHelp": {
- "message": "A legördülő menüben válaszhatjuk ki, hogyan szeretnénk sorbarendezni a telepített stílusok bejegyzéseit. Az alapértelmezett beállítás a bejegyzések címei szerinti növekvő (A-tól Z-ig) sorrend. A „Cím - csökkenő sorrend” csoportban megadott rendezési módok csökkenő (Z-től A-ig) sorrendben rendezik a címeket.\nEgyéb beállításokkal több szempont alapján is rendezhetők a bejegyzések. Tekintsünk erre úgy, mint egy többoszlopos, rendezhető táblázatra, amelyben minden egyes (a plusz jelek között) kiválasztott kategória egy oszlopot vagy egy csoportot jelképez.\nPéldául, ha az van beállítva, hogy „Engedélyezve (első) + Cím”, az engedélyezett bejegyzések kerülnek a lista tetejére, majd az engedélyezett és a letiltott bejegyzések címei külön-külön, növekvő (A-tól Z-ig) sorrendben jelennek meg.",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the sort input field on the Manage styles page"
+ "message": "A legördülő menüben válaszhatjuk ki, hogyan szeretnénk sorbarendezni a telepített stílusok bejegyzéseit. Az alapértelmezett beállítás a bejegyzések címei szerinti növekvő (A-tól Z-ig) sorrend. A „Cím - csökkenő sorrend” csoportban megadott rendezési módok csökkenő (Z-től A-ig) sorrendben rendezik a címeket.\nEgyéb beállításokkal több szempont alapján is rendezhetők a bejegyzések. Tekintsünk erre úgy, mint egy többoszlopos, rendezhető táblázatra, amelyben minden egyes (a plusz jelek között) kiválasztott kategória egy oszlopot vagy egy csoportot jelképez.\nPéldául, ha az van beállítva, hogy „Engedélyezve (első) + Cím”, az engedélyezett bejegyzések kerülnek a lista tetejére, majd az engedélyezett és a letiltott bejegyzések címei külön-külön, növekvő (A-tól Z-ig) sorrendben jelennek meg."
},
"sortStylesHelpTitle": {
- "message": "Tartalom rendezése",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "Tartalom rendezése"
},
"styleBadRegexp": {
- "message": "Érvénytelen reguláris kifejezés.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Érvénytelen reguláris kifejezés."
},
"styleBeautify": {
- "message": "Csinosít",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "Csinosít"
},
"styleBeautifyIndentConditional": {
- "message": "@media, @supports behúzása",
- "description": "CSS-beautifier option"
+ "message": "@media, @supports behúzása"
},
"styleBeautifyPreserveNewlines": {
- "message": "Új sorok megtartása",
- "description": "CSS-beautifier option"
+ "message": "Új sorok megtartása"
},
"styleCancelEditLabel": {
- "message": "Vissza a kezeléshez",
- "description": "Label for cancel button for style editing"
+ "message": "Vissza a kezeléshez"
},
"styleChangesNotSaved": {
- "message": "Nem mentetted a stílusban lévő változásokat.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Nem mentetted a stílusban lévő változásokat."
},
"styleEnabledLabel": {
- "message": "Engedélyezve",
- "description": "Label for the enabled state of styles"
+ "message": "Engedélyezve"
},
"styleFromMozillaFormatError": {
- "message": "Nem sikerült importálni Mozilla formátumból",
- "description": "Label for the import error"
+ "message": "Nem sikerült importálni Mozilla formátumból"
},
"styleFromMozillaFormatPrompt": {
- "message": "Mozilla formátumú kód beillesztése",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Mozilla formátumú kód beillesztése"
},
"styleInstall": {
"message": "Telepíted a(z) „$stylename$” nevű stílust a Stylusba?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1312,7 +1039,6 @@
},
"styleInstallFailed": {
"message": "A stílus telepítése nem sikerült!\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1321,86 +1047,68 @@
},
"styleInstallOverwrite": {
"message": "„$stylename$” már telepítve van. Felülírod?\nVerzió: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "Írj be egy nevet!",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Írj be egy nevet!"
},
"styleMozillaFormatHeading": {
- "message": "Mozilla-formátum",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Mozilla-formátum"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "A stílus nem lett alkalmazva a „regexp()” helytelen használata miatt",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "A stílus nem lett alkalmazva a „regexp()” helytelen használata miatt"
},
"styleRegexpInvalidExplanation": {
- "message": "Néhány „regexp()” szabály nem lefordítható.",
- "description": ""
+ "message": "Néhány „regexp()” szabály nem lefordítható."
},
"styleRegexpPartialExplanation": {
- "message": "A stílus olyan részlegesen illeszkedő reguláris kifejezéseket használ, amelyek sértik aCSS4@dokumentumspecifikációt, amely megköveteli az URL teljes illeszkedését. Az érintett CSS-szekciók nem kerültek alkalmazásra az oldalon. A stílus valószínűleg a Stylish-for-Chrome kiegészítőben készült, amely helytelenül ellenőrzi a „regexp()” szabályokat a legelső verziótól fogva (ismert hiba).",
- "description": ""
+ "message": "A stílus olyan részlegesen illeszkedő reguláris kifejezéseket használ, amelyek sértik aCSS4@dokumentumspecifikációt, amely megköveteli az URL teljes illeszkedését. Az érintett CSS-szekciók nem kerültek alkalmazásra az oldalon. A stílus valószínűleg a Stylish-for-Chrome kiegészítőben készült, amely helytelenül ellenőrzi a „regexp()” szabályokat a legelső verziótól fogva (ismert hiba)."
},
"styleRegexpProblemTooltip": {
- "message": "A nem alkalmazott szeckiók száma helytelen 'regexp()' használat miatt",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "A nem alkalmazott szeckiók száma helytelen 'regexp()' használat miatt"
},
"styleRegexpTestButton": {
- "message": "RegExp tesztelése",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "RegExp tesztelése"
},
"styleRegexpTestFull": {
- "message": "Illeszkedő fülek",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "Illeszkedő fülek"
},
"styleRegexpTestInvalid": {
- "message": "Kihagyott, érvénytelen reguláris kifejezések",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "Kihagyott, érvénytelen reguláris kifejezések"
},
"styleRegexpTestNone": {
- "message": "Nincs illeszkedő fül",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "Nincs illeszkedő fül"
},
"styleRegexpTestNote": {
- "message": "Megjegyzés: használj egy \\-jelet speciális karakterek elrejtéséhez a regexp beviteli mezőben, amely automatikusan két \\-jellé (\\\\) lesz alakítva a CSS stíluskódban idézett karakterláncokban.",
- "description": "RegExp test report: a note displayed at the bottom of the dialog"
+ "message": "Megjegyzés: használj egy \\-jelet speciális karakterek elrejtéséhez a regexp beviteli mezőben, amely automatikusan két \\-jellé (\\\\) lesz alakítva a CSS stíluskódban idézett karakterláncokban."
},
"styleRegexpTestPartial": {
- "message": "Nincs teljes egyezés, így ki vagy hagyva",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "Nincs teljes egyezés, így ki vagy hagyva"
},
"styleRegexpTestTitle": {
- "message": "Illeszkedő megnyitott fülek megjelenítése (kattints az URL-re az arra a fülre való ugráshoz)",
- "description": "RegExp test report: title of the report"
+ "message": "Illeszkedő megnyitott fülek megjelenítése (kattints az URL-re az arra a fülre való ugráshoz)"
},
"styleSaveLabel": {
- "message": "Mentés",
- "description": "Label for save button for style editing"
+ "message": "Mentés"
},
"styleToMozillaFormatHelp": {
- "message": "A Mozilla formátumú kódot beküldheted a userstyles.org-ra és használhatod a klasszikus Stylish Firefoxkiegészítővel.",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "A Mozilla formátumú kódot beküldheted a userstyles.org-ra és használhatod a klasszikus Stylish Firefoxkiegészítővel."
},
"styleToMozillaFormatTitle": {
- "message": "Mozilla formátumú stílus",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Mozilla formátumú stílus"
},
"styleUpdate": {
"message": "Biztos, hogy frissíteni akarod a(z) „$stylename$” stílust?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1408,72 +1116,52 @@
}
},
"styleUpdateDiscardChanges": {
- "message": "A stílus módosítva lett a szerkesztőn kívül. Szeretnéd újratölteni?",
- "description": "Confirmation to update the style in the editor"
+ "message": "A stílus módosítva lett a szerkesztőn kívül. Szeretnéd újratölteni?"
},
"stylusUnavailableForURL": {
- "message": "A Stylus nem működik az ilyen oldalakon.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "A Stylus nem működik az ilyen oldalakon."
},
"stylusUnavailableForURLdetails": {
- "message": "Biztonsági okokból a böngésző megtiltja, hogy a kiegészítők változtatásokat tegyenek a beépített oldalain (pl. chrome://verzió, a Chrome 61 alapértelmezett „új lap” oldala, about:addons és így tovább) valamint más kiterjesztések oldalain. Ezen kívül mindegyik böngésző korlátozza a saját kiegészítőgalériájának elérését (pl. Chrome webáruház vagy a Mozilla kiegészítők oldala)",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Biztonsági okokból a böngésző megtiltja, hogy a kiegészítők változtatásokat tegyenek a beépített oldalain (pl. chrome://verzió, a Chrome 61 alapértelmezett „új lap” oldala, about:addons és így tovább) valamint más kiterjesztések oldalain. Ezen kívül mindegyik böngésző korlátozza a saját kiegészítőgalériájának elérését (pl. Chrome webáruház vagy a Mozilla kiegészítők oldala)"
+ },
+ "syncDropboxStyles": {
+ "message": "Exportálás Dropboxba"
},
"syncStorageErrorSaving": {
- "message": "Az értéket nem lehet menteni. Próbáld meg csökkenteni a szövegmennyiséget!",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "Az értéket nem lehet menteni. Próbáld meg csökkenteni a szövegmennyiséget!"
},
"toggleStyle": {
- "message": "Stílus be-/kikapcsolása",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "Stílus be-/kikapcsolása"
},
"undo": {
- "message": "Visszavonás",
- "description": "Button label"
+ "message": "Visszavonás"
},
"undoGlobal": {
- "message": "Visszavonás mindegyik szekcióban",
- "description": "CSS-beautify global Undo button label"
+ "message": "Visszavonás mindegyik szekcióban"
},
"unreachableAMO": {
- "message": "A Firefox megtiltja ennek az oldalnak az elérését.",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "A Firefox megtiltja ennek az oldalnak az elérését."
},
"unreachableAMOHint": {
- "message": "Az elérés engedélyezéséhez nyisd meg az -ot, kattints jobb egérgombbal, majd „Új”, „Logikai”, és illeszd be, hogy , és kattints az OK-ra, OK, és töltsd újra az oldalt!",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintNewFF": {
- "message": "A Firefox 60-ban vagy annál újabb verzióban az AMO doménjét is el kell távolítanod a -ban levő -ból.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Csak a Firefox 59 vagy annál újabb állítható be az ilyen CSP-védett oldalak stílusának átszabása WebExtensions kiegészítőkön keresztül.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "Az elérés engedélyezéséhez nyisd meg az -ot, kattints jobb egérgombbal, majd „Új”, „Logikai”, és illeszd be, hogy , és kattints az OK-ra, OK, és töltsd újra az oldalt!"
},
"unreachableContentScript": {
- "message": "Nem sikerült az oldallal történő kommunikáció. Próbáld meg újratölteni az oldalt!",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "Nem sikerült az oldallal történő kommunikáció. Próbáld meg újratölteni az oldalt!"
},
"unreachableFileHint": {
- "message": "A Stylus csak akkor képes hozzáférni a file:// URL-ekhez, ha engedélyezed az erre vonatkozó beállítást a Stylus kiegészítőre a chrome://extensions oldalon.",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "A Stylus csak akkor képes hozzáférni a file:// URL-ekhez, ha engedélyezed az erre vonatkozó beállítást a Stylus kiegészítőre a chrome://extensions oldalon."
},
- "InaccessibleFileHint": {
- "message": "A Stylus nem tud bizonyos fájltípusokhoz hozzáférni (pl. PDF- & JSON-fájlokhoz)",
- "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ "unzipStyles": {
+ "message": "Stílusok kibontása..."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "Nem találhatók frissítések.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Nem találhatók frissítések."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "Egyes frissíthető stílusok nem lettek ellenőrizve, nehogy elvesszenek a helyi változtatások. A frissítéseket lehet erőltetni egyéni ellenőrzéssel külön-külön vagy az összes stílus ismételt ellenőrzésével (ez felülírja a helyi módosításokat).",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Egyes frissíthető stílusok nem lettek ellenőrizve, nehogy elvesszenek a helyi változtatások. A frissítéseket lehet erőltetni egyéni ellenőrzéssel külön-külön vagy az összes stílus ismételt ellenőrzésével (ez felülírja a helyi módosításokat)."
},
"updateCheckFailBadResponseCode": {
"message": "Sikertelen frissítés: a szerver $code$kóddal válaszolt.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1481,123 +1169,63 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Sikertelen frissítés: nem érhető el a szerver.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Sikertelen frissítés: nem érhető el a szerver."
},
"updateCheckHistory": {
- "message": "Frissítések ellenőrzésének előzményei",
- "description": ""
+ "message": "Frissítések ellenőrzésének előzményei"
},
"updateCheckManualUpdateForce": {
- "message": "Frissítés telepítése (a helyi módosítások felül lesznek írva)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Frissítés telepítése (a helyi módosítások felül lesznek írva)"
},
"updateCheckManualUpdateHint": {
- "message": "Egy frissítés erőltetése minden helyi szerkesztést felül fog írni.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Egy frissítés erőltetése minden helyi szerkesztést felül fog írni."
},
"updateCheckSkippedLocallyEdited": {
- "message": "Ez a stílus helyileg lett szerkesztve.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Ez a stílus helyileg lett szerkesztve."
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "Lehet, hogy ezt a stílust helyileg szerkesztették",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "Lehet, hogy ezt a stílust helyileg szerkesztették"
},
"updateCheckSucceededNoUpdate": {
- "message": "A stílus legfrissebb verziója van telepítve.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "A stílus legfrissebb verziója van telepítve."
},
"updateCompleted": {
- "message": "A frissítés befejeződött.",
- "description": "Text that displays when an update completed"
+ "message": "A frissítés befejeződött."
},
"updatesCurrentlyInstalled": {
- "message": "Frissítve:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "Kérlek, módosítsd a @name vagy a @namespace értékét, nehogy felül legyen írva az egyik létező stílus!",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssConfigIncomplete": {
- "message": "A stílust frissítették vagy törölték, miután a beállítóablak megjelent. Ezek a változók nem kerültek mentésre, nehogy megsérüljön a stílus metaadata:",
- "description": ""
- },
- "usercssEditorNamePlaceholder": {
- "message": "Adj meg egy @name-et a kódban",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateConfirmation": {
- "message": "Le legyen cserélve az alapértelmezett sablon az új Usercss stílusokhoz a jelenlegi kóddal?",
- "description": ""
- },
- "usercssReplaceTemplateName": {
- "message": "Az üres @name lecseréli az alapértelmezett sablont",
- "description": "The text shown after @name when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "Írj kódot ide…",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "A verzió régebb a telepített stílusnál",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "Stílus írása a következőhöz:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "ehhez az URL-hez",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "syncDropboxStyles": {
- "message": "Exportálás Dropboxba",
- "description": ""
- },
- "retrieveDropboxSync": {
- "message": "Importálás Dropboxból",
- "description": ""
- },
- "overwriteFileExport": {
- "message": "Felülírjuk a létező fájlt?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "A fájl sikeresen elmentve.",
- "description": ""
- },
- "noFileToImport": {
- "message": "A stílusok importálásához előbb exportálni kell őket.",
- "description": ""
- },
- "connectingDropbox": {
- "message": "Kapcsolódás Dropboxhoz...",
- "description": ""
- },
- "connectingDropboxNotAllowed": {
- "message": "Dropboxhoz csak közvetlenül a web-boltból telepített alkalmazásból lehet kapcsolódni.",
- "description": ""
- },
- "gettingStyles": {
- "message": "Minden stílus fogadása...",
- "description": ""
- },
- "zipStyles": {
- "message": "Stílusok tömörítése...",
- "description": ""
- },
- "unzipStyles": {
- "message": "Stílusok kibontása...",
- "description": ""
- },
- "readingStyles": {
- "message": "Stílusok olvasása...",
- "description": ""
+ "message": "Frissítve:"
},
"uploadingFile": {
- "message": "Fájl feltöltése...",
- "description": ""
+ "message": "Fájl feltöltése..."
+ },
+ "usercssAvoidOverwriting": {
+ "message": "Kérlek, módosítsd a @name vagy a @namespace értékét, nehogy felül legyen írva az egyik létező stílus!"
+ },
+ "usercssConfigIncomplete": {
+ "message": "A stílust frissítették vagy törölték, miután a beállítóablak megjelent. Ezek a változók nem kerültek mentésre, nehogy megsérüljön a stílus metaadata:"
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "Adj meg egy @name-et a kódban"
+ },
+ "usercssReplaceTemplateConfirmation": {
+ "message": "Le legyen cserélve az alapértelmezett sablon az új Usercss stílusokhoz a jelenlegi kóddal?"
+ },
+ "usercssReplaceTemplateName": {
+ "message": "Az üres @name lecseréli az alapértelmezett sablont"
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "Írj kódot ide…"
+ },
+ "versionInvalidOlder": {
+ "message": "A verzió régebb a telepített stílusnál"
+ },
+ "writeStyleFor": {
+ "message": "Stílus írása a következőhöz:"
+ },
+ "writeStyleForURL": {
+ "message": "ehhez az URL-hez"
+ },
+ "zipStyles": {
+ "message": "Stílusok tömörítése..."
}
}
diff --git a/_locales/it/messages.json b/_locales/it/messages.json
index 0be3fef9..47de0788 100644
--- a/_locales/it/messages.json
+++ b/_locales/it/messages.json
@@ -1,23 +1,18 @@
{
"addStyleLabel": {
- "message": "Scrivi nuovo stile",
- "description": "Label for the button to go to the add style page"
+ "message": "Scrivi nuovo stile"
},
"addStyleTitle": {
- "message": "Aggiungi stili",
- "description": "Title of the page for adding styles"
+ "message": "Aggiungi stili"
},
"alphaChannel": {
- "message": "Opacità",
- "description": "Label of color's opacity"
+ "message": "Opacità"
},
"appliesAdd": {
- "message": "Aggiungi",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Aggiungi"
},
"appliesDisplay": {
"message": "Applica a: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,248 +20,187 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "e altro ancora",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "e altro ancora"
},
"appliesDomainOption": {
- "message": "URL nel dominio",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL nel dominio"
},
"appliesHelp": {
- "message": "Utilizza i controlli \"Applica a\" per limitare gli URL a cui viene applicato il codice in questa sezione.",
- "description": "Help text for 'applies to' section"
+ "message": "Utilizza i controlli \"Applica a\" per limitare gli URL a cui viene applicato il codice in questa sezione."
},
"appliesLabel": {
- "message": "Applica a",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Applica a"
},
"appliesLineWidgetLabel": {
- "message": "Visualizza info 'Applica a'",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "Visualizza info 'Applica a'"
},
"appliesLineWidgetWarning": {
- "message": "Non funziona con CSS minificato",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "Non funziona con CSS minificato"
},
"appliesRegexpOption": {
- "message": "URL corrispondenti all'espressione regolare",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URL corrispondenti all'espressione regolare"
},
"appliesRemove": {
- "message": "Rimuovi",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Rimuovi"
},
"appliesSpecify": {
- "message": "Specifica",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Specifica"
},
"appliesToEverything": {
- "message": "Tutto",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Tutto"
},
"appliesUrlPrefixOption": {
- "message": "URL che iniziano con",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL che iniziano con"
},
"applyAllUpdates": {
- "message": "Applica tutti gli aggiornamenti",
- "description": "Label for the button to apply all detected updates"
+ "message": "Applica tutti gli aggiornamenti"
},
"author": {
- "message": "Autore",
- "description": "Label for the style author"
+ "message": "Autore"
},
"backupMessage": {
- "message": "Seleziona un file o trascinalo in questa pagina.",
- "description": "Message for backup"
+ "message": "Seleziona un file o trascinalo in questa pagina."
},
"bckpInstStyles": {
- "message": "Esporta stili",
- "description": ""
+ "message": "Esporta stili"
},
"checkAllUpdates": {
- "message": "Verifica la disponibilità di aggiornamenti per tutti gli stili",
- "description": "Label for the button to check all styles for updates"
+ "message": "Verifica la disponibilità di aggiornamenti per tutti gli stili"
},
"checkAllUpdatesForce": {
- "message": "Controlla di nuovo, non ho modificato nessuno stile!",
- "description": "Label for the button to apply all detected updates"
+ "message": "Controlla di nuovo, non ho modificato nessuno stile!"
},
"checkForUpdate": {
- "message": "Verifica la presenza di aggiornamenti",
- "description": "Label for the button to check a single style for an update"
+ "message": "Verifica la presenza di aggiornamenti"
},
"checkingForUpdate": {
- "message": "Verifica in corso...",
- "description": "Text to display when checking a style for an update"
+ "message": "Verifica in corso..."
},
"clickToUninstall": {
- "message": "Clicca per disinstallare",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Clicca per disinstallare"
},
"cm_autoCloseBrackets": {
- "message": "Chiudi automaticamente parentesi e virgolette",
- "description": "Label for the checkbox in the style editor."
+ "message": "Chiudi automaticamente parentesi e virgolette"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Aggiungi automaticamente il simbolo di chiusura quando apri ()[]{}''\"\"",
- "description": "Label for the checkbox in the style editor."
+ "message": "Aggiungi automaticamente il simbolo di chiusura quando apri ()[]{}''\"\""
},
"cm_autocompleteOnTyping": {
- "message": "Completamento automatico durante digitazione",
- "description": "Label for the checkbox in the style editor."
+ "message": "Completamento automatico durante digitazione"
},
"cm_colorpicker": {
- "message": "Selezionatore colore per colori CSS",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Selezionatore colore per colori CSS"
},
"cm_indentWithTabs": {
- "message": "Usa tabulazioni con indentazione intellingente",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Usa tabulazioni con indentazione intellingente"
},
"cm_keyMap": {
- "message": "Mappa caratteri",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Mappa caratteri"
},
"cm_matchHighlight": {
- "message": "Evidenzia",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Evidenzia"
},
"cm_matchHighlightSelection": {
- "message": "Solo selezione",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Solo selezione"
},
"cm_matchHighlightToken": {
- "message": "Token sotto il puntatore",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Token sotto il puntatore"
},
"cm_resizeGripHint": {
- "message": "Doppio click per massimizzare/ripristinare l'altezza",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Doppio click per massimizzare/ripristinare l'altezza"
},
"cm_selectByTokens": {
- "message": "Doppio click seleziona i token",
- "description": "Label for the checkbox in the editor."
+ "message": "Doppio click seleziona i token"
},
"cm_selectByTokensTooltip": {
- "message": "Esempi di token: foo-bar-2 #aabbcc 0.32 !important\nQuando disabilitato: vengono selezionate le parole delimitate dalla punteggiatura.",
- "description": ""
+ "message": "Esempi di token: foo-bar-2 #aabbcc 0.32 !important\nQuando disabilitato: vengono selezionate le parole delimitate dalla punteggiatura."
},
"cm_smartIndent": {
- "message": "Usa indentazione intelligente",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Usa indentazione intelligente"
},
"cm_tabSize": {
- "message": "Dimensione tabulazione",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Dimensione tabulazione"
},
"cm_theme": {
- "message": "Tema",
- "description": "Label for the style editor's CSS theme."
+ "message": "Tema"
},
"colorpickerTooltip": {
- "message": "Apri selettore colore",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Apri selettore colore"
},
"configOnChange": {
- "message": "su modifica",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "su modifica"
},
"configOnChangeTooltip": {
- "message": "Salva e applica modifiche automaticamente",
- "description": ""
+ "message": "Salva e applica modifiche automaticamente"
},
"configureStyle": {
- "message": "Configura",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "Configura"
},
"configureStyleOnHomepage": {
- "message": "Configura su homepage",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "Configura su homepage"
},
"confirmCancel": {
- "message": "Annulla",
- "description": ""
+ "message": "Annulla"
},
"confirmClose": {
- "message": "Chiudi",
- "description": "'Close' button in a confirm dialog"
+ "message": "Chiudi"
},
"confirmDefault": {
- "message": "Utilizza predefinito",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "Utilizza predefinito"
},
"confirmDelete": {
- "message": "Elimina",
- "description": ""
+ "message": "Elimina"
},
"confirmDiscardChanges": {
- "message": "Scartare le modifiche?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "Scartare le modifiche?"
},
"confirmSave": {
- "message": "Salva",
- "description": "'Save' button in a confirm dialog"
+ "message": "Salva"
},
"confirmYes": {
- "message": "Si",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Si"
},
"dateInstalled": {
- "message": "Data installazione",
- "description": "Option text for the user to sort the style by install date"
+ "message": "Data installazione"
},
"dateUpdated": {
- "message": "Data aggiornata",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "Data aggiornata"
},
"dbError": {
- "message": "Si è verificato un errore durante l'utilizzo del database Stylus. Vuoi visitare una pagina web con le possibili soluzioni?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Si è verificato un errore durante l'utilizzo del database Stylus. Vuoi visitare una pagina web con le possibili soluzioni?"
},
"defaultTheme": {
- "message": "predefinito",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "predefinito"
},
"deleteStyleConfirm": {
- "message": "Vuoi eliminare questo stile?",
- "description": "Confirmation before deleting a style"
+ "message": "Vuoi eliminare questo stile?"
},
"deleteStyleLabel": {
- "message": "Elimina",
- "description": "Label for the button to delete a style"
+ "message": "Elimina"
},
"description": {
- "message": "Modifica lo stile del Web con Stylus, un gestore di stili utente. Stylus consente di installare facilmente temi e skin per Google, Facebook, YouTube, Orkut e moltissimi altri siti.",
- "description": "Extension description"
+ "message": "Modifica lo stile del Web con Stylus, un gestore di stili utente. Stylus consente di installare facilmente temi e skin per Google, Facebook, YouTube, Orkut e moltissimi altri siti."
},
"disableAllStyles": {
- "message": "Disattiva tutti gli stili",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Disattiva tutti gli stili"
},
"disableStyleLabel": {
- "message": "Disattiva",
- "description": "Label for the button to disable a style"
+ "message": "Disattiva"
},
"editDeleteText": {
- "message": "Elimina",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Elimina"
},
"editGotoLine": {
- "message": "Vai alla riga (oppure riga:col)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Vai alla riga (oppure riga:col)"
},
"editStyleHeading": {
- "message": "Modifica di stili",
- "description": "Title of the page for editing styles"
+ "message": "Modifica di stili"
},
"editStyleLabel": {
- "message": "Modifica",
- "description": "Label for the button to go to the edit style page"
+ "message": "Modifica"
},
"editStyleTitle": {
"message": "Modifica dello stile $stylename$",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -274,196 +208,150 @@
}
},
"enableStyleLabel": {
- "message": "Attiva",
- "description": "Label for the button to enable a style"
+ "message": "Attiva"
},
"exportLabel": {
- "message": "Esporta",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Esporta"
},
"externalLink": {
- "message": "Link esterno",
- "description": "Label for external links"
+ "message": "Link esterno"
},
"externalSupport": {
- "message": "Supporto",
- "description": "Label for the external link to style's support site"
+ "message": "Supporto"
},
"externalUsercssDocument": {
- "message": "Documentazione per Usercss",
- "description": "Label for the external link to usercss documentation"
+ "message": "Documentazione per Usercss"
},
"filteredStyles": {
"message": "$numShown$ mostrati di $numTotal$ totali",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "Nessuno stile corrispondente ai filtri applicati",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "Nessuno stile corrispondente ai filtri applicati"
},
"findStyles": {
- "message": "Trova stili",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Trova stili"
},
"findStylesForSite": {
- "message": "Trova più stili per questo sito",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Trova più stili per questo sito"
},
"findStylesInlineTooltip": {
- "message": "Visualizza risultati in questa finestra.",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "Visualizza risultati in questa finestra."
},
"genericAdd": {
- "message": "Aggiungi",
- "description": "Used in various places for an action that adds something"
+ "message": "Aggiungi"
},
"genericClone": {
- "message": "Clona",
- "description": "Used in various places for an action that clones something"
+ "message": "Clona"
},
"genericDisabledLabel": {
- "message": "Disattivato",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Disattivato"
},
"genericEnabledLabel": {
- "message": "Attivato",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "Attivato"
},
"genericError": {
- "message": "Errore",
- "description": "Used in various places to indicate some error occurred."
+ "message": "Errore"
},
"genericHistoryLabel": {
- "message": "Cronologia",
- "description": "Used in various places to show a history log of something"
+ "message": "Cronologia"
},
"genericNext": {
- "message": "Successivo",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "Successivo"
},
"genericPrevious": {
- "message": "Precedente",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "Precedente"
},
"genericResetLabel": {
- "message": "Reimposta",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "Reimposta"
},
"genericSavedMessage": {
- "message": "Salvato",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "Salvato"
},
"genericTitle": {
- "message": "Titolo",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "Titolo"
},
"genericUnknown": {
- "message": "Sconosciuto",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "Sconosciuto"
},
"helpAlt": {
- "message": "Guida",
- "description": "Alternate text for help buttons"
+ "message": "Guida"
},
"helpKeyMapCommand": {
- "message": "Inserisci il nome di un comando",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Inserisci il nome di un comando"
},
"helpKeyMapHotkey": {
- "message": "Digita una scorciatoia",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Digita una scorciatoia"
},
"importAppendLabel": {
- "message": "Aggiungi ad uno stile",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Aggiungi ad uno stile"
},
"importAppendTooltip": {
- "message": "Aggiungi lo stile importato a quello corrente",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Aggiungi lo stile importato a quello corrente"
},
"importLabel": {
- "message": "Importa",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Importa"
},
"importReplaceLabel": {
- "message": "Sovrascrivi stile",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Sovrascrivi stile"
},
"importReplaceTooltip": {
- "message": "Scarta i contenuti dello stile corrente e sovrascrivili con quelli dello stile importato",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Scarta i contenuti dello stile corrente e sovrascrivili con quelli dello stile importato"
},
"importReportLegendAdded": {
- "message": "aggiunto",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "aggiunto"
},
"importReportLegendIdentical": {
- "message": "identico saltato",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "identico saltato"
},
"importReportLegendInvalid": {
- "message": "invalido saltato",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "invalido saltato"
},
"importReportLegendUpdatedBoth": {
- "message": "info meta e codice aggiornati",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "info meta e codice aggiornati"
},
"importReportLegendUpdatedCode": {
- "message": "codice aggiornato",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "codice aggiornato"
},
"importReportLegendUpdatedMeta": {
- "message": "info meta aggiornate",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "info meta aggiornate"
},
"importReportTitle": {
- "message": "Importazione stili terminata",
- "description": "Title of the report shown after importing styles"
+ "message": "Importazione stili terminata"
},
"importReportUnchanged": {
- "message": "Non è stato cambiato nulla.",
- "description": "Message in the report shown after importing styles"
+ "message": "Non è stato cambiato nulla."
},
"importReportUndone": {
- "message": "gli stili sono stati ripristinati",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "gli stili sono stati ripristinati"
},
"importReportUndoneTitle": {
- "message": "Importazione annullata",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "Importazione annullata"
},
"installButton": {
- "message": "Installa stile",
- "description": "Label for install button"
+ "message": "Installa stile"
},
"installButtonInstalled": {
- "message": "Stile installato",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Stile installato"
},
"installButtonReinstall": {
- "message": "Reinstalla stile",
- "description": "Label for reinstall button"
+ "message": "Reinstalla stile"
},
"installButtonUpdate": {
- "message": "Aggiorna stile",
- "description": "Label for update button"
+ "message": "Aggiorna stile"
},
"installUpdate": {
- "message": "Installa aggiornamento",
- "description": "Label for the button to install an update for a single style"
+ "message": "Installa aggiornamento"
},
"installUpdateFrom": {
"message": "Attualmente lo stile è aggiornato da $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -471,32 +359,25 @@
}
},
"installUpdateFromLabel": {
- "message": "Controlla aggiornamenti",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Controlla aggiornamenti"
},
"license": {
- "message": "Licenza",
- "description": "Label for the license"
+ "message": "Licenza"
},
"linkGetHelp": {
- "message": "Otteini aiuto",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Otteini aiuto"
},
"linkGetStyles": {
- "message": "Ottieni stili",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Ottieni stili"
},
"linkTranslate": {
- "message": "Traduci",
- "description": "Transifex link text on the manage page"
+ "message": "Traduci"
},
"linterCSSLintSettings": {
- "message": "(Imposta regola: 0 = disabilitata; 1 = warning; 2 = errore)",
- "description": "CSSLint rule config values"
+ "message": "(Imposta regola: 0 = disabilitata; 1 = warning; 2 = errore)"
},
"linterConfigPopupTitle": {
"message": "Imposta configurazione delle regole di $linter$",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -504,92 +385,70 @@
}
},
"linterInvalidConfigError": {
- "message": "Non salvato a causa di queste impostazioni di configurazione non valide:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "Non salvato a causa di queste impostazioni di configurazione non valide:"
},
"linterIssues": {
- "message": "Problemi",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Problemi"
},
"linterJSONError": {
- "message": "Formato JSON non valido",
- "description": "Setting linter config with invalid JSON"
+ "message": "Formato JSON non valido"
},
"linterRulesLink": {
- "message": "Vedi una lista completa di regole",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Vedi una lista completa di regole"
},
"liveReloadLabel": {
- "message": "Ricaricamento live",
- "description": "The label of live-reload feature"
+ "message": "Ricaricamento live"
},
"manageFaviconsHelp": {
- "message": "Stylus utilizza un servizio esterno https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus utilizza un servizio esterno https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "Filtri",
- "description": "Label for filters container"
+ "message": "Filtri"
},
"manageHeading": {
- "message": "Stili installati",
- "description": "Heading for the manage page"
+ "message": "Stili installati"
},
"manageNewStyleAsUsercss": {
- "message": "come Usercss",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "come Usercss"
},
"manageNewUI": {
- "message": "Nuovo layout Gestione UI",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Nuovo layout Gestione UI"
},
"manageOnlyDisabled": {
- "message": "Solo stili disattivati",
- "description": "Checkbox to show only disabled styles"
+ "message": "Solo stili disattivati"
},
"manageOnlyEnabled": {
- "message": "Solo stili attivati",
- "description": "Checkbox to show only enabled styles"
+ "message": "Solo stili attivati"
},
"manageOnlyExternal": {
- "message": "Solo stili esterni",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Solo stili esterni"
},
"manageOnlyLocal": {
- "message": "Solo stili creati localmente",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Solo stili creati localmente"
},
"manageOnlyNonUsercss": {
- "message": "Solo stili non-Usercss",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Solo stili non-Usercss"
},
"manageOnlyUpdates": {
- "message": "Solo con aggiornamenti o problemi",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Solo con aggiornamenti o problemi"
},
"manageOnlyUsercss": {
- "message": "Solo stili Usercss",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Solo stili Usercss"
},
"menuShowBadge": {
- "message": "Mostra contatore stili attivi",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Mostra contatore stili attivi"
},
"meta_invalidNumber": {
- "message": "Atteso un numero",
- "description": "Error displayed when the value is expected to be a number"
+ "message": "Atteso un numero"
},
"meta_invalidString": {
- "message": "Attesa una stringa tra apici",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "Attesa una stringa tra apici"
},
"meta_invalidWord": {
- "message": "Attesa una parola",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "Attesa una parola"
},
"meta_missingChar": {
"message": "Attesi caratteri: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -597,12 +456,10 @@
}
},
"meta_missingEOT": {
- "message": "Atteso EOT",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "Atteso EOT"
},
"meta_missingMandatory": {
"message": "Manca metadata obbligatorio: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -611,7 +468,6 @@
},
"meta_unknownJSONLiteral": {
"message": "JSON non valido: $literal$ non è un letterale JSON valido",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
@@ -620,7 +476,6 @@
},
"meta_unknownMeta": {
"message": "metadata sconosciuto: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
@@ -628,260 +483,193 @@
}
},
"noStylesForSite": {
- "message": "Nessuno stile installato per questo sito.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Nessuno stile installato per questo sito."
},
"openManage": {
- "message": "Gestisci gli stili installati",
- "description": "Link to open the manage page."
+ "message": "Gestisci gli stili installati"
},
"openStylesManager": {
- "message": "Apri gestore stili",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "Apri gestore stili"
},
"optionsActions": {
- "message": "Azioni",
- "description": ""
+ "message": "Azioni"
},
"optionsAdvanced": {
- "message": "Avanzato",
- "description": ""
+ "message": "Avanzato"
},
"optionsAdvancedContextDelete": {
- "message": "Aggiungi 'Elimina' al menu contestuale dell'editor",
- "description": ""
+ "message": "Aggiungi 'Elimina' al menu contestuale dell'editor"
},
"optionsBadgeDisabled": {
- "message": "Colore sfondo quanto disattivato",
- "description": ""
+ "message": "Colore sfondo quanto disattivato"
},
"optionsBadgeNormal": {
- "message": "Colore sfondo",
- "description": ""
+ "message": "Colore sfondo"
},
"optionsCheck": {
- "message": "Aggiorna stili",
- "description": ""
+ "message": "Aggiorna stili"
},
"optionsCheckUpdate": {
- "message": "Controlla e installa gli aggiornamenti disponibili",
- "description": ""
+ "message": "Controlla e installa gli aggiornamenti disponibili"
},
"optionsCustomizeUpdate": {
- "message": "Aggiornamenti",
- "description": ""
+ "message": "Aggiornamenti"
},
"optionsHeading": {
- "message": "Opzioni",
- "description": "Heading for options section on manage page."
+ "message": "Opzioni"
},
"optionsIconDark": {
- "message": "Temi browser scuri",
- "description": ""
+ "message": "Temi browser scuri"
},
"optionsIconLight": {
- "message": "Temi browser chiari",
- "description": ""
+ "message": "Temi browser chiari"
},
"optionsOpen": {
- "message": "Apri",
- "description": ""
+ "message": "Apri"
},
"optionsOpenManager": {
- "message": "Organizza stili",
- "description": ""
+ "message": "Organizza stili"
},
"optionsPopupWidth": {
- "message": "Larghezza popup (in pixel)",
- "description": ""
+ "message": "Larghezza popup (in pixel)"
},
"optionsReset": {
- "message": "Reimposta le opzioni ai valori predefiniti",
- "description": ""
+ "message": "Reimposta le opzioni ai valori predefiniti"
},
"optionsResetButton": {
- "message": "Reimposta opzioni",
- "description": ""
+ "message": "Reimposta opzioni"
},
"optionsSubheading": {
- "message": "Più Opzioni",
- "description": "Subheading for options section on manage page."
+ "message": "Più Opzioni"
},
"optionsUpdateImportNote": {
- "message": "Quando importi backup di stili da una vecchia versione di Stylish, esegui un controllo una tantum manualmente nel gestore stili per assicurarti che siano tutti aggiornati.",
- "description": ""
+ "message": "Quando importi backup di stili da una vecchia versione di Stylish, esegui un controllo una tantum manualmente nel gestore stili per assicurarti che siano tutti aggiornati."
},
"paginationCurrent": {
- "message": "Pagina corrente",
- "description": "Tooltip for the current page index in search results"
+ "message": "Pagina corrente"
},
"paginationEstimated": {
- "message": "Numero stimato di pagine",
- "description": "Tooltip for the total page count in search results"
+ "message": "Numero stimato di pagine"
},
"paginationNext": {
- "message": "Pagine successiva",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "Pagine successiva"
},
"paginationPrevious": {
- "message": "Pagine precedente",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "Pagine precedente"
},
"paginationTotal": {
- "message": "Totale pagine",
- "description": ""
+ "message": "Totale pagine"
},
"popupBorders": {
- "message": "Aggiungi bordi bianchi sui lati",
- "description": ""
+ "message": "Aggiungi bordi bianchi sui lati"
},
"popupBordersTooltip": {
- "message": "Utile per temi scuri nelle nuove versioni di Chrome dato che non colora più i bordi laterali",
- "description": ""
+ "message": "Utile per temi scuri nelle nuove versioni di Chrome dato che non colora più i bordi laterali"
},
"popupHotkeysTooltip": {
- "message": "Click per visualizzare le scorciatoie disponibili",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "Click per visualizzare le scorciatoie disponibili"
},
"popupManageTooltip": {
- "message": "Shift-click o click destro apre il gestore con gli stili applicabili per il sito corrente",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Shift-click o click destro apre il gestore con gli stili applicabili per il sito corrente"
},
"popupOpenEditInWindow": {
- "message": "Apri editor in una nuova finestra",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Apri editor in una nuova finestra"
},
"prefShowBadge": {
- "message": "Stili attivi per il sito attuale",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Stili attivi per il sito attuale"
},
"previewLabel": {
- "message": "Anteprima live",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "Anteprima live"
},
"previewTooltip": {
- "message": "Applica temporaneamente le modifiche senza salvarle.\nSalva lo stile per rendere le modifiche permanenti.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "Applica temporaneamente le modifiche senza salvarle.\nSalva lo stile per rendere le modifiche permanenti."
},
"replace": {
- "message": "Sostituisci",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Sostituisci"
},
"replaceAll": {
- "message": "Sostituisci tutto",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Sostituisci tutto"
},
"replaceWith": {
- "message": "Sostituisci con",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Sostituisci con"
},
"retrieveBckp": {
- "message": "Importa stili",
- "description": ""
+ "message": "Importa stili"
},
"search": {
- "message": "Cerca",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Cerca"
},
"searchNumberOfResults": {
- "message": "Numero di occorrenze",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Numero di occorrenze"
},
"searchResultInstallCount": {
- "message": "Installazioni totali",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "Installazioni totali"
},
"searchResultNoneFound": {
- "message": "Nessuno stile trovato per questo sito.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "Nessuno stile trovato per questo sito."
},
"searchResultRating": {
- "message": "Valutazioni",
- "description": "Text for label that shows the search result's rating"
+ "message": "Valutazioni"
},
"searchResultUpdated": {
- "message": "Aggiornato",
- "description": "Text for label that shows the search result's last update date"
+ "message": "Aggiornato"
},
"searchResultWeeklyCount": {
- "message": "Installazioni settimanali",
- "description": "Text for label that shows the number of times a search result was installed during last week"
- },
- "searchStyles": {
- "message": "Contenuti ricerca",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "message": "Installazioni settimanali"
},
"sectionAdd": {
- "message": "Aggiungi un'altra sezione",
- "description": "Label for the button to add a section"
+ "message": "Aggiungi un'altra sezione"
},
"sectionCode": {
- "message": "Codice",
- "description": "Label for the code for a section"
+ "message": "Codice"
},
"sectionRemove": {
- "message": "Rimuovi sezione",
- "description": "Label for the button to remove a section"
+ "message": "Rimuovi sezione"
},
"shortcuts": {
- "message": "Scorciatoie",
- "description": "Go to shortcut configuration"
+ "message": "Scorciatoie"
},
"shortcutsNote": {
- "message": "Definisci scorciatoie da tastiera",
- "description": ""
+ "message": "Definisci scorciatoie da tastiera"
},
"sortDateNewestFirst": {
- "message": "prima i più recenti",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "prima i più recenti"
},
"sortDateOldestFirst": {
- "message": "prima i più vecchi",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "prima i più vecchi"
},
"sortLabel": {
- "message": "Seleziona come ordinare gli stili installati",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "Seleziona come ordinare gli stili installati"
},
"sortLabelTitleDesc": {
- "message": "Titolo Discendente",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "Titolo Discendente"
},
"sortStylesHelpTitle": {
- "message": "Ordina contenuti",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "Ordina contenuti"
},
"styleBadRegexp": {
- "message": "Regexp non valida.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Regexp non valida."
},
"styleBeautifyPreserveNewlines": {
- "message": "Mantieni gli \"a capo\"",
- "description": "CSS-beautifier option"
+ "message": "Mantieni gli \"a capo\""
},
"styleCancelEditLabel": {
- "message": "Torna a gestione",
- "description": "Label for cancel button for style editing"
+ "message": "Torna a gestione"
},
"styleChangesNotSaved": {
- "message": "Hai apportato modifiche a questo stile senza salvare.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "Hai apportato modifiche a questo stile senza salvare."
},
"styleEnabledLabel": {
- "message": "Attivato",
- "description": "Label for the enabled state of styles"
+ "message": "Attivato"
},
"styleFromMozillaFormatError": {
- "message": "Importazione da formato Mozilla fallita",
- "description": "Label for the import error"
+ "message": "Importazione da formato Mozilla fallita"
},
"styleFromMozillaFormatPrompt": {
- "message": "Incolla il codice formato Mozilla",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Incolla il codice formato Mozilla"
},
"styleInstall": {
"message": "Installare \"$stylename$\" in Stylus?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -890,7 +678,6 @@
},
"styleInstallFailed": {
"message": "Installazione stile fallita!\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -899,62 +686,50 @@
},
"styleInstallOverwrite": {
"message": "'$stylename$' è già installato. Vuoi sovrascriverlo?\nVersione: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "Inserisci un nome",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Inserisci un nome"
},
"styleMozillaFormatHeading": {
- "message": "Formato Mozilla",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Formato Mozilla"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "Lo stile non è stato applicato a causa dell'uso errato di 'regexp()'",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "Lo stile non è stato applicato a causa dell'uso errato di 'regexp()'"
},
"styleRegexpInvalidExplanation": {
- "message": "Qualche regola 'regexp()' che non può essere compilata.",
- "description": ""
+ "message": "Qualche regola 'regexp()' che non può essere compilata."
},
"styleRegexpProblemTooltip": {
- "message": "Numero di sezioni non applicato a causa dell'uso errato di 'regexp()'",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "Numero di sezioni non applicato a causa dell'uso errato di 'regexp()'"
},
"styleRegexpTestButton": {
- "message": "Test RegExp",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "Test RegExp"
},
"styleRegexpTestInvalid": {
- "message": "Regexp invalida ignorata",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "Regexp invalida ignorata"
},
"styleSaveLabel": {
- "message": "Salva",
- "description": "Label for save button for style editing"
+ "message": "Salva"
},
"styleToMozillaFormatHelp": {
- "message": "Il formato Mozilla del codice può essere utilizzato con Stylish per Firefox e può essere inviato a userstyles.org.",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Il formato Mozilla del codice può essere utilizzato con Stylish per Firefox e può essere inviato a userstyles.org."
},
"styleToMozillaFormatTitle": {
- "message": "Stile in formato Mozilla",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Stile in formato Mozilla"
},
"styleUpdate": {
"message": "Sei sicuro di voler aggiornare '$stylename$'?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -962,44 +737,31 @@
}
},
"stylusUnavailableForURL": {
- "message": "Stylus non funziona in pagine come questa.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Stylus non funziona in pagine come questa."
},
"syncStorageErrorSaving": {
- "message": "Il valore non può essere salvato. Prova a ridurre la quantità di testo.",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "Il valore non può essere salvato. Prova a ridurre la quantità di testo."
},
"undo": {
- "message": "Annulla",
- "description": "Button label"
+ "message": "Annulla"
},
"undoGlobal": {
- "message": "Annulla in tutte le sezioni",
- "description": "CSS-beautify global Undo button label"
+ "message": "Annulla in tutte le sezioni"
},
"unreachableAMO": {
- "message": "Firefox proibisce l'accesso al sito.",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
- },
- "unreachableAMOHintOldFF": {
- "message": "Solo Firefox 59 e successivi possono essere configurati per consentire alle WebExtensions di aggiungere elementi degli stili su siti CSP-protected come questo.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "Firefox proibisce l'accesso al sito."
},
"unreachableContentScript": {
- "message": "Impossibile comunicare con la pagina. Prova a ricaricare la scheda.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "Impossibile comunicare con la pagina. Prova a ricaricare la scheda."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "Nessun aggiornamento trovato",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Nessun aggiornamento trovato"
},
"updateAllCheckSucceededSomeEdited": {
- "message": "Alcuni aggiornamenti di stili non sono stati controllati per evitare la perdita di modifiche locali. Gli aggiornamenti possono essere forzati individualmente, o eseguendo un ulteriore controllo per tutti gli stili (le modifiche locali saranno sovrascritte).",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "Alcuni aggiornamenti di stili non sono stati controllati per evitare la perdita di modifiche locali. Gli aggiornamenti possono essere forzati individualmente, o eseguendo un ulteriore controllo per tutti gli stili (le modifiche locali saranno sovrascritte)."
},
"updateCheckFailBadResponseCode": {
"message": "Aggiornamento non riuscito: il server ha risposto con il codice $code$.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1007,51 +769,39 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "Aggiornamento non riuscito: server non raggiungibile.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "Aggiornamento non riuscito: server non raggiungibile."
},
"updateCheckHistory": {
- "message": "Cronologia controlli aggiornamento",
- "description": ""
+ "message": "Cronologia controlli aggiornamento"
},
"updateCheckManualUpdateForce": {
- "message": "Installa aggiornamento (le modifiche locali verranno sovrascritte)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Installa aggiornamento (le modifiche locali verranno sovrascritte)"
},
"updateCheckManualUpdateHint": {
- "message": "Forzare un aggiornamento sovrascriverà tutte le modifiche locali",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Forzare un aggiornamento sovrascriverà tutte le modifiche locali"
},
"updateCheckSkippedLocallyEdited": {
- "message": "Questo stile è stato editato localmente.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "Questo stile è stato editato localmente."
},
"updateCheckSucceededNoUpdate": {
- "message": "Lo stile è aggiornato.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "Lo stile è aggiornato."
},
"updateCompleted": {
- "message": "Aggiornamento completato.",
- "description": "Text that displays when an update completed"
+ "message": "Aggiornamento completato."
},
"updatesCurrentlyInstalled": {
- "message": "Aggiornamenti installati:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
+ "message": "Aggiornamenti installati:"
},
"usercssReplaceTemplateSectionBody": {
- "message": "Inserisci codice qui...",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
+ "message": "Inserisci codice qui..."
},
"versionInvalidOlder": {
- "message": "La versione dello stile è più vecchia di quella installata.",
- "description": "Displayed when the version of style is older than the installed one"
+ "message": "La versione dello stile è più vecchia di quella installata."
},
"writeStyleFor": {
- "message": "Scrivi stile per:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
+ "message": "Scrivi stile per:"
},
"writeStyleForURL": {
- "message": "questo URL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
+ "message": "questo URL"
}
}
diff --git a/_locales/ja/messages.json b/_locales/ja/messages.json
index b76c741f..c282ef9b 100644
--- a/_locales/ja/messages.json
+++ b/_locales/ja/messages.json
@@ -1,23 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylusにはアクセスできないファイル形式があります(例えばpdfやjsonファイル等)。"
+ },
"addStyleLabel": {
- "message": "新スタイルを作成",
- "description": "Label for the button to go to the add style page"
+ "message": "新スタイルを作成"
},
"addStyleTitle": {
- "message": "スタイルを追加",
- "description": "Title of the page for adding styles"
+ "message": "スタイルを追加"
},
"alphaChannel": {
- "message": "透明度",
- "description": "Label of color's opacity"
+ "message": "透明度"
},
"appliesAdd": {
- "message": "追加",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "追加"
},
"appliesDisplay": {
"message": "適用先: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,288 +23,232 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "さらに表示",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "さらに表示"
},
"appliesDomainOption": {
- "message": "ドメイン上の URL",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "ドメイン上の URL"
},
"appliesHelp": {
- "message": "「適用先」を使用すると、このセクションのコードが適用される URL を制限することができます。",
- "description": "Help text for 'applies to' section"
+ "message": "「適用先」を使用すると、このセクションのコードが適用される URL を制限することができます。"
},
"appliesLabel": {
- "message": "適用先",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "適用先"
},
"appliesLineWidgetLabel": {
- "message": "「適用先」の情報を表示",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "「適用先」の情報を表示"
},
"appliesLineWidgetWarning": {
- "message": "圧縮されたCSSでは機能しません",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "圧縮されたCSSでは機能しません"
},
"appliesRegexpOption": {
- "message": "正規表現に一致する URL",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "正規表現に一致する URL"
},
"appliesRemove": {
- "message": "削除",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "削除"
},
"appliesRemoveError": {
- "message": "「適用先」の最後の項目を削除することはできません",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "「適用先」の最後の項目を削除することはできません"
},
"appliesSpecify": {
- "message": "個別指定",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "個別指定"
},
"appliesToEverything": {
- "message": "すべて",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "すべて"
},
"appliesUrlPrefixOption": {
- "message": "次で始まる URL",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "次で始まる URL"
},
"applyAllUpdates": {
- "message": "すべての更新を適用",
- "description": "Label for the button to apply all detected updates"
+ "message": "すべての更新を適用"
},
"author": {
- "message": "作者",
- "description": "Label for the style author"
+ "message": "作者"
},
"backupButtons": {
- "message": "バックアップ",
- "description": "Heading for backup"
+ "message": "バックアップ"
},
"backupMessage": {
- "message": "ファイルを選択するか、このページにドラッグ&ドロップしてください。",
- "description": "Message for backup"
+ "message": "ファイルを選択するか、このページにドラッグ&ドロップしてください。"
},
"bckpInstStyles": {
- "message": "スタイルをエクスポート",
- "description": ""
+ "message": "スタイルをエクスポート"
},
"checkAllUpdates": {
- "message": "全スタイルの更新をチェック",
- "description": "Label for the button to check all styles for updates"
+ "message": "全スタイルの更新をチェック"
},
"checkAllUpdatesForce": {
- "message": "全スタイルを再チェックします。私はスタイルを編集していません!",
- "description": "Label for the button to apply all detected updates"
+ "message": "全スタイルを再チェックします。私はスタイルを編集していません!"
},
"checkForUpdate": {
- "message": "更新をチェック",
- "description": "Label for the button to check a single style for an update"
+ "message": "更新をチェック"
},
"checkingForUpdate": {
- "message": "チェック中...",
- "description": "Text to display when checking a style for an update"
+ "message": "チェック中..."
},
"clickToUninstall": {
- "message": "クリックでアンインストール",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "クリックでアンインストール"
},
"cm_autoCloseBrackets": {
- "message": "括弧と引用符を自動的に閉じる",
- "description": "Label for the checkbox in the style editor."
+ "message": "括弧と引用符を自動的に閉じる"
},
"cm_autoCloseBracketsTooltip": {
- "message": "()[]{}''\"\" の開き括弧/引用符の入力時に、対応する閉じ括弧/引用符を自動的に追加します",
- "description": "Label for the checkbox in the style editor."
+ "message": "()[]{}''\"\" の開き括弧/引用符の入力時に、対応する閉じ括弧/引用符を自動的に追加します"
},
"cm_autocompleteOnTyping": {
- "message": "入力の自動補完を有効にする",
- "description": "Label for the checkbox in the style editor."
+ "message": "入力の自動補完を有効にする"
},
"cm_colorpicker": {
- "message": "CSSの色選択ツールを使用する",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "CSSの色選択ツールを使用する"
},
"cm_indentWithTabs": {
- "message": "スマートインデントにタブ文字を使用",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "スマートインデントにタブ文字を使用"
},
"cm_keyMap": {
- "message": "キーマップ",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "キーマップ"
},
"cm_lineWrapping": {
- "message": "ワードラップを有効にする",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "ワードラップを有効にする"
},
"cm_matchHighlight": {
- "message": "ハイライト",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "ハイライト"
},
"cm_matchHighlightSelection": {
- "message": "選択した単語のみ",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "選択した単語のみ"
},
"cm_matchHighlightToken": {
- "message": "カーソル下の単語",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "カーソル下の単語"
},
"cm_resizeGripHint": {
- "message": "ダブルクリックで高さを最大化/元に戻す",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "ダブルクリックで高さを最大化/元に戻す"
},
"cm_selectByTokens": {
- "message": "ダブルクリックでトークンを選択する",
- "description": "Label for the checkbox in the editor."
+ "message": "ダブルクリックでトークンを選択する"
},
"cm_selectByTokensTooltip": {
- "message": "トークンの例: .foo-bar-2 #aabbcc 0.32 !important\n無効にすると、記号で区切られた範囲で単語が選択されます。",
- "description": ""
+ "message": "トークンの例: .foo-bar-2 #aabbcc 0.32 !important\n無効にすると、記号で区切られた範囲で単語が選択されます。"
},
"cm_smartIndent": {
- "message": "スマートインデントを使用する",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "スマートインデントを使用する"
},
"cm_tabSize": {
- "message": "タブサイズ",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "タブサイズ"
},
"cm_theme": {
- "message": "テーマ",
- "description": "Label for the style editor's CSS theme."
+ "message": "テーマ"
+ },
+ "colorpickerPaletteHint": {
+ "message": "見本を右クリックして対応するソース行を選択します"
},
"colorpickerSwitchFormatTooltip": {
- "message": "フォーマット切り替え: HEX -> RGB -> HSL\nシフトを押しながらクリックすると逆向きに切り替えます。\nまた、PgUp (PageUp), PgDn (PageDown) キーも使用できます。",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "フォーマット切り替え: HEX -> RGB -> HSL\nシフトを押しながらクリックすると逆向きに切り替えます。\nまた、PgUp (PageUp), PgDn (PageDown) キーも使用できます。"
},
"colorpickerTooltip": {
- "message": "色選択ツールを開きます",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "色選択ツールを開きます"
},
"configOnChange": {
- "message": "変更時",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "変更時"
},
"configOnChangeTooltip": {
- "message": "自動保存して変更を自動的に適用します",
- "description": ""
+ "message": "自動保存して変更を自動的に適用します"
},
"configureStyle": {
- "message": "設定",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "設定"
},
"configureStyleOnHomepage": {
- "message": "ホームページ上で設定",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "ホームページ上で設定"
},
"confirmCancel": {
- "message": "キャンセル",
- "description": ""
+ "message": "キャンセル"
},
"confirmClose": {
- "message": "閉じる",
- "description": "'Close' button in a confirm dialog"
+ "message": "閉じる"
},
"confirmDefault": {
- "message": "デフォルトを使用",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "デフォルトを使用"
},
"confirmDelete": {
- "message": "削除",
- "description": ""
+ "message": "削除"
},
"confirmDiscardChanges": {
- "message": "変更を破棄しますか?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "変更を破棄しますか?"
},
"confirmNo": {
- "message": "いいえ",
- "description": "'No' button in a confirm dialog"
+ "message": "いいえ"
},
"confirmSave": {
- "message": "保存",
- "description": "'Save' button in a confirm dialog"
+ "message": "保存"
},
"confirmStop": {
- "message": "中止",
- "description": "'Stop' button in a confirm dialog"
+ "message": "中止"
},
"confirmYes": {
- "message": "はい",
- "description": "'Yes' button in a confirm dialog"
+ "message": "はい"
+ },
+ "connectingDropbox": {
+ "message": "Dropboxに接続中..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "Dropboxへの接続は、webstoreから直接インストールしたアプリ内でのみ可能です"
},
"copied": {
- "message": "クリップボードへコピーしました",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "クリップボードへコピーしました"
},
"copy": {
- "message": "クリップボードへコピー",
- "description": "Tooltip for elements which can be copied"
+ "message": "クリップボードへコピー"
+ },
+ "customNameHint": {
+ "message": "(更新を妨げない)UI 上でのみ有効なスタイルのカスタム名を入力してください"
+ },
+ "customNameResetHint": {
+ "message": "カスタム名の使用をやめ、スタイル自身の名称に切り替えます"
},
"dateInstalled": {
- "message": "インストール日",
- "description": "Option text for the user to sort the style by install date"
+ "message": "インストール日"
},
"dateUpdated": {
- "message": "更新日",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "更新日"
},
"dbError": {
- "message": "Stylusのデータベース使用中にエラーが発生しました。考えられる解決策を記載したWebページを開きますか?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Stylusのデータベース使用中にエラーが発生しました。考えられる解決策を記載したWebページを開きますか?"
},
"defaultTheme": {
- "message": "デフォルト",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "デフォルト"
},
"deleteStyleConfirm": {
- "message": "このスタイルを削除してもよろしいですか?",
- "description": "Confirmation before deleting a style"
+ "message": "このスタイルを削除してもよろしいですか?"
},
"deleteStyleLabel": {
- "message": "削除",
- "description": "Label for the button to delete a style"
+ "message": "削除"
},
"description": {
- "message": "Stylus でウェブのデザインを変更しましょう。これは、ユーザースタイルを管理するツールです。Stylus を利用すると、多くの人気サイト向けのテーマやスキンを簡単にインストールできます。",
- "description": "Extension description"
+ "message": "Stylus でウェブのデザインを変更しましょう。これは、ユーザースタイルを管理するツールです。Stylus を利用すると、多くの人気サイト向けのテーマやスキンを簡単にインストールできます。"
},
"disableAllStyles": {
- "message": "すべてのスタイルをオフにする",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "すべてのスタイルをオフにする"
},
"disableStyleLabel": {
- "message": "無効化",
- "description": "Label for the button to disable a style"
+ "message": "無効化"
},
"dragDropMessage": {
- "message": "このページの任意の場所にバックアップファイルをドロップしてインポートします。",
- "description": "Drag'n'drop message"
+ "message": "このページの任意の場所にバックアップファイルをドロップしてインポートします。"
},
"dragDropUsercssTabstrip": {
- "message": "ファイルをインストールするときは、タブ(タイトルが表示されている領域)にドロップしてください。",
- "description": "Message popup shown when erroneously dropping a usercss file into the manager page"
+ "message": "ファイルをインストールするときは、タブ(タイトルが表示されている領域)にドロップしてください。"
},
"editDeleteText": {
- "message": "削除",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "削除"
},
"editGotoLine": {
- "message": "行(または行:列)に移動",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "行(または行:列)に移動"
},
"editStyleHeading": {
- "message": "スタイルを編集",
- "description": "Title of the page for editing styles"
+ "message": "スタイルを編集"
},
"editStyleLabel": {
- "message": "編集",
- "description": "Label for the button to go to the edit style page"
+ "message": "編集"
},
"editStyleTitle": {
"message": "スタイル「$stylename$」を編集",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -314,220 +256,183 @@
}
},
"enableStyleLabel": {
- "message": "有効化",
- "description": "Label for the button to enable a style"
+ "message": "有効化"
},
"excludeStyleByDomainLabel": {
- "message": "現在のドメインを除外",
- "description": ""
+ "message": "現在のドメインを除外"
},
"excludeStyleByUrlLabel": {
- "message": "現在のURLを除外",
- "description": ""
+ "message": "現在のURLを除外"
},
"exportLabel": {
- "message": "エクスポート",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "エクスポート"
+ },
+ "exportSavedSuccess": {
+ "message": "ファイルをセーブしました"
},
"externalFeedback": {
- "message": "フィードバック",
- "description": "Label for the external link to send feedback for the style"
+ "message": "フィードバック"
},
"externalHomepage": {
- "message": "ホームページ",
- "description": "Label for the external link to style's homepage"
+ "message": "ホームページ"
},
"externalLink": {
- "message": "外部リンク",
- "description": "Label for external links"
+ "message": "外部リンク"
},
"externalSupport": {
- "message": "サポート",
- "description": "Label for the external link to style's support site"
+ "message": "サポート"
},
"externalUsercssDocument": {
- "message": "Usercssの文書",
- "description": "Label for the external link to usercss documentation"
+ "message": "Usercssの文書"
},
"filteredStyles": {
"message": "$numTotal$ 件中の $numShown$ 件を表示",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "現在のフィルターにマッチするスタイルはありません",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "現在のフィルターにマッチするスタイルはありません"
},
"findStyles": {
- "message": "スタイルを検索",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "スタイルを検索"
},
"findStylesForSite": {
- "message": "このサイト用のスタイルを検索",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "このサイト用のスタイルを検索"
},
"findStylesInline": {
- "message": "結果を下に表示",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "結果を下に表示"
},
"findStylesInlineTooltip": {
- "message": "検索結果をこのウィンドウに表示",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "検索結果をこのウィンドウに表示"
},
"genericAdd": {
- "message": "追加",
- "description": "Used in various places for an action that adds something"
+ "message": "追加"
},
"genericClone": {
- "message": "複製",
- "description": "Used in various places for an action that clones something"
+ "message": "複製"
+ },
+ "genericDescription": {
+ "message": "記述"
},
"genericDisabledLabel": {
- "message": "無効化",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "無効化"
},
"genericEnabledLabel": {
- "message": "有効",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "有効"
},
"genericError": {
- "message": "エラー",
- "description": "Used in various places to indicate some error occurred."
+ "message": "エラー"
},
"genericHistoryLabel": {
- "message": "履歴",
- "description": "Used in various places to show a history log of something"
+ "message": "履歴"
},
"genericNext": {
- "message": "次",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "次"
},
"genericPrevious": {
- "message": "前",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "前"
},
"genericResetLabel": {
- "message": "リセット",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "リセット"
},
"genericSavedMessage": {
- "message": "保存しました",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "保存しました"
},
"genericTitle": {
- "message": "タイトル",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "タイトル"
},
"genericUnknown": {
- "message": "不明",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "不明"
+ },
+ "gettingStyles": {
+ "message": "全スタイルを取得中..."
},
"helpAlt": {
- "message": "ヘルプ",
- "description": "Alternate text for help buttons"
+ "message": "ヘルプ"
},
"helpKeyMapCommand": {
- "message": "コマンド名を入力",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "コマンド名を入力"
},
"helpKeyMapHotkey": {
- "message": "ホットキーを押す",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "ホットキーを押す"
},
"hostDisabled": {
- "message": "使用中のブラウザの現在のバージョンの不具合のため、このホストは無効にされています",
- "description": "Tooltip for cloud host disabled"
+ "message": "使用中のブラウザの現在のバージョンの不具合のため、このホストは無効にされています"
},
"importAppendLabel": {
- "message": "スタイルに追加",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "スタイルに追加"
},
"importAppendTooltip": {
- "message": "インポートされたスタイルを現在のスタイルに追加する",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "インポートされたスタイルを現在のスタイルに追加する"
},
"importLabel": {
- "message": "インポート",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "インポート"
+ },
+ "importPreprocessor": {
+ "message": "@preprocessor
を含むスタイルは、クラシックモードでは機能しません。エディタをUsercssモードにしてください : 1) スタイルマネージャーを開きます, 2)「Usercssとして」チェックボックスをONにします, 3)「新スタイルを作成」をクリックします"
+ },
+ "importPreprocessorTitle": {
+ "message": "@preprocessorの潜在的な問題"
},
"importReplaceLabel": {
- "message": "スタイルを上書き",
- "description": "Label for the button to import and overwrite current style"
+ "message": "スタイルを上書き"
},
"importReplaceTooltip": {
- "message": "現在のスタイルの内容を破棄し、インポートされたスタイルで上書きする",
- "description": "Label for the button to import and overwrite current style"
+ "message": "現在のスタイルの内容を破棄し、インポートされたスタイルで上書きする"
},
"importReportLegendAdded": {
- "message": "件のスタイルを追加しました",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "件のスタイルを追加しました"
},
"importReportLegendIdentical": {
- "message": "件の同一のスタイルをスキップしました",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "件の同一のスタイルをスキップしました"
},
"importReportLegendInvalid": {
- "message": "件の無効なスタイルをスキップしました",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "件の無効なスタイルをスキップしました"
},
"importReportLegendUpdatedBoth": {
- "message": "件のメタ情報とコードを更新しました",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "件のメタ情報とコードを更新しました"
},
"importReportLegendUpdatedCode": {
- "message": "件のコードを更新しました",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "件のコードを更新しました"
},
"importReportLegendUpdatedMeta": {
- "message": "件のメタ情報を更新しました",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "件のメタ情報を更新しました"
},
"importReportTitle": {
- "message": "スタイルのインポートが終了しました",
- "description": "Title of the report shown after importing styles"
+ "message": "スタイルのインポートが終了しました"
},
"importReportUnchanged": {
- "message": "変更がありませんでした。",
- "description": "Message in the report shown after importing styles"
+ "message": "変更がありませんでした。"
},
"importReportUndone": {
- "message": "件のスタイルを元に戻しました",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "件のスタイルを元に戻しました"
},
"importReportUndoneTitle": {
- "message": "インポートが取り消されました",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "インポートが取り消されました"
},
"installButton": {
- "message": "インストール",
- "description": "Label for install button"
+ "message": "インストール"
},
"installButtonInstalled": {
- "message": "インストール済み",
- "description": "Text displayed when the style is successfully installed"
+ "message": "スタイルがインストールされています"
},
"installButtonReinstall": {
- "message": "再インストール",
- "description": "Label for reinstall button"
+ "message": "再インストール"
},
"installButtonUpdate": {
- "message": "更新",
- "description": "Label for update button"
+ "message": "更新"
},
"installUpdate": {
- "message": "更新をインストール",
- "description": "Label for the button to install an update for a single style"
+ "message": "更新をインストール"
},
"installUpdateFrom": {
"message": "現在、このスタイルは「$url$」から更新されます",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -535,32 +440,34 @@
}
},
"installUpdateFromLabel": {
- "message": "更新をチェック",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "更新をチェック"
},
"license": {
- "message": "ライセンス",
- "description": "Label for the license"
+ "message": "ライセンス"
},
"linkGetHelp": {
- "message": "ヘルプ",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "ヘルプ"
+ },
+ "linkGetShareStyles": {
+ "message": "スタイルを取得し共有する"
+ },
+ "linkGetShareStylesInfo": {
+ "message": "新しいコミュニティ主導の userstyles.world サイトが、ユーザースタイルの作者達によって、既存の userstyles.org を置き換えるために作成されました。userstyle.org はこの1年の間、かなり遅くて応答性が悪くなっていたため、多くの作者がスタイルの更新をやめていました。"
},
"linkGetStyles": {
- "message": "スタイルを取得",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "スタイルを取得"
+ },
+ "linkGetStylesInfo": {
+ "message": "このアーカイブサイトは、ユーザースタイルのコミュニティメンバーにより、遅くて応答性の悪い userstyles.org のバックアップ用として作成されました。アーカイブの内容は、おおよそ1日1回更新されます。"
},
"linkStylusWiki": {
- "message": "ウィキ",
- "description": "Wiki link text on the manage page e.g. https://github.com/openstyles/stylus/wiki"
+ "message": "ウィキ"
},
"linkTranslate": {
- "message": "翻訳",
- "description": "Transifex link text on the manage page"
+ "message": "翻訳"
},
"linterCSSLintIncompatible": {
"message": "CSSLintは「$preprocessorname$」プリプロセッサをサポートしていません",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -568,12 +475,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(次のようにルールを設定してください: 0=無効, 1=警告, 2=エラー)",
- "description": "CSSLint rule config values"
+ "message": "(次のようにルールを設定してください: 0=無効, 1=警告, 2=エラー)"
},
"linterConfigPopupTitle": {
"message": "$linter$ のルールを設定する",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -581,20 +486,16 @@
}
},
"linterConfigTooltip": {
- "message": "Linterの設定を行うときはクリックしてください",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Linterの設定を行うときはクリックしてください"
},
"linterInvalidConfigError": {
- "message": "これらの不正な設定のために保存されませんでした:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "これらの不正な設定のために保存されませんでした:"
},
"linterIssues": {
- "message": "問題点",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "問題点"
},
"linterIssuesHelp": {
"message": "$link$ によってこれらの問題点が見つかりました:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -602,144 +503,93 @@
}
},
"linterJSONError": {
- "message": "不正なJSONフォーマットです",
- "description": "Setting linter config with invalid JSON"
+ "message": "不正なJSONフォーマットです"
},
"linterResetMessage": {
- "message": "予期しないリセットを復旧するには、テキストボックス内で Ctrl-Z(または Cmd-Z)を押してください",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "予期しないリセットを復旧するには、テキストボックス内で Ctrl-Z(または Cmd-Z)を押してください"
},
"linterRulesLink": {
- "message": "ルールの完全なリストを見る",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "ルールの完全なリストを見る"
},
"liveReloadError": {
- "message": "ファイルの監視中にエラーが発生しました",
- "description": "The label of live-reload error"
+ "message": "ファイルの監視中にエラーが発生しました"
},
"liveReloadInstallHint": {
- "message": "外部の変更時にスタイルを自動更新する場合は、このタブを開いたままにしておいてください。",
- "description": "The label of live-reload feature"
+ "message": "外部の変更時にスタイルを自動更新する場合は、このタブを開いたままにしておいてください。"
},
"liveReloadInstallHintFF": {
- "message": "外部の変更時にスタイルを自動更新する場合は、このタブと元のタブを開いたままにしておいてください。",
- "description": "The extra hint of live-reload feature shown only for file:// URLs in Firefox"
+ "message": "外部の変更時にスタイルを自動更新する場合は、このタブと元のタブを開いたままにしておいてください。"
},
"liveReloadLabel": {
- "message": "自動リロード",
- "description": "The label of live-reload feature"
+ "message": "自動リロード"
},
"manageFavicons": {
- "message": "適用先欄のファビコン",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "適用先欄のファビコン"
},
"manageFaviconsGray": {
- "message": "グレー表示",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "ファビコンをグレー表示"
},
"manageFaviconsHelp": {
- "message": "Stylusは外部サービスを使用します https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylusは外部サービスを使用します https://www.google.com/s2/favicons"
},
"manageFilters": {
- "message": "フィルター",
- "description": "Label for filters container"
+ "message": "フィルター"
},
"manageHeading": {
- "message": "インストール済みスタイル",
- "description": "Heading for the manage page"
+ "message": "インストール済みスタイル"
},
"manageMaxTargets": {
- "message": "適用先欄の表示件数",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "適用先欄の表示件数"
},
"manageNewStyleAsUsercss": {
- "message": "Usercssとして",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "Usercssとして"
},
"manageNewUI": {
- "message": "新しい管理UIレイアウト",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "新しい管理UIレイアウト"
},
"manageOnlyDisabled": {
- "message": "無効なスタイルのみ",
- "description": "Checkbox to show only disabled styles"
+ "message": "無効なスタイルのみ"
},
"manageOnlyEnabled": {
- "message": "有効なスタイルのみ",
- "description": "Checkbox to show only enabled styles"
+ "message": "有効なスタイルのみ"
},
"manageOnlyExternal": {
- "message": "外部取得スタイルのみ",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "外部取得スタイルのみ"
},
"manageOnlyLocal": {
- "message": "ローカル作成スタイルのみ",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "ローカル作成スタイルのみ"
},
"manageOnlyLocalTooltip": {
- "message": "(userstyles.orgのページからインストールされていないスタイル)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(userstyles.orgのページからインストールされていないスタイル)"
},
"manageOnlyNonUsercss": {
- "message": "非Usercssスタイルのみ",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "非Usercssスタイルのみ"
},
"manageOnlyUpdates": {
- "message": "更新もしくは問題があるスタイルのみ",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "更新もしくは問題があるスタイルのみ"
},
"manageOnlyUsercss": {
- "message": "Usercssスタイルのみ",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Usercssスタイルのみ"
},
"menuShowBadge": {
- "message": "アクティブなスタイルの数を表示する",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "アクティブなスタイルの数を表示する"
},
"meta_invalidCheckboxDefault": {
- "message": "不正な @var チェックボックス: 値は0か1である必要があります",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "不正な @var チェックボックス: 値は0か1である必要があります"
},
"meta_invalidColor": {
"message": "不正な @var 色: $color$は有効な色ではありません",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
}
}
},
+ "meta_invalidNumber": {
+ "message": "数値を入力してください"
+ },
"meta_invalidRange": {
"message": "不正な @var $type$: 値は数値か配列である必要があります",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "不正な @var $type$: 複数の単位が定義されています",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "不正な @var $type$: 配列の要素が多すぎます",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeValue": {
- "message": "不正な @var $type$: 配列の要素は、数値,文字列またはnullである必要があります",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -748,16 +598,6 @@
},
"meta_invalidRangeDefault": {
"message": "不正な @var $type$: デフォルト値がnullです",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMin": {
- "message": "不正な @var $type$: デフォルト値が最小値を下回っています",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -766,7 +606,22 @@
},
"meta_invalidRangeMax": {
"message": "不正な @var $type$: デフォルト値が最大値を上回っています",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMin": {
+ "message": "不正な @var $type$: デフォルト値が最小値を下回っています",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "不正な @var $type$: 複数の単位が定義されています",
"placeholders": {
"type": {
"content": "$1"
@@ -775,7 +630,14 @@
},
"meta_invalidRangeStep": {
"message": "不正な @var $type$: デフォルト値がステップ値の倍数になっていません",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "不正な @var $type$: 配列の要素が多すぎます",
"placeholders": {
"type": {
"content": "$1"
@@ -784,7 +646,6 @@
},
"meta_invalidRangeUnits": {
"message": "不正な @var $type$: '$units$' は有効な単位ではありません",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -794,37 +655,40 @@
}
}
},
- "meta_invalidSelect": {
- "message": "不正な @var 選択: デフォルト値は、配列またはオブジェクトである必要があります",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidRangeValue": {
+ "message": "不正な @var $type$: 配列の要素は、数値,文字列またはnullである必要があります",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
},
- "meta_invalidSelectValue": {
- "message": "不正な @var 選択: 配列/オブジェクト内の値は文字列である必要があります",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidSelect": {
+ "message": "不正な @var 選択: デフォルト値は、配列またはオブジェクトである必要があります"
},
"meta_invalidSelectEmptyOptions": {
- "message": "不正な @var 選択: オプションのリストが空です",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "不正な @var 選択: オプションのリストが空です"
},
"meta_invalidSelectLabel": {
- "message": "不正な @var 選択: オプションのラベルが空です",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "不正な @var 選択: オプションのラベルが空です"
},
"meta_invalidSelectMultipleDefaults": {
- "message": "不正な @var 選択: 複数のデフォルトオプションが定義されています",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "不正な @var 選択: 複数のデフォルトオプションが定義されています"
},
"meta_invalidSelectNameDuplicated": {
- "message": "不正な @var 選択: オプション名が重複しています",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "不正な @var 選択: オプション名が重複しています"
+ },
+ "meta_invalidSelectValue": {
+ "message": "不正な @var 選択: 配列/オブジェクト内の値は文字列である必要があります"
},
"meta_invalidSelectValueMismatch": {
- "message": "不正な @var 選択: 値がオプションのリストに存在しません",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "不正な @var 選択: 値がオプションのリストに存在しません"
+ },
+ "meta_invalidString": {
+ "message": "クォートで囲まれた文字列を入力してください"
},
"meta_invalidURLProtocol": {
"message": "不正なURLプロトコル。httpかhttpsのみ許可されています: $protocol$",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
@@ -832,29 +696,13 @@
}
},
"meta_invalidVersion": {
- "message": "不正なバージョン番号。値がバージョン番号のパターンに合っていません: $version$",
- "description": "Error displayed when @version is invalid",
- "placeholders": {
- "version": {
- "content": "$1"
- }
- }
- },
- "meta_invalidNumber": {
- "message": "数値を入力してください",
- "description": "Error displayed when the value is expected to be a number"
- },
- "meta_invalidString": {
- "message": "クォートで囲まれた文字列を入力してください",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "不正なバージョン番号"
},
"meta_invalidWord": {
- "message": "単語を入力してください",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "単語を入力してください"
},
"meta_missingChar": {
"message": "文字を入力してください: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -862,12 +710,10 @@
}
},
"meta_missingEOT": {
- "message": "EOTデータを入力してください",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "EOTデータを入力してください"
},
"meta_missingMandatory": {
"message": "必須のメタデータがありません: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -876,7 +722,6 @@
},
"meta_unknownJSONLiteral": {
"message": "不正なJSON: $literal$ は有効なJSONデータではありません",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
@@ -885,16 +730,33 @@
},
"meta_unknownMeta": {
"message": "不明なメタデータ: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
}
},
+ "meta_unknownMetaTypo": {
+ "message": "@$keyOk$の誤り? 不明なメタデータ: @$keyErr$",
+ "placeholders": {
+ "keyErr": {
+ "content": "$1"
+ },
+ "keyOk": {
+ "content": "$2"
+ }
+ }
+ },
+ "meta_unknownPreprocessor": {
+ "message": "不明な @preprocessor: $preprocessor$",
+ "placeholders": {
+ "preprocessor": {
+ "content": "$1"
+ }
+ }
+ },
"meta_unknownVarType": {
"message": "不明な @$varkey$ タイプ: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -904,158 +766,137 @@
}
}
},
- "meta_unknownPreprocessor": {
- "message": "不明な @preprocessor: $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
- "placeholders": {
- "preprocessor": {
- "content": "$1"
- }
- }
+ "noFileToImport": {
+ "message": "スタイルをインポートするには、まずエクスポートする必要があります。"
},
"noStylesForSite": {
- "message": "該当するスタイルはありません。",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "該当するスタイルはありません。"
+ },
+ "numberedLine": {
+ "message": "行:"
},
"openManage": {
- "message": "管理",
- "description": "Link to open the manage page."
+ "message": "管理"
},
"openOptions": {
- "message": "オプション",
- "description": "Go to Options UI"
+ "message": "オプション"
},
"openStylesManager": {
- "message": "スタイルマネージャーを開く",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "スタイルマネージャーを開く"
},
"optionsActions": {
- "message": "アクション",
- "description": ""
+ "message": "アクション"
},
"optionsAdvanced": {
- "message": "上級者向け",
- "description": ""
+ "message": "上級者向け"
},
"optionsAdvancedContextDelete": {
- "message": "エディタのコンテキストメニューに「削除」を追加する",
- "description": ""
+ "message": "エディタのコンテキストメニューに「削除」を追加する"
},
"optionsAdvancedExposeIframes": {
- "message": "HTML[stylus-iframe] によってiframeへのアクセスを可能にする",
- "description": ""
+ "message": "HTML[stylus-iframe] によってiframeへのアクセスを可能にする"
},
"optionsAdvancedExposeIframesNote": {
- "message": "各iframeにトップサイトドメインを公開します。\n次のようにiframe用のCSSを書くことができるようになります:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }",
- "description": "Add attribute to iframe; make sure to include the double $$ in the css example, or the `$=` will be omitted in the displayed text."
+ "message": "各iframeにトップサイトドメインを公開します。\n次のようにiframe用のCSSを書くことができるようになります:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "新しいスタイルを usercss として作成します",
- "description": ""
+ "message": "新しいスタイルを usercss として作成します"
+ },
+ "optionsAdvancedPatchCsp": {
+ "message": "スタイルのアセットを許可するためにCSP
にパッチを当てる"
+ },
+ "optionsAdvancedPatchCspNote": {
+ "message": "厳格なCSP
(Content-Security-Policy
)を持つサイトで、ロードできない画像やフォントを含んだスタイルの場合に、これを有効にします。\n\nこの設定を有効にすると、CSP
の制限をゆるめて、必要なコンテンツのロードを許可します。このオプションは、潜在的なセキュリティへの影響を理解し、許可しているコンテンツを監視する責任を持つことができる上級ユーザーのみを対象としています。 詳細については、CSSベースの攻撃に関する資料をお読みください。\n\nまた、インストールされている別の拡張機能が最初にネットワークの応答を変更した場合、この特別な設定が有効になるとは限らないことに注意してください。"
+ },
+ "optionsAdvancedStyleViaXhr": {
+ "message": "即時更新モード"
+ },
+ "optionsAdvancedStyleViaXhrNote": {
+ "message": "閲覧時に、スタイルの指定されていないコンテンツが点滅するような場合に有効にしてください。これは、ダークテーマで特に目立つことがあります。\n\n技術的な原因は、Chrome/Chromium が拡張機能との非同期通信を遅延することです。これは(無意味なことが多いですが)ページのロード時間の短縮のために行われ、スタイルの適用を遅延する場合があります。これを回避するため(web拡張自体は同期通信APIを提供していないので)、Stylusは「非推奨」の XMLHttpRequest web API をスタイルの読み込みに使用するオプションを提供しています。サーバからページがダウンロードされている間に、リクエストは数ミリ秒で終了するため、悪影響はありません。\n\nそれでも、Chromium は、開発者ツールのコンソールに警告を出力します。 警告を右クリックして非表示にすると、以後は警告を表示しないようにすることができます。"
},
"optionsBadgeDisabled": {
- "message": "無効にしたときの背景色",
- "description": ""
+ "message": "無効にしたときの背景色"
},
"optionsBadgeNormal": {
- "message": "背景色",
- "description": ""
+ "message": "背景色"
},
"optionsCheck": {
- "message": "スタイルを更新",
- "description": ""
+ "message": "スタイルを更新"
},
"optionsCheckUpdate": {
- "message": "使用可能なすべての更新を確認してインストールする",
- "description": ""
+ "message": "使用可能なすべての更新を確認してインストールする"
},
"optionsCustomizeBadge": {
- "message": "アイコンの修飾",
- "description": ""
+ "message": "アイコンの修飾"
},
"optionsCustomizeIcon": {
- "message": "ツールバーアイコン",
- "description": ""
+ "message": "ツールバーアイコン"
},
"optionsCustomizePopup": {
- "message": "ポップアップ",
- "description": ""
- },
- "optionsCustomizeUpdate": {
- "message": "更新設定",
- "description": ""
+ "message": "ポップアップ"
},
"optionsCustomizeSync": {
- "message": "クラウドとの同期",
- "description": ""
+ "message": "クラウドとの同期"
+ },
+ "optionsCustomizeUpdate": {
+ "message": "更新設定"
},
"optionsHeading": {
- "message": "オプション",
- "description": "Heading for options section on manage page."
+ "message": "オプション"
},
"optionsIconDark": {
- "message": "暗いブラウザのテーマ",
- "description": ""
+ "message": "暗いブラウザのテーマ"
},
"optionsIconLight": {
- "message": "明るいブラウザのテーマ",
- "description": ""
+ "message": "明るいブラウザのテーマ"
},
"optionsOpen": {
- "message": "開く",
- "description": ""
+ "message": "開く"
},
"optionsOpenManager": {
- "message": "スタイルを管理",
- "description": ""
+ "message": "スタイルを管理"
},
"optionsPopupWidth": {
- "message": "ポップアップの幅(ピクセル単位)",
- "description": ""
+ "message": "ポップアップの幅(ピクセル単位)"
},
"optionsReset": {
- "message": "オプションをデフォルト値にリセットする",
- "description": ""
+ "message": "オプションをデフォルト値にリセットする"
},
"optionsResetButton": {
- "message": "オプションをリセット",
- "description": ""
+ "message": "オプションをリセット"
+ },
+ "optionsStylusThemes": {
+ "message": "StylusのUIテーマを見つける"
},
"optionsSubheading": {
- "message": "その他のオプション",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "旧バージョンまたはStylishからスタイルのバックアップをインポートする場合は、スタイルマネージャで一度手動で更新チェックを行い、すべてのスタイルが確実に更新されるようにしてください。",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "ユーザースタイルの自動更新間隔(時間単位)(0を指定すると更新しません)",
- "description": ""
- },
- "optionsSyncNone": {
- "message": "未選択",
- "description": ""
+ "message": "その他のオプション"
},
"optionsSyncConnect": {
- "message": "接続",
- "description": ""
+ "message": "接続"
},
"optionsSyncDisconnect": {
- "message": "切断",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "すぐに同期",
- "description": ""
+ "message": "切断"
},
"optionsSyncLogin": {
- "message": "ログイン",
- "description": ""
+ "message": "ログイン"
+ },
+ "optionsSyncNone": {
+ "message": "未選択"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "接続状態"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "接続中..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "切断状態"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "切断中..."
},
"optionsSyncStatusPull": {
"message": "スタイルをダウンロード中 ( $loaded$/ $total$)",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1067,7 +908,6 @@
},
"optionsSyncStatusPush": {
"message": "スタイルをアップロード中( $loaded$/ $total$)",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1077,265 +917,257 @@
}
}
},
+ "optionsSyncStatusRelogin": {
+ "message": "セッションの期限が切れました。ログインし直してください。"
+ },
"optionsSyncStatusSyncing": {
- "message": "同期中...",
- "description": ""
+ "message": "同期中..."
},
- "optionsSyncStatusConnecting": {
- "message": "接続中...",
- "description": ""
+ "optionsSyncSyncNow": {
+ "message": "すぐに同期"
},
- "optionsSyncStatusConnected": {
- "message": "接続状態",
- "description": ""
+ "optionsUpdateImportNote": {
+ "message": "旧バージョンまたはStylishからスタイルのバックアップをインポートする場合は、スタイルマネージャで一度手動で更新チェックを行い、すべてのスタイルが確実に更新されるようにしてください。"
},
- "optionsSyncStatusDisconnecting": {
- "message": "切断中...",
- "description": ""
+ "optionsUpdateInterval": {
+ "message": "ユーザースタイルの自動更新間隔(時間単位)(0を指定すると更新しません)"
},
- "optionsSyncStatusDisconnected": {
- "message": "切断状態",
- "description": ""
+ "overwriteFileExport": {
+ "message": "存在するファイルを上書きしてよろしいですか?"
},
"paginationCurrent": {
- "message": "現在のページ",
- "description": "Tooltip for the current page index in search results"
+ "message": "現在のページ"
},
"paginationEstimated": {
- "message": "推定ページ数",
- "description": "Tooltip for the total page count in search results"
+ "message": "推定ページ数"
},
"paginationNext": {
- "message": "次ページ",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "次ページ"
},
"paginationPrevious": {
- "message": "前ページ",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "前ページ"
},
"paginationTotal": {
- "message": "総ページ数",
- "description": ""
+ "message": "総ページ数"
},
"parseUsercssError": {
- "message": "Stylusはusercssの解析に失敗しました: ",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "Stylusはusercssの解析に失敗しました: "
},
"popupAutoResort": {
- "message": "ポップアップのスタイルをソートして表示",
- "description": "Label for the checkbox controlling popup resorting."
+ "message": "ポップアップ内のスタイルをソートして表示"
},
"popupBorders": {
- "message": "横に白い境界線を追加する",
- "description": ""
+ "message": "横に白い境界線を追加する"
},
"popupBordersTooltip": {
- "message": "新しいChromeが横の境界線を描かなくなったため、暗いテーマで有効です",
- "description": ""
+ "message": "新しいChromeが横の境界線を描かなくなったため、暗いテーマで有効です"
},
"popupHotkeysInfo": {
- "message": "<1>-<9>, <0>, または数字パッドキーにより、N番目のスタイルの有効/無効を切り替えます(0は10番目を意味します)\n- は、その文字で始まる先頭のスタイルの有効/無効を切り替えます\n を併用すると、切り替えではなくエディタを開きます\n は、リストのスタイルをすべて有効にします\n は、リストのスタイルをすべて無効にします\n と <`>(バッククォート)は、初期状態が有効なスタイルのみを切り替えます。すなわち ポップアップ上で後から有効にしたスタイルは切り替えません。例えば、テスト後に初期の選択に戻すには、全解除してから切り替えてください(すなわち の順に押してください)\n詳細については wiki を参照ください",
- "description": "NOTE1: preserve < and > symbols so that is styled as a key.\nNOTE2: the last line is displayed as a text of the link to the wiki page.\nNOTE3: this is the list of hotkeys displayed after clicking the right edge of the extension popup."
+ "message": "<1>-<9>, <0>, または数字パッドキーにより、N番目のスタイルの有効/無効を切り替えます(0は10番目を意味します)\n- は、その文字で始まる先頭のスタイルの有効/無効を切り替えます\n を併用すると、切り替えではなくエディタを開きます\n は、リストのスタイルをすべて有効にします\n は、リストのスタイルをすべて無効にします\n と <`>(バッククォート)は、初期状態が有効なスタイルのみを切り替えます。すなわち ポップアップ上で後から有効にしたスタイルは切り替えません。例えば、テスト後に初期の選択に戻すには、全解除してから切り替えてください(すなわち の順に押してください)\n詳細については wiki を参照ください"
},
"popupHotkeysTooltip": {
- "message": "クリックすると使用可能なホットキーを表示します",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "クリックすると使用可能なホットキーを表示します"
},
"popupManageTooltip": {
- "message": "シフトを押しながらクリック または 右クリック で、現在のサイトに適用可能なスタイルの管理画面を開きます",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "シフトを押しながらクリック または 右クリック で、現在のサイトに適用可能なスタイルの管理画面を開きます"
},
"popupMenuButtonTooltip": {
- "message": "アクションメニュー",
- "description": "Tooltip for menu button in popup."
+ "message": "アクションメニュー"
+ },
+ "popupOpenEditInPopup": {
+ "message": "(アドレスバーのない)シンプルなウィンドウを使用"
},
"popupOpenEditInWindow": {
- "message": "新しいウィンドウでエディタを開く",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "新しいウィンドウでエディタを開く"
},
"popupOpenEditInWindowTooltip": {
- "message": "エディタのタブをブラウザのウィンドウから切り離すことでも有効になります。\nそして、分離したエディタのタブを他のブラウザのウィンドウに結合すれば無効になります。",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "エディタのタブをブラウザのウィンドウから切り離すことでも有効になります。\nそして、分離したエディタのタブを他のブラウザのウィンドウに結合すれば無効になります。"
},
"popupStylesFirst": {
- "message": "スタイル一覧をコマンドボタンより上に表示",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "スタイル一覧をコマンドボタンより上に表示"
},
"prefShowBadge": {
- "message": "現在のサイトで有効なスタイルの数を表示",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "現在のサイトで有効なスタイルの数を表示"
},
"previewLabel": {
- "message": "自動プレビュー",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "自動プレビュー"
},
"previewTooltip": {
- "message": "変更を保存しないで一時的に適用します。\n変更を確定する場合には、スタイルを保存してください。",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "変更を保存しないで一時的に適用します。\n変更を確定する場合には、スタイルを保存してください。"
+ },
+ "publish": {
+ "message": "公開"
+ },
+ "publishPush": {
+ "message": "変更を送信"
+ },
+ "publishReconnect": {
+ "message": "切断して再度公開を試みる"
+ },
+ "publishRetry": {
+ "message": "Stylusはスタイルの公開を試みていますが、もし認証確認やポップアップが表示されない場合は、リトライすることができます。すぐにリトライしますか?"
+ },
+ "publishStyle": {
+ "message": "スタイルを公開"
+ },
+ "publishUsw": {
+ "message": " の使用"
+ },
+ "readingStyles": {
+ "message": "スタイルを読み込み中..."
},
"reload": {
- "message": "Stylus拡張をリロードする",
- "description": "Context menu reload"
+ "message": "Stylus拡張をリロードする"
},
"replace": {
- "message": "置換",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "置換"
},
"replaceAll": {
- "message": "すべて置換",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "すべて置換"
},
"replaceWith": {
- "message": "次に置換",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "次に置換"
},
"retrieveBckp": {
- "message": "スタイルをインポート",
- "description": ""
+ "message": "スタイルをインポート"
+ },
+ "retrieveDropboxSync": {
+ "message": "Dropboxからインポート"
},
"search": {
- "message": "検索",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "検索"
},
"searchCaseSensitive": {
- "message": "大文字小文字を区別する",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "大文字小文字を区別する"
+ },
+ "searchGlobalStyles": {
+ "message": "グローバルスタイルも検索"
},
"searchNumberOfResults": {
- "message": "マッチ数",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "マッチ数"
},
"searchNumberOfResults2": {
- "message": "コードおよび適用先欄のマッチ数",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "コードおよび適用先欄のマッチ数"
},
"searchRegexp": {
- "message": "正規表現検索には /re/ を使用してください",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "正規表現検索には /re/ を使用してください"
},
"searchResultInstallCount": {
- "message": "総インストール数",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "総インストール数"
},
"searchResultNoneFound": {
- "message": "該当するスタイルはありません。",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "該当するスタイルはありません。"
+ },
+ "searchResultNotMatching": {
+ "message": "スタイルはインストールされますが、現在のサイトのURLには適用されません。"
+ },
+ "searchResultNotMatchingNote": {
+ "message": "このユーザースタイルの作者に、URLの追加について確認してみてください。\nあなた自身が、管理画面でこのスタイルを開いて編集することは可能です。\nしかし、このスタイルの自動更新は無効になることに注意してください。"
},
"searchResultRating": {
- "message": "評価",
- "description": "Text for label that shows the search result's rating"
+ "message": "評価"
},
"searchResultUpdated": {
- "message": "更新日",
- "description": "Text for label that shows the search result's last update date"
+ "message": "更新日"
},
"searchResultWeeklyCount": {
- "message": "週間インストール数",
- "description": "Text for label that shows the number of times a search result was installed during last week"
+ "message": "週間インストール数"
},
- "searchStyles": {
- "message": "コンテンツの検索",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "searchStyleQueryHint": {
+ "message": "スタイル名を大文字小文字の区別なく検索します:\n複数の単語 - 全単語を順番の区別なく検索します\n\"複数の単語からなるフレーズ\" - 正確なフレーズを (引用符は除いて) 検索します\n2020 - このように数値 (年) を指定すると、2020年に更新されたスタイルも結果に表示します"
+ },
+ "searchStylesAll": {
+ "message": "すべて"
+ },
+ "searchStylesCode": {
+ "message": "CSSコード"
},
"searchStylesHelp": {
- "message": "> キーで検索欄に移動します。\n文字列検索 : 名前、コード、適用先のURL/サイト名を検索します。3文字より短い単語は無視されます。\nURL検索 : 検索文字列の前に を付けてください。例. \n正規表現検索 : 検索文字列にスラッシュとフラグを含めてください。例. \n正確な文字列検索 : 検索文字列をダブルクォートで囲んでください。例. <\".header ~ div\">",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
+ "message": "> または キーで検索欄に移動します。\nデフォルトモードは、空白で区切られたすべての単語を任意の順番で探す文字列検索です。\n正確な文字列検索 : 検索文字列をダブルクォートで囲んでください。例. <\".header ~ div\">\n正規表現検索 : 検索文字列にスラッシュとフラグを含めてください。例. \nスコープセレクタで「URLによる」を選択 : 指定されたURLに適用されるスタイルを見つけます。例. https://www.example.org/\nスコープセレクタで「メタデータ」を選択 : 名前、「適用先」指定子、インストールURL、アップデートURL、そして usercss スタイルのメタデータブロック全体を検索します。"
+ },
+ "searchStylesMatchUrl": {
+ "message": "URLによる"
+ },
+ "searchStylesMeta": {
+ "message": "メタデータ"
+ },
+ "searchStylesName": {
+ "message": "名前"
},
"sectionAdd": {
- "message": "他のセクションを追加",
- "description": "Label for the button to add a section"
+ "message": "他のセクションを追加"
},
"sectionCode": {
- "message": "コード",
- "description": "Label for the code for a section"
+ "message": "コード"
},
"sectionRemove": {
- "message": "セクションを削除",
- "description": "Label for the button to remove a section"
+ "message": "セクションを削除"
},
"sectionRestore": {
- "message": "削除したセクションを復旧",
- "description": "Label for the button to restore a removed section"
+ "message": "削除したセクションを復旧"
+ },
+ "sections": {
+ "message": "セクション"
},
"shortcuts": {
- "message": "ショートカット",
- "description": "Go to shortcut configuration"
+ "message": "ショートカット"
},
"shortcutsNote": {
- "message": "キーボードショートカットを定義する",
- "description": ""
+ "message": "キーボードショートカットを定義する"
},
"sortDateNewestFirst": {
- "message": "新しい順",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "新しい順"
},
"sortDateOldestFirst": {
- "message": "古い順",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "古い順"
},
"sortLabel": {
- "message": "インストール済みスタイルの並べ替え",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "インストール済みスタイルの並べ替え"
},
"sortLabelTitleAsc": {
- "message": "タイトル昇順",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "タイトル昇順"
},
"sortLabelTitleDesc": {
- "message": "タイトル降順",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "タイトル降順"
},
"sortStylesHelp": {
- "message": "インストール済みの項目の並べ替え方法を、ドロップダウンリストで選択してください。デフォルト設定は、タイトルの昇順(AからZへ)になっています。「タイトル降順」を選択すると、タイトルの降順(ZからAへ)に並べ替えます。\n他に、複数の基準で項目の並べ替えを行う設定もあります。これは、複数の列を持つ表の並べ替えと考えられ、(プラス記号を挟んで)選択された各カテゴリーは、対応する列またはグループを表します。\n例えば、「有効(1番目)+タイトル」という設定の場合、すべての有効な項目がリストの先頭に並べられ、次にタイトルの昇順(AからZへ)で有効/無効な項目がそれぞれ並べられます。",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the sort input field on the Manage styles page"
+ "message": "インストール済みの項目の並べ替え方法を、ドロップダウンリストで選択してください。デフォルト設定は、タイトルの昇順(AからZへ)になっています。「タイトル降順」を選択すると、タイトルの降順(ZからAへ)に並べ替えます。\n他に、複数の基準で項目の並べ替えを行う設定もあります。これは、複数の列を持つ表の並べ替えと考えられ、(プラス記号を挟んで)選択された各カテゴリーは、対応する列またはグループを表します。\n例えば、「有効(1番目)+タイトル」という設定の場合、すべての有効な項目がリストの先頭に並べられ、次にタイトルの昇順(AからZへ)で有効/無効な項目がそれぞれ並べられます。"
},
"sortStylesHelpTitle": {
- "message": "コンテンツの並べ替え",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "コンテンツの並べ替え"
},
"styleBadRegexp": {
- "message": "正規表現は無効です。",
- "description": "Validation message for a bad regexp in a style"
+ "message": "正規表現は無効です。"
},
"styleBeautify": {
- "message": "書式整形",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "書式整形"
},
"styleBeautifyHint": {
- "message": "ヒント: 書式整形ボタンを右クリックするか、下で設定したキーボードショートカットを使用すると、このパネルを表示せずに書式設定が行えます",
- "description": "Hint shown inside the CSS-beautifier panel"
+ "message": "ヒント: 書式整形ボタンを右クリックするか、下で設定したキーボードショートカットを使用すると、このパネルを表示せずに書式設定が行えます"
},
"styleBeautifyIndentConditional": {
- "message": "@media, @supports をインデント",
- "description": "CSS-beautifier option"
+ "message": "@media, @supports をインデント"
},
"styleBeautifyPreserveNewlines": {
- "message": "改行を保存",
- "description": "CSS-beautifier option"
+ "message": "改行を保存"
},
"styleCancelEditLabel": {
- "message": "管理画面に戻る",
- "description": "Label for cancel button for style editing"
+ "message": "管理画面に戻る"
},
"styleChangesNotSaved": {
- "message": "このスタイルは変更されていますが、保存されていません。",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "このスタイルは変更されていますが、保存されていません。"
},
"styleEnabledLabel": {
- "message": "有効",
- "description": "Label for the enabled state of styles"
+ "message": "有効"
},
"styleFromMozillaFormatError": {
- "message": "Mozilla形式のインポートに失敗しました",
- "description": "Label for the import error"
+ "message": "Mozilla形式のインポートに失敗しました"
},
"styleFromMozillaFormatPrompt": {
- "message": "Mozilla形式のコードを貼り付ける",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Mozilla形式のコードを貼り付ける"
},
"styleInstall": {
"message": "「$stylename$」を Stylus にインストールしますか?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1344,7 +1176,6 @@
},
"styleInstallFailed": {
"message": "ユーザースタイルのインストールに失敗しました!\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1353,82 +1184,68 @@
},
"styleInstallOverwrite": {
"message": "「$stylename$」はすでにインストール済みです。上書きしますか?\nバージョン: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "名前を入力してください",
- "description": "Error displayed when user saves without providing a name"
+ "message": "名前を入力してください"
+ },
+ "styleName": {
+ "message": "スタイル名"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "'regexp()' の誤った使用のためスタイルを適用できませんでした",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "'regexp()' の誤った使用のためスタイルを適用できませんでした"
},
"styleRegexpInvalidExplanation": {
- "message": "いくつかの 'regexp()' のルールはコンパイルできませんでした",
- "description": ""
+ "message": "いくつかの 'regexp()' のルールはコンパイルできませんでした"
},
"styleRegexpPartialExplanation": {
- "message": "このスタイルは、完全なURLの一致を要求する CSS4 @document 仕様 に違反した部分一致の正規表現を使用しています。影響を受けるCSSセクションはページに適用されませんでした。このスタイルは、'regexp()' のルールを誤ってチェックしていた かなり初期のバージョンの Stylish-for-Chrome で作成された可能性があります(既知のバグです)。",
- "description": ""
+ "message": "このスタイルは、完全なURLの一致を要求する CSS4 @document 仕様 に違反した部分一致の正規表現を使用しています。影響を受けるCSSセクションはページに適用されませんでした。このスタイルは、'regexp()' のルールを誤ってチェックしていた かなり初期のバージョンの Stylish-for-Chrome で作成された可能性があります(既知のバグです)。"
},
"styleRegexpProblemTooltip": {
- "message": "'regexp()' の誤った使用のためいくつかのセクションを適用できませんでした",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "'regexp()' の誤った使用のためいくつかのセクションを適用できませんでした"
},
"styleRegexpTestButton": {
- "message": "正規表現をテスト",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "正規表現をテスト"
},
"styleRegexpTestFull": {
- "message": "一致するタブ",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "一致するタブ"
},
"styleRegexpTestInvalid": {
- "message": "無効な正規表現がスキップされました",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "無効な正規表現がスキップされました"
},
"styleRegexpTestNone": {
- "message": "一致するタブはありません",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "一致するタブはありません"
},
"styleRegexpTestNote": {
- "message": "注: 正規表現の入力欄でエスケープする場合には、「\\」1個を使用してください。それは、CSSでの引用符で囲まれた文字列の仕様に従い、スタイルコード内で自動的に「\\\\」に変換されます。",
- "description": "RegExp test report: a note displayed at the bottom of the dialog"
+ "message": "注: 正規表現の入力欄でエスケープする場合には、「\\」1個を使用してください。それは、CSSでの引用符で囲まれた文字列の仕様に従い、スタイルコード内で自動的に「\\\\」に変換されます。"
},
"styleRegexpTestPartial": {
- "message": "完全に一致しないため、スキップされました",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "完全に一致しないため、スキップされました"
},
"styleRegexpTestTitle": {
- "message": "一致する開いているタブのリスト(URLをクリックするとそのタブに移動します)",
- "description": "RegExp test report: title of the report"
+ "message": "一致する開いているタブのリスト(URLをクリックするとそのタブに移動します)"
},
"styleSaveLabel": {
- "message": "保存",
- "description": "Label for save button for style editing"
+ "message": "保存"
},
"styleToMozillaFormatHelp": {
- "message": "Mozilla形式のコードは、userstyles.org に投稿することができ、また従来の Stylish for Firefox でも使用できます",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Mozilla形式のコードは、userstyles.org に投稿することができ、また従来の Stylish for Firefox でも使用できます"
},
"styleToMozillaFormatTitle": {
- "message": "Mozilla形式のスタイル",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Mozilla形式のスタイル"
},
"styleUpdate": {
"message": "「$stylename$」を更新してもよろしいですか?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1436,72 +1253,67 @@
}
},
"styleUpdateDiscardChanges": {
- "message": "このスタイルはエディタの外部で変更されました。このスタイルをリロードしますか?",
- "description": "Confirmation to update the style in the editor"
+ "message": "このスタイルはエディタの外部で変更されました。このスタイルをリロードしますか?"
},
"stylusUnavailableForURL": {
- "message": "このページではStylusは動作しません。",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "このページではStylusは動作しません。"
},
"stylusUnavailableForURLdetails": {
- "message": "セキュリティ上の予防措置として、ブラウザは拡張機能がビルトイン ページ(chrome://version, Chrome 61 の標準の新しいタブページ, about:addons 等)に影響を与えることを禁止しています。これは他の拡張機能のページについても同様です。各ブラウザはまた、自身の拡張機能ギャラリーへのアクセスについても制限しています(Chrome Web ストア や AMO 等)。",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "セキュリティ上の予防措置として、ブラウザは拡張機能がビルトイン ページ(chrome://version, Chrome 61 の標準の新しいタブページ, about:addons 等)に影響を与えることを禁止しています。これは他の拡張機能のページについても同様です。各ブラウザはまた、自身の拡張機能ギャラリーへのアクセスについても制限しています(Chrome Web ストア や AMO 等)。"
+ },
+ "syncDropboxDeprecated": {
+ "message": "Dropboxへのインポート/エクスポート機能は、オプションページにある より進歩したスタイル同期機能 へ移行しました。"
+ },
+ "syncDropboxStyles": {
+ "message": "Dropboxにエクスポート"
+ },
+ "syncError": {
+ "message": "同期に失敗"
+ },
+ "syncErrorRelogin": {
+ "message": "同期に失敗しました。\nStylusのオプション画面で、再ログインしてください :\n(「切断」をクリック後、「接続」をクリック)"
},
"syncStorageErrorSaving": {
- "message": "値を保存できません。テキストの量を減らしてください。",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "値を保存できません。テキストの量を減らしてください。"
},
"toggleStyle": {
- "message": "スタイルの有効/無効の切り替え",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "スタイルの有効/無効の切り替え"
},
"undo": {
- "message": "元に戻す",
- "description": "Button label"
+ "message": "元に戻す"
},
"undoGlobal": {
- "message": "すべてのセクションで元に戻す",
- "description": "CSS-beautify global Undo button label"
+ "message": "すべてのセクションで元に戻す"
},
"unreachableAMO": {
- "message": "Firefoxはこのサイトへのアクセスを禁止しています。",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "Firefoxはこのサイトへのアクセスを禁止しています。"
},
"unreachableAMOHint": {
- "message": "アクセスを許可するには、 を開き、リストを右クリックして「新規作成」-「真偽値」をクリックし、 を貼り付けてOKをクリックし、 を選択してOKをクリックし、その後、 ページをリロードしてください。",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintNewFF": {
- "message": "Firefox 60 以降では、のからAMOのドメインを削除する必要があるかもしれません。",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Firefox 59 以降のみが、「WebExtensionがこのようなCSPプロテクトされたサイトにスタイル要素を追加すること」を許可する設定を行えます。",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "アクセスを許可するには、 を開き、リストを右クリックして「新規作成」-「真偽値」をクリックし、 を貼り付けてOKをクリックし、 を選択してOKをクリックし、その後、 ページをリロードしてください。"
},
"unreachableContentScript": {
- "message": "ページと通信できませんでした。タブを再読み込みしてみてください。",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "ページと通信できませんでした。タブを再読み込みしてみてください。"
},
"unreachableFileHint": {
- "message": "chrome://extensions ページでStylus拡張機能の当該チェックボックスを有効にした場合にのみ、Stylusは file:// URLにアクセスできます。",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "chrome://extensions ページでStylus拡張機能の当該チェックボックスを有効にした場合にのみ、Stylusは file:// URLにアクセスできます。"
},
- "InaccessibleFileHint": {
- "message": "Stylusにはアクセスできないファイル形式があります(例えばpdfやjsonファイル等)。",
- "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ "unreachableMozSiteHint": {
+ "message": "Firefox 60 以降では、内のから、このドメインを削除する必要があります。"
+ },
+ "unreachableMozSiteHintOldFF": {
+ "message": "このようなCSPで保護されたサイトへのスタイル要素の追加を、Web拡張機能に許可するためには、Firefox 59 以降が必要です。"
+ },
+ "unzipStyles": {
+ "message": "スタイルをZip解凍中..."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "更新は見つかりませんでした。",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "更新は見つかりませんでした。"
},
"updateAllCheckSucceededSomeEdited": {
- "message": "いくつかの更新可能なスタイルは、ローカルでの編集内容が失われることを避けるために、チェックされませんでした。更新を強制的に行うには、個別のチェック、もしくは、全スタイルに対する再チェックを実行してください(この場合、ローカルでの編集内容は上書きされます)。",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "いくつかの更新可能なスタイルは、ローカルでの編集内容が失われることを避けるために、チェックされませんでした。更新を強制的に行うには、個別のチェック、もしくは、全スタイルに対する再チェックを実行してください(この場合、ローカルでの編集内容は上書きされます)。"
},
"updateCheckFailBadResponseCode": {
"message": "更新に失敗しました: サーバーが応答コード「$code$」を返しています。",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1509,127 +1321,63 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "更新に失敗しました: サーバーに到達できません。",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "更新に失敗しました: サーバーに到達できません。"
},
"updateCheckHistory": {
- "message": "更新チェックの履歴",
- "description": ""
+ "message": "更新チェックの履歴"
},
"updateCheckManualUpdateForce": {
- "message": "更新をインストール(ローカルでの編集内容は上書きされます)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "更新をインストール(ローカルでの編集内容は上書きされます)"
},
"updateCheckManualUpdateHint": {
- "message": "更新を強制すると、すべてのローカルでの編集内容が上書きされます。",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "更新を強制すると、すべてのローカルでの編集内容が上書きされます。"
},
"updateCheckSkippedLocallyEdited": {
- "message": "このスタイルはローカルで編集されました。",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "このスタイルはローカルで編集されました。"
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "このスタイルはローカルで編集されている可能性があります。",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "このスタイルはローカルで編集されている可能性があります。"
},
"updateCheckSucceededNoUpdate": {
- "message": "スタイルは最新の状態です。",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "スタイルは最新の状態です。"
},
"updateCompleted": {
- "message": "更新が完了しました。",
- "description": "Text that displays when an update completed"
+ "message": "更新が完了しました。"
},
"updatesCurrentlyInstalled": {
- "message": "更新がインストールされました:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "既存のスタイルの上書きを避けるために、@name または @namespace の値を変更してください。",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssConfigIncomplete": {
- "message": "設定ダイアログの表示後に、スタイルが更新または削除されました。スタイルのメタデータの破損を避けるため、これらの変数は保存されませんでした:",
- "description": ""
- },
- "usercssEditorNamePlaceholder": {
- "message": "コードで@nameを指定してください",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateConfirmation": {
- "message": "現在のコードで、新しいUsercssスタイルのデフォルト・テンプレートを置き換えますか?",
- "description": ""
- },
- "usercssReplaceTemplateName": {
- "message": "@name を空にすると、デフォルト・テンプレートを置き換えます",
- "description": "The text shown after @name when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "ここにコードを挿入...",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "インストール済みのスタイルより古いバージョンです。",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "次のスタイルを書く:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "このURL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "syncDropboxStyles": {
- "message": "Dropboxにエクスポート",
- "description": ""
- },
- "syncDropboxDeprecated": {
- "message": "Dropboxへのインポート/エクスポート機能は、オプションページにある より進歩したスタイル同期機能 へ移行しました。",
- "description": ""
- },
- "retrieveDropboxSync": {
- "message": "Dropboxからインポート",
- "description": ""
- },
- "overwriteFileExport": {
- "message": "存在するファイルを上書きしてよろしいですか?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "ファイルをセーブしました",
- "description": ""
- },
- "noFileToImport": {
- "message": "スタイルをインポートするには、まずエクスポートする必要があります。",
- "description": ""
- },
- "connectingDropbox": {
- "message": "Dropboxに接続中...",
- "description": ""
- },
- "connectingDropboxNotAllowed": {
- "message": "Dropboxへの接続は、webstoreから直接インストールしたアプリ内でのみ可能です",
- "description": ""
- },
- "gettingStyles": {
- "message": "全スタイルを取得中...",
- "description": ""
- },
- "zipStyles": {
- "message": "スタイルをZip圧縮中...",
- "description": ""
- },
- "unzipStyles": {
- "message": "スタイルをZip解凍中...",
- "description": ""
- },
- "readingStyles": {
- "message": "スタイルを読み込み中...",
- "description": ""
+ "message": "更新がインストールされました:"
},
"uploadingFile": {
- "message": "スタイルをアップロード中...",
- "description": ""
+ "message": "スタイルをアップロード中..."
+ },
+ "usercssAvoidOverwriting": {
+ "message": "既存のスタイルの上書きを避けるために、@name または @namespace の値を変更してください。"
+ },
+ "usercssConfigIncomplete": {
+ "message": "設定ダイアログの表示後に、スタイルが更新または削除されました。スタイルのメタデータの破損を避けるため、これらの変数は保存されませんでした:"
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "コードで@nameを指定してください"
+ },
+ "usercssReplaceTemplateConfirmation": {
+ "message": "現在のコードで、新しいUsercssスタイルのデフォルト・テンプレートを置き換えますか?"
+ },
+ "usercssReplaceTemplateName": {
+ "message": "@name が指定されていません"
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "ここにコードを挿入..."
+ },
+ "versionInvalidOlder": {
+ "message": "インストール済みのスタイルより古いバージョンです。"
+ },
+ "writeStyleFor": {
+ "message": "次のスタイルを書く:"
+ },
+ "writeStyleForURL": {
+ "message": "このURL"
+ },
+ "zipStyles": {
+ "message": "スタイルをZip圧縮中..."
}
}
diff --git a/_locales/ko/messages.json b/_locales/ko/messages.json
index 26a35640..a95cd11f 100644
--- a/_locales/ko/messages.json
+++ b/_locales/ko/messages.json
@@ -1,23 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylus는 일부 파일 형식(예: pdf, json 파일 등)에 접근할 수 없습니다."
+ },
"addStyleLabel": {
- "message": "새 스타일 작성",
- "description": "Label for the button to go to the add style page"
+ "message": "새 스타일 작성"
},
"addStyleTitle": {
- "message": "스타일 추가",
- "description": "Title of the page for adding styles"
+ "message": "스타일 추가"
},
"alphaChannel": {
- "message": "투명도",
- "description": "Label of color's opacity"
+ "message": "투명도"
},
"appliesAdd": {
- "message": "추가",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "추가"
},
"appliesDisplay": {
"message": "적용 대상: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,292 +23,232 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "그 이상",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "그 이상"
},
"appliesDomainOption": {
- "message": "URL의 도메인이 다음과 같음",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL의 도메인이 다음과 같음"
},
"appliesHelp": {
- "message": "'적용 대상'은 이 섹션에 작성한 스타일을 어느 URL에 적용할지 정합니다",
- "description": "Help text for 'applies to' section"
+ "message": "'적용 대상'은 이 섹션에 작성한 스타일을 어느 URL에 적용할지 정합니다"
},
"appliesLabel": {
- "message": "적용 대상",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "적용 대상"
},
"appliesLineWidgetLabel": {
- "message": "'적용 대상' 정보 표시",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "'적용 대상' 정보 표시"
},
"appliesLineWidgetWarning": {
- "message": "경량화(Minify) 된 CSS에선 작동하지 않습니다.",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "경량화(Minify) 된 CSS에선 작동하지 않습니다."
},
"appliesRegexpOption": {
- "message": "URL이 다음 정규 표현식과 일치함",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URL이 다음 정규 표현식과 일치함"
},
"appliesRemove": {
- "message": "제거",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "제거"
},
"appliesRemoveError": {
- "message": "마지막 '적용 대상' 항목은 제거할 수 없습니다",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "마지막 '적용 대상' 항목은 제거할 수 없습니다"
},
"appliesSpecify": {
- "message": "개별 지정",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "개별 지정"
},
"appliesToEverything": {
- "message": "전부",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "전부"
},
"appliesUrlPrefixOption": {
- "message": "URL의 앞부분이 다음과 같음",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL의 앞부분이 다음과 같음"
},
"applyAllUpdates": {
- "message": "모든 업데이트 적용",
- "description": "Label for the button to apply all detected updates"
+ "message": "모든 업데이트 적용"
},
"author": {
- "message": "작성자",
- "description": "Label for the style author"
+ "message": "작성자"
},
"backupButtons": {
- "message": "백업",
- "description": "Heading for backup"
+ "message": "백업"
},
"backupMessage": {
- "message": "파일을 선택하거나, 이 페이지로 파일을 드래그앤드롭하세요.",
- "description": "Message for backup"
+ "message": "파일을 선택하거나, 이 페이지로 파일을 드래그앤드롭하세요."
},
"bckpInstStyles": {
- "message": "스타일 내보내기",
- "description": ""
+ "message": "스타일 내보내기"
},
"checkAllUpdates": {
- "message": "모든 스타일 업데이트 확인",
- "description": "Label for the button to check all styles for updates"
+ "message": "모든 스타일 업데이트 확인"
},
"checkAllUpdatesForce": {
- "message": "한 번 더 확인해보세요. 아직 아무것도 수정하지 않았답니다!",
- "description": "Label for the button to apply all detected updates"
+ "message": "한 번 더 확인해보세요. 아직 아무것도 수정하지 않았답니다!"
},
"checkForUpdate": {
- "message": "업데이트 확인",
- "description": "Label for the button to check a single style for an update"
+ "message": "업데이트 확인"
},
"checkingForUpdate": {
- "message": "확인 중...",
- "description": "Text to display when checking a style for an update"
+ "message": "확인 중..."
},
"clickToUninstall": {
- "message": "클릭하여 제거",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "클릭하여 제거"
},
"cm_autoCloseBrackets": {
- "message": "괄호 및 따옴표 자동으로 닫기",
- "description": "Label for the checkbox in the style editor."
+ "message": "괄호 및 따옴표 자동으로 닫기"
},
"cm_autoCloseBracketsTooltip": {
- "message": "()[]''\"\"의 여는 기호를 입력할 시, 닫는 기호를 자동으로 추가합니다",
- "description": "Label for the checkbox in the style editor."
+ "message": "()[]''\"\"의 여는 기호를 입력할 시, 닫는 기호를 자동으로 추가합니다"
},
"cm_autocompleteOnTyping": {
- "message": "타이핑 자동완성",
- "description": "Label for the checkbox in the style editor."
+ "message": "타이핑 자동완성"
},
"cm_colorpicker": {
- "message": "CSS 색상에 Colorpicker(색상 선택기) 표시",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "CSS 색상에 Colorpicker(색상 선택기) 표시"
},
"cm_indentWithTabs": {
- "message": "자동 들여쓰기 시 탭 사용",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "자동 들여쓰기 시 탭 사용"
},
"cm_keyMap": {
- "message": "키 매핑",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "키 매핑"
},
"cm_lineWrapping": {
- "message": "자동 줄바끔",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "자동 줄바끔"
},
"cm_matchHighlight": {
- "message": "하이라이트",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "하이라이트"
},
"cm_matchHighlightSelection": {
- "message": "선택된 것만",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "선택된 것만"
},
"cm_matchHighlightToken": {
- "message": "커서 위치의 토큰",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "커서 위치의 토큰"
},
"cm_resizeGripHint": {
- "message": "더블 클릭으로 높이 최대화/이전 높이로 복구할 수 있습니다",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "더블 클릭으로 높이 최대화/이전 높이로 복구할 수 있습니다"
},
"cm_selectByTokens": {
- "message": "더블 클릭으로 토큰 선택",
- "description": "Label for the checkbox in the editor."
+ "message": "더블 클릭으로 토큰 선택"
},
"cm_selectByTokensTooltip": {
- "message": "토큰 예시: .foo-bar-2 #aabbcc 0.32 !important\n비활성화 시: 문장 부호로 구분된 단어 선택",
- "description": ""
+ "message": "토큰 예시: .foo-bar-2 #aabbcc 0.32 !important\n비활성화 시: 문장 부호로 구분된 단어 선택"
},
"cm_smartIndent": {
- "message": "자동 들여쓰기",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "자동 들여쓰기"
},
"cm_tabSize": {
- "message": "탭 크기",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "탭 크기"
},
"cm_theme": {
- "message": "테마",
- "description": "Label for the style editor's CSS theme."
+ "message": "테마"
},
"colorpickerSwitchFormatTooltip": {
- "message": "16 진수-> RGB -> HSL 순서로 형식을 변환합니다.\nShift+클릭을 이용해 역순으로 변환할 수 있습니다.\nPgUp(PageUp), PgDn(PageDown) 키도 사용 가능합니다.",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "16 진수-> RGB -> HSL 순서로 형식을 변환합니다.\nShift+클릭을 이용해 역순으로 변환할 수 있습니다.\nPgUp(PageUp), PgDn(PageDown) 키도 사용 가능합니다."
},
"colorpickerTooltip": {
- "message": "색상 선택기 열기",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "색상 선택기 열기"
},
"configOnChange": {
- "message": "변경 시",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "변경 시"
},
"configOnChangeTooltip": {
- "message": "자동으로 변경 사항 저장 및 적용",
- "description": ""
+ "message": "자동으로 변경 사항 저장 및 적용"
},
"configureStyle": {
- "message": "설정",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "설정"
},
"configureStyleOnHomepage": {
- "message": "홈페이지에서 설정",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "홈페이지에서 설정"
},
"confirmCancel": {
- "message": "취소",
- "description": ""
+ "message": "취소"
},
"confirmClose": {
- "message": "닫기",
- "description": "'Close' button in a confirm dialog"
+ "message": "닫기"
},
"confirmDefault": {
- "message": "기본값 사용",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "기본값 사용"
},
"confirmDelete": {
- "message": "삭제",
- "description": ""
+ "message": "삭제"
},
"confirmDiscardChanges": {
- "message": "변경 사항을 무시하시겠습니까?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "변경 사항을 무시하시겠습니까?"
},
"confirmNo": {
- "message": "아니오",
- "description": "'No' button in a confirm dialog"
+ "message": "아니오"
},
"confirmOK": {
- "message": "확인",
- "description": ""
+ "message": "확인"
},
"confirmSave": {
- "message": "저장",
- "description": "'Save' button in a confirm dialog"
+ "message": "저장"
},
"confirmStop": {
- "message": "중지",
- "description": "'Stop' button in a confirm dialog"
+ "message": "중지"
},
"confirmYes": {
- "message": "예",
- "description": "'Yes' button in a confirm dialog"
+ "message": "예"
+ },
+ "connectingDropbox": {
+ "message": "Dropbox 연결 중..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "Dropbox 연결은 웹 스토어에서 직접 설치한 앱에서만 가능합니다."
},
"copied": {
- "message": "클립보드에 복사됨",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "클립보드에 복사됨"
},
"copy": {
- "message": "클립보드에 복사",
- "description": "Tooltip for elements which can be copied"
+ "message": "클립보드에 복사"
+ },
+ "customNameHint": {
+ "message": "사용자 정의 이름을 여기에 입력하여 업데이트 중단 없이 UI에서 스타일의 이름을 바꾸세요"
+ },
+ "customNameResetHint": {
+ "message": "사용자 정의 이름의 사용을 중단하고, 스타일의 자체 이름으로 전환하세요"
},
"dateInstalled": {
- "message": "설치된 날짜",
- "description": "Option text for the user to sort the style by install date"
+ "message": "설치된 날짜"
},
"dateUpdated": {
- "message": "변경된 날짜",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "변경된 날짜"
},
"dbError": {
- "message": "Stylus 데이터베이스를 사용하던 중 오류가 발생했습니다. 해결 방법 안내 웹페이지를 여시겠습니까?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Stylus 데이터베이스를 사용하던 중 오류가 발생했습니다. 해결 방법 안내 웹페이지를 여시겠습니까?"
},
"defaultTheme": {
- "message": "기본",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "기본"
},
"deleteStyleConfirm": {
- "message": "이 스타일을 정말 삭제하시겠습니까?",
- "description": "Confirmation before deleting a style"
+ "message": "이 스타일을 정말 삭제하시겠습니까?"
},
"deleteStyleLabel": {
- "message": "삭제",
- "description": "Label for the button to delete a style"
+ "message": "삭제"
},
"description": {
- "message": "Stylus로 웹페이지를 새롭게 디자인해보세요. 유명한 사이트의 테마, 스킨도 간단하게 설치할 수 있는 사용자 스타일 관리자입니다.",
- "description": "Extension description"
+ "message": "Stylus로 웹페이지를 새롭게 디자인해보세요. 유명한 사이트의 테마, 스킨도 간단하게 설치할 수 있는 사용자 스타일 관리자입니다."
},
"disableAllStyles": {
- "message": "모든 스타일 비활성화",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "모든 스타일 비활성화"
},
"disableStyleLabel": {
- "message": "비활성화",
- "description": "Label for the button to disable a style"
+ "message": "비활성화"
},
"dragDropMessage": {
- "message": "이 페이지 아무 곳에나 백업 파일을 놓으세요.",
- "description": "Drag'n'drop message"
+ "message": "이 페이지 아무 곳에나 백업 파일을 놓으세요."
},
"dragDropUsercssTabstrip": {
- "message": "파일을 설치하려면, 파일을 탭 표시줄(탭 제목이 표시되는 영역)에 놓으세요.",
- "description": "Message popup shown when erroneously dropping a usercss file into the manager page"
+ "message": "파일을 설치하려면, 파일을 탭 표시줄(탭 제목이 표시되는 영역)에 놓으세요."
},
"editDeleteText": {
- "message": "삭제",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "삭제"
},
"editGotoLine": {
- "message": "줄 이동",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "줄 이동"
},
"editStyleHeading": {
- "message": "스타일 수정",
- "description": "Title of the page for editing styles"
+ "message": "스타일 수정"
},
"editStyleLabel": {
- "message": "수정",
- "description": "Label for the button to go to the edit style page"
+ "message": "수정"
},
"editStyleTitle": {
"message": " $stylename$ 스타일 수정",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -318,220 +256,180 @@
}
},
"enableStyleLabel": {
- "message": "활성화",
- "description": "Label for the button to enable a style"
+ "message": "활성화"
},
"excludeStyleByDomainLabel": {
- "message": "현재 도메인 제외",
- "description": ""
+ "message": "현재 도메인 제외"
},
"excludeStyleByUrlLabel": {
- "message": "현재 URL 제외",
- "description": ""
+ "message": "현재 URL 제외"
},
"exportLabel": {
- "message": "내보내기",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "내보내기"
+ },
+ "exportSavedSuccess": {
+ "message": "파일 저장에 성공했습니다."
},
"externalFeedback": {
- "message": "피드백",
- "description": "Label for the external link to send feedback for the style"
+ "message": "피드백"
},
"externalHomepage": {
- "message": "홈페이지",
- "description": "Label for the external link to style's homepage"
+ "message": "홈페이지"
},
"externalLink": {
- "message": "외부 링크",
- "description": "Label for external links"
+ "message": "외부 링크"
},
"externalSupport": {
- "message": "지원",
- "description": "Label for the external link to style's support site"
+ "message": "지원"
},
"externalUsercssDocument": {
- "message": "Usercss 안내 문서",
- "description": "Label for the external link to usercss documentation"
+ "message": "Usercss 안내 문서"
},
"filteredStyles": {
"message": "$numTotal$개 중 $numShown$개 표시",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "현재 적용된 필터와 일치하는 스타일이 없습니다",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "현재 적용된 필터와 일치하는 스타일이 없습니다"
},
"findStyles": {
- "message": "스타일 찾기",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "스타일 찾기"
},
"findStylesForSite": {
- "message": "현재 사이트에 맞는 스타일 찾기",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "현재 사이트에 맞는 스타일 찾기"
},
"findStylesInline": {
- "message": "팝업창 내에서",
- "description": "Text for a checkbox that opens search results 'inline' (within the Stylus popup window)"
+ "message": "팝업창 내에서"
},
"findStylesInlineTooltip": {
- "message": "이 창에서 검색 결과 표시",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "이 창에서 검색 결과 표시"
},
"genericAdd": {
- "message": "추가",
- "description": "Used in various places for an action that adds something"
+ "message": "추가"
},
"genericClone": {
- "message": "복제",
- "description": "Used in various places for an action that clones something"
+ "message": "복제"
},
"genericDisabledLabel": {
- "message": "비활성화됨",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "비활성화됨"
},
"genericEnabledLabel": {
- "message": "활성화됨",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "활성화됨"
},
"genericError": {
- "message": "에러",
- "description": "Used in various places to indicate some error occurred."
+ "message": "에러"
},
"genericHistoryLabel": {
- "message": "기록",
- "description": "Used in various places to show a history log of something"
+ "message": "기록"
},
"genericNext": {
- "message": "다음",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "다음"
},
"genericPrevious": {
- "message": "이전",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "이전"
},
"genericResetLabel": {
- "message": "초기화",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "초기화"
},
"genericSavedMessage": {
- "message": "저장됨",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "저장됨"
},
"genericTitle": {
- "message": "제목",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "제목"
},
"genericUnknown": {
- "message": "알 수 없음",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "알 수 없음"
+ },
+ "gettingStyles": {
+ "message": "모든 스타일 가져오는 중..."
},
"helpAlt": {
- "message": "도움말",
- "description": "Alternate text for help buttons"
+ "message": "도움말"
},
"helpKeyMapCommand": {
- "message": "명령어를 입력하세요",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "명령어를 입력하세요"
},
"helpKeyMapHotkey": {
- "message": "단축키를 입력하세요",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "단축키를 입력하세요"
},
"hostDisabled": {
- "message": "이 호스트는 현재 사용 중인 브라우저 버전의 버그로 인해 비활성화되었습니다",
- "description": "Tooltip for cloud host disabled"
+ "message": "이 호스트는 현재 사용 중인 브라우저 버전의 버그로 인해 비활성화되었습니다"
},
"importAppendLabel": {
- "message": "스타일에 추가",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "스타일에 추가"
},
"importAppendTooltip": {
- "message": "가져온 스타일을 현재 스타일에 추가",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "가져온 스타일을 현재 스타일에 추가"
},
"importLabel": {
- "message": "가져오기",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "가져오기"
+ },
+ "importPreprocessor": {
+ "message": "@preprocessor
가 있는 스타일은 고전 모드에서 동작하지 않을 것입니다. Usercss 모드로 편집기를 전환할 수 있습니다: 1) 스타일 관리자 열기, 2) “Usercss로” 확인란 활성화하기, 3) “새 스타일 쓰기”\n\n지금 바로 가져오기?"
+ },
+ "importPreprocessorTitle": {
+ "message": "@preprocessor로 인한 잠재적 문제가 있습니다"
},
"importReplaceLabel": {
- "message": "스타일 덮어쓰기",
- "description": "Label for the button to import and overwrite current style"
+ "message": "스타일 덮어쓰기"
},
"importReplaceTooltip": {
- "message": "현재 스타일을 버리고, 가져온 스타일로 덮어씁니다.",
- "description": "Label for the button to import and overwrite current style"
+ "message": "현재 스타일을 버리고, 가져온 스타일로 덮어씁니다."
},
"importReportLegendAdded": {
- "message": "추가됨",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "추가됨"
},
"importReportLegendIdentical": {
- "message": "중복 생략됨",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "중복 생략됨"
},
"importReportLegendInvalid": {
- "message": "유효하지 않아 생략됨",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "유효하지 않아 생략됨"
},
"importReportLegendUpdatedBoth": {
- "message": "메타데이터, 코드 모두 업데이트됨",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "메타데이터, 코드 모두 업데이트됨"
},
"importReportLegendUpdatedCode": {
- "message": "코드가 업데이트됨",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "코드가 업데이트됨"
},
"importReportLegendUpdatedMeta": {
- "message": "메타데이터 업데이트됨",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "메타데이터 업데이트됨"
},
"importReportTitle": {
- "message": "스타일 가져오기 완료",
- "description": "Title of the report shown after importing styles"
+ "message": "스타일 가져오기 완료"
},
"importReportUnchanged": {
- "message": "변경사항 없음",
- "description": "Message in the report shown after importing styles"
+ "message": "변경사항 없음"
},
"importReportUndone": {
- "message": "스타일 되돌려짐",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "스타일 되돌려짐"
},
"importReportUndoneTitle": {
- "message": "가져오기가 취소되었습니다.",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "가져오기가 취소되었습니다."
},
"installButton": {
- "message": "스타일 설치",
- "description": "Label for install button"
+ "message": "스타일 설치"
},
"installButtonInstalled": {
- "message": "스타일 설치됨",
- "description": "Text displayed when the style is successfully installed"
+ "message": "스타일 설치됨"
},
"installButtonReinstall": {
- "message": "스타일 재설치",
- "description": "Label for reinstall button"
+ "message": "스타일 재설치"
},
"installButtonUpdate": {
- "message": "스타일 업데이트",
- "description": "Label for update button"
+ "message": "스타일 업데이트"
},
"installUpdate": {
- "message": "업데이트 설치",
- "description": "Label for the button to install an update for a single style"
+ "message": "업데이트 설치"
},
"installUpdateFrom": {
"message": "현재 스타일은 $url$에서 업데이트되었습니다",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -539,32 +437,25 @@
}
},
"installUpdateFromLabel": {
- "message": "업데이트 확인",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "업데이트 확인"
},
"license": {
- "message": "라이센스",
- "description": "Label for the license"
+ "message": "라이센스"
},
"linkGetHelp": {
- "message": "도움말",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "도움말"
},
"linkGetStyles": {
- "message": "스타일 찾기",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "스타일 찾기"
},
"linkStylusWiki": {
- "message": "위키",
- "description": "Wiki link text on the manage page e.g. https://github.com/openstyles/stylus/wiki"
+ "message": "위키"
},
"linkTranslate": {
- "message": "번역",
- "description": "Transifex link text on the manage page"
+ "message": "번역"
},
"linterCSSLintIncompatible": {
"message": "CSSLint는 $preprocessorname$ 전처리기를 지원하지 않습니다.",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -572,12 +463,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(규칙 설정: 0 = 비활성화, 1 = 경고(warning), 2 = 에러)",
- "description": "CSSLint rule config values"
+ "message": "(규칙 설정: 0 = 비활성화, 1 = 경고(warning), 2 = 에러)"
},
"linterConfigPopupTitle": {
"message": "$linter$ 규칙 설정",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -585,20 +474,16 @@
}
},
"linterConfigTooltip": {
- "message": "현재 Linter를 설정하려면 클릭하세요",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "현재 Linter를 설정하려면 클릭하세요"
},
"linterInvalidConfigError": {
- "message": "유효하지 않은 설정으로 인해 저장할 수 없음:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "유효하지 않은 설정으로 인해 저장할 수 없음:"
},
"linterIssues": {
- "message": "문제점",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "문제점"
},
"linterIssuesHelp": {
"message": "이 문제점은 $link$에 의해 발견됨:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -606,144 +491,93 @@
}
},
"linterJSONError": {
- "message": "유효하지 않은 JSON 형식입니다",
- "description": "Setting linter config with invalid JSON"
+ "message": "유효하지 않은 JSON 형식입니다"
},
"linterResetMessage": {
- "message": "실수로 초기화한 경우, 텍스트 박스 내에서 Ctrl+Z (혹은 Cmd+Z)를 눌러 취소할 수 있습니다",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "실수로 초기화한 경우, 텍스트 박스 내에서 Ctrl+Z (혹은 Cmd+Z)를 눌러 취소할 수 있습니다"
},
"linterRulesLink": {
- "message": "전체 규칙 목록 보기",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "전체 규칙 목록 보기"
},
"liveReloadError": {
- "message": "파일을 주시하는 동안 오류가 발생함",
- "description": "The label of live-reload error"
+ "message": "파일을 주시하는 동안 오류가 발생함"
},
"liveReloadInstallHint": {
- "message": "외부 요인으로 인한 변경 시 스타일을 자동으로 업데이트하려면 이 탭을 열어두세요.",
- "description": "The label of live-reload feature"
+ "message": "외부 요인으로 인한 변경 시 스타일을 자동으로 업데이트하려면 이 탭을 열어두세요."
},
"liveReloadInstallHintFF": {
- "message": "외부 요인으로 인한 변경 시 스타일을 자동으로 업데이트하려면 이 탭과 원래 탭을 모두 열어두세요.",
- "description": "The extra hint of live-reload feature shown only for file:// URLs in Firefox"
+ "message": "외부 요인으로 인한 변경 시 스타일을 자동으로 업데이트하려면 이 탭과 원래 탭을 모두 열어두세요."
},
"liveReloadLabel": {
- "message": "실시간 리로드",
- "description": "The label of live-reload feature"
+ "message": "실시간 리로드"
},
"manageFavicons": {
- "message": "적용 대상 열에 Favicon(사이트 아이콘) 표시",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "적용 대상 열에 Favicon(사이트 아이콘) 표시"
},
"manageFaviconsGray": {
- "message": "회색으로 표시",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "회색으로 표시"
},
"manageFaviconsHelp": {
- "message": "Stylus는 https://www.google.com/s2/favicons 외부 서비스를 이용합니다",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus는 https://www.google.com/s2/favicons 외부 서비스를 이용합니다"
},
"manageFilters": {
- "message": "필터",
- "description": "Label for filters container"
+ "message": "필터"
},
"manageHeading": {
- "message": "설치한 스타일 목록",
- "description": "Heading for the manage page"
+ "message": "설치한 스타일 목록"
},
"manageMaxTargets": {
- "message": "적용 대상 항목 수",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "적용 대상 항목 수"
},
"manageNewStyleAsUsercss": {
- "message": "Usercss로 작성",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "Usercss로 작성"
},
"manageNewUI": {
- "message": "새로운 관리 페이지 UI 레이아웃",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "새로운 관리 페이지 UI 레이아웃"
},
"manageOnlyDisabled": {
- "message": "비활성화된 스타일만",
- "description": "Checkbox to show only disabled styles"
+ "message": "비활성화된 스타일만"
},
"manageOnlyEnabled": {
- "message": "활성화된 스타일만",
- "description": "Checkbox to show only enabled styles"
+ "message": "활성화된 스타일만"
},
"manageOnlyExternal": {
- "message": "외부에서 설치한 스타일만",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "외부에서 설치한 스타일만"
},
"manageOnlyLocal": {
- "message": "로컬에서 생성한 스타일만",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "로컬에서 생성한 스타일만"
},
"manageOnlyLocalTooltip": {
- "message": "(userstyles.org 페이지에서 설치하지 않은 스타일)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(userstyles.org 페이지에서 설치하지 않은 스타일)"
},
"manageOnlyNonUsercss": {
- "message": "Usercss가 아닌 스타일만",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Usercss가 아닌 스타일만"
},
"manageOnlyUpdates": {
- "message": "업데이트 혹은 문제점이 있는 것만",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "업데이트 혹은 문제점이 있는 것만"
},
"manageOnlyUsercss": {
- "message": "Usercss 스타일만",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Usercss 스타일만"
},
"menuShowBadge": {
- "message": "활성화된 스타일 개수 표시",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "활성화된 스타일 개수 표시"
},
"meta_invalidCheckboxDefault": {
- "message": "@var 체크박스가 유효하지 않습니다. 값은 0, 1중 하나여야 합니다.",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "@var 체크박스가 유효하지 않습니다. 값은 0, 1중 하나여야 합니다."
},
"meta_invalidColor": {
"message": "@var 색상이 유효하지 않습니다. $color$은(는) 색상이 아닙니다.",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
}
}
},
+ "meta_invalidNumber": {
+ "message": "숫자를 입력하세요"
+ },
"meta_invalidRange": {
"message": "@var $type$이(가) 유효하지 않습니다. 값은 숫자나 배열이어야 합니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "@var $type$이(가) 유효하지 않습니다. 구성단위가 여러 개 정의되었습니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "@var $type$이(가) 유효하지 않습니다. 배열의 요소가 너무 많습니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeValue": {
- "message": "@var $type$이(가) 유효하지 않습니다. 배열 요소는 숫자, 문자열, null 중 하나여야 합니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -752,16 +586,6 @@
},
"meta_invalidRangeDefault": {
"message": "@var $type$이(가) 유효하지 않습니다. 기본 값이 null입니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMin": {
- "message": "@var $type$이(가) 유효하지 않습니다. 기본값이 최솟값보다 작습니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -770,7 +594,22 @@
},
"meta_invalidRangeMax": {
"message": "@var $type$이(가) 유효하지 않습니다. 기본값이 최댓값보다 큽니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMin": {
+ "message": "@var $type$이(가) 유효하지 않습니다. 기본값이 최솟값보다 작습니다.",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "@var $type$이(가) 유효하지 않습니다. 구성단위가 여러 개 정의되었습니다.",
"placeholders": {
"type": {
"content": "$1"
@@ -779,7 +618,14 @@
},
"meta_invalidRangeStep": {
"message": "@var $type$이(가) 유효하지 않습니다. 기본값이 단계의 변수가 아닙니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "@var $type$이(가) 유효하지 않습니다. 배열의 요소가 너무 많습니다.",
"placeholders": {
"type": {
"content": "$1"
@@ -788,7 +634,6 @@
},
"meta_invalidRangeUnits": {
"message": "@var $type$이(가) 유효하지 않습니다. '$units$'은(는) 유효한 구성단위가 아닙니다.",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -798,37 +643,40 @@
}
}
},
- "meta_invalidSelect": {
- "message": "유효하지 않은 @var 선택입니다. 기본 값은 배열이나 오브젝트여야 합니다.",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidRangeValue": {
+ "message": "@var $type$이(가) 유효하지 않습니다. 배열 요소는 숫자, 문자열, null 중 하나여야 합니다.",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
},
- "meta_invalidSelectValue": {
- "message": "유효하지 않은 @var 선택입니다. 배열, 오브젝트 내 값은 문자열이어야 합니다.",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidSelect": {
+ "message": "유효하지 않은 @var 선택입니다. 기본 값은 배열이나 오브젝트여야 합니다."
},
"meta_invalidSelectEmptyOptions": {
- "message": "유효하지 않은 @var 선택입니다. 옵션 목록이 비었습니다.",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "유효하지 않은 @var 선택입니다. 옵션 목록이 비었습니다."
},
"meta_invalidSelectLabel": {
- "message": "유효하지 않은 @var 선택입니다. 옵션 라벨이 비었습니다.",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "유효하지 않은 @var 선택입니다. 옵션 라벨이 비었습니다."
},
"meta_invalidSelectMultipleDefaults": {
- "message": "유효하지 않은 @var 선택입니다. 기본 옵션이 여러 번 정의되었습니다.",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "유효하지 않은 @var 선택입니다. 기본 옵션이 여러 번 정의되었습니다."
},
"meta_invalidSelectNameDuplicated": {
- "message": "유효하지 않은 @var 선택입니다. 옵션명이 중복되었습니다.",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "유효하지 않은 @var 선택입니다. 옵션명이 중복되었습니다."
+ },
+ "meta_invalidSelectValue": {
+ "message": "유효하지 않은 @var 선택입니다. 배열, 오브젝트 내 값은 문자열이어야 합니다."
},
"meta_invalidSelectValueMismatch": {
- "message": "유효하지 않은 @var 선택입니다. 옵션 목록에 값이 존재하지 않습니다.",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "유효하지 않은 @var 선택입니다. 옵션 목록에 값이 존재하지 않습니다."
+ },
+ "meta_invalidString": {
+ "message": "따옴표로 묶인 문자열을 입력하세요"
},
"meta_invalidURLProtocol": {
"message": "$protocol$은(는) 유효하지 않은 URL 프로토콜입니다. http, https만 허용됩니다.",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
@@ -836,29 +684,13 @@
}
},
"meta_invalidVersion": {
- "message": "유효하지 않은 버전 숫자입니다. $version$은(는) 유의적 버전 패턴과 일치하지 않습니다.",
- "description": "Error displayed when @version is invalid",
- "placeholders": {
- "version": {
- "content": "$1"
- }
- }
- },
- "meta_invalidNumber": {
- "message": "숫자를 입력하세요",
- "description": "Error displayed when the value is expected to be a number"
- },
- "meta_invalidString": {
- "message": "따옴표로 묶인 문자열을 입력하세요",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "유효하지 않은 버전 숫자입니다"
},
"meta_invalidWord": {
- "message": "단어를 입력하세요",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "단어를 입력하세요"
},
"meta_missingChar": {
"message": "$chars$ 문자를 입력하세요",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -866,12 +698,10 @@
}
},
"meta_missingEOT": {
- "message": "EOT 데이터를 입력하세요",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "EOT 데이터를 입력하세요"
},
"meta_missingMandatory": {
"message": "필수 메타 데이터인 $keys$이(가) 누락되었습니다",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -880,7 +710,6 @@
},
"meta_unknownJSONLiteral": {
"message": "유효하지 않은 JSON입니다. $literal$은(는) 유효한 JSON 리터럴이 아닙니다.",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
@@ -889,16 +718,22 @@
},
"meta_unknownMeta": {
"message": "알 수 없는 메타데이터 $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
}
},
+ "meta_unknownPreprocessor": {
+ "message": "알 수 없는 @preprocessor $preprocessor$",
+ "placeholders": {
+ "preprocessor": {
+ "content": "$1"
+ }
+ }
+ },
"meta_unknownVarType": {
"message": "알 수 없는 @$varkey$ 타입: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -908,158 +743,131 @@
}
}
},
- "meta_unknownPreprocessor": {
- "message": "알 수 없는 @preprocessor $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
- "placeholders": {
- "preprocessor": {
- "content": "$1"
- }
- }
+ "noFileToImport": {
+ "message": "스타일을 가져오려면, 먼저 내보내야 합니다."
},
"noStylesForSite": {
- "message": "현재 사이트에 설치한 스타일이 없습니다.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "현재 사이트에 설치한 스타일이 없습니다."
+ },
+ "numberedLine": {
+ "message": "행:"
},
"openManage": {
- "message": "관리",
- "description": "Link to open the manage page."
+ "message": "관리"
},
"openOptions": {
- "message": "옵션",
- "description": "Go to Options UI"
+ "message": "옵션"
},
"openStylesManager": {
- "message": "스타일 관리자 열기",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "스타일 관리자 열기"
},
"optionsActions": {
- "message": "동작",
- "description": ""
+ "message": "동작"
},
"optionsAdvanced": {
- "message": "고급",
- "description": ""
+ "message": "고급"
},
"optionsAdvancedContextDelete": {
- "message": "편집기 컨텍스트 메뉴에 '삭제' 추가",
- "description": ""
+ "message": "편집기 컨텍스트 메뉴에 '삭제' 추가"
},
"optionsAdvancedExposeIframes": {
- "message": "iframe을 HTML[stylus-iframe]으로 노출",
- "description": ""
+ "message": "iframe을 HTML[stylus-iframe]으로 노출"
},
"optionsAdvancedExposeIframesNote": {
- "message": "최상위 사이트 도메인을 각 iframe에 노출합니다.\n다음과 같이 iframe용 CSS를 작성할 수 있습니다:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }",
- "description": "Add attribute to iframe; make sure to include the double $$ in the css example, or the `$=` will be omitted in the displayed text."
+ "message": "최상위 사이트 도메인을 각 iframe에 노출합니다.\n다음과 같이 iframe용 CSS를 작성할 수 있습니다:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "새로운 스타일을 Usercss로 작성",
- "description": ""
+ "message": "새로운 스타일을 Usercss로 작성"
+ },
+ "optionsAdvancedPatchCsp": {
+ "message": "스타일 자원을 허용하도록 CSP
패치하기"
+ },
+ "optionsAdvancedStyleViaXhr": {
+ "message": "즉시 주입 모드"
},
"optionsBadgeDisabled": {
- "message": "비활성화 시의 배경 색",
- "description": ""
+ "message": "비활성화 시의 배경 색"
},
"optionsBadgeNormal": {
- "message": "배경 색",
- "description": ""
+ "message": "배경 색"
},
"optionsCheck": {
- "message": "스타일 업데이트",
- "description": ""
+ "message": "스타일 업데이트"
},
"optionsCheckUpdate": {
- "message": "사용 가능한 모든 업데이트 확인 및 설치",
- "description": ""
+ "message": "사용 가능한 모든 업데이트 확인 및 설치"
},
"optionsCustomizeBadge": {
- "message": "툴바 아이콘 뱃지",
- "description": ""
+ "message": "툴바 아이콘 뱃지"
},
"optionsCustomizeIcon": {
- "message": "툴바 아이콘",
- "description": ""
+ "message": "툴바 아이콘"
},
"optionsCustomizePopup": {
- "message": "팝업",
- "description": ""
- },
- "optionsCustomizeUpdate": {
- "message": "업데이트",
- "description": ""
+ "message": "팝업"
},
"optionsCustomizeSync": {
- "message": "클라우드에 동기화",
- "description": ""
+ "message": "클라우드에 동기화"
+ },
+ "optionsCustomizeUpdate": {
+ "message": "업데이트"
},
"optionsHeading": {
- "message": "옵션",
- "description": "Heading for options section on manage page."
+ "message": "옵션"
},
"optionsIconDark": {
- "message": "어두운 브라우저 테마",
- "description": ""
+ "message": "어두운 브라우저 테마"
},
"optionsIconLight": {
- "message": "밝은 브라우저 테마",
- "description": ""
+ "message": "밝은 브라우저 테마"
},
"optionsOpen": {
- "message": "열기",
- "description": ""
+ "message": "열기"
},
"optionsOpenManager": {
- "message": "스타일 관리",
- "description": ""
+ "message": "스타일 관리"
},
"optionsPopupWidth": {
- "message": "팝업 너비 (픽셀 단위)",
- "description": ""
+ "message": "팝업 너비 (픽셀 단위)"
},
"optionsReset": {
- "message": "기본 값으로 설정 초기화",
- "description": ""
+ "message": "기본 값으로 설정 초기화"
},
"optionsResetButton": {
- "message": "설정 초기화",
- "description": ""
+ "message": "설정 초기화"
+ },
+ "optionsStylusThemes": {
+ "message": "스타일러스 UI 테마 찾기"
},
"optionsSubheading": {
- "message": "추가 옵션",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "Stylish나 구버전 스타일 백업을 가져왔을 경우, 스타일들을 최신 버전으로 유지하려면 스타일 매니저에서 한 번씩 수동으로 업데이트 검사를 진행해 주세요.",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "Userstyle 자동 업데이트 간격 (시간 단위, 0일시 업데이트하지 않음)",
- "description": ""
- },
- "optionsSyncNone": {
- "message": "없음",
- "description": ""
+ "message": "추가 옵션"
},
"optionsSyncConnect": {
- "message": "연결",
- "description": ""
+ "message": "연결"
},
"optionsSyncDisconnect": {
- "message": "연결 끊기",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "지금 동기화",
- "description": ""
+ "message": "연결 끊기"
},
"optionsSyncLogin": {
- "message": "로그인",
- "description": ""
+ "message": "로그인"
+ },
+ "optionsSyncNone": {
+ "message": "없음"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "연결됨"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "연결 중..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "연결 끊김"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "연결 끊는 중..."
},
"optionsSyncStatusPull": {
"message": "스타일 다운로드 중 ($loaded$/$total$)",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1071,7 +879,6 @@
},
"optionsSyncStatusPush": {
"message": "스타일 업로드 중 ($loaded$/$total$)",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1081,257 +888,230 @@
}
}
},
+ "optionsSyncStatusRelogin": {
+ "message": "세션의 유효기간이 지났습니다. 다시 로그인하기 바랍니다."
+ },
"optionsSyncStatusSyncing": {
- "message": "동기화 중...",
- "description": ""
+ "message": "동기화 중..."
},
- "optionsSyncStatusConnecting": {
- "message": "연결 중...",
- "description": ""
+ "optionsSyncSyncNow": {
+ "message": "지금 동기화"
},
- "optionsSyncStatusConnected": {
- "message": "연결됨",
- "description": ""
+ "optionsUpdateImportNote": {
+ "message": "Stylish나 구버전 스타일 백업을 가져왔을 경우, 스타일들을 최신 버전으로 유지하려면 스타일 매니저에서 한 번씩 수동으로 업데이트 검사를 진행해 주세요."
},
- "optionsSyncStatusDisconnecting": {
- "message": "연결 끊는 중...",
- "description": ""
+ "optionsUpdateInterval": {
+ "message": "Userstyle 자동 업데이트 간격 (시간 단위, 0일시 업데이트하지 않음)"
},
- "optionsSyncStatusDisconnected": {
- "message": "연결 끊김",
- "description": ""
+ "overwriteFileExport": {
+ "message": "기존 파일을 덮어쓰시겠습니까?"
},
"paginationCurrent": {
- "message": "현재 페이지",
- "description": "Tooltip for the current page index in search results"
+ "message": "현재 페이지"
},
"paginationEstimated": {
- "message": "예상 페이지 수",
- "description": "Tooltip for the total page count in search results"
+ "message": "예상 페이지 수"
},
"paginationNext": {
- "message": "다음 페이지",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "다음 페이지"
},
"paginationPrevious": {
- "message": "이전 페이지",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "이전 페이지"
},
"paginationTotal": {
- "message": "총 페이지 수",
- "description": ""
+ "message": "총 페이지 수"
},
"parseUsercssError": {
- "message": "Stylus가 Usercss 데이터를 해석하는데 실패했습니다:",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "Stylus가 Usercss 데이터를 해석하는데 실패했습니다:"
},
"popupAutoResort": {
- "message": "팝업 내에서 스타일 토글 시 재정렬",
- "description": "Label for the checkbox controlling popup resorting."
+ "message": "팝업 내에서 스타일 토글 시 재정렬"
},
"popupBorders": {
- "message": "양옆에 흰색 테두리 추가",
- "description": ""
+ "message": "양옆에 흰색 테두리 추가"
},
"popupBordersTooltip": {
- "message": "측면 테두리를 칠하지 않으므로 새로운 Chrome의 다크 테마에서 유용합니다",
- "description": ""
+ "message": "측면 테두리를 칠하지 않으므로 새로운 Chrome의 다크 테마에서 유용합니다"
},
"popupHotkeysInfo": {
- "message": "<1>-<9>,<0> (숫자패드 포함) - N번째 스타일 토글 (0은 10)\n- 해당 글자로 시작하는 첫 번째 스타일 토글\n 토글 대신 편집기 열기\n 나열된 스타일 활성화\n 나열된 스타일 비활성화\n, <`> (백틱) - 처음에 활성화한 스타일을 토글합니다. 팝업이 열려 있는 동안에는 나중에 활성화한 스타일에 적용되지 않습니다. 따라서 검사 후 초기 선택 항목을 복원할 수 있습니다. 간단하게, 모두 비활성화한 다음 로 다시 전환하세요.\n자세한 내용은 위키를 참고 바랍니다",
- "description": "NOTE1: preserve < and > symbols so that is styled as a key.\nNOTE2: the last line is displayed as a text of the link to the wiki page.\nNOTE3: this is the list of hotkeys displayed after clicking the right edge of the extension popup."
+ "message": "<1>-<9>,<0> (숫자패드 포함) - N번째 스타일 토글 (0은 10)\n- 해당 글자로 시작하는 첫 번째 스타일 토글\n 토글 대신 편집기 열기\n 나열된 스타일 활성화\n 나열된 스타일 비활성화\n, <`> (백틱) - 처음에 활성화한 스타일을 토글합니다. 팝업이 열려 있는 동안에는 나중에 활성화한 스타일에 적용되지 않습니다. 따라서 검사 후 초기 선택 항목을 복원할 수 있습니다. 간단하게, 모두 비활성화한 다음 로 다시 전환하세요.\n자세한 내용은 위키를 참고 바랍니다"
},
"popupHotkeysTooltip": {
- "message": "사용 가능한 단축키를 확인하려면 클릭하세요",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "사용 가능한 단축키를 확인하려면 클릭하세요"
},
"popupManageTooltip": {
- "message": "Shift+클릭이나 우클릭으로 스타일 관리자를 열면 현재 사이트에 적용 가능한 스타일들이 표시됩니다.",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Shift+클릭이나 우클릭으로 스타일 관리자를 열면 현재 사이트에 적용 가능한 스타일들이 표시됩니다."
},
"popupMenuButtonTooltip": {
- "message": "상호작용 메뉴",
- "description": "Tooltip for menu button in popup."
+ "message": "상호작용 메뉴"
+ },
+ "popupOpenEditInPopup": {
+ "message": "단순 윈도우(옴니상자 없음) 사용하기"
},
"popupOpenEditInWindow": {
- "message": "새 창에서 편집기 열기",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "새 창에서 편집기 열기"
},
"popupOpenEditInWindowTooltip": {
- "message": "이 옵션은 편집기가 열린 탭을 브라우저 창에서 분리함으로써 활성화할 수도 있습니다.\n편집기 탭만 다른 브라우저 창으로 합치면 비활성화됩니다.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "이 옵션은 편집기가 열린 탭을 브라우저 창에서 분리함으로써 활성화할 수도 있습니다.\n편집기 탭만 다른 브라우저 창으로 합치면 비활성화됩니다."
},
"popupStylesFirst": {
- "message": "스타일 목록을 커맨드 버튼 상단에 표시",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "스타일 목록을 커맨드 버튼 상단에 표시"
},
"prefShowBadge": {
- "message": "현재 사이트에서 활성화된 스타일 개수",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "현재 사이트에서 활성화된 스타일 개수"
},
"previewLabel": {
- "message": "실시간 미리보기",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "실시간 미리보기"
},
"previewTooltip": {
- "message": "변경 사항은 저장되지 않고 일시적으로 적용됩니다.\n영구적으로 변경하려면 스타일을 저장하세요.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "변경 사항은 저장되지 않고 일시적으로 적용됩니다.\n영구적으로 변경하려면 스타일을 저장하세요."
+ },
+ "readingStyles": {
+ "message": "스타일 읽어들이는 중..."
},
"reload": {
- "message": "Stylus 확장 프로그램 리로드",
- "description": "Context menu reload"
+ "message": "Stylus 확장 프로그램 리로드"
},
"replace": {
- "message": "바꾸기",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "바꾸기"
},
"replaceAll": {
- "message": "모두 바꾸기",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "모두 바꾸기"
},
"replaceWith": {
- "message": "바꿀 내용",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "바꿀 내용"
},
"retrieveBckp": {
- "message": "스타일 가져오기",
- "description": ""
+ "message": "스타일 가져오기"
+ },
+ "retrieveDropboxSync": {
+ "message": "Dropbox 가져오기"
},
"search": {
- "message": "검색",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "검색"
},
"searchCaseSensitive": {
- "message": "대소문자 구분",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "대소문자 구분"
+ },
+ "searchGlobalStyles": {
+ "message": "전역 스타일도 검색하기"
},
"searchNumberOfResults": {
- "message": "일치하는 개수",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "일치하는 개수"
},
"searchNumberOfResults2": {
- "message": "코드 및 적용 대상 값 내에서 일치하는 개수",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "코드 및 적용 대상 값 내에서 일치하는 개수"
},
"searchRegexp": {
- "message": "정규 표현식 검색은 /re/ 문법을 사용합니다",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "정규 표현식 검색은 /re/ 문법을 사용합니다"
},
"searchResultInstallCount": {
- "message": "총 설치 수",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "총 설치 수"
},
"searchResultNoneFound": {
- "message": "이 사이트에 맞는 스타일을 찾지 못했습니다.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "이 사이트에 맞는 스타일을 찾지 못했습니다."
+ },
+ "searchResultNotMatching": {
+ "message": "스타일을 설치했지만 현 사이트 URL에는 적용하지 않습니다."
+ },
+ "searchResultNotMatchingNote": {
+ "message": "이 userstyle 작성자에게 URL을 넣어달라고 요청합니다.\n\n관리자에서 스타일을 열고 직접 편집할 수도 있지만,\n이 스타일의 자동 업데이트를 활성 해제할 수도 있으니 주의하세요."
},
"searchResultRating": {
- "message": "평가",
- "description": "Text for label that shows the search result's rating"
+ "message": "평가"
},
"searchResultUpdated": {
- "message": "업데이트됨",
- "description": "Text for label that shows the search result's last update date"
+ "message": "업데이트됨"
},
"searchResultWeeklyCount": {
- "message": "주간 설치 수",
- "description": "Text for label that shows the number of times a search result was installed during last week"
+ "message": "주간 설치 수"
},
- "searchStyles": {
- "message": "검색 내용",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "searchStylesAll": {
+ "message": "모두"
},
- "searchStylesHelp": {
- "message": "> 키를 누르면 검색 상자로 포커스가 이동합니다.\n일반 텍스트: 이름, 코드, 홈페이지 및 적용 대상 URL을 대상으로 검색합니다. 3 글자 미만의 단어는 무시됩니다.\n전체 URL에 일치하는 스타일: 접두사를 붙여서 검색하세요. 예시: \n정규 표현식: 슬래시 및 플래그를 포함하세요. 예시: \n단어와 정확히 일치: 쿼리를 큰따옴표로 묶으세요. 예시: <\".header ~ div\">",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
+ "searchStylesCode": {
+ "message": "CSS 코드"
+ },
+ "searchStylesMatchUrl": {
+ "message": "URL별"
+ },
+ "searchStylesMeta": {
+ "message": "메타데이터"
+ },
+ "searchStylesName": {
+ "message": "이름"
},
"sectionAdd": {
- "message": "섹션 추가",
- "description": "Label for the button to add a section"
+ "message": "섹션 추가"
},
"sectionCode": {
- "message": "코드",
- "description": "Label for the code for a section"
+ "message": "코드"
},
"sectionRemove": {
- "message": "섹션 제거",
- "description": "Label for the button to remove a section"
+ "message": "섹션 제거"
},
"sectionRestore": {
- "message": "제거된 섹션 복구",
- "description": "Label for the button to restore a removed section"
+ "message": "제거된 섹션 복구"
+ },
+ "sections": {
+ "message": "섹션"
},
"shortcuts": {
- "message": "단축키",
- "description": "Go to shortcut configuration"
+ "message": "단축키"
},
"shortcutsNote": {
- "message": "키보드 단축키 정의",
- "description": ""
+ "message": "키보드 단축키 정의"
},
"sortDateNewestFirst": {
- "message": "최신 순으로",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "최신 순으로"
},
"sortDateOldestFirst": {
- "message": "오래된 순으로",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "오래된 순으로"
},
"sortLabel": {
- "message": "설치한 스타일들을 어떻게 정렬할지 선택합니다",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "설치한 스타일들을 어떻게 정렬할지 선택합니다"
},
"sortLabelTitleAsc": {
- "message": "제목 오름차순",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "제목 오름차순"
},
"sortLabelTitleDesc": {
- "message": "제목 내림차순",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "제목 내림차순"
},
"sortStylesHelp": {
- "message": "설치한 스타일들을 정렬할 방식을 드롭 다운 목록에서 선택합니다. 기본 설정은 각 제목을 오름차순(A to Z)으로 정렬하고, \"제목 내림차순\" 을 선택 시 내림차순(Z to A)으로 정렬합니다.\n여러 기준에 따라 항목을 정렬할 수 있는 다른 사전 설정도 있습니다. 여러 개의 열이 있는 테이블을 정렬하고, 각 선택 옵션 내의 카테고리들이(+ 기호 사이) 열 또는 그룹을 나타낸다고 생각해보세요.\n예를 들어, 설정이 \"활성화됨 (first) + 제목\"인 경우, 모든 활성화된 항목이 목록의 맨 위에 정렬되도록 정렬된 후, Entry 제목 오름차순 정렬(A to Z)이 활성화된 항목과 비활성화된 항목 모두에 별도로 적용됩니다.",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the sort input field on the Manage styles page"
+ "message": "설치한 스타일들을 정렬할 방식을 드롭 다운 목록에서 선택합니다. 기본 설정은 각 제목을 오름차순(A to Z)으로 정렬하고, \"제목 내림차순\" 을 선택 시 내림차순(Z to A)으로 정렬합니다.\n여러 기준에 따라 항목을 정렬할 수 있는 다른 사전 설정도 있습니다. 여러 개의 열이 있는 테이블을 정렬하고, 각 선택 옵션 내의 카테고리들이(+ 기호 사이) 열 또는 그룹을 나타낸다고 생각해보세요.\n예를 들어, 설정이 \"활성화됨 (first) + 제목\"인 경우, 모든 활성화된 항목이 목록의 맨 위에 정렬되도록 정렬된 후, Entry 제목 오름차순 정렬(A to Z)이 활성화된 항목과 비활성화된 항목 모두에 별도로 적용됩니다."
},
"sortStylesHelpTitle": {
- "message": "내용 정렬",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "내용 정렬"
},
"styleBadRegexp": {
- "message": "유효하지 않은 정규 표현식입니다.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "유효하지 않은 정규 표현식입니다."
+ },
+ "styleBeautifyHint": {
+ "message": "힌트: “Beautify” 버튼을 우클릭 하거나 아래 지정한 키보드 단축키를 사용하면 이 패널을 숨기면서 “Beautify”를 활성화 합니다"
},
"styleBeautifyIndentConditional": {
- "message": "@media, @supports 들여쓰기",
- "description": "CSS-beautifier option"
+ "message": "@media, @supports 들여쓰기"
},
"styleBeautifyPreserveNewlines": {
- "message": "개행 문자 유지",
- "description": "CSS-beautifier option"
+ "message": "개행 문자 유지"
},
"styleCancelEditLabel": {
- "message": "관리 페이지로 돌아가기",
- "description": "Label for cancel button for style editing"
+ "message": "관리 페이지로 돌아가기"
},
"styleChangesNotSaved": {
- "message": "스타일의 변경 사항을 저장하지 않았습니다.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "스타일의 변경 사항을 저장하지 않았습니다."
},
"styleEnabledLabel": {
- "message": "활성화됨",
- "description": "Label for the enabled state of styles"
+ "message": "활성화됨"
},
"styleFromMozillaFormatError": {
- "message": "Mozilla 형식 데이터를 가져오는데 실패했습니다",
- "description": "Label for the import error"
+ "message": "Mozilla 형식 데이터를 가져오는데 실패했습니다"
},
"styleFromMozillaFormatPrompt": {
- "message": "Mozilla 형식의 코드를 붙여넣으세요",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Mozilla 형식의 코드를 붙여넣으세요"
},
"styleInstall": {
"message": "Stylus에 '$stylename$'을(를) 설치하시겠습니까?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1340,7 +1120,6 @@
},
"styleInstallFailed": {
"message": "userstyle 설치에 실패했습니다.\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1349,86 +1128,68 @@
},
"styleInstallOverwrite": {
"message": "'$stylename$'은(는) 이미 설치되어 있습니다. 덮어쓰시겠습니까?\n버전: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "이름을 입력하세요",
- "description": "Error displayed when user saves without providing a name"
+ "message": "이름을 입력하세요"
},
"styleMozillaFormatHeading": {
- "message": "Mozilla 형식",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Mozilla 형식"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "잘못된 'regexp()'의 사용으로 인해 스타일을 적용할 수 없습니다",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "잘못된 'regexp()'의 사용으로 인해 스타일을 적용할 수 없습니다"
},
"styleRegexpInvalidExplanation": {
- "message": "일부 `regexp()` 규칙은 컴파일할 수 없습니다.",
- "description": ""
+ "message": "일부 `regexp()` 규칙은 컴파일할 수 없습니다."
},
"styleRegexpPartialExplanation": {
- "message": "이 스타일은 부분 일치 정규 표현식을 사용합니다. CSS4 @document 사양은 전체 URL 일치를 사용할 것을 강제하고 있으므로, 해당 CSS 섹션은 페이지에 적용되지 않았습니다. 이 스타일은 초기부터 `regexp()` 규칙을 바르게 확인하지 않는 것으로 알려진 Stylish-for-Chrome에서 생성되었을 것으로 추정됩니다.",
- "description": ""
+ "message": "이 스타일은 부분 일치 정규 표현식을 사용합니다. CSS4 @document 사양은 전체 URL 일치를 사용할 것을 강제하고 있으므로, 해당 CSS 섹션은 페이지에 적용되지 않았습니다. 이 스타일은 초기부터 `regexp()` 규칙을 바르게 확인하지 않는 것으로 알려진 Stylish-for-Chrome에서 생성되었을 것으로 추정됩니다."
},
"styleRegexpProblemTooltip": {
- "message": "잘못된 'regexp()' 사용으로 인해 몇몇 섹션을 적용할 수 없습니다.",
- "description": "Tooltip in the popup for styles that were applied only partially"
+ "message": "잘못된 'regexp()' 사용으로 인해 몇몇 섹션을 적용할 수 없습니다."
},
"styleRegexpTestButton": {
- "message": "정규 표현식 테스트",
- "description": "RegExp test button label in the editor shown when applies-to list has a regexp value"
+ "message": "정규 표현식 테스트"
},
"styleRegexpTestFull": {
- "message": "일치하는 탭 목록",
- "description": "RegExp test report: label for the fully matching expressions"
+ "message": "일치하는 탭 목록"
},
"styleRegexpTestInvalid": {
- "message": "유효하지 않은 정규 표현식 생략됨",
- "description": "RegExp test report: label for the invalid expressions"
+ "message": "유효하지 않은 정규 표현식 생략됨"
},
"styleRegexpTestNone": {
- "message": "일치하는 탭 없음",
- "description": "RegExp test report: label for expressions that didn't match any tabs"
+ "message": "일치하는 탭 없음"
},
"styleRegexpTestNote": {
- "message": "참고: 정규 표현식 입력 필드에서 이스케이프 처리는 단일 \\ 를 사용하세요. CSS에서 따옴표로 묶인 문자열의 사양에 따라 스타일 코드에서 자동으로 \\\\ 로 변환됩니다. ",
- "description": "RegExp test report: a note displayed at the bottom of the dialog"
+ "message": "참고: 정규 표현식 입력 필드에서 이스케이프 처리는 단일 \\ 를 사용하세요. CSS에서 따옴표로 묶인 문자열의 사양에 따라 스타일 코드에서 자동으로 \\\\ 로 변환됩니다. "
},
"styleRegexpTestPartial": {
- "message": "완전히 일치하지는 않으므로 생략됨",
- "description": "RegExp test report: label for the partially matching expressions"
+ "message": "완전히 일치하지는 않으므로 생략됨"
},
"styleRegexpTestTitle": {
- "message": "열린 탭 중 일치하는 목록 (URL 클릭 시 해당 탭으로 이동)",
- "description": "RegExp test report: title of the report"
+ "message": "열린 탭 중 일치하는 목록 (URL 클릭 시 해당 탭으로 이동)"
},
"styleSaveLabel": {
- "message": "저장",
- "description": "Label for save button for style editing"
+ "message": "저장"
},
"styleToMozillaFormatHelp": {
- "message": "Mozilla 형식 코드는 userstyles.org에 올리거나 기존 Firefox용 Stylish에 사용할 수 있습니다",
- "description": "Help info for the Mozilla format header section that converts the code to/from Mozilla format"
+ "message": "Mozilla 형식 코드는 userstyles.org에 올리거나 기존 Firefox용 Stylish에 사용할 수 있습니다"
},
"styleToMozillaFormatTitle": {
- "message": "Mozilla 형식으로 변환한 스타일",
- "description": "Title of the popup with the style code in Mozilla format, shown after pressing the Export button on Edit style page"
+ "message": "Mozilla 형식으로 변환한 스타일"
},
"styleUpdate": {
"message": "'$stylename$'을(를) 정말 수정하시겠습니까?",
- "description": "Confirmation when updating a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1436,72 +1197,58 @@
}
},
"styleUpdateDiscardChanges": {
- "message": "이 스타일은 편집기 외부에서 변경되었습니다. 스타일을 다시 로딩하시겠습니까?",
- "description": "Confirmation to update the style in the editor"
+ "message": "이 스타일은 편집기 외부에서 변경되었습니다. 스타일을 다시 로딩하시겠습니까?"
},
"stylusUnavailableForURL": {
- "message": "Stylus는 이러한 페이지에서는 작동할 수 없습니다.",
- "description": "Note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "Stylus는 이러한 페이지에서는 작동할 수 없습니다."
},
"stylusUnavailableForURLdetails": {
- "message": "브라우저 보안 상의 이유로, 확장 프로그램은 브라우저 내장 페이지(chrome://version, Chrome 61의 표준 새 탭 페이지, about:addons 등)나 타 확장 프로그램의 페이지에 영향을 미칠 수 없습니다. 각 브라우저의 확장 프로그램 스토어(Chrome 웹 스토어, AMO 등) 접근 또한 마찬가지입니다.",
- "description": "Sub-note in the toolbar pop-up when on a URL Stylus can't affect"
+ "message": "브라우저 보안 상의 이유로, 확장 프로그램은 브라우저 내장 페이지(chrome://version, Chrome 61의 표준 새 탭 페이지, about:addons 등)나 타 확장 프로그램의 페이지에 영향을 미칠 수 없습니다. 각 브라우저의 확장 프로그램 스토어(Chrome 웹 스토어, AMO 등) 접근 또한 마찬가지입니다."
+ },
+ "syncDropboxDeprecated": {
+ "message": "Dropbox 가져오기/내보내기는 옵션 페이지의 더 발전된 스타일 동기화 기능으로 대체되었습니다."
+ },
+ "syncDropboxStyles": {
+ "message": "Dropbox 내보내기"
+ },
+ "syncError": {
+ "message": "동기화를 실패했습니다"
},
"syncStorageErrorSaving": {
- "message": "값을 저장할 수 없습니다. 텍스트의 양을 줄이세요.",
- "description": "Displayed when trying to save an excessively big value via storage.sync API"
+ "message": "값을 저장할 수 없습니다. 텍스트의 양을 줄이세요."
},
"toggleStyle": {
- "message": "스타일 토글",
- "description": "Label for the checkbox to enable/disable a style"
+ "message": "스타일 토글"
},
"undo": {
- "message": "취소",
- "description": "Button label"
+ "message": "취소"
},
"undoGlobal": {
- "message": "모든 섹션에서 실행 취소",
- "description": "CSS-beautify global Undo button label"
+ "message": "모든 섹션에서 실행 취소"
},
"unreachableAMO": {
- "message": "Firefox가 해당 사이트의 접근을 금지했습니다.",
- "description": "Note in the popup displayed when opened on addons.mozilla.org"
+ "message": "Firefox가 해당 사이트의 접근을 금지했습니다."
},
"unreachableAMOHint": {
- "message": "접근을 허용하려면 를 열고, 목록을 우클릭 한 후, '새로 만들기'를 클릭하고, '불린값'을 선택하고, 을 붙여 넣고 확인을 누르고, , 확인 후 페이지를 새로 고침하세요.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintNewFF": {
- "message": "Firefox 60 이상 버전에서는 내의 에서 AMO 도메인을 제거해야 합니다.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox >= 59"
- },
- "unreachableAMOHintOldFF": {
- "message": "Firefox 59 버전 이상에서만 이처럼 CSP 보호 정책이 적용된 사이트에 웹 확장 기능으로 스타일 요소를 추가할 수 있도록 설정 가능합니다.",
- "description": "Note in the popup when opened on addons.mozilla.org in Firefox < 59"
+ "message": "접근을 허용하려면 를 열고, 목록을 우클릭 한 후, '새로 만들기'를 클릭하고, '불린값'을 선택하고, 을 붙여 넣고 확인을 누르고, , 확인 후 페이지를 새로 고침하세요."
},
"unreachableContentScript": {
- "message": "페이지와 통신할 수 없습니다. 탭을 다시 로딩(새로 고침) 해보세요.",
- "description": "Note in the toolbar popup usually on file:// URLs after [re]loading Stylus"
+ "message": "페이지와 통신할 수 없습니다. 탭을 다시 로딩(새로 고침) 해보세요."
},
"unreachableFileHint": {
- "message": "Stylus가 file:// URL에 접근할 수 있도록 하려면 chrome://extensions 페이지에서 파일 URL에 대한 액세스를 허용해야 합니다.",
- "description": "Note in the toolbar popup for file:// URLs"
+ "message": "Stylus가 file:// URL에 접근할 수 있도록 하려면 chrome://extensions 페이지에서 파일 URL에 대한 액세스를 허용해야 합니다."
},
- "InaccessibleFileHint": {
- "message": "Stylus는 일부 파일 형식(예: pdf, json 파일 등)에 접근할 수 없습니다.",
- "description": "Note in the toolbar popup for some file types that cannot be accessed"
+ "unzipStyles": {
+ "message": "스타일 압축 푸는 중..."
},
"updateAllCheckSucceededNoUpdate": {
- "message": "이용 가능한 업데이트가 없습니다.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "이용 가능한 업데이트가 없습니다."
},
"updateAllCheckSucceededSomeEdited": {
- "message": "로컬 수정 사항이 사라지는 것을 방지하기 위해, 일부 업데이트 가능한 스타일이 선택에서 누락되었을 수 있습니다. 이를 강제로 업데이트하려면 각각을 직접 선택하거나, 다른 전체 스타일 검사(따로 수정한 사항은 덮어씌워집니다)를 시행하세요.",
- "description": "Text that displays when an update all check completed and no updates are available"
+ "message": "로컬 수정 사항이 사라지는 것을 방지하기 위해, 일부 업데이트 가능한 스타일이 선택에서 누락되었을 수 있습니다. 이를 강제로 업데이트하려면 각각을 직접 선택하거나, 다른 전체 스타일 검사(따로 수정한 사항은 덮어씌워집니다)를 시행하세요."
},
"updateCheckFailBadResponseCode": {
"message": "업데이트 실패. 서버의 응답 에러코드는 $code$입니다.",
- "description": "Text that displays when an update check failed because the response code indicates an error",
"placeholders": {
"code": {
"content": "$1"
@@ -1509,127 +1256,63 @@
}
},
"updateCheckFailServerUnreachable": {
- "message": "업데이트 실패. 서버와 연결할 수 없습니다.",
- "description": "Text that displays when an update check failed because the update server is unreachable"
+ "message": "업데이트 실패. 서버와 연결할 수 없습니다."
},
"updateCheckHistory": {
- "message": "업데이트 검사 기록",
- "description": ""
+ "message": "업데이트 검사 기록"
},
"updateCheckManualUpdateForce": {
- "message": "업데이트 설치 (로컬 수정 사항은 덮어씌워집니다)",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "업데이트 설치 (로컬 수정 사항은 덮어씌워집니다)"
},
"updateCheckManualUpdateHint": {
- "message": "로컬 수정 사항을 무시하고 업데이트를 덮어씌웁니다.",
- "description": "Additional text displayed when an update check skipped updating the style to avoid losing local modifications"
+ "message": "로컬 수정 사항을 무시하고 업데이트를 덮어씌웁니다."
},
"updateCheckSkippedLocallyEdited": {
- "message": "이 스타일은 로컬에서 수정되었습니다.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing local modifications"
+ "message": "이 스타일은 로컬에서 수정되었습니다."
},
"updateCheckSkippedMaybeLocallyEdited": {
- "message": "이 스타일은 로컬에서 수정되었을 수 있습니다.",
- "description": "Text that displays when an update check skipped updating the style to avoid losing possible local modifications"
+ "message": "이 스타일은 로컬에서 수정되었을 수 있습니다."
},
"updateCheckSucceededNoUpdate": {
- "message": "스타일이 최신 상태입니다.",
- "description": "Text that displays when an update check completed and no update is available"
+ "message": "스타일이 최신 상태입니다."
},
"updateCompleted": {
- "message": "업데이트가 완료됐습니다.",
- "description": "Text that displays when an update completed"
+ "message": "업데이트가 완료됐습니다."
},
"updatesCurrentlyInstalled": {
- "message": "설치된 업데이트:",
- "description": "Text that displays when an update is installed on options page. Followed by the number of currently installed updates."
- },
- "usercssAvoidOverwriting": {
- "message": "기존에 존재하는 스타일이 덮어씌워지는 것을 방지하려면 @name이나 @namespace 값을 변경하세요.",
- "description": "Shown in a message box when attempting to save a new Usercss style that would overwrite an existing one."
- },
- "usercssConfigIncomplete": {
- "message": "설정 대화상자가 열리고 나서 스타일이 수정되거나 삭제되었습니다. 스타일의 메타 데이터와 충돌이 일어나는 것을 방지하기 위해, 현재 변수들은 저장되지 않습니다:",
- "description": ""
- },
- "usercssEditorNamePlaceholder": {
- "message": "코드에 @name을 지정하세요",
- "description": "Placeholder text for the empty name input field when creating a new Usercss style"
- },
- "usercssReplaceTemplateConfirmation": {
- "message": "현재 코드로 새 Usercss 스타일의 기본 템플릿을 대체하시겠습니까?",
- "description": ""
- },
- "usercssReplaceTemplateName": {
- "message": "@name을 비우면 기본 템플릿이 대체됩니다.",
- "description": "The text shown after @name when creating a new Usercss style"
- },
- "usercssReplaceTemplateSectionBody": {
- "message": "코드를 여기 입력하세요",
- "description": "The code placeholder comment in a new style created by clicking 'Write style' in the popup"
- },
- "versionInvalidOlder": {
- "message": "설치되어 있는 스타일이 더 높은 버전입니다.",
- "description": "Displayed when the version of style is older than the installed one"
- },
- "writeStyleFor": {
- "message": "스타일 작성 대상:",
- "description": "Label for toolbar pop-up that precedes the links to write a new style"
- },
- "writeStyleForURL": {
- "message": "현재 URL",
- "description": "Text for link in toolbar pop-up to write a new style for the current URL"
- },
- "syncDropboxStyles": {
- "message": "Dropbox 내보내기",
- "description": ""
- },
- "syncDropboxDeprecated": {
- "message": "Dropbox 가져오기/내보내기는 옵션 페이지의 더 발전된 스타일 동기화 기능으로 대체되었습니다.",
- "description": ""
- },
- "retrieveDropboxSync": {
- "message": "Dropbox 가져오기",
- "description": ""
- },
- "overwriteFileExport": {
- "message": "기존 파일을 덮어쓰시겠습니까?",
- "description": ""
- },
- "exportSavedSuccess": {
- "message": "파일 저장에 성공했습니다.",
- "description": ""
- },
- "noFileToImport": {
- "message": "스타일을 가져오려면, 먼저 내보내야 합니다.",
- "description": ""
- },
- "connectingDropbox": {
- "message": "Dropbox 연결 중...",
- "description": ""
- },
- "connectingDropboxNotAllowed": {
- "message": "Dropbox 연결은 웹 스토어에서 직접 설치한 앱에서만 가능합니다.",
- "description": ""
- },
- "gettingStyles": {
- "message": "모든 스타일 가져오는 중...",
- "description": ""
- },
- "zipStyles": {
- "message": "스타일 압축 중...",
- "description": ""
- },
- "unzipStyles": {
- "message": "스타일 압축 푸는 중...",
- "description": ""
- },
- "readingStyles": {
- "message": "스타일 읽어들이는 중...",
- "description": ""
+ "message": "설치된 업데이트:"
},
"uploadingFile": {
- "message": "파일 업로드 중...",
- "description": ""
+ "message": "파일 업로드 중..."
+ },
+ "usercssAvoidOverwriting": {
+ "message": "기존에 존재하는 스타일이 덮어씌워지는 것을 방지하려면 @name이나 @namespace 값을 변경하세요."
+ },
+ "usercssConfigIncomplete": {
+ "message": "설정 대화상자가 열리고 나서 스타일이 수정되거나 삭제되었습니다. 스타일의 메타 데이터와 충돌이 일어나는 것을 방지하기 위해, 현재 변수들은 저장되지 않습니다:"
+ },
+ "usercssEditorNamePlaceholder": {
+ "message": "코드에 @name을 지정하세요"
+ },
+ "usercssReplaceTemplateConfirmation": {
+ "message": "현재 코드로 새 Usercss 스타일의 기본 템플릿을 대체하시겠습니까?"
+ },
+ "usercssReplaceTemplateName": {
+ "message": "@name을 비우면 기본 템플릿이 대체됩니다."
+ },
+ "usercssReplaceTemplateSectionBody": {
+ "message": "코드를 여기 입력하세요"
+ },
+ "versionInvalidOlder": {
+ "message": "설치되어 있는 스타일이 더 높은 버전입니다."
+ },
+ "writeStyleFor": {
+ "message": "스타일 작성 대상:"
+ },
+ "writeStyleForURL": {
+ "message": "현재 URL"
+ },
+ "zipStyles": {
+ "message": "스타일 압축 중..."
}
}
diff --git a/_locales/nl/messages.json b/_locales/nl/messages.json
index 677c39cd..8b3d5542 100644
--- a/_locales/nl/messages.json
+++ b/_locales/nl/messages.json
@@ -1,23 +1,21 @@
{
+ "InaccessibleFileHint": {
+ "message": "Stylus heeft geen toegang tot sommige bestandstypen (bv. pdf- en json-bestanden)."
+ },
"addStyleLabel": {
- "message": "Nieuwe stijl schrijven",
- "description": "Label for the button to go to the add style page"
+ "message": "Nieuwe stijl schrijven"
},
"addStyleTitle": {
- "message": "Stijl toevoegen",
- "description": "Title of the page for adding styles"
+ "message": "Stijl toevoegen"
},
"alphaChannel": {
- "message": "Doorzichtigheid",
- "description": "Label of color's opacity"
+ "message": "Doorzichtigheid"
},
"appliesAdd": {
- "message": "Toevoegen",
- "description": "Label for the button to add an 'applies' entry"
+ "message": "Toevoegen"
},
"appliesDisplay": {
"message": "Van toepassing op: $applies$",
- "description": "Text on the manage screen to describe what the style applies to",
"placeholders": {
"applies": {
"content": "$1"
@@ -25,292 +23,251 @@
}
},
"appliesDisplayTruncatedSuffix": {
- "message": "en meer",
- "description": "Text added to appliesDisplay when there are more sites for the style than are displayed"
+ "message": "en meer"
},
"appliesDomainOption": {
- "message": "URL’s op het domein",
- "description": "Option to make the style apply to the entered string as a domain"
+ "message": "URL’s op het domein"
},
"appliesHelp": {
- "message": "Gebruik de ‘Van toepassing op’-functies om de URL’s voor de code in deze sectie te beperken.",
- "description": "Help text for 'applies to' section"
+ "message": "Gebruik de ‘Van toepassing op’-functies om de URL’s voor de code in deze sectie te beperken."
},
"appliesLabel": {
- "message": "Van toepassing op",
- "description": "Label for 'applies to' fields on the edit/add screen"
+ "message": "Van toepassing op"
},
"appliesLineWidgetLabel": {
- "message": "‘Van toepassing op’-info weergeven",
- "description": "Label for the checkbox to display applies-to information in the single editor"
+ "message": "‘Van toepassing op’-info weergeven"
},
"appliesLineWidgetWarning": {
- "message": "Werkt niet met verkleinde CSS",
- "description": "A warning that applies-to information won't show properly with minified CSS"
+ "message": "Werkt niet met verkleinde CSS"
},
"appliesRegexpOption": {
- "message": "URL’s overeenkomend met de regexp",
- "description": "Option to make the style apply to the entered string as a regular expression"
+ "message": "URL’s overeenkomend met de regexp"
},
"appliesRemove": {
- "message": "Verwijderen",
- "description": "Label for the button to remove an 'applies' entry"
+ "message": "Verwijderen"
},
"appliesRemoveError": {
- "message": "Kan laatste ‘Van toepassing op’-item niet verwijderen",
- "description": "Error displayed when the last 'applies' is going to be removed"
+ "message": "Kan laatste ‘Van toepassing op’-item niet verwijderen"
},
"appliesSpecify": {
- "message": "Specificeren",
- "description": "Label for the button to make a style apply only to specific sites"
+ "message": "Specificeren"
},
"appliesToEverything": {
- "message": "Alles",
- "description": "Text displayed for styles that apply to all sites"
+ "message": "Alles"
},
"appliesUrlPrefixOption": {
- "message": "URL’s beginnend met",
- "description": "Option to make the style apply to the entered string as a URL prefix"
+ "message": "URL’s beginnend met"
},
"applyAllUpdates": {
- "message": "Alle updates toepassen",
- "description": "Label for the button to apply all detected updates"
+ "message": "Alle updates toepassen"
},
"author": {
- "message": "Auteur",
- "description": "Label for the style author"
+ "message": "Auteur"
},
"backupButtons": {
- "message": "Back-up",
- "description": "Heading for backup"
+ "message": "Back-up"
},
"backupMessage": {
- "message": "Selecteer een bestand of sleep het naar deze pagina.",
- "description": "Message for backup"
+ "message": "Selecteer een bestand of sleep het naar deze pagina."
},
"bckpInstStyles": {
- "message": "Stijlen exporteren",
- "description": ""
+ "message": "Stijlen exporteren"
},
"checkAllUpdates": {
- "message": "Alle stijlen controleren op updates",
- "description": "Label for the button to check all styles for updates"
+ "message": "Alle stijlen controleren op updates"
},
"checkAllUpdatesForce": {
- "message": "Ik heb geen stijlen bewerkt; opnieuw controleren!",
- "description": "Label for the button to apply all detected updates"
+ "message": "Ik heb geen stijlen bewerkt; opnieuw controleren!"
},
"checkForUpdate": {
- "message": "Controleren op update",
- "description": "Label for the button to check a single style for an update"
+ "message": "Controleren op update"
},
"checkingForUpdate": {
- "message": "Controleren...",
- "description": "Text to display when checking a style for an update"
+ "message": "Controleren..."
},
"clickToUninstall": {
- "message": "Klik om te de-installeren",
- "description": "Label for the overlay on a style thumbnail when installed via inline search in the popup"
+ "message": "Klik om te de-installeren"
},
"cm_autoCloseBrackets": {
- "message": "Haakjes en aanhalingstekens automatisch sluiten",
- "description": "Label for the checkbox in the style editor."
+ "message": "Haakjes en aanhalingstekens automatisch sluiten"
},
"cm_autoCloseBracketsTooltip": {
- "message": "Automatisch sluitingsteken toevoegen bij typen van een openingsteken uit ()[]{}''\"\"",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automatisch sluitingsteken toevoegen bij typen van een openingsteken uit ()[]{}''\"\""
},
"cm_autocompleteOnTyping": {
- "message": "Automatisch aanvullen tijdens typen",
- "description": "Label for the checkbox in the style editor."
+ "message": "Automatisch aanvullen tijdens typen"
},
"cm_colorpicker": {
- "message": "Kleurkiezer voor CSS-kleuren",
- "description": "Label for the checkbox controlling colorpicker option for the style editor."
+ "message": "Kleurkiezer voor CSS-kleuren"
},
"cm_indentWithTabs": {
- "message": "Tabs met slimme inspringing gebruiken",
- "description": "Label for the checkbox controlling tabs with smart indentation option for the style editor."
+ "message": "Tabs met slimme inspringing gebruiken"
},
"cm_keyMap": {
- "message": "Toetsenbordindeling",
- "description": "Label for the drop-down list controlling the keymap for the style editor."
+ "message": "Toetsenbordindeling"
},
"cm_lineWrapping": {
- "message": "Tekstterugloop",
- "description": "Label for the checkbox controlling word wrap option for the style editor."
+ "message": "Tekstterugloop"
},
"cm_linter": {
- "message": "CSS-linter",
- "description": "Select the linter to check for CSS issues"
+ "message": "CSS-linter"
},
"cm_matchHighlight": {
- "message": "Markeren",
- "description": "Label for the drop-down list controlling the automatic highlighting of current word/selection occurrences in the style editor."
+ "message": "Markeren"
},
"cm_matchHighlightSelection": {
- "message": "Alleen selectie",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of currently selected text"
+ "message": "Alleen selectie"
},
"cm_matchHighlightToken": {
- "message": "Token onder cursor",
- "description": "Style editor's 'highglight' drop-down list option: highlight the occurrences of the word/token under cursor even if nothing is selected"
+ "message": "Token onder cursor"
},
"cm_resizeGripHint": {
- "message": "Dubbelklik om de hoogte te maximaliseren/herstellen",
- "description": "Tooltip for the resize grip in style editor"
+ "message": "Dubbelklik om de hoogte te maximaliseren/herstellen"
},
"cm_selectByTokens": {
- "message": "Dubbelklikken selecteert tokens",
- "description": "Label for the checkbox in the editor."
+ "message": "Dubbelklikken selecteert tokens"
},
"cm_selectByTokensTooltip": {
- "message": "Voorbeelden van tokens: .foo-bar-2 #aabbcc 0.32 !important\nWanneer uitgeschakeld: door interpunctie gescheiden woorden worden geselecteerd.",
- "description": ""
+ "message": "Voorbeelden van tokens: .foo-bar-2 #aabbcc 0.32 !important\nWanneer uitgeschakeld: door interpunctie gescheiden woorden worden geselecteerd."
},
"cm_smartIndent": {
- "message": "Slimme inspringing gebruiken",
- "description": "Label for the checkbox controlling smart indentation option for the style editor."
+ "message": "Slimme inspringing gebruiken"
},
"cm_tabSize": {
- "message": "Tabgrootte",
- "description": "Label for the text box controlling tab size option for the style editor."
+ "message": "Tabgrootte"
},
"cm_theme": {
- "message": "Thema",
- "description": "Label for the style editor's CSS theme."
+ "message": "Thema"
+ },
+ "colorpickerPaletteHint": {
+ "message": "Klik met de rechtermuisknop op een kleurstaal om de bronregels ervan te doorlopen"
},
"colorpickerSwitchFormatTooltip": {
- "message": "Indelingen omschakelen: HEX -> RGB -> HSL.\nShift-klik om de volgorde om te keren.\nWerkt ook met de toetsen PgUp (PageUp) en PgDn (PageDown).",
- "description": "Tooltip for the switch button in the color picker popup in the style editor."
+ "message": "Indelingen omschakelen: HEX -> RGB -> HSL.\nShift-klik om de volgorde om te keren.\nWerkt ook met de toetsen PgUp (PageUp) en PgDn (PageDown)."
},
"colorpickerTooltip": {
- "message": "Kleurkiezer openen",
- "description": "Tooltip for the colored squares shown before CSS colors in the style editor."
+ "message": "Kleurkiezer openen"
},
"configOnChange": {
- "message": "bij wijzigingen",
- "description": "VERY SHORT label for the checkbox in style config dialog after the save button - when enabled the changes in the dialog are saved and applied automatically without the need to press the Save button"
+ "message": "bij wijzigingen"
},
"configOnChangeTooltip": {
- "message": "Wijzigingen automatisch opslaan en toepassen",
- "description": ""
+ "message": "Wijzigingen automatisch opslaan en toepassen"
},
"configureStyle": {
- "message": "Configureren",
- "description": "Label for the button to configure usercss userstyle"
+ "message": "Configureren"
},
"configureStyleOnHomepage": {
- "message": "Configureren op startpagina",
- "description": "Label for the button to configure userstyles.org userstyle"
+ "message": "Configureren op startpagina"
},
"confirmCancel": {
- "message": "Annuleren",
- "description": ""
+ "message": "Annuleren"
},
"confirmClose": {
- "message": "Sluiten",
- "description": "'Close' button in a confirm dialog"
+ "message": "Sluiten"
},
"confirmDefault": {
- "message": "Standaard gebruiken",
- "description": "'Set to default' button in a confirm dialog"
+ "message": "Standaard gebruiken"
},
"confirmDelete": {
- "message": "Verwijderen",
- "description": ""
+ "message": "Verwijderen"
},
"confirmDiscardChanges": {
- "message": "Wijzigingen verwerpen?",
- "description": "Generic label or title displayed when trying to close something (not a style) with unsaved changes"
+ "message": "Wijzigingen verwerpen?"
},
"confirmNo": {
- "message": "Nee",
- "description": "'No' button in a confirm dialog"
+ "message": "Nee"
},
"confirmSave": {
- "message": "Opslaan",
- "description": "'Save' button in a confirm dialog"
+ "message": "Opslaan"
},
"confirmStop": {
- "message": "Stoppen",
- "description": "'Stop' button in a confirm dialog"
+ "message": "Stoppen"
},
"confirmYes": {
- "message": "Ja",
- "description": "'Yes' button in a confirm dialog"
+ "message": "Ja"
+ },
+ "connectingDropbox": {
+ "message": "Dropbox koppelen..."
+ },
+ "connectingDropboxNotAllowed": {
+ "message": "Koppelen met Dropbox is alleen beschikbaar in apps die direct vanuit de webstore zijn geïnstalleerd"
},
"copied": {
- "message": "Gekopieerd naar klembord",
- "description": "Message shown when content has been copied to the clipboard"
+ "message": "Gekopieerd naar klembord"
},
"copy": {
- "message": "Kopiëren naar klembord",
- "description": "Tooltip for elements which can be copied"
+ "message": "Kopiëren naar klembord"
+ },
+ "customNameHint": {
+ "message": "Voer hier een aangepaste naam in om de stijl in de UI te hernoemen zonder updates ervan te beschadigen"
+ },
+ "customNameResetHint": {
+ "message": "Geen aangepaste naam meer gebruiken, wisselen naar eigen naam van de stijl"
+ },
+ "dateAbbrHour": {
+ "message": "$value$u",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ }
+ },
+ "dateAbbrYear": {
+ "message": "$value$j",
+ "placeholders": {
+ "value": {
+ "content": "$1"
+ }
+ }
},
"dateInstalled": {
- "message": "Installatiedatum",
- "description": "Option text for the user to sort the style by install date"
+ "message": "Installatiedatum"
},
"dateUpdated": {
- "message": "Bijwerkdatum",
- "description": "Option text for the user to sort the style by last update date"
+ "message": "Bijwerkdatum"
},
"dbError": {
- "message": "Er is een fout opgetreden bij het gebruiken van de Stylus-database. Wilt u een webpagina met mogelijke oplossingen bezoeken?",
- "description": "Prompt when a DB error is encountered"
+ "message": "Er is een fout opgetreden bij het gebruiken van de Stylus-database. Wilt u een webpagina met mogelijke oplossingen bezoeken?"
},
"defaultTheme": {
- "message": "standaard",
- "description": "Default CodeMirror CSS theme option on the edit style page"
+ "message": "standaard"
},
"deleteStyleConfirm": {
- "message": "Weet u zeker dat u deze stijl wilt verwijderen?",
- "description": "Confirmation before deleting a style"
+ "message": "Weet u zeker dat u deze stijl wilt verwijderen?"
},
"deleteStyleLabel": {
- "message": "Verwijderen",
- "description": "Label for the button to delete a style"
+ "message": "Verwijderen"
},
"description": {
- "message": "Voorzie het web van een ander uiterlijk met Stylus, een gebruikersstijlbeheerder. Met Stylus kunt u eenvoudig thema’s en stijlen voor veel populaire websites installeren.",
- "description": "Extension description"
+ "message": "Voorzie het web van een ander uiterlijk met Stylus, een gebruikersstijlbeheerder. Met Stylus kunt u eenvoudig thema’s en stijlen voor veel populaire websites installeren."
},
"disableAllStyles": {
- "message": "Alle stijlen uitschakelen",
- "description": "Label for the checkbox that turns all enabled styles off."
+ "message": "Alle stijlen uitschakelen"
},
"disableStyleLabel": {
- "message": "Uitschakelen",
- "description": "Label for the button to disable a style"
+ "message": "Uitschakelen"
},
"dragDropMessage": {
- "message": "Sleep uw back-upbestand naar deze pagina om het te importeren.",
- "description": "Drag'n'drop message"
+ "message": "Sleep uw back-upbestand naar deze pagina om het te importeren."
},
"dragDropUsercssTabstrip": {
- "message": "Sleep het bestand naar de tabbladenstrook (het gebied waar de tabbladtitels worden getoond) om het te installeren.",
- "description": "Message popup shown when erroneously dropping a usercss file into the manager page"
+ "message": "Sleep het bestand naar de tabbladenstrook (het gebied waar de tabbladtitels worden getoond) om het te installeren."
},
"editDeleteText": {
- "message": "Verwijderen",
- "description": "Label for the context menu item in the editor to delete selected text"
+ "message": "Verwijderen"
},
"editGotoLine": {
- "message": "Ga naar regel (of regel:kolom)",
- "description": "Go to line or line:column on Ctrl-G in style code editor"
+ "message": "Ga naar regel (of regel:kolom)"
},
"editStyleHeading": {
- "message": "Stijl bewerken",
- "description": "Title of the page for editing styles"
+ "message": "Stijl bewerken"
},
"editStyleLabel": {
- "message": "Bewerken",
- "description": "Label for the button to go to the edit style page"
+ "message": "Bewerken"
},
"editStyleTitle": {
"message": "Stijl $stylename$ bewerken",
- "description": "Title of the page for editing styles",
"placeholders": {
"stylename": {
"content": "$1"
@@ -318,212 +275,177 @@
}
},
"enableStyleLabel": {
- "message": "Inschakelen",
- "description": "Label for the button to enable a style"
+ "message": "Inschakelen"
},
"excludeStyleByDomainLabel": {
- "message": "Het huidige domein uitsluiten",
- "description": ""
+ "message": "Het huidige domein uitsluiten"
},
"excludeStyleByUrlLabel": {
- "message": "De huidige URL uitsluiten",
- "description": ""
+ "message": "De huidige URL uitsluiten"
},
"exportLabel": {
- "message": "Exporteren",
- "description": "Label for the button to export a style ('edit' page) or all styles ('manage' page)"
+ "message": "Exporteren"
+ },
+ "exportSavedSuccess": {
+ "message": "Bestand opgeslagen"
},
"externalHomepage": {
- "message": "Startpagina",
- "description": "Label for the external link to style's homepage"
+ "message": "Startpagina"
},
"externalLink": {
- "message": "Externe koppeling",
- "description": "Label for external links"
+ "message": "Externe koppeling"
},
"externalSupport": {
- "message": "Ondersteuning",
- "description": "Label for the external link to style's support site"
+ "message": "Ondersteuning"
},
"externalUsercssDocument": {
- "message": "Documentatie voor Usercss",
- "description": "Label for the external link to usercss documentation"
+ "message": "Documentatie voor Usercss"
},
"filteredStyles": {
"message": "$numShown$ van de $numTotal$ getoond",
- "description": "TL note - make this message short",
"placeholders": {
- "numTotal": {
- "content": "$2"
- },
"numShown": {
"content": "$1"
+ },
+ "numTotal": {
+ "content": "$2"
}
}
},
"filteredStylesAllHidden": {
- "message": "Geen overeenkomende stijlen met de momenteel toegepaste filters",
- "description": "Text shown when no styles match currently applied filter in the style manager"
+ "message": "Geen overeenkomende stijlen met de momenteel toegepaste filters"
},
"findStyles": {
- "message": "Stijlen zoeken",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Stijlen zoeken"
},
"findStylesForSite": {
- "message": "Meer stijlen voor deze website zoeken",
- "description": "Text for a link that gets a list of styles for the current site"
+ "message": "Meer stijlen voor deze website zoeken"
},
"findStylesInlineTooltip": {
- "message": "Zoekresultaten binnen dit venster weergeven",
- "description": "Text for a checkbox that displays search results within the Stylus popup."
+ "message": "Zoekresultaten binnen dit venster weergeven"
},
"genericAdd": {
- "message": "Toevoegen",
- "description": "Used in various places for an action that adds something"
+ "message": "Toevoegen"
},
"genericClone": {
- "message": "Dupliceren",
- "description": "Used in various places for an action that clones something"
+ "message": "Dupliceren"
+ },
+ "genericDescription": {
+ "message": "Omschrijving"
},
"genericDisabledLabel": {
- "message": "Uitgeschakeld",
- "description": "Used in various lists/options to indicate that something is disabled"
+ "message": "Uitgeschakeld"
},
"genericEnabledLabel": {
- "message": "Ingeschakeld",
- "description": "Used in various lists/options to indicate that something is enabled"
+ "message": "Ingeschakeld"
},
"genericError": {
- "message": "Fout",
- "description": "Used in various places to indicate some error occurred."
+ "message": "Fout"
},
"genericHistoryLabel": {
- "message": "Geschiedenis",
- "description": "Used in various places to show a history log of something"
+ "message": "Geschiedenis"
},
"genericNext": {
- "message": "Volgende",
- "description": "Used in various places to select/perform the next step/action"
+ "message": "Volgende"
},
"genericPrevious": {
- "message": "Vorige",
- "description": "Used in various places to select/perform the previous step/action"
+ "message": "Vorige"
},
"genericResetLabel": {
- "message": "Standaardwaarden",
- "description": "Used in various parts of UI to indicate that something may be reset to its original state"
+ "message": "Standaardwaarden"
},
"genericSavedMessage": {
- "message": "Opgeslagen",
- "description": "Used in various parts of the UI to indicate that something was saved"
+ "message": "Opgeslagen"
},
"genericTitle": {
- "message": "Titel",
- "description": "Used in various parts of the UI to indicate the title of something"
+ "message": "Titel"
},
"genericUnknown": {
- "message": "Onbekend",
- "description": "Used in various parts of the UI to indicate if something is unknown (e.g. an unknown date)"
+ "message": "Onbekend"
+ },
+ "gettingStyles": {
+ "message": "Alle stijlen ophalen..."
},
"helpAlt": {
- "message": "Hulp",
- "description": "Alternate text for help buttons"
+ "message": "Hulp"
},
"helpKeyMapCommand": {
- "message": "Typ een opdrachtnaam",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Typ een opdrachtnaam"
},
"helpKeyMapHotkey": {
- "message": "Druk op een sneltoets",
- "description": "Placeholder text of inputbox in keymap help popup on the edit style page. Must be very short"
+ "message": "Druk op een sneltoets"
},
"hostDisabled": {
- "message": "Deze host is uitgeschakeld vanwege een bug in de huidige versie van de gebruikte browser",
- "description": "Tooltip for cloud host disabled"
+ "message": "Deze host is uitgeschakeld vanwege een bug in de huidige versie van de gebruikte browser"
},
"importAppendLabel": {
- "message": "Toevoegen aan stijl",
- "description": "Label for the button to import a style and append to the existing sections"
+ "message": "Toevoegen aan stijl"
},
"importAppendTooltip": {
- "message": "Geïmporteerde stijl toevoegen aan huidige stijl",
- "description": "Tooltip for the button to import a style and append to the existing sections"
+ "message": "Geïmporteerde stijl toevoegen aan huidige stijl"
},
"importLabel": {
- "message": "Importeren",
- "description": "Label for the button to import a style ('edit' page) or all styles ('manage' page)"
+ "message": "Importeren"
+ },
+ "importPreprocessor": {
+ "message": "Stijlen met een @preprocessor
werken niet in de klassieke modus. U kunt de editor omschakelen naar Usercss-modus: 1) open de stijlbeheerder, 2) vink het selectievakje ‘als Usercss’ aan, 3) klik op ‘Nieuwe stijl schrijven’\n\nToch nu importeren?"
+ },
+ "importPreprocessorTitle": {
+ "message": "Mogelijk probleem vanwege @preprocessor"
},
"importReplaceLabel": {
- "message": "Stijl overschrijven",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Stijl overschrijven"
},
"importReplaceTooltip": {
- "message": "Inhoud van huidige stijl verwerpen en met de geïmporteerde stijl overschrijven",
- "description": "Label for the button to import and overwrite current style"
+ "message": "Inhoud van huidige stijl verwerpen en met de geïmporteerde stijl overschrijven"
},
"importReportLegendAdded": {
- "message": "toegevoegd",
- "description": "Text after the number of styles added in the report shown after importing styles"
+ "message": "toegevoegd"
},
"importReportLegendIdentical": {
- "message": "gelijke overgeslagen",
- "description": "Text after the number of styles skipped due to being identical to the already installed ones in the report shown after importing styles"
+ "message": "gelijke overgeslagen"
},
"importReportLegendInvalid": {
- "message": "ongeldige overgeslagen",
- "description": "Text after the number of styles skipped due to being invalid (not a Stylus/Stylish backup file probably) in the report shown after importing styles"
+ "message": "ongeldige overgeslagen"
},
"importReportLegendUpdatedBoth": {
- "message": "meta-informatie en code bijgewerkt",
- "description": "Text after the number of styles updated entirely in the report shown after importing styles"
+ "message": "meta-informatie en code bijgewerkt"
},
"importReportLegendUpdatedCode": {
- "message": "code bijgewerkt",
- "description": "Text after the number of styles with updated code (meta info is unchanged) in the report shown after importing styles"
+ "message": "code bijgewerkt"
},
"importReportLegendUpdatedMeta": {
- "message": "meta-informatie bijgewerkt",
- "description": "Text after the number of styles with updated meta info like name/url in the report shown after importing styles"
+ "message": "meta-informatie bijgewerkt"
},
"importReportTitle": {
- "message": "Stijlen importeren voltooid",
- "description": "Title of the report shown after importing styles"
+ "message": "Stijlen importeren voltooid"
},
"importReportUnchanged": {
- "message": "Er is niets gewijzigd.",
- "description": "Message in the report shown after importing styles"
+ "message": "Er is niets gewijzigd."
},
"importReportUndone": {
- "message": "stijlen zijn teruggezet",
- "description": "Text after the number of styles reverted in the message box shown after undoing the import of styles"
+ "message": "stijlen zijn teruggezet"
},
"importReportUndoneTitle": {
- "message": "Importeren is ongedaan gemaakt",
- "description": "Title of the message box shown after undoing the import of styles"
+ "message": "Importeren is ongedaan gemaakt"
},
"installButton": {
- "message": "Stijl installeren",
- "description": "Label for install button"
+ "message": "Stijl installeren"
},
"installButtonInstalled": {
- "message": "Stijl geïnstalleerd",
- "description": "Text displayed when the style is successfully installed"
+ "message": "Stijl is geïnstalleerd"
},
"installButtonReinstall": {
- "message": "Stijl herinstalleren",
- "description": "Label for reinstall button"
+ "message": "Stijl herinstalleren"
},
"installButtonUpdate": {
- "message": "Stijl bijwerken",
- "description": "Label for update button"
+ "message": "Stijl bijwerken"
},
"installUpdate": {
- "message": "Update installeren",
- "description": "Label for the button to install an update for a single style"
+ "message": "Update installeren"
},
"installUpdateFrom": {
"message": "De stijl wordt momenteel bijgewerkt vanaf $url$",
- "description": "Label to describe where the style gets update",
"placeholders": {
"url": {
"content": "$1"
@@ -531,28 +453,31 @@
}
},
"installUpdateFromLabel": {
- "message": "Controleren op updates",
- "description": "Label for the checkbox to save current URL for update check"
+ "message": "Controleren op updates"
},
"license": {
- "message": "Licentie",
- "description": "Label for the license"
+ "message": "Licentie"
},
"linkGetHelp": {
- "message": "Hulp verkrijgen",
- "description": "Homepage link text on the manage page e.g. https://add0n.com/stylus.html#features with chat/FAQ/intro/info"
+ "message": "Hulp verkrijgen"
+ },
+ "linkGetShareStyles": {
+ "message": "Stijlen verkrijgen en delen"
+ },
+ "linkGetShareStylesInfo": {
+ "message": "De nieuwe door de gemeenschap mogelijk gemaakte website userstyles.world is gemaakt door schrijvers van gebruikersstijlen ter vervanging van userstyles.org, dat het afgelopen jaar zó traag was en slecht reageerde dat veel schrijvers hun stijlen niet meer hebben bijgewerkt."
},
"linkGetStyles": {
- "message": "Stijlen verkrijgen",
- "description": "Help link text on the manage page e.g. https://userstyles.org"
+ "message": "Stijlen verkrijgen"
+ },
+ "linkGetStylesInfo": {
+ "message": "Deze archiefwebsite is gemaakt door een lid van de gemeenschap van gebruikersstijlen als back-up van de trage en niet-reagerende website userstyles.org. Het archief werkt de inhoud ervan ongeveer eenmaal per dag bij."
},
"linkTranslate": {
- "message": "Vertalen",
- "description": "Transifex link text on the manage page"
+ "message": "Vertalen"
},
"linterCSSLintIncompatible": {
"message": "CSSLint heeft geen ondersteuning voor $preprocessorname$",
- "description": "The label to display when the preprocessor isn't compatible with CSSLint",
"placeholders": {
"preprocessorname": {
"content": "$1"
@@ -560,12 +485,10 @@
}
},
"linterCSSLintSettings": {
- "message": "(stel regel als volgt in: 0 = uitgeschakeld; 1 = waarschuwing; 2 = fout)",
- "description": "CSSLint rule config values"
+ "message": "(stel regel als volgt in: 0 = uitgeschakeld; 1 = waarschuwing; 2 = fout)"
},
"linterConfigPopupTitle": {
"message": "$linter$-regelconfiguratie instellen",
- "description": "Stylelint or CSSLint popup header",
"placeholders": {
"linter": {
"content": "$1"
@@ -573,20 +496,16 @@
}
},
"linterConfigTooltip": {
- "message": "Klik om deze linter te configureren",
- "description": "Icon tooltip to indicate that it opens a popup with the selected linter configuration"
+ "message": "Klik om deze linter te configureren"
},
"linterInvalidConfigError": {
- "message": "Niet opgeslagen vanwege deze ongeldige configuratie-instellingen:",
- "description": "Invalid linter config will show a message followed by a list of invalid entries"
+ "message": "Niet opgeslagen vanwege deze ongeldige configuratie-instellingen:"
},
"linterIssues": {
- "message": "Problemen",
- "description": "Label for the CSS linter issues block on the style edit page"
+ "message": "Problemen"
},
"linterIssuesHelp": {
"message": "De door stylelint gevonden problemen, $link$:",
- "description": "Help popup message for the selected CSS linter issues block on the style edit page",
"placeholders": {
"link": {
"content": "$1"
@@ -594,140 +513,90 @@
}
},
"linterJSONError": {
- "message": "Ongeldige JSON-opmaak",
- "description": "Setting linter config with invalid JSON"
+ "message": "Ongeldige JSON-opmaak"
},
"linterResetMessage": {
- "message": "Druk op Ctrl-Z (of Cmd-Z) in het tekstvak om ongedaan te maken",
- "description": "Reset button tooltip to inform user on how to undo an accidental reset"
+ "message": "Druk op Ctrl-Z (of Cmd-Z) in het tekstvak om ongedaan te maken"
},
"linterRulesLink": {
- "message": "Volledige regellijst bekijken",
- "description": "Stylelint or CSSLint rules label added immediately before a link"
+ "message": "Volledige regellijst bekijken"
},
"liveReloadError": {
- "message": "Er is een fout opgetreden tijdens het bekijken van het bestand",
- "description": "The label of live-reload error"
+ "message": "Er is een fout opgetreden tijdens het bekijken van het bestand"
},
"liveReloadInstallHint": {
- "message": "Houd dit tabblad geopend om de stijl automatisch bij te werken bij externe wijzigingen.",
- "description": "The label of live-reload feature"
+ "message": "Houd dit tabblad geopend om de stijl automatisch bij te werken bij externe wijzigingen."
},
"liveReloadInstallHintFF": {
- "message": "Houd zowel dit tabblad als het oorspronkelijke tabblad geopend om de stijl automatisch bij te werken bij externe wijzigingen.",
- "description": "The extra hint of live-reload feature shown only for file:// URLs in Firefox"
+ "message": "Houd zowel dit tabblad als het oorspronkelijke tabblad geopend om de stijl automatisch bij te werken bij externe wijzigingen."
},
"liveReloadLabel": {
- "message": "Live herladen",
- "description": "The label of live-reload feature"
+ "message": "Live herladen"
},
"manageFavicons": {
- "message": "Favicons in kolom ‘Van toepassing op’",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Favicons in kolom ‘Van toepassing op’"
},
"manageFaviconsGray": {
- "message": "Niet beschikbaar",
- "description": "Label for the checkbox that toggles grayed out mode of applies-to favicons in the new UI on manage page"
+ "message": "Niet beschikbaar"
},
"manageFaviconsHelp": {
- "message": "Stylus gebruikt een externe dienst: https://www.google.com/s2/favicons",
- "description": "Label for the checkbox that toggles applies-to favicons in the new UI on manage page"
+ "message": "Stylus gebruikt een externe dienst: https://www.google.com/s2/favicons"
},
"manageHeading": {
- "message": "Geïnstalleerde stijlen",
- "description": "Heading for the manage page"
+ "message": "Geïnstalleerde stijlen"
},
"manageMaxTargets": {
- "message": "Aantal ‘Van toepassing op’-items",
- "description": "Label for the numeric input box to limit max number of applies-to targets in the new UI on manage page"
+ "message": "Aantal ‘Van toepassing op’-items"
},
"manageNewStyleAsUsercss": {
- "message": "als Usercss",
- "description": "VERY SHORT label for the checkbox next to the 'Write new style' button in the style manager"
+ "message": "als Usercss"
},
"manageNewUI": {
- "message": "Nieuwe indeling van beheerscherm",
- "description": "Label for the checkbox that toggles the new UI on manage page"
+ "message": "Nieuwe indeling van beheerscherm"
},
"manageOnlyDisabled": {
- "message": "Alleen uitgeschakelde stijlen",
- "description": "Checkbox to show only disabled styles"
+ "message": "Alleen uitgeschakelde stijlen"
},
"manageOnlyEnabled": {
- "message": "Alleen ingeschakelde stijlen",
- "description": "Checkbox to show only enabled styles"
+ "message": "Alleen ingeschakelde stijlen"
},
"manageOnlyExternal": {
- "message": "Alleen externe stijlen",
- "description": "Checkbox to show only externally installed styles i.e. updatable"
+ "message": "Alleen externe stijlen"
},
"manageOnlyLocal": {
- "message": "Alleen lokaal aangemaakte stijlen",
- "description": "Checkbox to show only locally created styles i.e. non-updatable"
+ "message": "Alleen lokaal aangemaakte stijlen"
},
"manageOnlyLocalTooltip": {
- "message": "(de stijlen die niet via userstyles.org zijn geïnstalleerd)",
- "description": "Tooltip for the checkbox to show only locally created styles i.e. non-updatable"
+ "message": "(de stijlen die niet via userstyles.org zijn geïnstalleerd)"
},
"manageOnlyNonUsercss": {
- "message": "Alleen niet-Usercss-stijlen",
- "description": "Checkbox to show only non-Usercss (standard) styles"
+ "message": "Alleen niet-Usercss-stijlen"
},
"manageOnlyUpdates": {
- "message": "Alleen bij updates of problemen",
- "description": "Checkbox to show only styles that have updates after check-all-styles-for-updates was performed"
+ "message": "Alleen bij updates of problemen"
},
"manageOnlyUsercss": {
- "message": "Alleen Usercss-stijlen",
- "description": "Checkbox to show only Usercss styles"
+ "message": "Alleen Usercss-stijlen"
},
"menuShowBadge": {
- "message": "Aantal actieve stijlen tonen",
- "description": "Label (must be very short) for the checkbox in the toolbar button context menu controlling toolbar badge text."
+ "message": "Aantal actieve stijlen tonen"
},
"meta_invalidCheckboxDefault": {
- "message": "Ongeldig @var-selectievakje: waarde moet 0 of 1 zijn",
- "description": "Error displayed when the value of @var checkbox is invalid"
+ "message": "Ongeldig @var-selectievakje: waarde moet 0 of 1 zijn"
},
"meta_invalidColor": {
"message": "Ongeldige @var-kleur: $color$ is geen geldige kleur",
- "description": "Error displayed when the value of @var color is invalid",
"placeholders": {
"color": {
"content": "$1"
}
}
},
+ "meta_invalidNumber": {
+ "message": "Getal verwacht"
+ },
"meta_invalidRange": {
"message": "Ongeldige @var $type$: waarde moet een getal of reeks zijn",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMultipleUnits": {
- "message": "Ongeldige @var $type$: meerdere eenheden opgegeven",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeTooManyValues": {
- "message": "Ongeldige @var $type$: de reeks bevat te veel items",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeValue": {
- "message": "Ongeldige @var $type$: items in de reeks moeten een getal, string of null zijn",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -736,16 +605,6 @@
},
"meta_invalidRangeDefault": {
"message": "Ongeldige @var $type$: standaardwaarde is null",
- "description": "Error displayed when the value of @var range or @var number is invalid",
- "placeholders": {
- "type": {
- "content": "$1"
- }
- }
- },
- "meta_invalidRangeMin": {
- "message": "Ongeldige @var $type$: standaardwaarde is lager dan het minimum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
"placeholders": {
"type": {
"content": "$1"
@@ -754,7 +613,22 @@
},
"meta_invalidRangeMax": {
"message": "Ongeldige @var $type$: standaardwaarde is hoger dan het maximum",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMin": {
+ "message": "Ongeldige @var $type$: standaardwaarde is lager dan het minimum",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeMultipleUnits": {
+ "message": "Ongeldige @var $type$: meerdere eenheden opgegeven",
"placeholders": {
"type": {
"content": "$1"
@@ -763,7 +637,14 @@
},
"meta_invalidRangeStep": {
"message": "Ongeldge @var $type$: standaardwaarde is geen vermeerdering van de stap",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
+ },
+ "meta_invalidRangeTooManyValues": {
+ "message": "Ongeldige @var $type$: de reeks bevat te veel items",
"placeholders": {
"type": {
"content": "$1"
@@ -771,8 +652,7 @@
}
},
"meta_invalidRangeUnits": {
- "message": "Ongeldige @var $type$: '$units$' is geen geldige eenheid",
- "description": "Error displayed when the value of @var range or @var number is invalid",
+ "message": "Ongeldige @var $type$: ‘$units$’ is geen geldige eenheid",
"placeholders": {
"type": {
"content": "$1"
@@ -782,37 +662,40 @@
}
}
},
- "meta_invalidSelect": {
- "message": "Ongeldige @var-select: de standaardwaarde moet een reeks of object zijn",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidRangeValue": {
+ "message": "Ongeldige @var $type$: items in de reeks moeten een getal, string of null zijn",
+ "placeholders": {
+ "type": {
+ "content": "$1"
+ }
+ }
},
- "meta_invalidSelectValue": {
- "message": "Ongeldige @var-select: waarden binnen de reeks/het object moeten een string zijn",
- "description": "Error displayed when the value of @var select is invalid"
+ "meta_invalidSelect": {
+ "message": "Ongeldige @var-select: de standaardwaarde moet een reeks of object zijn"
},
"meta_invalidSelectEmptyOptions": {
- "message": "Ongeldige @var-select: optielijst is leeg",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ongeldige @var-select: optielijst is leeg"
},
"meta_invalidSelectLabel": {
- "message": "Ongeldige @var-select: optielabel is leeg",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ongeldige @var-select: optielabel is leeg"
},
"meta_invalidSelectMultipleDefaults": {
- "message": "Ongeldige @var-select: meerdere standaardopties opgegeven",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ongeldige @var-select: meerdere standaardopties opgegeven"
},
"meta_invalidSelectNameDuplicated": {
- "message": "Ongeldige @var-select: optienaam is een duplicaat",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ongeldige @var-select: optienaam is een duplicaat"
+ },
+ "meta_invalidSelectValue": {
+ "message": "Ongeldige @var-select: waarden binnen de reeks/het object moeten een string zijn"
},
"meta_invalidSelectValueMismatch": {
- "message": "Ongeldige @var-select: waarde staat niet op de optielijst",
- "description": "Error displayed when the value of @var select is invalid"
+ "message": "Ongeldige @var-select: waarde staat niet op de optielijst"
+ },
+ "meta_invalidString": {
+ "message": "Citaatstring verwacht"
},
"meta_invalidURLProtocol": {
"message": "Ongeldig URL-protocol. Alleen http en https zijn toegestaan: $protocol$",
- "description": "Error displayed when the protocol of the URL is invalid",
"placeholders": {
"protocol": {
"content": "$1"
@@ -820,29 +703,13 @@
}
},
"meta_invalidVersion": {
- "message": "Ongeldig versienummer. De waarde komt niet overeen met het SemVer-patroon:$version$",
- "description": "Error displayed when @version is invalid",
- "placeholders": {
- "version": {
- "content": "$1"
- }
- }
- },
- "meta_invalidNumber": {
- "message": "Getal verwacht",
- "description": "Error displayed when the value is expected to be a number"
- },
- "meta_invalidString": {
- "message": "Citaatstring verwacht",
- "description": "Error displayed when the value is expected to be a quoted string"
+ "message": "Ongeldig versienummer"
},
"meta_invalidWord": {
- "message": "Woord verwacht",
- "description": "Error displayed when the value is expected to be a word"
+ "message": "Woord verwacht"
},
"meta_missingChar": {
"message": "Tekens verwacht: $chars$",
- "description": "Error displayed when the value is expected to be some characters",
"placeholders": {
"chars": {
"content": "$1"
@@ -850,12 +717,10 @@
}
},
"meta_missingEOT": {
- "message": "EOT-gegevens verwacht",
- "description": "Error displayed when the value is expected to be an EOT list"
+ "message": "EOT-gegevens verwacht"
},
"meta_missingMandatory": {
"message": "Ontbrekende vereiste metagegevens: $keys$",
- "description": "Error displayed when mandatory keys are missing",
"placeholders": {
"keys": {
"content": "$1"
@@ -864,7 +729,6 @@
},
"meta_unknownJSONLiteral": {
"message": "Ongeldige JSON: $literal$ is geen geldige JSON-literal",
- "description": "Error displayed when JSON value is invalid",
"placeholders": {
"literal": {
"content": "$1"
@@ -873,16 +737,33 @@
},
"meta_unknownMeta": {
"message": "Onbekende metagegevens: $key$",
- "description": "Error displayed when unknown metadata is parsed",
"placeholders": {
"key": {
"content": "$1"
}
}
},
+ "meta_unknownMetaTypo": {
+ "message": "Wellicht @$keyOk$? Onbekende metagegevens: @$keyErr$",
+ "placeholders": {
+ "keyErr": {
+ "content": "$1"
+ },
+ "keyOk": {
+ "content": "$2"
+ }
+ }
+ },
+ "meta_unknownPreprocessor": {
+ "message": "Onbekende @preprocessor: $preprocessor$",
+ "placeholders": {
+ "preprocessor": {
+ "content": "$1"
+ }
+ }
+ },
"meta_unknownVarType": {
"message": "Onbekend @$varkey$-type: $vartype$",
- "description": "Error displayed when unknown variable type is parsed",
"placeholders": {
"varkey": {
"content": "$1"
@@ -892,154 +773,134 @@
}
}
},
- "meta_unknownPreprocessor": {
- "message": "Onbekende @preprocessor: $preprocessor$",
- "description": "Error displayed when unknown @preprocessor is parsed",
- "placeholders": {
- "preprocessor": {
- "content": "$1"
- }
- }
+ "noFileToImport": {
+ "message": "Als u uw stijlen wilt importeren, dient u deze eerst te exporteren."
},
"noStylesForSite": {
- "message": "Geen geïnstalleerde stijlen voor deze website.",
- "description": "Text displayed when no styles are installed for the current site"
+ "message": "Geen geïnstalleerde stijlen voor deze website."
+ },
+ "numberedLine": {
+ "message": "Regel:"
},
"openManage": {
- "message": "Beheren",
- "description": "Link to open the manage page."
+ "message": "Beheren"
},
"openOptions": {
- "message": "Opties",
- "description": "Go to Options UI"
+ "message": "Opties"
},
"openStylesManager": {
- "message": "Stijlbeheerder openen",
- "description": "Label for the style maanger opener in the browser action context menu."
+ "message": "Stijlbeheerder openen"
},
"optionsActions": {
- "message": "Acties",
- "description": ""
+ "message": "Acties"
},
"optionsAdvanced": {
- "message": "Geavanceerd",
- "description": ""
+ "message": "Geavanceerd"
},
"optionsAdvancedContextDelete": {
- "message": "‘Verwijderen’ toevoegen in contextmenu van editor",
- "description": ""
+ "message": "‘Verwijderen’ toevoegen in contextmenu van editor"
},
"optionsAdvancedExposeIframes": {
- "message": "iframes blootleggen via HTML[stylus-iframe]",
- "description": ""
+ "message": "iframes blootleggen via HTML[stylus-iframe]"
},
"optionsAdvancedExposeIframesNote": {
- "message": "Legt het bovenliggende domein van de website bloot in elk iframe.\nSchakelt schrijven in voor iframe-specifieke CSS, zoals:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }",
- "description": "Add attribute to iframe; make sure to include the double $$ in the css example, or the `$=` will be omitted in the displayed text."
+ "message": "Legt het bovenliggende domein van de website bloot in elk iframe.\nSchakelt schrijven in voor iframe-specifieke CSS, zoals:\nhtml[stylus-iframe$$=\"twitter.com\"] h1 { display:none }"
},
"optionsAdvancedNewStyleAsUsercss": {
- "message": "Nieuwe stijl schrijven als usercss",
- "description": ""
+ "message": "Nieuwe stijl schrijven als usercss"
+ },
+ "optionsAdvancedPatchCsp": {
+ "message": "CSP
corrigeren om stijlmiddelen toe te staan"
+ },
+ "optionsAdvancedPatchCspNote": {
+ "message": "Schakel dit in als stijlen afbeeldingen of lettertypen bevatten die niet worden geladen op websites met een streng CSP
(inhoudsbeveiligingsbeleid
).\n\nHet inschakelen van deze instelling versoepelt CSP
-restricties, waardoor essentiële stijlinhoud kan worden geladen. Deze optie is alleen bedoeld voor gevorderde gebruikers die de mogelijke gevolgen op beveiligingsgebied begrijpen, en die de verantwoordelijkheid voor het monitoren van de toegestane inhoud accepteren. Lees meer over CSS-gebaseerde aanvallen voor meer informatie.\n\nHoud er ook rekening mee dat deze specifieke instelling geen garantie geeft op een goede werking als een andere geïnstalleerde extensie eerst het netwerkantwoord aanpast."
+ },
+ "optionsAdvancedStyleViaXhr": {
+ "message": "Directe-injectiemodus"
+ },
+ "optionsAdvancedStyleViaXhrNote": {
+ "message": "Schakel dit in als u knipperende inhoud zonder stijlen (‘FOUC’) ondervindt tijdens het browsen, wat met name bij donkere thema’s opvalt.\n\nDe technische reden is dat Chrome/Chromium asynchrone communicatie van extensies uitstelt, doorgaans om te proberen paginalaadsnelheden te verbeteren, waardoor stijlen mogelijk te laat worden toegepast. Om dit te omzeilen, en aangezien er voor webextensies geen synchrone API wordt aangeboden, biedt Stylus deze optie om de ‘verouderde’ synchrone XMLHttpRequest-web-API voor het ophalen van toepasbare stijlen te gebruiken. Er zouden geen nadelige effecten mogen zijn, omdat de aanvraag binnen enkele milliseconden wordt behandeld terwijl de pagina nog van de server wordt gedownload.\n\nNiettemin toont Chromium een waarschuwing in de console van devtools. Door met de rechtermuisknop op een waarschuwing te klikken en deze te verbergen, worden toekomstige waarschuwingen niet meer getoond."
},
"optionsBadgeDisabled": {
- "message": "Achtergrondkleur wanneer uitgeschakeld",
- "description": ""
+ "message": "Achtergrondkleur wanneer uitgeschakeld"
},
"optionsBadgeNormal": {
- "message": "Achtergrondkleur",
- "description": ""
+ "message": "Achtergrondkleur"
},
"optionsCheck": {
- "message": "Stijlen bijwerken",
- "description": ""
+ "message": "Stijlen bijwerken"
},
"optionsCheckUpdate": {
- "message": "Controleren op updates en deze installeren",
- "description": ""
+ "message": "Controleren op updates en deze installeren"
},
"optionsCustomizeBadge": {
- "message": "Badge op het werkbalkpictogram",
- "description": ""
+ "message": "Badge op het werkbalkpictogram"
},
"optionsCustomizeIcon": {
- "message": "Werkbalkpictogram",
- "description": ""
+ "message": "Werkbalkpictogram"
},
"optionsCustomizePopup": {
- "message": "Pop-up",
- "description": ""
+ "message": "Pop-up"
},
"optionsCustomizeSync": {
- "message": "Synchroniseren met cloud",
- "description": ""
+ "message": "Synchroniseren met cloud"
},
"optionsHeading": {
- "message": "Opties",
- "description": "Heading for options section on manage page."
+ "message": "Opties"
},
"optionsIconDark": {
- "message": "Donkere browserthema’s",
- "description": ""
+ "message": "Donkere browserthema’s"
},
"optionsIconLight": {
- "message": "Lichte browserthema’s",
- "description": ""
+ "message": "Lichte browserthema’s"
},
"optionsOpen": {
- "message": "Openen",
- "description": ""
+ "message": "Openen"
},
"optionsOpenManager": {
- "message": "Stijlen beheren",
- "description": ""
+ "message": "Stijlen beheren"
},
"optionsPopupWidth": {
- "message": "Pop-upbreedte (in pixels)",
- "description": ""
+ "message": "Pop-upbreedte (in pixels)"
},
"optionsReset": {
- "message": "Opties terugzetten naar standaardwaarden",
- "description": ""
+ "message": "Opties terugzetten naar standaardwaarden"
},
"optionsResetButton": {
- "message": "Standaardwaarden",
- "description": ""
+ "message": "Standaardwaarden"
+ },
+ "optionsStylusThemes": {
+ "message": "Een UI-thema voor Stylus zoeken"
},
"optionsSubheading": {
- "message": "Meer opties",
- "description": "Subheading for options section on manage page."
- },
- "optionsUpdateImportNote": {
- "message": "Als u stijlen vanuit een oudere versie of vanuit Stylish importeert, controleer dan eenmalig op updates in de stijlbeheerder om er zeker van te zijn dat alle stijlen zijn bijgewerkt.",
- "description": ""
- },
- "optionsUpdateInterval": {
- "message": "Interval voor automatisch bijwerken van gebruikersstijlen in uren (geef 0 op om dit uit te schakelen)",
- "description": ""
- },
- "optionsSyncNone": {
- "message": "Geen",
- "description": ""
+ "message": "Meer opties"
},
"optionsSyncConnect": {
- "message": "Koppelen",
- "description": ""
+ "message": "Koppelen"
},
"optionsSyncDisconnect": {
- "message": "Ontkoppelen",
- "description": ""
- },
- "optionsSyncSyncNow": {
- "message": "Nu synchroniseren",
- "description": ""
+ "message": "Ontkoppelen"
},
"optionsSyncLogin": {
- "message": "Aanmelden",
- "description": ""
+ "message": "Aanmelden"
+ },
+ "optionsSyncNone": {
+ "message": "Geen"
+ },
+ "optionsSyncStatusConnected": {
+ "message": "Gekoppeld"
+ },
+ "optionsSyncStatusConnecting": {
+ "message": "Koppelen..."
+ },
+ "optionsSyncStatusDisconnected": {
+ "message": "Ontkoppeld"
+ },
+ "optionsSyncStatusDisconnecting": {
+ "message": "Ontkoppelen..."
},
"optionsSyncStatusPull": {
"message": "Stijl $loaded$ van $total$ ophalen",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1051,7 +912,6 @@
},
"optionsSyncStatusPush": {
"message": "Stijl $loaded$ van $total$ uploaden",
- "description": "",
"placeholders": {
"loaded": {
"content": "$1"
@@ -1061,261 +921,254 @@
}
}
},
+ "optionsSyncStatusRelogin": {
+ "message": "Sessie verlopen, meld u opnieuw aan."
+ },
"optionsSyncStatusSyncing": {
- "message": "Synchroniseren...",
- "description": ""
+ "message": "Synchroniseren..."
},
- "optionsSyncStatusConnecting": {
- "message": "Koppelen...",
- "description": ""
+ "optionsSyncSyncNow": {
+ "message": "Nu synchroniseren"
},
- "optionsSyncStatusConnected": {
- "message": "Gekoppeld",
- "description": ""
+ "optionsUpdateImportNote": {
+ "message": "Als u stijlen vanuit een oudere versie of vanuit Stylish importeert, controleer dan eenmalig op updates in de stijlbeheerder om er zeker van te zijn dat alle stijlen zijn bijgewerkt."
},
- "optionsSyncStatusDisconnecting": {
- "message": "Ontkoppelen...",
- "description": ""
+ "optionsUpdateInterval": {
+ "message": "Interval voor automatisch bijwerken van gebruikersstijlen in uren (geef 0 op om dit uit te schakelen)"
},
- "optionsSyncStatusDisconnected": {
- "message": "Ontkoppeld",
- "description": ""
+ "overwriteFileExport": {
+ "message": "Wilt u een bestaand bestand overschrijven?"
},
"paginationCurrent": {
- "message": "Huidige pagina",
- "description": "Tooltip for the current page index in search results"
+ "message": "Huidige pagina"
},
"paginationEstimated": {
- "message": "Geschatte aantal pagina’s",
- "description": "Tooltip for the total page count in search results"
+ "message": "Geschatte aantal pagina’s"
},
"paginationNext": {
- "message": "Volgende pagina",
- "description": "Tooltip for the '->' (next page) button in search results"
+ "message": "Volgende pagina"
},
"paginationPrevious": {
- "message": "Vorige pagina",
- "description": "Tooltip for the '<-' button in search results"
+ "message": "Vorige pagina"
},
"paginationTotal": {
- "message": "Totale aantal pagina’s",
- "description": ""
+ "message": "Totale aantal pagina’s"
},
"parseUsercssError": {
- "message": "Stylus kan de usercss niet verwerken:",
- "description": "The error message to show when stylus failed to parse usercss"
+ "message": "Stylus kan de usercss niet verwerken:"
},
"popupAutoResort": {
- "message": "Stijlen opnieuw sorteren in pop-up na omschakelen",
- "description": "Label for the checkbox controlling popup resorting."
+ "message": "Stijlen opnieuw sorteren in pop-up na omschakelen"
},
"popupBorders": {
- "message": "Witte randen toevoegen aan zijkanten",
- "description": ""
+ "message": "Witte randen toevoegen aan zijkanten"
},
"popupBordersTooltip": {
- "message": "Handig voor donkere thema’s in Chrome, omdat zijranden niet meer worden gerenderd",
- "description": ""
+ "message": "Handig voor donkere thema’s in Chrome, omdat zijranden niet meer worden gerenderd"
},
"popupHotkeysInfo": {
- "message": "<1>-<9>, <0>, ook op het numerieke toetsenbord - schakelt naar de Ne stijl (0 is 10)\n- schakelt naar de eerste stijl die met de letter begint\n opent de editor i.p.v. deze in/uit te schakelen\n schakelt opgesomde stijlen in\n schakelt opgesomde stijlen uit\n en <`> (accent grave) - schakelt tussen initieel ingeschakelde stijlen; niet van toepassing op stijlen die zijn ingeschakeld met het pop-upvenster geopend, zodat u na het uitproberen de initiële selectie kunt herstellen: schakel alles uit en schakel dan om, m.a.w. \nMeer info is te vinden in de wiki",
- "description": "NOTE1: preserve < and > symbols so that is styled as a key.\nNOTE2: the last line is displayed as a text of the link to the wiki page.\nNOTE3: this is the list of hotkeys displayed after clicking the right edge of the extension popup."
+ "message": "<1>-<9>, <0>, ook op het numerieke toetsenbord - schakelt naar de Ne stijl (0 is 10)\n- schakelt naar de eerste stijl die met de letter begint\n opent de editor i.p.v. deze in/uit te schakelen\n schakelt opgesomde stijlen in\n schakelt opgesomde stijlen uit\n en <`> (accent grave) - schakelt tussen initieel ingeschakelde stijlen; niet van toepassing op stijlen die zijn ingeschakeld met het pop-upvenster geopend, zodat u na het uitproberen de initiële selectie kunt herstellen: schakel alles uit en schakel dan om, m.a.w. \nMeer info is te vinden in de wiki"
},
"popupHotkeysTooltip": {
- "message": "Klik om beschikbare sneltoetsen te tonen",
- "description": "Tooltip displayed when hovering the right edge of the extension popup"
+ "message": "Klik om beschikbare sneltoetsen te tonen"
},
"popupManageTooltip": {
- "message": "Shift-klik of rechtsklik opent de beheerder met stijlen die op de huidige website van toepassing zijn",
- "description": "Tooltip for the 'Manage' button in the popup."
+ "message": "Shift-klik of rechtsklik opent de beheerder met stijlen die op de huidige website van toepassing zijn"
},
"popupMenuButtonTooltip": {
- "message": "Actiemenu",
- "description": "Tooltip for menu button in popup."
+ "message": "Actiemenu"
+ },
+ "popupOpenEditInPopup": {
+ "message": "Een eenvoudig venster gebruiken (geen omnibox)"
},
"popupOpenEditInWindow": {
- "message": "Editor openen in nieuw venster",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Editor openen in nieuw venster"
},
"popupOpenEditInWindowTooltip": {
- "message": "Wordt tevens ingeschakeld door het losmaken van het editor-tabblad,\nen uitgeschakeld door het vastmaken van een los editor-tabblad aan een ander venster.",
- "description": "Label for the checkbox controlling 'edit' action behavior in the popup."
+ "message": "Wordt tevens ingeschakeld door het losmaken van het editor-tabblad,\nen uitgeschakeld door het vastmaken van een los editor-tabblad aan een ander venster."
},
"popupStylesFirst": {
- "message": "Stijlen vóór opdrachten",
- "description": "Label for the checkbox controlling section order in the popup."
+ "message": "Stijlen vóór opdrachten"
},
"prefShowBadge": {
- "message": "Aantal actieve stijlen voor de huidige website",
- "description": "Label for the checkbox controlling toolbar badge text."
+ "message": "Aantal actieve stijlen voor de huidige website"
},
"previewLabel": {
- "message": "Live-voorbeeld",
- "description": "Label for the checkbox in style editor to enable live preview while editing."
+ "message": "Live-voorbeeld"
},
"previewTooltip": {
- "message": "Past de wijzigingen tijdelijk toe zonder deze op te slaan.\nSla de stijl op om de wijzigingen permanent te maken.",
- "description": "Tooltip for the checkbox in style editor to enable live preview while editing."
+ "message": "Past de wijzigingen tijdelijk toe zonder deze op te slaan.\nSla de stijl op om de wijzigingen permanent te maken."
+ },
+ "publish": {
+ "message": "Publiceren"
+ },
+ "publishPush": {
+ "message": "Update indienen"
+ },
+ "publishReconnect": {
+ "message": "Probeer de verbinding te verbreken en dan opnieuw te publiceren"
+ },
+ "publishRetry": {
+ "message": "Stylus probeert deze stijl nog steeds te publiceren, maar u kunt het opnieuw proberen als u geen authenticatieactiviteit of pop-ups ziet. Nu opnieuw proberen?"
+ },
+ "publishStyle": {
+ "message": "Stijl publiceren"
+ },
+ "publishUsw": {
+ "message": "Op "
+ },
+ "readingStyles": {
+ "message": "Stijlen lezen..."
},
"reload": {
- "message": "Stylus-extensie herladen",
- "description": "Context menu reload"
+ "message": "Stylus-extensie herladen"
},
"replace": {
- "message": "Vervangen",
- "description": "Label before the replace input field in the editor shown on Ctrl-H"
+ "message": "Vervangen"
},
"replaceAll": {
- "message": "Alle vervangen",
- "description": "Label before the replace input field in the editor shown on 'replaceAll' hotkey"
+ "message": "Alle vervangen"
},
"replaceWith": {
- "message": "Vervangen door",
- "description": "Label before the replace-with input field in the editor shown on Ctrl-H etc."
+ "message": "Vervangen door"
},
"retrieveBckp": {
- "message": "Stijlen importeren",
- "description": ""
+ "message": "Stijlen importeren"
+ },
+ "retrieveDropboxSync": {
+ "message": "Dropbox - Importeren"
},
"search": {
- "message": "Zoeken",
- "description": "Label before the search input field in the editor shown on Ctrl-F"
+ "message": "Zoeken"
},
"searchCaseSensitive": {
- "message": "Hoofdlettergevoelig",
- "description": "Tooltip for the 'Aa' icon that enables case-sensitive search in the editor shown on Ctrl-F"
+ "message": "Hoofdlettergevoelig"
+ },
+ "searchGlobalStyles": {
+ "message": "Ook globale stijlen doorzoeken"
},
"searchNumberOfResults": {
- "message": "Aantal overeenkomsten",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Aantal overeenkomsten"
},
"searchNumberOfResults2": {
- "message": "Aantal overeenkomsten in code en ‘Van toepassing op’-waarden",
- "description": "Tooltip for the number of found search results in the editor shown on Ctrl-F"
+ "message": "Aantal overeenkomsten in code en ‘Van toepassing op’-waarden"
},
"searchRegexp": {
- "message": "Gebruik /re/-syntaxis voor regexp-zoeken",
- "description": "Label after the search input field in the editor shown on Ctrl-F"
+ "message": "Gebruik /re/-syntaxis voor regexp-zoeken"
},
"searchResultInstallCount": {
- "message": "Totale aantal installaties",
- "description": "Text for label that shows the number of times a search result was installed"
+ "message": "Totale aantal installaties"
},
"searchResultNoneFound": {
- "message": "Geen stijlen voor deze website gevonden.",
- "description": "Error text in the popup when inline search didn't find any site-specific styles"
+ "message": "Geen stijlen voor deze website gevonden."
+ },
+ "searchResultNotMatching": {
+ "message": "De stijl is geïnstalleerd, maar wordt niet op de huidige website-URL toegepast."
+ },
+ "searchResultNotMatchingNote": {
+ "message": "Probeer de maker van deze gebruikersstijl te vragen de URL toe te voegen.\n\nU kunt de stijl ook in de beheerder openen en deze zelf bewerken,\nmaar pas op dat dit automatische updates voor deze stijl uitschakelt."
},
"searchResultRating": {
- "message": "Waardering",
- "description": "Text for label that shows the search result's rating"
+ "message": "Waardering"
},
"searchResultUpdated": {
- "message": "Bijgewerkt",
- "description": "Text for label that shows the search result's last update date"
+ "message": "Bijgewerkt"
},
"searchResultWeeklyCount": {
- "message": "Wekelijks aantal installaties",
- "description": "Text for label that shows the number of times a search result was installed during last week"
+ "message": "Wekelijks aantal installaties"
},
- "searchStyles": {
- "message": "Inhoud doorzoeken",
- "description": "Label for the search filter textbox on the Manage styles page"
+ "searchStyleQueryHint": {
+ "message": "Stijlnamen niet hoofdlettergevoelig doorzoeken:\nbepaalde woorden - alle woorden in willekeurige volgorde\n\"bepaalde woordgroep\" - deze exacte woordgroep zonder aanhalingstekens\n2020 - een jaar als dit toont ook stijlen die in 2020 zijn bijgewerkt"
+ },
+ "searchStylesAll": {
+ "message": "Alles"
+ },
+ "searchStylesCode": {
+ "message": "CSS-code"
},
"searchStylesHelp": {
- "message": ">-toets legt de focus in het zoekvak.\nPlatte tekst: zoeken in de naam, code, website-URL en de websites waarop het wordt toegepast. Woorden met minder dan 3 letters worden genegeerd.\nStijlen die met een volledige URL overeenkomen: begin de zoekopdracht met , bv. \nReguliere expressies: voeg schuine strepen en vlaggen toe, bv. \nExacte woorden: gebruik dubbele aanhalingstekens in de zoekterm, bv. <\".header ~ div\">",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the search input field on the Manage styles page"
+ "message": "> of de toets legt de focus op het zoekveld.\nDe standaardmodus is zoeken naar platte tekst op alle door spaties gescheiden termen in willekeurige volgorde.\nExacte woorden: zet de zoekopdracht tussen dubbele (rechte) aanhalingstekens, bv. <\".header ~ div\">.\nReguliere expressies: inclusief schuine strepen en vlaggen, bv. .\n'Op URL' in de scopekiezer: vindt stijlen die op een volledig opgegeven URL van toepassing zijn, zoals https://www.example.org/.\n'Metagegevens' in de scopekiezer: zoekt in namen, 'van toepassing op'-aanduidingen, installatie-URL, update-URL, en het volledige metagegevensblok voor usercss-stijlen."
+ },
+ "searchStylesMatchUrl": {
+ "message": "Op URL"
+ },
+ "searchStylesMeta": {
+ "message": "Metagegevens"
+ },
+ "searchStylesName": {
+ "message": "Naam"
},
"sectionAdd": {
- "message": "Nog een sectie toevoegen",
- "description": "Label for the button to add a section"
+ "message": "Nog een sectie toevoegen"
},
"sectionRemove": {
- "message": "Sectie verwijderen",
- "description": "Label for the button to remove a section"
+ "message": "Sectie verwijderen"
},
"sectionRestore": {
- "message": "Verwijderde sectie herstellen",
- "description": "Label for the button to restore a removed section"
+ "message": "Verwijderde sectie herstellen"
+ },
+ "sections": {
+ "message": "Secties"
},
"shortcuts": {
- "message": "Sneltoetsen",
- "description": "Go to shortcut configuration"
+ "message": "Sneltoetsen"
},
"shortcutsNote": {
- "message": "Sneltoetsen definiëren",
- "description": ""
+ "message": "Sneltoetsen definiëren"
},
"sortDateNewestFirst": {
- "message": "nieuwste eerst",
- "description": "Text added to indicate that sorting a date would add the newest entries at the top"
+ "message": "nieuwste eerst"
},
"sortDateOldestFirst": {
- "message": "oudste eerst",
- "description": "Text added to indicate that sorting a date would add the oldest entries at the top"
+ "message": "oudste eerst"
},
"sortLabel": {
- "message": "Selecteer een sorteermethode om op geïnstalleerde stijlen toe te passen",
- "description": "Title on the sort select to indicate it is used for sorting entries"
+ "message": "Selecteer een sorteermethode om op geïnstalleerde stijlen toe te passen"
},
"sortLabelTitleAsc": {
- "message": "Titel - Oplopend",
- "description": "Text added to option group to indicate a block of options that apply a title ascending (A to Z) sort"
+ "message": "Titel - Oplopend"
},
"sortLabelTitleDesc": {
- "message": "Titel - Aflopend",
- "description": "Text added to option group to indicate a block of options that apply a title descending (Z to A) sort"
+ "message": "Titel - Aflopend"
},
"sortStylesHelp": {
- "message": "Kies de toe te passen sorteermethode voor de geïnstalleerde items vanuit het vervolgkeuzemenu. De standaardinstelling past een oplopende sortering (A-Z) op de itemtitels toe. Sorteren op ‘Titel - Aflopend’ past het omgekeerde (Z-A) toe.\nAndere keuzes laten u items sorteren op basis van meerdere criteria. Denk hierbij aan het sorteren van een tabel met meerdere kolommen, en elke categorie in een selectie (tussen de plustekens) stelt een kolom of groep voor.\nVoorbeeld: als de instelling ‘Ingeschakeld (eerst) + Titel’ is, worden de ingeschakelde items bovenaan geplaatst en worden zowel de in- als uitgeschakelde items apart oplopend gesorteerd (A-Z).",
- "description": "Text in the minihelp displayed when clicking (i) icon to the right of the sort input field on the Manage styles page"
+ "message": "Kies de toe te passen sorteermethode voor de geïnstalleerde items vanuit het vervolgkeuzemenu. De standaardinstelling past een oplopende sortering (A-Z) op de itemtitels toe. Sorteren op ‘Titel - Aflopend’ past het omgekeerde (Z-A) toe.\nAndere keuzes laten u items sorteren op basis van meerdere criteria. Denk hierbij aan het sorteren van een tabel met meerdere kolommen, en elke categorie in een selectie (tussen de plustekens) stelt een kolom of groep voor.\nVoorbeeld: als de instelling ‘Ingeschakeld (eerst) + Titel’ is, worden de ingeschakelde items bovenaan geplaatst en worden zowel de in- als uitgeschakelde items apart oplopend gesorteerd (A-Z)."
},
"sortStylesHelpTitle": {
- "message": "Inhoud sorteren",
- "description": "Label for the sort info popup on the Manage styles page"
+ "message": "Inhoud sorteren"
},
"styleBadRegexp": {
- "message": "Regexp is ongeldig.",
- "description": "Validation message for a bad regexp in a style"
+ "message": "Regexp is ongeldig."
},
"styleBeautify": {
- "message": "Mooier maken",
- "description": "Label for the CSS-beautifier button on the edit style page"
+ "message": "Mooier maken"
},
"styleBeautifyHint": {
- "message": "Hint: klik met de rechtermuisknop op de knop ‘Mooier maken’ of gebruik de hieronder gedefinieerde sneltoets om iets mooier te maken zonder dit paneel te tonen",
- "description": "Hint shown inside the CSS-beautifier panel"
+ "message": "Hint: klik met de rechtermuisknop op de knop ‘Mooier maken’ of gebruik de hieronder gedefinieerde sneltoets om iets mooier te maken zonder dit paneel te tonen"
},
"styleBeautifyIndentConditional": {
- "message": "@media, @supports inspringen",
- "description": "CSS-beautifier option"
+ "message": "@media, @supports inspringen"
},
"styleBeautifyPreserveNewlines": {
- "message": "Nieuwe regels behouden",
- "description": "CSS-beautifier option"
+ "message": "Nieuwe regels behouden"
},
"styleCancelEditLabel": {
- "message": "Terug naar beheren",
- "description": "Label for cancel button for style editing"
+ "message": "Terug naar beheren"
},
"styleChangesNotSaved": {
- "message": "U hebt wijzigingen in deze stijl aangebracht zonder op te slaan.",
- "description": "Text for the prompt when changes are made to a style and the user tries to leave without saving"
+ "message": "U hebt wijzigingen in deze stijl aangebracht zonder op te slaan."
},
"styleEnabledLabel": {
- "message": "Ingeschakeld",
- "description": "Label for the enabled state of styles"
+ "message": "Ingeschakeld"
},
"styleFromMozillaFormatError": {
- "message": "Importeren vanuit Mozilla-opmaak mislukt",
- "description": "Label for the import error"
+ "message": "Importeren vanuit Mozilla-opmaak mislukt"
},
"styleFromMozillaFormatPrompt": {
- "message": "Plak de code in Mozilla-opmaak",
- "description": "Prompt in the dialog displayed after clicking 'Import from Mozilla format' button"
+ "message": "Plak de code in Mozilla-opmaak"
},
"styleInstall": {
"message": "‘$stylename$’ installeren in Stylus?",
- "description": "Confirmation when installing a style",
"placeholders": {
"stylename": {
"content": "$1"
@@ -1324,7 +1177,6 @@
},
"styleInstallFailed": {
"message": "Installeren van gebruikersstijl mislukt!\n$error$",
- "description": "Warning when installation failed",
"placeholders": {
"error": {
"content": "$1"
@@ -1333,86 +1185,71 @@
},
"styleInstallOverwrite": {
"message": "‘$stylename$’ is al geïnstalleerd. Overschrijven?\nVersie: $oldVersion$ -> $newVersion$",
- "description": "Confirmation when re-installing a style",
"placeholders": {
- "stylename": {
- "content": "$1"
- },
"newVersion": {
"content": "$3"
},
"oldVersion": {
"content": "$2"
+ },
+ "stylename": {
+ "content": "$1"
}
}
},
"styleMissingName": {
- "message": "Voer een naam in",
- "description": "Error displayed when user saves without providing a name"
+ "message": "Voer een naam in"
},
"styleMozillaFormatHeading": {
- "message": "Mozilla-opmaak",
- "description": "Heading for the section with buttons to import/export Mozilla format of the style"
+ "message": "Mozilla-opmaak"
+ },
+ "styleName": {
+ "message": "Stijlnaam"
},
"styleNotAppliedRegexpProblemTooltip": {
- "message": "Stijl is niet toegepast vanwege onjuist gebruik van ‘regexp()’",
- "description": "Tooltip in the popup for styles that were not applied at all"
+ "message": "Stijl is niet toegepast vanwege onjuist gebruik van ‘regexp()’"
},
"styleRegexpInvalidExplanation": {
- "message": "Sommige ‘regexp()’-regels konden niet worden gecompileerd.",
- "description": ""
+ "message": "Sommige ‘regexp()’-regels konden niet worden gecompileerd."
},
"styleRegexpPartialExplanation": {
- "message": "Deze stijl gebruikt gedeeltelijk overeenkomende regexps. Dit is in strijd met de