Migrate translations to keys and switch to Localazy (#1198)

This commit is contained in:
Michael Telatynski 2023-09-05 17:09:47 +01:00 committed by GitHub
parent 2c62efa6e8
commit 86832a1793
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
63 changed files with 2857 additions and 2057 deletions

View file

@ -0,0 +1,8 @@
name: Localazy Download
on:
workflow_dispatch: {}
jobs:
download:
uses: matrix-org/matrix-web-i18n/.github/workflows/localazy_download.yaml@main
secrets:
ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}

11
.github/workflows/localazy_upload.yaml vendored Normal file
View file

@ -0,0 +1,11 @@
name: Localazy Upload
on:
push:
branches: [develop]
paths:
- "src/strings/i18n/en_EN.json"
jobs:
upload:
uses: matrix-org/matrix-web-i18n/.github/workflows/localazy_upload.yaml@main
secrets:
LOCALAZY_WRITE_KEY: ${{ secrets.LOCALAZY_WRITE_KEY }}

View file

@ -23,7 +23,7 @@ jobs:
i18n_lint: i18n_lint:
name: "i18n Check" name: "i18n Check"
uses: matrix-org/matrix-react-sdk/.github/workflows/i18n_check.yml@develop uses: matrix-org/matrix-web-i18n/.github/workflows/i18n_check.yml@main
js_lint: js_lint:
name: "ESLint" name: "ESLint"

View file

@ -1,6 +1,6 @@
![Build](https://github.com/vector-im/element-desktop/actions/workflows/build.yaml/badge.svg) ![Build](https://github.com/vector-im/element-desktop/actions/workflows/build.yaml/badge.svg)
![Static Analysis](https://github.com/vector-im/element-desktop/actions/workflows/static_analysis.yaml/badge.svg) ![Static Analysis](https://github.com/vector-im/element-desktop/actions/workflows/static_analysis.yaml/badge.svg)
[![Weblate](https://translate.element.io/widgets/element-desktop/-/element-desktop/svg-badge.svg)](https://translate.element.io/engage/element-desktop/) [![Localazy](https://img.shields.io/endpoint?url=https%3A%2F%2Fconnect.localazy.com%2Fstatus%2Felement-web%2Fdata%3Fcontent%3Dall%26title%3Dlocalazy%26logo%3Dtrue)](https://localazy.com/p/element-web)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=element-desktop&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=element-desktop) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=element-desktop&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=element-desktop)
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=element-desktop&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=element-desktop) [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=element-desktop&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=element-desktop)
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=element-desktop&metric=bugs)](https://sonarcloud.io/summary/new_code?id=element-desktop) [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=element-desktop&metric=bugs)](https://sonarcloud.io/summary/new_code?id=element-desktop)
@ -149,8 +149,6 @@ To add a new translation, head to the [translating doc](https://github.com/vecto
For a developer guide, see the [translating dev doc](https://github.com/vector-im/element-web/blob/develop/docs/translating-dev.md). For a developer guide, see the [translating dev doc](https://github.com/vector-im/element-web/blob/develop/docs/translating-dev.md).
[<img src="https://translate.element.io/widgets/element-desktop/-/multi-auto.svg" alt="translationsstatus" width="340">](https://translate.element.io/engage/element-desktop/?utm_source=widget)
# Report bugs & give feedback # Report bugs & give feedback
If you run into any bugs or have feedback you'd like to share, please let us know on GitHub. If you run into any bugs or have feedback you'd like to share, please let us know on GitHub.

37
localazy.json Normal file
View file

@ -0,0 +1,37 @@
{
"readKey": "a7688614897667993891-866e2615b0a22e6ccef56aea9b10e815efa3e1296752a7a30bd9925f1a8f33e7",
"upload": {
"type": "json",
"keySeparator": "|",
"deprecate": "file",
"features": ["plural_object", "filter_untranslated"],
"files": [
{
"pattern": "src/i18n/strings/en_EN.json",
"file": "element-desktop.json",
"lang": "inherited"
},
{
"group": "existing",
"pattern": "src/i18n/strings/*.json",
"file": "element-desktop.json",
"excludes": ["src/i18n/strings/en_EN.json"],
"lang": "${autodetectLang}"
}
]
},
"download": {
"files": [
{
"conditions": "equals: ${file}, element-desktop.json",
"output": "src/i18n/strings/${langLsrUnderscore}.json"
}
],
"includeSourceLang": "${includeSourceLang|false}",
"langAliases": {
"en-GB": "en-EN"
}
}
}

View file

@ -16,9 +16,10 @@
"node": ">=16.0.0" "node": ">=16.0.0"
}, },
"scripts": { "scripts": {
"i18n": "matrix-gen-i18n", "i18n": "matrix-gen-i18n && yarn i18n:sort && yarn i18n:lint",
"prunei18n": "matrix-prune-i18n", "i18n:sort": "jq --sort-keys '.' src/i18n/strings/en_EN.json > src/i18n/strings/en_EN.json.tmp && mv src/i18n/strings/en_EN.json.tmp src/i18n/strings/en_EN.json",
"diff-i18n": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && matrix-gen-i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json", "i18n:lint": "prettier --loglevel silent --write src/i18n/strings/ --ignore-path /dev/null",
"i18n:diff": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && yarn i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json",
"mkdirs": "mkdirp packages deploys", "mkdirs": "mkdirp packages deploys",
"fetch": "yarn run mkdirs && ts-node scripts/fetch-package.ts", "fetch": "yarn run mkdirs && ts-node scripts/fetch-package.ts",
"asar-webapp": "asar p webapp webapp.asar", "asar-webapp": "asar p webapp webapp.asar",
@ -105,7 +106,7 @@
"fs-extra": "^11.0.0", "fs-extra": "^11.0.0",
"glob": "^10.0.0", "glob": "^10.0.0",
"jest": "^29.0.0", "jest": "^29.0.0",
"matrix-web-i18n": "^2.0.0", "matrix-web-i18n": "^3.1.1",
"mkdirp": "^3.0.0", "mkdirp": "^3.0.0",
"node-pre-gyp": "^0.17.0", "node-pre-gyp": "^0.17.0",
"pacote": "^15.0.0", "pacote": "^15.0.0",

View file

@ -260,7 +260,8 @@ global.appQuitting = false;
const exitShortcuts: Array<(input: Input, platform: string) => boolean> = [ const exitShortcuts: Array<(input: Input, platform: string) => boolean> = [
(input, platform): boolean => platform !== "darwin" && input.alt && input.key.toUpperCase() === "F4", (input, platform): boolean => platform !== "darwin" && input.alt && input.key.toUpperCase() === "F4",
(input, platform): boolean => platform !== "darwin" && input.control && input.key.toUpperCase() === "Q", (input, platform): boolean => platform !== "darwin" && input.control && input.key.toUpperCase() === "Q",
(input, platform): boolean => platform === "darwin" && input.meta && !input.control && input.key.toUpperCase() === "Q", (input, platform): boolean =>
platform === "darwin" && input.meta && !input.control && input.key.toUpperCase() === "Q",
]; ];
const warnBeforeExit = (event: Event, input: Input): void => { const warnBeforeExit = (event: Event, input: Input): void => {
@ -273,12 +274,12 @@ const warnBeforeExit = (event: Event, input: Input): void => {
dialog.showMessageBoxSync(global.mainWindow, { dialog.showMessageBoxSync(global.mainWindow, {
type: "question", type: "question",
buttons: [ buttons: [
_t("Cancel"), _t("action|cancel"),
_t("Close %(brand)s", { _t("action|close_brand", {
brand: global.vectorConfig.brand || "Element", brand: global.vectorConfig.brand || "Element",
}), }),
], ],
message: _t("Are you sure you want to quit?"), message: _t("confirm_quit"),
defaultId: 1, defaultId: 1,
cancelId: 0, cancelId: 0,
}) === 0; }) === 0;

View file

@ -1,46 +1,62 @@
{ {
"File": "ملف", "action": {
"Close": "أغلِق", "cancel": "ألغِ",
"Actual Size": "المقاس الفعلي", "close": "أغلِق",
"View": "منظور", "close_brand": "اغلاق %(brand)s",
"Select All": "حدّد الكل", "copy": "انسخ",
"Delete": "احذف", "cut": "قصّ",
"Copy": "انسخ", "delete": "احذف",
"Edit": "تحرير", "edit": "تحرير",
"Cancel": "ألغِ", "minimise": "صغّر",
"Bring All to Front": "ضَع الكل في المقدّمة", "paste": "ألصِق",
"Speech": "نطق", "paste_match_style": "ألصِق وطابِق النمط",
"Add to dictionary": "أضِف إلى القاموس", "quit": "غادِر",
"The image failed to save": "فشل حفظ الصورة", "redo": "أعِد",
"Failed to save image": "فشل حفظ الصورة", "select_all": "حدّد الكل",
"Save image as...": "احفظ الصورة كَ‍...", "show_hide": "اعرض/أخفِ",
"Copy link address": "انسخ عنوان الرابط", "undo": "تراجَع",
"Copy email address": "انسخ عنوان البريد الإلكتروني", "zoom_in": "قرّب",
"Copy image": "انسخ الصورة", "zoom_out": "بعّد"
"Zoom": "تقريب", },
"Stop Speaking": "أوقِف النطق", "common": {
"Start Speaking": "ابدأ النطق", "about": "عن",
"Unhide": "اعرض", "help": "مساعدة",
"Hide Others": "أخفِ البقية", "preferences": "التفضيلات"
"Hide": "أخفِ", },
"Services": "الخدمات", "confirm_quit": "أمتأكّد من الإغلاق؟",
"About": "عن", "edit_menu": {
"Help": "مساعدة", "speech": "نطق",
"Minimize": "صغّر", "speech_start_speaking": "ابدأ النطق",
"Window": "نافذة", "speech_stop_speaking": "أوقِف النطق"
"Toggle Developer Tools": "فعّل/عطّل أدوات المطوّرين", },
"Toggle Full Screen": "فعّل/عطّل ملء الشاشة", "file_menu": {
"Preferences": "التفضيلات", "label": "ملف"
"Zoom In": "قرّب", },
"Zoom Out": "بعّد", "menu": {
"Paste and Match Style": "ألصِق وطابِق النمط", "hide": "أخفِ",
"Paste": "ألصِق", "hide_others": "أخفِ البقية",
"Cut": "قصّ", "services": "الخدمات",
"Redo": "أعِد", "unhide": "اعرض"
"Undo": "تراجَع", },
"Quit": "غادِر", "right_click_menu": {
"Show/Hide": "اعرض/أخفِ", "add_to_dictionary": "أضِف إلى القاموس",
"Are you sure you want to quit?": "أمتأكّد من الإغلاق؟", "copy_email": "انسخ عنوان البريد الإلكتروني",
"Copy image address": "انسخ عنوان (رابط) الصورة", "copy_image": "انسخ الصورة",
"Close %(brand)s": "اغلاق %(brand)s" "copy_image_url": "انسخ عنوان (رابط) الصورة",
"copy_link_url": "انسخ عنوان الرابط",
"save_image_as": "احفظ الصورة كَ‍...",
"save_image_as_error_description": "فشل حفظ الصورة",
"save_image_as_error_title": "فشل حفظ الصورة"
},
"view_menu": {
"actual_size": "المقاس الفعلي",
"toggle_developer_tools": "فعّل/عطّل أدوات المطوّرين",
"toggle_full_screen": "فعّل/عطّل ملء الشاشة",
"view": "منظور"
},
"window_menu": {
"bring_all_to_front": "ضَع الكل في المقدّمة",
"label": "نافذة",
"zoom": "تقريب"
}
} }

View file

@ -1 +0,0 @@
{}

View file

@ -1,44 +1,60 @@
{ {
"Add to dictionary": "Дадаць у слоўнік", "action": {
"The image failed to save": "Не атрымалася захаваць малюнак", "cancel": "Адмена",
"Failed to save image": "Не атрымалася захаваць малюнак", "close": "Зачыніць",
"Save image as...": "Захаваць малюнак як...", "copy": "Капіяваць",
"Copy link address": "Скапіраваць спасылку", "cut": "Выразаць",
"Copy email address": "Скапіраваць адрас пошты", "delete": "Выдаліць",
"Copy image": "Скапіраваць малюнак", "edit": "Змяніць",
"File": "Файл", "minimise": "Згарнуць",
"Bring All to Front": "Вынесці ўсё наперад", "paste": "Уставіць",
"Zoom": "Маштаб", "paste_match_style": "Уставіць і супаставіць стыль",
"Stop Speaking": "Перастаць гаварыць", "quit": "Выйсці",
"Start Speaking": "Гаварыць", "redo": "Паўтарыць",
"Speech": "Голас", "select_all": "Выбраць усё",
"Unhide": "Паказаць", "show_hide": "Паказаць / схаваць",
"Hide Others": "Схаваць іншыя", "undo": "Адмяніць",
"Hide": "Схаваць", "zoom_in": "Павялічыць",
"Services": "Сервісы", "zoom_out": "Паменшыць"
"About": "Аб праграме", },
"Help": "Даведка", "common": {
"Close": "Зачыніць", "about": "Аб праграме",
"Minimize": "Згарнуць", "help": "Даведка",
"Window": "Акно", "preferences": "Параметры"
"Toggle Developer Tools": "Пераключэнне інструментаў распрацоўніка", },
"Toggle Full Screen": "Пераключэнне на ўвесь экран", "confirm_quit": "Вы ўпэўненыя, што хочаце выйсці?",
"Preferences": "Параметры", "edit_menu": {
"Zoom Out": "Паменшыць", "speech": "Голас",
"Zoom In": "Павялічыць", "speech_start_speaking": "Гаварыць",
"Actual Size": "Фактычны Памер", "speech_stop_speaking": "Перастаць гаварыць"
"View": "Прагляд", },
"Select All": "Выбраць усё", "file_menu": {
"Delete": "Выдаліць", "label": "Файл"
"Paste and Match Style": "Уставіць і супаставіць стыль", },
"Paste": "Уставіць", "menu": {
"Copy": "Капіяваць", "hide": "Схаваць",
"Cut": "Выразаць", "hide_others": "Схаваць іншыя",
"Redo": "Паўтарыць", "services": "Сервісы",
"Undo": "Адмяніць", "unhide": "Паказаць"
"Edit": "Змяніць", },
"Quit": "Выйсці", "right_click_menu": {
"Show/Hide": "Паказаць / схаваць", "add_to_dictionary": "Дадаць у слоўнік",
"Are you sure you want to quit?": "Вы ўпэўненыя, што хочаце выйсці?", "copy_email": "Скапіраваць адрас пошты",
"Cancel": "Адмена" "copy_image": "Скапіраваць малюнак",
"copy_link_url": "Скапіраваць спасылку",
"save_image_as": "Захаваць малюнак як...",
"save_image_as_error_description": "Не атрымалася захаваць малюнак",
"save_image_as_error_title": "Не атрымалася захаваць малюнак"
},
"view_menu": {
"actual_size": "Фактычны Памер",
"toggle_developer_tools": "Пераключэнне інструментаў распрацоўніка",
"toggle_full_screen": "Пераключэнне на ўвесь экран",
"view": "Прагляд"
},
"window_menu": {
"bring_all_to_front": "Вынесці ўсё наперад",
"label": "Акно",
"zoom": "Маштаб"
}
} }

View file

@ -1,45 +1,61 @@
{ {
"Add to dictionary": "Добави към речника", "action": {
"The image failed to save": "Изображението не успя да се запази", "cancel": "Отказ",
"Failed to save image": "Неуспешно запазване на изображението", "close": "Затвори",
"Save image as...": "Запази изображението като...", "copy": "Копирай",
"Copy link address": "Копирай линка", "cut": "Изрежи",
"Copy image address": "Копирай адреса на изображението", "delete": "Изтрий",
"Copy email address": "Копирай имейл адрес", "edit": "Редактирай",
"Copy image": "Копирай изображение", "minimise": "Минимизирай",
"File": "Файл", "paste": "Постави",
"Bring All to Front": "Покажи всички най-отгоре", "paste_match_style": "Постави и Използвай текущия стил",
"Zoom": "Мащабирай", "quit": "Напусни",
"Stop Speaking": "Спри да говориш", "redo": "Върни",
"Start Speaking": "Започни да говориш", "select_all": "Избери Всичко",
"Speech": "Говор", "show_hide": "Покажи/Скрий",
"Unhide": "Покажи", "undo": "Отмени",
"Hide Others": "Скрий Останалите", "zoom_in": "Увеличи",
"Hide": "Скрий", "zoom_out": "Намали"
"Services": "Услуги", },
"About": "Относно", "common": {
"Help": "Помощ", "about": "Относно",
"Close": "Затвори", "help": "Помощ",
"Minimize": "Минимизирай", "preferences": "Предпочитания"
"Window": "Прозорец", },
"Toggle Developer Tools": "Превключи инструментите за разработчици", "confirm_quit": "Сигурен ли си че искаш да напуснеш?",
"Toggle Full Screen": "Превключи на Цял екран", "edit_menu": {
"Preferences": "Предпочитания", "speech": "Говор",
"Zoom Out": "Намали", "speech_start_speaking": "Започни да говориш",
"Zoom In": "Увеличи", "speech_stop_speaking": "Спри да говориш"
"Actual Size": "Действителен Размер", },
"View": "Преглед", "file_menu": {
"Select All": "Избери Всичко", "label": "Файл"
"Delete": "Изтрий", },
"Paste and Match Style": "Постави и Използвай текущия стил", "menu": {
"Paste": "Постави", "hide": "Скрий",
"Copy": "Копирай", "hide_others": "Скрий Останалите",
"Cut": "Изрежи", "services": "Услуги",
"Redo": "Върни", "unhide": "Покажи"
"Undo": "Отмени", },
"Edit": "Редактирай", "right_click_menu": {
"Quit": "Напусни", "add_to_dictionary": "Добави към речника",
"Show/Hide": "Покажи/Скрий", "copy_email": "Копирай имейл адрес",
"Are you sure you want to quit?": "Сигурен ли си че искаш да напуснеш?", "copy_image": "Копирай изображение",
"Cancel": "Отказ" "copy_image_url": "Копирай адреса на изображението",
"copy_link_url": "Копирай линка",
"save_image_as": "Запази изображението като...",
"save_image_as_error_description": "Изображението не успя да се запази",
"save_image_as_error_title": "Неуспешно запазване на изображението"
},
"view_menu": {
"actual_size": "Действителен Размер",
"toggle_developer_tools": "Превключи инструментите за разработчици",
"toggle_full_screen": "Превключи на Цял екран",
"view": "Преглед"
},
"window_menu": {
"bring_all_to_front": "Покажи всички най-отгоре",
"label": "Прозорец",
"zoom": "Мащабирай"
}
} }

View file

@ -1,45 +1,61 @@
{ {
"Are you sure you want to quit?": "তুমি কি আসলেই বের হতে চাও?", "action": {
"Cancel": "বাতিল", "cancel": "বাতিল",
"Save image as...": "ছবি সংরক্ষণের ধরন...", "close": "বন্ধ",
"Failed to save image": "ছবি সংরক্ষণ ব্যর্থ", "copy": "অনুলিপি",
"The image failed to save": "ছবি সংরক্ষণ ব্যর্থ", "cut": "কাটো",
"Add to dictionary": "অভিধানে যোগ করি", "delete": "অপসারণ",
"Copy link address": "সংযোগের ঠিকানা অনুলিপি করো", "edit": "সম্পাদনা",
"Copy image address": "ছবির ঠিকানা অনুলিপি করো", "minimise": "সংকোচন",
"Copy email address": "ইমেইল ঠিকানা অনুলিপি করো", "paste": "লেপন",
"Copy image": "ছবি অনুলিপি করো", "paste_match_style": "লেপন ও একই ধরনে",
"File": "নথি", "quit": "প্রস্থান",
"Bring All to Front": "সবকিছু সামনে আনো", "redo": "পুন",
"Zoom": "বড় করা", "select_all": "সব নির্বাচন",
"Stop Speaking": "কথা বন্ধ করো", "show_hide": "দেখাও/লুকাও",
"Start Speaking": "কথা শুরু করো", "undo": "ফিরত",
"Speech": "বাচন", "zoom_in": "বড়ো করো",
"Unhide": "দেখাও", "zoom_out": "ছোট করো"
"Hide Others": "অন্যগুলো লুকাও", },
"Hide": "লুকাও", "common": {
"Services": "সেবা", "about": "আমাদের সম্পর্কে",
"About": "আমাদের সম্পর্কে", "help": "সাহায্য",
"Help": "সাহায্য", "preferences": "পছন্দসমূহ"
"Close": "বন্ধ", },
"Minimize": "সংকোচন", "confirm_quit": "তুমি কি আসলেই বের হতে চাও?",
"Window": "জানালা", "edit_menu": {
"Toggle Developer Tools": "ডেভেলপার সরঞ্জামাদি", "speech": "বাচন",
"Toggle Full Screen": "পূর্ণ পর্দা করো/বের হও", "speech_start_speaking": "কথা শুরু করো",
"Preferences": "পছন্দসমূহ", "speech_stop_speaking": "কথা বন্ধ করো"
"Zoom Out": "ছোট করো", },
"Zoom In": "বড়ো করো", "file_menu": {
"Actual Size": "আসল আকার", "label": "নথি"
"View": "দেখো", },
"Select All": "সব নির্বাচন", "menu": {
"Delete": "অপসারণ", "hide": "লুকাও",
"Paste and Match Style": "লেপন ও একই ধরনে", "hide_others": "অন্যগুলো লুকাও",
"Paste": "লেপন", "services": "সেবা",
"Copy": "অনুলিপি", "unhide": "দেখাও"
"Cut": "কাটো", },
"Redo": "পুন", "right_click_menu": {
"Undo": "ফিরত", "add_to_dictionary": "অভিধানে যোগ করি",
"Edit": "সম্পাদনা", "copy_email": "ইমেইল ঠিকানা অনুলিপি করো",
"Quit": "প্রস্থান", "copy_image": "ছবি অনুলিপি করো",
"Show/Hide": "দেখাও/লুকাও" "copy_image_url": "ছবির ঠিকানা অনুলিপি করো",
"copy_link_url": "সংযোগের ঠিকানা অনুলিপি করো",
"save_image_as": "ছবি সংরক্ষণের ধরন...",
"save_image_as_error_description": "ছবি সংরক্ষণ ব্যর্থ",
"save_image_as_error_title": "ছবি সংরক্ষণ ব্যর্থ"
},
"view_menu": {
"actual_size": "আসল আকার",
"toggle_developer_tools": "ডেভেলপার সরঞ্জামাদি",
"toggle_full_screen": "পূর্ণ পর্দা করো/বের হও",
"view": "দেখো"
},
"window_menu": {
"bring_all_to_front": "সবকিছু সামনে আনো",
"label": "জানালা",
"zoom": "বড় করা"
}
} }

View file

@ -1,44 +1,60 @@
{ {
"Add to dictionary": "Afegeix al diccionari", "action": {
"The image failed to save": "S'ha fallat en desar la imatge", "cancel": "Cancel·la",
"Failed to save image": "S'ha fallat en desar la imatge", "close": "Tanca",
"Save image as...": "Anomena i desa la imatge...", "copy": "Copia",
"Copy link address": "Copia l'adreça de l'enllaç", "cut": "Retalla",
"Copy email address": "Copia l'adreça de correu electrònic", "delete": "Suprimeix",
"Copy image": "Copia la imatge", "edit": "Edita",
"File": "Fitxer", "minimise": "Minimitza",
"Bring All to Front": "Porta-ho tot al davant", "paste": "Enganxa",
"Zoom": "Escala", "paste_match_style": "Enganxa i fes coincidir l'estil",
"Stop Speaking": "Para la veu", "quit": "Surt",
"Start Speaking": "Comença la veu", "redo": "Refés",
"Speech": "Veu", "select_all": "Selecciona-ho tot",
"Unhide": "Deixa d'amagar", "show_hide": "Mostra/Amaga",
"Hide Others": "Amaga les altres", "undo": "Desfés",
"Hide": "Amaga", "zoom_in": "Apropia",
"Services": "Serveis", "zoom_out": "Allunya"
"About": "Quant a", },
"Help": "Ajuda", "common": {
"Close": "Tanca", "about": "Quant a",
"Minimize": "Minimitza", "help": "Ajuda",
"Window": "Finestra", "preferences": "Preferències"
"Toggle Developer Tools": "Commuta les eines per a desenvolupadors", },
"Toggle Full Screen": "Commuta la pantalla completa", "confirm_quit": "Esteu segur que voleu sortir?",
"Preferences": "Preferències", "edit_menu": {
"Zoom Out": "Allunya", "speech": "Veu",
"Zoom In": "Apropia", "speech_start_speaking": "Comença la veu",
"Actual Size": "Mida real", "speech_stop_speaking": "Para la veu"
"View": "Visualitza", },
"Select All": "Selecciona-ho tot", "file_menu": {
"Delete": "Suprimeix", "label": "Fitxer"
"Paste and Match Style": "Enganxa i fes coincidir l'estil", },
"Paste": "Enganxa", "menu": {
"Copy": "Copia", "hide": "Amaga",
"Cut": "Retalla", "hide_others": "Amaga les altres",
"Redo": "Refés", "services": "Serveis",
"Undo": "Desfés", "unhide": "Deixa d'amagar"
"Edit": "Edita", },
"Quit": "Surt", "right_click_menu": {
"Show/Hide": "Mostra/Amaga", "add_to_dictionary": "Afegeix al diccionari",
"Are you sure you want to quit?": "Esteu segur que voleu sortir?", "copy_email": "Copia l'adreça de correu electrònic",
"Cancel": "Cancel·la" "copy_image": "Copia la imatge",
"copy_link_url": "Copia l'adreça de l'enllaç",
"save_image_as": "Anomena i desa la imatge...",
"save_image_as_error_description": "S'ha fallat en desar la imatge",
"save_image_as_error_title": "S'ha fallat en desar la imatge"
},
"view_menu": {
"actual_size": "Mida real",
"toggle_developer_tools": "Commuta les eines per a desenvolupadors",
"toggle_full_screen": "Commuta la pantalla completa",
"view": "Visualitza"
},
"window_menu": {
"bring_all_to_front": "Porta-ho tot al davant",
"label": "Finestra",
"zoom": "Escala"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Add to dictionary": "Přidat do slovníku", "action": {
"Failed to save image": "Chyba při ukládání obrázku", "cancel": "Zrušit",
"The image failed to save": "Obrázek se nepodařilo uložit", "close": "Zavřít",
"Save image as...": "Uložit obrázek jako...", "close_brand": "Zavřít %(brand)s",
"Copy link address": "Kopírovat adresu odkazu", "copy": "Kopírovat",
"Copy image address": "Kopírovat adresu obrázku", "cut": "Vyjmout",
"Copy email address": "Kopírovat e-mailovou adresu", "delete": "Smazat",
"Copy image": "Kopírovat obrázek", "edit": "Úpravy",
"File": "Soubor", "minimise": "Minimalizovat",
"Bring All to Front": "Přenést vše do popředí", "paste": "Vložit",
"Zoom": "Lupa", "paste_match_style": "Vložit a přizpůsobit styl",
"Stop Speaking": "Zastavit nahrávání hlasu", "quit": "Ukončit",
"Start Speaking": "Spustit nahrávání hlasu", "redo": "Znovu",
"Speech": "Řeč", "select_all": "Vybrat vše",
"Unhide": "Zrušit skrytí", "show_hide": "Zobrazit/Skrýt",
"Hide Others": "Skrýt ostatní", "undo": "Zpět",
"Hide": "Skrýt", "zoom_in": "Přiblížit",
"Services": "Služby", "zoom_out": "Oddálit"
"About": "O aplikaci", },
"Help": "Nápověda", "common": {
"Close": "Zavřít", "about": "O aplikaci",
"Minimize": "Minimalizovat", "brand_help": "%(brand)s nápověda",
"Window": "Okno", "help": "Nápověda",
"Toggle Developer Tools": "Přepnout zobrazení nástrojů pro vývojáře", "preferences": "Předvolby"
"Toggle Full Screen": "Přepnout zobrazení celé obrazovky", },
"Preferences": "Předvolby", "confirm_quit": "Opravdu chcete ukončit aplikaci?",
"Zoom Out": "Oddálit", "edit_menu": {
"Zoom In": "Přiblížit", "speech": "Řeč",
"Actual Size": "Aktuální velikost", "speech_start_speaking": "Spustit nahrávání hlasu",
"View": "Zobrazit", "speech_stop_speaking": "Zastavit nahrávání hlasu"
"Select All": "Vybrat vše", },
"Delete": "Smazat", "file_menu": {
"Paste and Match Style": "Vložit a přizpůsobit styl", "label": "Soubor"
"Paste": "Vložit", },
"Copy": "Kopírovat", "menu": {
"Cut": "Vyjmout", "hide": "Skrýt",
"Redo": "Znovu", "hide_others": "Skrýt ostatní",
"Undo": "Zpět", "services": "Služby",
"Edit": "Úpravy", "unhide": "Zrušit skrytí"
"Quit": "Ukončit", },
"Show/Hide": "Zobrazit/Skrýt", "right_click_menu": {
"Are you sure you want to quit?": "Opravdu chcete ukončit aplikaci?", "add_to_dictionary": "Přidat do slovníku",
"Close %(brand)s": "Zavřít %(brand)s", "copy_email": "Kopírovat e-mailovou adresu",
"Cancel": "Zrušit", "copy_image": "Kopírovat obrázek",
"%(brand)s Help": "%(brand)s nápověda" "copy_image_url": "Kopírovat adresu obrázku",
"copy_link_url": "Kopírovat adresu odkazu",
"save_image_as": "Uložit obrázek jako...",
"save_image_as_error_description": "Obrázek se nepodařilo uložit",
"save_image_as_error_title": "Chyba při ukládání obrázku"
},
"view_menu": {
"actual_size": "Aktuální velikost",
"toggle_developer_tools": "Přepnout zobrazení nástrojů pro vývojáře",
"toggle_full_screen": "Přepnout zobrazení celé obrazovky",
"view": "Zobrazit"
},
"window_menu": {
"bring_all_to_front": "Přenést vše do popředí",
"label": "Okno",
"zoom": "Lupa"
}
} }

View file

@ -1,47 +1,62 @@
{ {
"Speech": "Sprache", "action": {
"Paste and Match Style": "Einfügen und Formatierung beibehalten", "cancel": "Abbrechen",
"Stop Speaking": "Aufnahme beenden", "close": "Schließen",
"Start Speaking": "Aufnahme starten", "close_brand": "%(brand)s schließen",
"Services": "Dienste", "copy": "Kopieren",
"Are you sure you want to quit?": "Wirklich beenden?", "cut": "Ausschneiden",
"Add to dictionary": "Wörterbuch hinzufügen", "delete": "Löschen",
"The image failed to save": "Das Bild konnte nicht gespeichert werden", "edit": "Bearbeiten",
"Failed to save image": "Bild kann nicht gespeichert werden", "minimise": "Minimieren",
"Save image as...": "Bild speichern unter...", "paste": "Einfügen",
"Copy link address": "Link-Adresse kopieren", "paste_match_style": "Einfügen und Formatierung beibehalten",
"Copy email address": "Email-Adresse kopieren", "quit": "Beenden",
"Copy image": "Bild kopieren", "redo": "Wiederherstellen",
"File": "Datei", "select_all": "Alles auswählen",
"Bring All to Front": "Alles in den Vordergrund", "show_hide": "Anzeigen/Ausblenden",
"Zoom": "Zoom", "undo": "Rückgängig",
"Unhide": "Wieder anzeigen", "zoom_in": "Vergrößern",
"Hide Others": "Andere verstecken", "zoom_out": "Verkleinern"
"Hide": "Verstecken", },
"About": "Über", "common": {
"Help": "Hilfe", "about": "Über",
"Close": "Schließen", "brand_help": "%(brand)s Hilfe",
"Minimize": "Minimieren", "help": "Hilfe",
"Window": "Fenster", "preferences": "Einstellungen"
"Toggle Developer Tools": "Developer-Tools an/aus", },
"Toggle Full Screen": "Vollbildschirm an/aus", "confirm_quit": "Wirklich beenden?",
"Preferences": "Einstellungen", "edit_menu": {
"Zoom Out": "Verkleinern", "speech": "Sprache",
"Zoom In": "Vergrößern", "speech_start_speaking": "Aufnahme starten",
"Actual Size": "Tatsächliche Größe", "speech_stop_speaking": "Aufnahme beenden"
"View": "Ansicht", },
"Select All": "Alles auswählen", "file_menu": {
"Delete": "Löschen", "label": "Datei"
"Paste": "Einfügen", },
"Copy": "Kopieren", "menu": {
"Cut": "Ausschneiden", "hide": "Verstecken",
"Redo": "Wiederherstellen", "hide_others": "Andere verstecken",
"Undo": "Rückgängig", "services": "Dienste",
"Edit": "Bearbeiten", "unhide": "Wieder anzeigen"
"Quit": "Beenden", },
"Show/Hide": "Anzeigen/Ausblenden", "right_click_menu": {
"Cancel": "Abbrechen", "add_to_dictionary": "Wörterbuch hinzufügen",
"Copy image address": "Bild-Adresse kopieren", "copy_email": "Email-Adresse kopieren",
"Close %(brand)s": "%(brand)s schließen", "copy_image": "Bild kopieren",
"%(brand)s Help": "%(brand)s Hilfe" "copy_image_url": "Bild-Adresse kopieren",
"copy_link_url": "Link-Adresse kopieren",
"save_image_as": "Bild speichern unter...",
"save_image_as_error_description": "Das Bild konnte nicht gespeichert werden",
"save_image_as_error_title": "Bild kann nicht gespeichert werden"
},
"view_menu": {
"actual_size": "Tatsächliche Größe",
"toggle_developer_tools": "Developer-Tools an/aus",
"toggle_full_screen": "Vollbildschirm an/aus",
"view": "Ansicht"
},
"window_menu": {
"bring_all_to_front": "Alles in den Vordergrund",
"label": "Fenster"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Are you sure you want to quit?": "Είστε βέβαιος ότι θέλετε να εγκαταλείψετε;", "action": {
"Zoom": "Ζουμ", "cancel": "Ακύρωση",
"Unhide": "Εμφάνιση", "close": "Κλείσιμο",
"Window": "Παράθυρο", "close_brand": "Κλείσιμο %(brand)s",
"Toggle Developer Tools": "Άνοιγμα Εργαλείων Προγραμματιστή", "copy": "Αντιγραφή",
"Toggle Full Screen": "Εναλλαγή σε Πλήρη Οθόνη", "cut": "Αποκοπή",
"Copy email address": "Αντιγραφή διεύθυνσης email", "delete": "Διαγραφή",
"File": "Αρχείο", "edit": "Επεξεργασία",
"Bring All to Front": "Μεταφορά Όλων στο Προσκήνιο", "minimise": "Ελαχιστοποίηση",
"Stop Speaking": "Τερματίστε να μιλάτε", "paste": "Επικόλληση",
"Start Speaking": "Ξεκινήστε να μιλάτε", "paste_match_style": "Επικόλληση και Ταίριασμα Στυλ",
"Speech": "Ομιλία", "quit": "Κλείσιμο",
"Hide Others": "Απόκρυψη Άλλων", "redo": "Επανάληψη",
"Hide": "Απόκρυψη", "select_all": "Επιλογή Όλων",
"Services": "Υπηρεσίες", "show_hide": "Eμφάνιση/Απόκρυψη",
"About": "Σχετικά με", "undo": "Αναίρεση",
"Help": "Βοήθεια", "zoom_in": "Μεγέθυνση",
"Close": "Κλείσιμο", "zoom_out": "Σμίκρυνση"
"Minimize": "Ελαχιστοποίηση", },
"Preferences": "Προτιμήσεις", "common": {
"Zoom Out": "Σμίκρυνση", "about": "Σχετικά με",
"Zoom In": "Μεγέθυνση", "brand_help": "%(brand)s Υποστήριξη",
"Actual Size": "Πραγματικό Μέγεθος", "help": "Βοήθεια",
"View": "Προβολή", "preferences": "Προτιμήσεις"
"Select All": "Επιλογή Όλων", },
"Delete": "Διαγραφή", "confirm_quit": "Είστε βέβαιος ότι θέλετε να εγκαταλείψετε;",
"Paste and Match Style": "Επικόλληση και Ταίριασμα Στυλ", "edit_menu": {
"Paste": "Επικόλληση", "speech": "Ομιλία",
"Copy": "Αντιγραφή", "speech_start_speaking": "Ξεκινήστε να μιλάτε",
"Cut": "Αποκοπή", "speech_stop_speaking": "Τερματίστε να μιλάτε"
"Redo": "Επανάληψη", },
"Undo": "Αναίρεση", "file_menu": {
"Edit": "Επεξεργασία", "label": "Αρχείο"
"Quit": "Κλείσιμο", },
"Show/Hide": "Eμφάνιση/Απόκρυψη", "menu": {
"Cancel": "Ακύρωση", "hide": "Απόκρυψη",
"Add to dictionary": "Προσθήκη στο λεξικό", "hide_others": "Απόκρυψη Άλλων",
"The image failed to save": "Η αποθήκευση της εικόνας απέτυχε", "services": "Υπηρεσίες",
"Failed to save image": "Αποτυχία αποθήκευσης εικόνας", "unhide": "Εμφάνιση"
"Save image as...": "Αποθήκευση εικόνας ως...", },
"Copy link address": "Αντιγραφή διεύθυνσης συνδέσμου", "right_click_menu": {
"Copy image address": "Αντιγραφή διεύθυνσης εικόνας", "add_to_dictionary": "Προσθήκη στο λεξικό",
"Copy image": "Αντιγραφή εικόνας", "copy_email": "Αντιγραφή διεύθυνσης email",
"Close %(brand)s": "Κλείσιμο %(brand)s", "copy_image": "Αντιγραφή εικόνας",
"%(brand)s Help": "%(brand)s Υποστήριξη" "copy_image_url": "Αντιγραφή διεύθυνσης εικόνας",
"copy_link_url": "Αντιγραφή διεύθυνσης συνδέσμου",
"save_image_as": "Αποθήκευση εικόνας ως...",
"save_image_as_error_description": "Η αποθήκευση της εικόνας απέτυχε",
"save_image_as_error_title": "Αποτυχία αποθήκευσης εικόνας"
},
"view_menu": {
"actual_size": "Πραγματικό Μέγεθος",
"toggle_developer_tools": "Άνοιγμα Εργαλείων Προγραμματιστή",
"toggle_full_screen": "Εναλλαγή σε Πλήρη Οθόνη",
"view": "Προβολή"
},
"window_menu": {
"bring_all_to_front": "Μεταφορά Όλων στο Προσκήνιο",
"label": "Παράθυρο",
"zoom": "Ζουμ"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Cancel": "Cancel", "action": {
"Close %(brand)s": "Close %(brand)s", "cancel": "Cancel",
"Are you sure you want to quit?": "Are you sure you want to quit?", "close": "Close",
"Show/Hide": "Show/Hide", "close_brand": "Close %(brand)s",
"Quit": "Quit", "copy": "Copy",
"Edit": "Edit", "cut": "Cut",
"Undo": "Undo", "delete": "Delete",
"Redo": "Redo", "edit": "Edit",
"Cut": "Cut", "minimise": "Minimize",
"Copy": "Copy", "paste": "Paste",
"Paste": "Paste", "paste_match_style": "Paste and Match Style",
"Paste and Match Style": "Paste and Match Style", "quit": "Quit",
"Delete": "Delete", "redo": "Redo",
"Select All": "Select All", "select_all": "Select All",
"View": "View", "show_hide": "Show/Hide",
"Actual Size": "Actual Size", "undo": "Undo",
"Zoom In": "Zoom In", "zoom_in": "Zoom In",
"Zoom Out": "Zoom Out", "zoom_out": "Zoom Out"
"Preferences": "Preferences", },
"Toggle Full Screen": "Toggle Full Screen", "common": {
"Toggle Developer Tools": "Toggle Developer Tools", "about": "About",
"Window": "Window", "brand_help": "%(brand)s Help",
"Minimize": "Minimize", "help": "Help",
"Close": "Close", "preferences": "Preferences"
"Help": "Help", },
"%(brand)s Help": "%(brand)s Help", "confirm_quit": "Are you sure you want to quit?",
"About": "About", "edit_menu": {
"Services": "Services", "speech": "Speech",
"Hide": "Hide", "speech_start_speaking": "Start Speaking",
"Hide Others": "Hide Others", "speech_stop_speaking": "Stop Speaking"
"Unhide": "Unhide", },
"Speech": "Speech", "file_menu": {
"Start Speaking": "Start Speaking", "label": "File"
"Stop Speaking": "Stop Speaking", },
"Zoom": "Zoom", "menu": {
"Bring All to Front": "Bring All to Front", "hide": "Hide",
"File": "File", "hide_others": "Hide Others",
"Copy image": "Copy image", "services": "Services",
"Copy email address": "Copy email address", "unhide": "Unhide"
"Copy image address": "Copy image address", },
"Copy link address": "Copy link address", "right_click_menu": {
"Save image as...": "Save image as...", "add_to_dictionary": "Add to dictionary",
"Failed to save image": "Failed to save image", "copy_email": "Copy email address",
"The image failed to save": "The image failed to save", "copy_image": "Copy image",
"Add to dictionary": "Add to dictionary" "copy_image_url": "Copy image address",
"copy_link_url": "Copy link address",
"save_image_as": "Save image as...",
"save_image_as_error_description": "The image failed to save",
"save_image_as_error_title": "Failed to save image"
},
"view_menu": {
"actual_size": "Actual Size",
"toggle_developer_tools": "Toggle Developer Tools",
"toggle_full_screen": "Toggle Full Screen",
"view": "View"
},
"window_menu": {
"bring_all_to_front": "Bring All to Front",
"label": "Window",
"zoom": "Zoom"
}
} }

View file

@ -1,44 +1,60 @@
{ {
"Close": "Close", "action": {
"Add to dictionary": "Add to dictionary", "cancel": "Cancel",
"The image failed to save": "The image failed to save", "show_hide": "Show/Hide",
"Failed to save image": "Failed to save image", "quit": "Quit",
"Save image as...": "Save image as...", "edit": "Edit",
"Copy link address": "Copy link address", "undo": "Undo",
"Copy email address": "Copy email address", "redo": "Redo",
"Copy image": "Copy image", "copy": "Copy",
"File": "File", "paste": "Paste",
"Bring All to Front": "Bring All to Front", "paste_match_style": "Paste and Match Style",
"Zoom": "Zoom", "delete": "Delete",
"Stop Speaking": "Stop Speaking", "select_all": "Select All",
"Start Speaking": "Start Speaking", "zoom_in": "Zoom In",
"Speech": "Speech", "zoom_out": "Zoom Out",
"Unhide": "Unhide", "minimise": "Minimize",
"Hide Others": "Hide Others", "close": "Close",
"Hide": "Hide", "cut": "Cut"
"Services": "Services", },
"About": "About", "confirm_quit": "Are you sure you want to quit?",
"Help": "Help", "common": {
"Minimize": "Minimize", "help": "Help",
"Window": "Window", "about": "About",
"Toggle Developer Tools": "Toggle Developer Tools", "preferences": "Preferences"
"Toggle Full Screen": "Toggle Full Screen", },
"Preferences": "Preferences", "window_menu": {
"Zoom Out": "Zoom Out", "zoom": "Zoom",
"Zoom In": "Zoom In", "label": "Window",
"Actual Size": "Actual Size", "bring_all_to_front": "Bring All to Front"
"View": "View", },
"Select All": "Select All", "view_menu": {
"Delete": "Delete", "view": "View",
"Paste and Match Style": "Paste and Match Style", "actual_size": "Actual Size",
"Paste": "Paste", "toggle_full_screen": "Toggle Full Screen",
"Copy": "Copy", "toggle_developer_tools": "Toggle Developer Tools"
"Cut": "Cut", },
"Redo": "Redo", "menu": {
"Undo": "Undo", "services": "Services",
"Edit": "Edit", "hide": "Hide",
"Quit": "Quit", "unhide": "Unhide",
"Show/Hide": "Show/Hide", "hide_others": "Hide Others"
"Are you sure you want to quit?": "Are you sure you want to quit?", },
"Cancel": "Cancel" "edit_menu": {
"speech": "Speech",
"speech_start_speaking": "Start Speaking",
"speech_stop_speaking": "Stop Speaking"
},
"file_menu": {
"label": "File"
},
"right_click_menu": {
"copy_image": "Copy image",
"copy_email": "Copy email address",
"copy_link_url": "Copy link address",
"save_image_as": "Save image as...",
"save_image_as_error_title": "Failed to save image",
"save_image_as_error_description": "The image failed to save",
"add_to_dictionary": "Add to dictionary"
}
} }

View file

@ -1,33 +1,49 @@
{ {
"The image failed to save": "La bildo malsukcesis elŝutiĝi", "action": {
"Failed to save image": "Malsukcesis elŝuti bildon", "cancel": "Nuligi",
"Stop Speaking": "Ĉesi Paroli", "close_brand": "Fermu %(brand)s",
"Start Speaking": "Ekparoli", "copy": "Kopiu",
"Unhide": "Malkaŝi", "cut": "Tranĉi",
"Hide Others": "Kaŝi Aliajn", "delete": "Forigi",
"Hide": "Kaŝi", "edit": "Redakti",
"About": "Informilo", "minimise": "Minimumigi",
"Help": "Helpo", "paste": "Enmeti",
"Toggle Developer Tools": "Baskuligi Programistajn Ilojn", "redo": "Refari",
"Preferences": "Preferoj", "select_all": "Elekti Ĉiujn",
"View": "Vidi", "show_hide": "Montri/Kaŝi",
"Delete": "Forigi", "undo": "Malfari"
"Redo": "Refari", },
"Undo": "Malfari", "common": {
"Edit": "Redakti", "about": "Informilo",
"Show/Hide": "Montri/Kaŝi", "help": "Helpo",
"Cancel": "Nuligi", "preferences": "Preferoj"
"Copy link address": "Kopiu ligilon de la bildo", },
"Copy image address": "Kopiu adreson de la bildo", "confirm_quit": "Ĉu vi certas, ke vi volas ĉesi?",
"Copy email address": "Kopiu retadreson", "edit_menu": {
"Copy image": "Kopiu bildon", "speech_start_speaking": "Ekparoli",
"File": "Dosiero", "speech_stop_speaking": "Ĉesi Paroli"
"Minimize": "Minimumigi", },
"Window": "Fenestro", "file_menu": {
"Select All": "Elekti Ĉiujn", "label": "Dosiero"
"Paste": "Enmeti", },
"Copy": "Kopiu", "menu": {
"Cut": "Tranĉi", "hide": "Kaŝi",
"Are you sure you want to quit?": "Ĉu vi certas, ke vi volas ĉesi?", "hide_others": "Kaŝi Aliajn",
"Close %(brand)s": "Fermu %(brand)s" "unhide": "Malkaŝi"
},
"right_click_menu": {
"copy_email": "Kopiu retadreson",
"copy_image": "Kopiu bildon",
"copy_image_url": "Kopiu adreson de la bildo",
"copy_link_url": "Kopiu ligilon de la bildo",
"save_image_as_error_description": "La bildo malsukcesis elŝutiĝi",
"save_image_as_error_title": "Malsukcesis elŝuti bildon"
},
"view_menu": {
"toggle_developer_tools": "Baskuligi Programistajn Ilojn",
"view": "Vidi"
},
"window_menu": {
"label": "Fenestro"
}
} }

View file

@ -1,47 +1,62 @@
{ {
"Add to dictionary": "Añadir al diccionario", "action": {
"The image failed to save": "La imagen no se ha podido guardar", "cancel": "Cancelar",
"Failed to save image": "No se ha podido guardar la imagen", "close": "Cerrar",
"Save image as...": "Guardar imagen como...", "close_brand": "Cerrar %(brand)s",
"Copy link address": "Copiar dirección de enlace", "copy": "Copiar",
"Copy email address": "Copiar dirección de correo", "cut": "Cortar",
"Copy image": "Copiar imagen", "delete": "Eliminar",
"File": "Archivo", "edit": "Editar",
"Bring All to Front": "Traer todas al primer plano", "minimise": "Minimizar",
"Zoom": "Zoom", "paste": "Pegar",
"Start Speaking": "Empezar a hablar", "paste_match_style": "Pegar manteniendo estilo",
"Stop Speaking": "Parar de hablar", "quit": "Salir",
"Speech": "Dictado", "redo": "Rehacer",
"Unhide": "Mostrar", "select_all": "Seleccionar todo",
"Hide Others": "Ocultar otros", "show_hide": "Ver/Ocultar",
"Hide": "Ocultar", "undo": "Deshacer",
"Services": "Servicios", "zoom_in": "Acercar",
"About": "Acerca de", "zoom_out": "Alejar"
"Help": "Ayuda", },
"Close": "Cerrar", "common": {
"Minimize": "Minimizar", "about": "Acerca de",
"Window": "Ventana", "brand_help": "Ayuda sobre %(brand)s",
"Toggle Developer Tools": "Abrir/cerrar herramientas de desarrollo", "help": "Ayuda",
"Toggle Full Screen": "Entrar/salir de pantalla completa", "preferences": "Preferencias"
"Preferences": "Preferencias", },
"Zoom Out": "Alejar", "confirm_quit": "¿Quieres salir?",
"Zoom In": "Acercar", "edit_menu": {
"Actual Size": "Tamaño real", "speech": "Dictado",
"View": "Ver", "speech_start_speaking": "Empezar a hablar",
"Select All": "Seleccionar todo", "speech_stop_speaking": "Parar de hablar"
"Delete": "Eliminar", },
"Paste and Match Style": "Pegar manteniendo estilo", "file_menu": {
"Paste": "Pegar", "label": "Archivo"
"Copy": "Copiar", },
"Cut": "Cortar", "menu": {
"Redo": "Rehacer", "hide": "Ocultar",
"Undo": "Deshacer", "hide_others": "Ocultar otros",
"Edit": "Editar", "services": "Servicios",
"Quit": "Salir", "unhide": "Mostrar"
"Show/Hide": "Ver/Ocultar", },
"Are you sure you want to quit?": "¿Quieres salir?", "right_click_menu": {
"Cancel": "Cancelar", "add_to_dictionary": "Añadir al diccionario",
"Copy image address": "Copiar dirección de la imagen", "copy_email": "Copiar dirección de correo",
"Close %(brand)s": "Cerrar %(brand)s", "copy_image": "Copiar imagen",
"%(brand)s Help": "Ayuda sobre %(brand)s" "copy_image_url": "Copiar dirección de la imagen",
"copy_link_url": "Copiar dirección de enlace",
"save_image_as": "Guardar imagen como...",
"save_image_as_error_description": "La imagen no se ha podido guardar",
"save_image_as_error_title": "No se ha podido guardar la imagen"
},
"view_menu": {
"actual_size": "Tamaño real",
"toggle_developer_tools": "Abrir/cerrar herramientas de desarrollo",
"toggle_full_screen": "Entrar/salir de pantalla completa",
"view": "Ver"
},
"window_menu": {
"bring_all_to_front": "Traer todas al primer plano",
"label": "Ventana"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"About": "Rakenduse teave", "action": {
"The image failed to save": "Seda pilti ei õnnestunud salvestada", "cancel": "Tühista",
"Add to dictionary": "Lisa sõnastikku", "close": "Sulge",
"Failed to save image": "Pildi salvestamine ei õnnestunud", "close_brand": "Sulge %(brand)s",
"Save image as...": "Salvesta pilt kui...", "copy": "Kopeeri",
"Copy link address": "Kopeeri lingi aadress", "cut": "Lõika",
"Copy email address": "Kopeeri e-posti aadress", "delete": "Kustuta",
"Copy image": "Kopeeri pilt", "edit": "Muuda",
"File": "Fail", "minimise": "Vähenda",
"Bring All to Front": "Too kõik esiplaanile", "paste": "Aseta",
"Zoom": "Suumi", "paste_match_style": "Aseta kasutades sama stiili",
"Stop Speaking": "Lõpeta rääkimine", "quit": "Välju",
"Start Speaking": "Alusta rääkimist", "redo": "Tee uuesti",
"Speech": "Kõne", "select_all": "Vali kõik",
"Unhide": "Näita uuesti", "show_hide": "Näita/peida",
"Hide Others": "Peida muud", "undo": "Võta tagasi",
"Hide": "Peida", "zoom_in": "Suurenda",
"Services": "Teenused", "zoom_out": "Vähenda"
"Help": "Abiteave", },
"Close": "Sulge", "common": {
"Minimize": "Vähenda", "about": "Rakenduse teave",
"Window": "Aken", "brand_help": "%(brand)s abiteave",
"Toggle Developer Tools": "Arendaja töövahendid sisse/välja", "help": "Abiteave",
"Toggle Full Screen": "Täisekraanivaade sisse/välja", "preferences": "Seadistused"
"Preferences": "Seadistused", },
"Zoom Out": "Vähenda", "confirm_quit": "Kas sa kindlasti soovid rakendusest väljuda?",
"Zoom In": "Suurenda", "edit_menu": {
"Actual Size": "Näita tavasuuruses", "speech": "Kõne",
"View": "Vaata", "speech_start_speaking": "Alusta rääkimist",
"Select All": "Vali kõik", "speech_stop_speaking": "Lõpeta rääkimine"
"Delete": "Kustuta", },
"Paste and Match Style": "Aseta kasutades sama stiili", "file_menu": {
"Paste": "Aseta", "label": "Fail"
"Copy": "Kopeeri", },
"Cut": "Lõika", "menu": {
"Redo": "Tee uuesti", "hide": "Peida",
"Undo": "Võta tagasi", "hide_others": "Peida muud",
"Edit": "Muuda", "services": "Teenused",
"Quit": "Välju", "unhide": "Näita uuesti"
"Show/Hide": "Näita/peida", },
"Are you sure you want to quit?": "Kas sa kindlasti soovid rakendusest väljuda?", "right_click_menu": {
"Cancel": "Tühista", "add_to_dictionary": "Lisa sõnastikku",
"Copy image address": "Kopeeri pildi aadress", "copy_email": "Kopeeri e-posti aadress",
"Close %(brand)s": "Sulge %(brand)s", "copy_image": "Kopeeri pilt",
"%(brand)s Help": "%(brand)s abiteave" "copy_image_url": "Kopeeri pildi aadress",
"copy_link_url": "Kopeeri lingi aadress",
"save_image_as": "Salvesta pilt kui...",
"save_image_as_error_description": "Seda pilti ei õnnestunud salvestada",
"save_image_as_error_title": "Pildi salvestamine ei õnnestunud"
},
"view_menu": {
"actual_size": "Näita tavasuuruses",
"toggle_developer_tools": "Arendaja töövahendid sisse/välja",
"toggle_full_screen": "Täisekraanivaade sisse/välja",
"view": "Vaata"
},
"window_menu": {
"bring_all_to_front": "Too kõik esiplaanile",
"label": "Aken",
"zoom": "Suumi"
}
} }

View file

@ -1,46 +1,62 @@
{ {
"Paste and Match Style": "جای‌گذاری و تطبیق سَبک", "action": {
"Add to dictionary": "افزودن به لغت‌نامه", "cancel": "لغو",
"The image failed to save": "تصویر ذخیره نشد", "close": "بستن",
"Failed to save image": "ذخیرهٔ تصویر شکست خورد", "close_brand": "بستن %(brand)s",
"Save image as...": "ذخیرهٔ تصویر به عنوان...", "copy": "رونوشت",
"Copy link address": "رونوشت نشانی پیوند", "cut": "برش",
"Copy image address": "رونوشت نشانی تصویر", "delete": "حذف",
"Copy email address": "رونوشت نشانی رایانامه", "edit": "ویرایش",
"Copy image": "رونوشت تصویر", "minimise": "کمینه",
"File": "پرونده", "paste": "جای‌گذاری",
"Bring All to Front": "همه را به جلو بیاورید", "paste_match_style": "جای‌گذاری و تطبیق سَبک",
"Zoom": "بزرگنمایی", "quit": "خروج",
"Speech": "صحبت کردن", "redo": "انجام دوباره",
"Stop Speaking": "صحبت کردن را تمام کنید", "select_all": "گزینش همه",
"Start Speaking": "صحبت کردن را شروع کنید", "show_hide": "نمایش/پنهان",
"Unhide": "آشکار", "undo": "بازگردانی",
"Hide Others": "پنهان کردن دیگران", "zoom_in": "بزرگنمایی به داخل",
"Hide": "پنهان", "zoom_out": "بزرگنمایی به خارج"
"Services": "خدمات", },
"About": "درباره", "common": {
"Help": "راهنما", "about": "درباره",
"Close": "بستن", "help": "راهنما",
"Minimize": "کمینه", "preferences": "ترجیحات"
"Window": "پنجره", },
"Toggle Developer Tools": "تغییر وضعیت ابزارهای توسعه‌دهنده", "confirm_quit": "آیا مطمئنید که می‌خواهید خارج شوید؟",
"Toggle Full Screen": "تغییر وضعیت تمام‌صفحه", "edit_menu": {
"Preferences": "ترجیحات", "speech": "صحبت کردن",
"Zoom Out": "بزرگنمایی به خارج", "speech_start_speaking": "صحبت کردن را شروع کنید",
"Zoom In": "بزرگنمایی به داخل", "speech_stop_speaking": "صحبت کردن را تمام کنید"
"Actual Size": "اندازهٔ واقعی", },
"View": "دیدن", "file_menu": {
"Select All": "گزینش همه", "label": "پرونده"
"Delete": "حذف", },
"Paste": "جای‌گذاری", "menu": {
"Copy": "رونوشت", "hide": "پنهان",
"Cut": "برش", "hide_others": "پنهان کردن دیگران",
"Redo": "انجام دوباره", "services": "خدمات",
"Undo": "بازگردانی", "unhide": "آشکار"
"Edit": "ویرایش", },
"Quit": "خروج", "right_click_menu": {
"Show/Hide": "نمایش/پنهان", "add_to_dictionary": "افزودن به لغت‌نامه",
"Are you sure you want to quit?": "آیا مطمئنید که می‌خواهید خارج شوید؟", "copy_email": "رونوشت نشانی رایانامه",
"Cancel": "لغو", "copy_image": "رونوشت تصویر",
"Close %(brand)s": "بستن %(brand)s" "copy_image_url": "رونوشت نشانی تصویر",
"copy_link_url": "رونوشت نشانی پیوند",
"save_image_as": "ذخیرهٔ تصویر به عنوان...",
"save_image_as_error_description": "تصویر ذخیره نشد",
"save_image_as_error_title": "ذخیرهٔ تصویر شکست خورد"
},
"view_menu": {
"actual_size": "اندازهٔ واقعی",
"toggle_developer_tools": "تغییر وضعیت ابزارهای توسعه‌دهنده",
"toggle_full_screen": "تغییر وضعیت تمام‌صفحه",
"view": "دیدن"
},
"window_menu": {
"bring_all_to_front": "همه را به جلو بیاورید",
"label": "پنجره",
"zoom": "بزرگنمایی"
}
} }

View file

@ -1,46 +1,62 @@
{ {
"Paste": "Liitä", "action": {
"Paste and Match Style": "Liitä ja sovita tyyli", "cancel": "Peruuta",
"Add to dictionary": "Lisää sanakirjaan", "close": "Sulje",
"The image failed to save": "Kuvan tallennus epäonnistui", "close_brand": "Sulje %(brand)s",
"Failed to save image": "Kuvan tallennus epäonnistui", "copy": "Kopioi",
"Save image as...": "Tallenna kuva nimellä...", "cut": "Leikkaa",
"Copy link address": "Kopioi linkin osoite", "delete": "Poista",
"Copy email address": "Kopioi sähköpostiosoite", "edit": "Muokkaa",
"Copy image": "Kopioi kuva", "minimise": "Pienennä",
"File": "Tiedosto", "paste": "Liitä",
"Bring All to Front": "Tuo kaikki eteen", "paste_match_style": "Liitä ja sovita tyyli",
"Zoom": "Suurennus", "quit": "Lopeta",
"Stop Speaking": "Lopeta puhe", "redo": "Tee uudestaan",
"Start Speaking": "Aloita puhe", "select_all": "Valitse kaikki",
"Speech": "Puhe", "show_hide": "Näytä/piilota",
"Unhide": "Palauta näkyviin", "undo": "Peru",
"Hide Others": "Piilota muut", "zoom_in": "Suurenna",
"Hide": "Piilota", "zoom_out": "Pienennä"
"Services": "Palvelut", },
"About": "Tietoja", "common": {
"Help": "Apua", "about": "Tietoja",
"Close": "Sulje", "help": "Apua",
"Minimize": "Pienennä", "preferences": "Asetukset"
"Window": "Ikkuna", },
"Toggle Developer Tools": "Näytä tai piilota kehittäjätyökalut", "confirm_quit": "Haluatko varmasti poistua?",
"Toggle Full Screen": "Vaihda koko näytön tilaa", "edit_menu": {
"Preferences": "Asetukset", "speech": "Puhe",
"Zoom Out": "Pienennä", "speech_start_speaking": "Aloita puhe",
"Zoom In": "Suurenna", "speech_stop_speaking": "Lopeta puhe"
"Actual Size": "Alkuperäinen koko", },
"View": "Näytä", "file_menu": {
"Select All": "Valitse kaikki", "label": "Tiedosto"
"Delete": "Poista", },
"Copy": "Kopioi", "menu": {
"Cut": "Leikkaa", "hide": "Piilota",
"Redo": "Tee uudestaan", "hide_others": "Piilota muut",
"Undo": "Peru", "services": "Palvelut",
"Edit": "Muokkaa", "unhide": "Palauta näkyviin"
"Quit": "Lopeta", },
"Show/Hide": "Näytä/piilota", "right_click_menu": {
"Are you sure you want to quit?": "Haluatko varmasti poistua?", "add_to_dictionary": "Lisää sanakirjaan",
"Cancel": "Peruuta", "copy_email": "Kopioi sähköpostiosoite",
"Copy image address": "Kopioi kuvan osoite", "copy_image": "Kopioi kuva",
"Close %(brand)s": "Sulje %(brand)s" "copy_image_url": "Kopioi kuvan osoite",
"copy_link_url": "Kopioi linkin osoite",
"save_image_as": "Tallenna kuva nimellä...",
"save_image_as_error_description": "Kuvan tallennus epäonnistui",
"save_image_as_error_title": "Kuvan tallennus epäonnistui"
},
"view_menu": {
"actual_size": "Alkuperäinen koko",
"toggle_developer_tools": "Näytä tai piilota kehittäjätyökalut",
"toggle_full_screen": "Vaihda koko näytön tilaa",
"view": "Näytä"
},
"window_menu": {
"bring_all_to_front": "Tuo kaikki eteen",
"label": "Ikkuna",
"zoom": "Suurennus"
}
} }

18
src/i18n/strings/fil.json Normal file
View file

@ -0,0 +1,18 @@
{
"action": {
"cancel": "Kanselahin",
"close_brand": "Isara ang %(brand)s",
"copy": "I-copy",
"cut": "I-cut",
"delete": "Alisin",
"edit": "I-edit",
"paste": "I-paste",
"paste_match_style": "I-paste at Tumugma ng Style",
"quit": "Magsara",
"show_hide": "Ipakita/itago"
},
"confirm_quit": "Sigurado ka ba na gusto mong magsara?",
"menu": {
"hide": "Itago"
}
}

View file

@ -1,47 +1,61 @@
{ {
"Undo": "Annuler", "action": {
"Edit": "Modifier", "cancel": "Annuler",
"Quit": "Quitter", "close": "Fermer",
"Show/Hide": "Afficher/Masquer", "close_brand": "Fermer %(brand)s",
"Are you sure you want to quit?": "Êtes-vous sûr de vouloir quitter ?", "copy": "Copier",
"Cancel": "Annuler", "cut": "Couper",
"Unhide": "Dé-masquer", "delete": "Supprimer",
"Hide Others": "Masquer les autres", "edit": "Modifier",
"Hide": "Masquer", "minimise": "Minimiser",
"Services": "Services", "paste": "Coller",
"About": "À propos", "paste_match_style": "Copier avec le style de destination",
"Help": "Aide", "quit": "Quitter",
"Close": "Fermer", "redo": "Refaire",
"Minimize": "Minimiser", "select_all": "Tout sélectionner",
"Window": "Fenêtre", "show_hide": "Afficher/Masquer",
"Toggle Developer Tools": "Basculer les outils de développement", "undo": "Annuler",
"Toggle Full Screen": "Basculer le plein écran", "zoom_in": "Zoomer",
"Preferences": "Préférences", "zoom_out": "Dé-zoomer"
"Zoom Out": "Dé-zoomer", },
"Zoom In": "Zoomer", "common": {
"Actual Size": "Taille réelle", "about": "À propos",
"View": "Afficher", "brand_help": "Aide de %(brand)s",
"Select All": "Tout sélectionner", "help": "Aide",
"Delete": "Supprimer", "preferences": "Préférences"
"Paste and Match Style": "Copier avec le style de destination", },
"Paste": "Coller", "confirm_quit": "Êtes-vous sûr de vouloir quitter ?",
"Copy": "Copier", "edit_menu": {
"Cut": "Couper", "speech": "Dictée",
"Speech": "Dictée", "speech_start_speaking": "Commencer la dictée",
"Add to dictionary": "Ajouter au dictionnaire", "speech_stop_speaking": "Arrêter la dictée"
"The image failed to save": "Limage na pas pu être sauvegardée", },
"Failed to save image": "Échec de la sauvegarde de limage", "file_menu": {
"Save image as...": "Enregistrer limage sous…", "label": "Fichier"
"Copy link address": "Copier ladresse du lien", },
"Copy email address": "Copier ladresse e-mail", "menu": {
"Copy image": "Copier limage", "hide": "Masquer",
"File": "Fichier", "hide_others": "Masquer les autres",
"Bring All to Front": "Tout amener au premier plan", "unhide": "Dé-masquer"
"Zoom": "Zoom", },
"Stop Speaking": "Arrêter la dictée", "right_click_menu": {
"Start Speaking": "Commencer la dictée", "add_to_dictionary": "Ajouter au dictionnaire",
"Copy image address": "Copier l'adresse de l'image", "copy_email": "Copier ladresse e-mail",
"Redo": "Refaire", "copy_image": "Copier limage",
"Close %(brand)s": "Fermer %(brand)s", "copy_image_url": "Copier l'adresse de l'image",
"%(brand)s Help": "Aide de %(brand)s" "copy_link_url": "Copier ladresse du lien",
"save_image_as": "Enregistrer limage sous…",
"save_image_as_error_description": "Limage na pas pu être sauvegardée",
"save_image_as_error_title": "Échec de la sauvegarde de limage"
},
"view_menu": {
"actual_size": "Taille réelle",
"toggle_developer_tools": "Basculer les outils de développement",
"toggle_full_screen": "Basculer le plein écran",
"view": "Afficher"
},
"window_menu": {
"bring_all_to_front": "Tout amener au premier plan",
"label": "Fenêtre"
}
} }

View file

@ -1,44 +1,58 @@
{ {
"Copy image": "Ofbylding kopiearje", "action": {
"Speech": "Spraak", "cancel": "Annulearje",
"View": "Byld", "close": "Slute",
"Paste and Match Style": "Plakke en lit stilen oerienkomme", "copy": "Kopiearje",
"Add to dictionary": "Oan wurdlist tafoegje", "cut": "Knippe",
"The image failed to save": "It is net slagge de ôfbylding te bewarjen", "delete": "Fuortsmite",
"Failed to save image": "Ofbylding bewarjen mislearre", "edit": "Bewurkje",
"Save image as...": "Ofbylding bewarje as…", "minimise": "Minimalisearje",
"Copy link address": "Keppeling kopiearje", "paste": "Plakke",
"Copy email address": "E-mailadres kopiearje", "paste_match_style": "Plakke en lit stilen oerienkomme",
"File": "Bestân", "quit": "Ofslute",
"Bring All to Front": "Alles nei foaren bringe", "redo": "Opnij útfiere",
"Zoom": "Zoom", "select_all": "Alles selektearje",
"Stop Speaking": "Stopje mei praten", "show_hide": "Toane/Ferbergje",
"Start Speaking": "Begjin mei praten", "undo": "Ungedien meitsje",
"Unhide": "Wer toane", "zoom_in": "Ynzoome",
"Hide Others": "Oare ferbergje", "zoom_out": "Utzoome"
"Hide": "Ferbergje", },
"Services": "Tsjinsten", "common": {
"About": "Oer", "about": "Oer",
"Help": "Help", "preferences": "Foarkarren"
"Close": "Slute", },
"Minimize": "Minimalisearje", "confirm_quit": "Binne jo der wis fan dat jo ôfslute wolle?",
"Window": "Finster", "edit_menu": {
"Toggle Developer Tools": "Untwikkelersark yn-/útskeakelje", "speech": "Spraak",
"Toggle Full Screen": "Folslein skerm yn-/útskeakelje", "speech_start_speaking": "Begjin mei praten",
"Preferences": "Foarkarren", "speech_stop_speaking": "Stopje mei praten"
"Zoom Out": "Utzoome", },
"Zoom In": "Ynzoome", "file_menu": {
"Actual Size": "Werklike grutte", "label": "Bestân"
"Select All": "Alles selektearje", },
"Delete": "Fuortsmite", "menu": {
"Paste": "Plakke", "hide": "Ferbergje",
"Copy": "Kopiearje", "hide_others": "Oare ferbergje",
"Cut": "Knippe", "services": "Tsjinsten",
"Redo": "Opnij útfiere", "unhide": "Wer toane"
"Undo": "Ungedien meitsje", },
"Edit": "Bewurkje", "right_click_menu": {
"Quit": "Ofslute", "add_to_dictionary": "Oan wurdlist tafoegje",
"Show/Hide": "Toane/Ferbergje", "copy_email": "E-mailadres kopiearje",
"Are you sure you want to quit?": "Binne jo der wis fan dat jo ôfslute wolle?", "copy_image": "Ofbylding kopiearje",
"Cancel": "Annulearje" "copy_link_url": "Keppeling kopiearje",
"save_image_as": "Ofbylding bewarje as…",
"save_image_as_error_description": "It is net slagge de ôfbylding te bewarjen",
"save_image_as_error_title": "Ofbylding bewarjen mislearre"
},
"view_menu": {
"actual_size": "Werklike grutte",
"toggle_developer_tools": "Untwikkelersark yn-/útskeakelje",
"toggle_full_screen": "Folslein skerm yn-/útskeakelje",
"view": "Byld"
},
"window_menu": {
"bring_all_to_front": "Alles nei foaren bringe",
"label": "Finster"
}
} }

View file

@ -1,44 +1,60 @@
{ {
"Add to dictionary": "Engadir ao dicionario", "action": {
"The image failed to save": "Non se gardou a imaxe", "cancel": "Cancelar",
"Failed to save image": "Fallou o gardado da imaxe", "close": "Pechar",
"Save image as...": "Gardar imaxe como...", "copy": "Copiar",
"Copy link address": "Copiar enderezo da ligazón", "cut": "Cortar",
"Copy email address": "Copiar enderezo de email", "delete": "Eliminar",
"Copy image": "Copiar imaxe", "edit": "Editar",
"File": "Ficheiro", "minimise": "Minimizar",
"Bring All to Front": "Traer todo á fronte", "paste": "Pegar",
"Zoom": "Aumento", "paste_match_style": "Pegar e imitar estilo",
"Stop Speaking": "Deixa de falar", "quit": "Saír",
"Start Speaking": "Comeza a falar", "redo": "Refacer",
"Speech": "Falar", "select_all": "Elexir todo",
"Unhide": "Desagochar", "show_hide": "Mostrar/Agochar",
"Hide Others": "Agochar outras", "undo": "Desfacer",
"Hide": "Agochar", "zoom_in": "Aumentar",
"Services": "Servizos", "zoom_out": "Diminuir"
"About": "Acerca de", },
"Help": "Axuda", "common": {
"Close": "Pechar", "about": "Acerca de",
"Minimize": "Minimizar", "help": "Axuda",
"Window": "Ventá", "preferences": "Preferencias"
"Toggle Developer Tools": "Activar ferramentas de desenvolvemento", },
"Toggle Full Screen": "Activar pantalla completa", "confirm_quit": "Tes a certeza de que queres saír?",
"Preferences": "Preferencias", "edit_menu": {
"Zoom Out": "Diminuir", "speech": "Falar",
"Zoom In": "Aumentar", "speech_start_speaking": "Comeza a falar",
"Actual Size": "Tamaño real", "speech_stop_speaking": "Deixa de falar"
"View": "Ver", },
"Select All": "Elexir todo", "file_menu": {
"Delete": "Eliminar", "label": "Ficheiro"
"Paste and Match Style": "Pegar e imitar estilo", },
"Paste": "Pegar", "menu": {
"Copy": "Copiar", "hide": "Agochar",
"Cut": "Cortar", "hide_others": "Agochar outras",
"Redo": "Refacer", "services": "Servizos",
"Undo": "Desfacer", "unhide": "Desagochar"
"Edit": "Editar", },
"Quit": "Saír", "right_click_menu": {
"Show/Hide": "Mostrar/Agochar", "add_to_dictionary": "Engadir ao dicionario",
"Are you sure you want to quit?": "Tes a certeza de que queres saír?", "copy_email": "Copiar enderezo de email",
"Cancel": "Cancelar" "copy_image": "Copiar imaxe",
"copy_link_url": "Copiar enderezo da ligazón",
"save_image_as": "Gardar imaxe como...",
"save_image_as_error_description": "Non se gardou a imaxe",
"save_image_as_error_title": "Fallou o gardado da imaxe"
},
"view_menu": {
"actual_size": "Tamaño real",
"toggle_developer_tools": "Activar ferramentas de desenvolvemento",
"toggle_full_screen": "Activar pantalla completa",
"view": "Ver"
},
"window_menu": {
"bring_all_to_front": "Traer todo á fronte",
"label": "Ventá",
"zoom": "Aumento"
}
} }

View file

@ -1,45 +1,61 @@
{ {
"Actual Size": "גודל ממשי", "action": {
"Add to dictionary": "הוסף למילון", "cancel": "ביטול",
"The image failed to save": "שמירת התמונה נכשלה", "close": "סגור",
"Failed to save image": "נכשל בשמירת התמונה", "copy": "העתק",
"Save image as...": "שמור תמונה בשם...", "cut": "גזור",
"Copy link address": "העתק קישור", "delete": "מחק",
"Copy email address": "העתק כתובת אימייל", "edit": "עריכה",
"Copy image": "העתק תמונה", "minimise": "מזער",
"File": "קובץ", "paste": "הדבק",
"Bring All to Front": "הבא הכל לחזית", "paste_match_style": "הדבק והתאם סגנון",
"Zoom": "גודל תצוגה", "quit": "יציאה",
"Stop Speaking": "הפסק לדבר", "redo": "בצע שוב",
"Start Speaking": "התחל לדבר", "select_all": "בחר הכל",
"Speech": "דיבור", "show_hide": "הצג\\הסתר",
"Unhide": "בטל הסתרה", "undo": "בטל ביצוע",
"Hide Others": "הסתר אחרים", "zoom_in": "התקרב",
"Hide": "הסתר", "zoom_out": "התרחק"
"Services": "שרותים", },
"About": "אודות", "common": {
"Help": "עזרה", "about": "אודות",
"Close": "סגור", "help": "עזרה",
"Minimize": "מזער", "preferences": "העדפות"
"Window": "חלון", },
"Toggle Developer Tools": "הפעל כלי מפתחים", "confirm_quit": "האם אתה בטוח שברצונך לצאת?",
"Toggle Full Screen": "הפעל מצב מסך מלא", "edit_menu": {
"Preferences": "העדפות", "speech": "דיבור",
"Zoom Out": "התרחק", "speech_start_speaking": "התחל לדבר",
"Zoom In": "התקרב", "speech_stop_speaking": "הפסק לדבר"
"View": "צפה", },
"Select All": "בחר הכל", "file_menu": {
"Delete": "מחק", "label": "קובץ"
"Paste": "הדבק", },
"Copy": "העתק", "menu": {
"Cut": "גזור", "hide": "הסתר",
"Undo": "בטל ביצוע", "hide_others": "הסתר אחרים",
"Redo": "בצע שוב", "services": "שרותים",
"Edit": "עריכה", "unhide": "בטל הסתרה"
"Quit": "יציאה", },
"Show/Hide": "הצג\\הסתר", "right_click_menu": {
"Are you sure you want to quit?": "האם אתה בטוח שברצונך לצאת?", "add_to_dictionary": "הוסף למילון",
"Cancel": "ביטול", "copy_email": "העתק כתובת אימייל",
"Paste and Match Style": "הדבק והתאם סגנון", "copy_image": "העתק תמונה",
"Copy image address": "העתקת כתובת התמונה" "copy_image_url": "העתקת כתובת התמונה",
"copy_link_url": "העתק קישור",
"save_image_as": "שמור תמונה בשם...",
"save_image_as_error_description": "שמירת התמונה נכשלה",
"save_image_as_error_title": "נכשל בשמירת התמונה"
},
"view_menu": {
"actual_size": "גודל ממשי",
"toggle_developer_tools": "הפעל כלי מפתחים",
"toggle_full_screen": "הפעל מצב מסך מלא",
"view": "צפה"
},
"window_menu": {
"bring_all_to_front": "הבא הכל לחזית",
"label": "חלון",
"zoom": "גודל תצוגה"
}
} }

View file

@ -1,12 +1,14 @@
{ {
"Paste": "Zalijepiti", "action": {
"Copy": "Kopirati", "cancel": "Otkazati",
"Cut": "Izrezati", "copy": "Kopirati",
"Redo": "Preurediti", "cut": "Izrezati",
"Undo": "Poništi", "edit": "Uredi",
"Edit": "Uredi", "paste": "Zalijepiti",
"Quit": "Prestati", "quit": "Prestati",
"Show/Hide": "Pokaži/sakrij", "redo": "Preurediti",
"Are you sure you want to quit?": "Jesi li siguran da želiš odustati?", "show_hide": "Pokaži/sakrij",
"Cancel": "Otkazati" "undo": "Poništi"
},
"confirm_quit": "Jesi li siguran da želiš odustati?"
} }

View file

@ -1,46 +1,62 @@
{ {
"Add to dictionary": "Hozzáadás a szótárhoz", "action": {
"The image failed to save": "A kép mentése sikertelen", "cancel": "Mégsem",
"Failed to save image": "Kép mentése sikertelen", "close": "Bezár",
"Save image as...": "Kép mentése másként...", "close_brand": "%(brand)s bezárása",
"Copy link address": "Hivatkozás másolása", "copy": "Másol",
"Copy email address": "E-mail cím másolása", "cut": "Kivág",
"Copy image": "Kép másolása", "delete": "Töröl",
"File": "Fájl", "edit": "Szerkeszt",
"Bring All to Front": "Mindent előtérbe hoz", "minimise": "Lecsukás",
"Zoom": "Nagyítás", "paste": "Beillesztés",
"Stop Speaking": "Fejezze be a beszédet", "paste_match_style": "Beillesztés formázással",
"Start Speaking": "Kezdjen beszélni", "quit": "Kilép",
"Speech": "Beszéd", "redo": "Újra",
"Unhide": "Felfed", "select_all": "Összes kijelölése",
"Hide Others": "Minden mást eltakar", "show_hide": "Megmutat/Elrejt",
"Hide": "Eltakar", "undo": "Visszavon",
"Services": "Szolgáltatás", "zoom_in": "Nagyít",
"About": "Névjegy", "zoom_out": "Kicsinyít"
"Help": "Segítség", },
"Close": "Bezár", "common": {
"Minimize": "Lecsukás", "about": "Névjegy",
"Window": "Ablak", "help": "Segítség",
"Toggle Developer Tools": "Fejlesztői eszközök", "preferences": "Beállítások"
"Toggle Full Screen": "Teljes képernyő", },
"Preferences": "Beállítások", "confirm_quit": "Biztos, hogy kilép?",
"Zoom Out": "Kicsinyít", "edit_menu": {
"Zoom In": "Nagyít", "speech": "Beszéd",
"Actual Size": "Jelenlegi méret", "speech_start_speaking": "Kezdjen beszélni",
"View": "Nézet", "speech_stop_speaking": "Fejezze be a beszédet"
"Select All": "Összes kijelölése", },
"Delete": "Töröl", "file_menu": {
"Paste and Match Style": "Beillesztés formázással", "label": "Fájl"
"Paste": "Beillesztés", },
"Copy": "Másol", "menu": {
"Cut": "Kivág", "hide": "Eltakar",
"Redo": "Újra", "hide_others": "Minden mást eltakar",
"Undo": "Visszavon", "services": "Szolgáltatás",
"Edit": "Szerkeszt", "unhide": "Felfed"
"Quit": "Kilép", },
"Show/Hide": "Megmutat/Elrejt", "right_click_menu": {
"Are you sure you want to quit?": "Biztos, hogy kilép?", "add_to_dictionary": "Hozzáadás a szótárhoz",
"Cancel": "Mégsem", "copy_email": "E-mail cím másolása",
"Copy image address": "Kép címének másolása", "copy_image": "Kép másolása",
"Close %(brand)s": "%(brand)s bezárása" "copy_image_url": "Kép címének másolása",
"copy_link_url": "Hivatkozás másolása",
"save_image_as": "Kép mentése másként...",
"save_image_as_error_description": "A kép mentése sikertelen",
"save_image_as_error_title": "Kép mentése sikertelen"
},
"view_menu": {
"actual_size": "Jelenlegi méret",
"toggle_developer_tools": "Fejlesztői eszközök",
"toggle_full_screen": "Teljes képernyő",
"view": "Nézet"
},
"window_menu": {
"bring_all_to_front": "Mindent előtérbe hoz",
"label": "Ablak",
"zoom": "Nagyítás"
}
} }

View file

@ -1,47 +1,59 @@
{ {
"Add to dictionary": "Tambah ke kamus", "action": {
"The image failed to save": "Gambar gagal disimpan", "cancel": "Batal",
"Failed to save image": "Gagal menyimpan gambar", "close": "Tutup",
"Save image as...": "Simpan gambar sebagai...", "close_brand": "Tutuo %(brand)s",
"Copy link address": "Salin alamat tautan", "copy": "Salin",
"Copy email address": "Salin surel", "cut": "Potong",
"Copy image": "Salin gambar", "delete": "Hapus",
"File": "File", "minimise": "Minimalkan",
"Hide Others": "Sembunyikan yang Lain", "paste": "Tempel",
"Bring All to Front": "Bawa Semua ke Depan", "paste_match_style": "Tempel dan Cocokkan Gaya",
"Zoom": "Perbesar", "quit": "Keluar",
"Stop Speaking": "Berhenti Berbicara", "redo": "Ulangi",
"Start Speaking": "Mulai Berbicara", "select_all": "Pilih Semua",
"Speech": "Dikte", "show_hide": "Tampilkan/Sembunyikan",
"Unhide": "Tampilkan", "undo": "Urungkan",
"Hide": "Sembunyikan", "zoom_in": "Perbesar",
"Services": "Layanan", "zoom_out": "Perkecil"
"About": "Tentang", },
"Help": "Bantuan", "common": {
"Close": "Tutup", "about": "Tentang",
"Minimize": "Minimalkan", "brand_help": "Bantuan %(brand)s",
"Window": "Jendela", "help": "Bantuan",
"Toggle Developer Tools": "Beralih Alat Pengembang", "preferences": "Pengaturan"
"Toggle Full Screen": "Beralih Layar Penuh", },
"Preferences": "Pengaturan", "confirm_quit": "Apakah Anda yakin ingin keluar?",
"Zoom Out": "Perkecil", "edit_menu": {
"Zoom In": "Perbesar", "speech": "Dikte",
"Cut": "Potong", "speech_start_speaking": "Mulai Berbicara",
"Redo": "Ulangi", "speech_stop_speaking": "Berhenti Berbicara"
"Undo": "Urungkan", },
"Actual Size": "Ukuran Sebenarnya", "menu": {
"View": "Tampilan", "hide": "Sembunyikan",
"Select All": "Pilih Semua", "hide_others": "Sembunyikan yang Lain",
"Delete": "Hapus", "services": "Layanan",
"Paste and Match Style": "Tempel dan Cocokkan Gaya", "unhide": "Tampilkan"
"Paste": "Tempel", },
"Copy": "Salin", "right_click_menu": {
"Edit": "Edit", "add_to_dictionary": "Tambah ke kamus",
"Quit": "Keluar", "copy_email": "Salin surel",
"Show/Hide": "Tampilkan/Sembunyikan", "copy_image": "Salin gambar",
"Are you sure you want to quit?": "Apakah Anda yakin ingin keluar?", "copy_image_url": "Salin alamat gambar",
"Cancel": "Batal", "copy_link_url": "Salin alamat tautan",
"Copy image address": "Salin alamat gambar", "save_image_as": "Simpan gambar sebagai...",
"Close %(brand)s": "Tutuo %(brand)s", "save_image_as_error_description": "Gambar gagal disimpan",
"%(brand)s Help": "Bantuan %(brand)s" "save_image_as_error_title": "Gagal menyimpan gambar"
},
"view_menu": {
"actual_size": "Ukuran Sebenarnya",
"toggle_developer_tools": "Beralih Alat Pengembang",
"toggle_full_screen": "Beralih Layar Penuh",
"view": "Tampilan"
},
"window_menu": {
"bring_all_to_front": "Bawa Semua ke Depan",
"label": "Jendela",
"zoom": "Perbesar"
}
} }

View file

@ -1,46 +1,62 @@
{ {
"Add to dictionary": "Bæta við orðasafn", "action": {
"The image failed to save": "Myndina var ekki hægt að vista", "cancel": "Hætta við",
"Failed to save image": "Mistókst að vista mynd", "close": "Loka",
"Save image as...": "Vista mynd sem...", "close_brand": "Loka %(brand)s",
"Copy link address": "Afrita vistfang tengils", "copy": "Afrita",
"Copy email address": "Afrita tölvupóstfang", "cut": "Klippa",
"Copy image": "Afrita mynd", "delete": "Eyða",
"File": "Skrá", "edit": "Breyta",
"Bring All to Front": "Setja allt fremst", "minimise": "Lágmarka",
"Zoom": "Stærð", "paste": "Líma",
"Stop Speaking": "Hætta tali", "paste_match_style": "Líma og samsvara stíl",
"Start Speaking": "Byrja tal", "quit": "Hætta",
"Speech": "Tal", "redo": "Endurgera",
"Unhide": "Birta", "select_all": "Velja allt",
"Hide Others": "Fela aðra", "show_hide": "Sýna/Fela",
"Hide": "Fela", "undo": "Afturkalla",
"Services": "Þjónustur", "zoom_in": "Stækka",
"About": "Um hugbúnaðinn", "zoom_out": "Minnka"
"Help": "Hjálp", },
"Close": "Loka", "common": {
"Minimize": "Lágmarka", "about": "Um hugbúnaðinn",
"Window": "Gluggi", "help": "Hjálp",
"Toggle Developer Tools": "Víxla forritunarverkfærum af/á", "preferences": "Stillingar"
"Toggle Full Screen": "Víxla fullum skjá af/á", },
"Preferences": "Stillingar", "confirm_quit": "Ertu viss um að þú viljir hætta?",
"Zoom Out": "Minnka", "edit_menu": {
"Zoom In": "Stækka", "speech": "Tal",
"Actual Size": "Raunstærð", "speech_start_speaking": "Byrja tal",
"View": "Skoða", "speech_stop_speaking": "Hætta tali"
"Select All": "Velja allt", },
"Delete": "Eyða", "file_menu": {
"Paste and Match Style": "Líma og samsvara stíl", "label": "Skrá"
"Paste": "Líma", },
"Copy": "Afrita", "menu": {
"Cut": "Klippa", "hide": "Fela",
"Redo": "Endurgera", "hide_others": "Fela aðra",
"Undo": "Afturkalla", "services": "Þjónustur",
"Edit": "Breyta", "unhide": "Birta"
"Quit": "Hætta", },
"Show/Hide": "Sýna/Fela", "right_click_menu": {
"Are you sure you want to quit?": "Ertu viss um að þú viljir hætta?", "add_to_dictionary": "Bæta við orðasafn",
"Cancel": "Hætta við", "copy_email": "Afrita tölvupóstfang",
"Copy image address": "Afrita slóð myndar", "copy_image": "Afrita mynd",
"Close %(brand)s": "Loka %(brand)s" "copy_image_url": "Afrita slóð myndar",
"copy_link_url": "Afrita vistfang tengils",
"save_image_as": "Vista mynd sem...",
"save_image_as_error_description": "Myndina var ekki hægt að vista",
"save_image_as_error_title": "Mistókst að vista mynd"
},
"view_menu": {
"actual_size": "Raunstærð",
"toggle_developer_tools": "Víxla forritunarverkfærum af/á",
"toggle_full_screen": "Víxla fullum skjá af/á",
"view": "Skoða"
},
"window_menu": {
"bring_all_to_front": "Setja allt fremst",
"label": "Gluggi",
"zoom": "Stærð"
}
} }

View file

@ -1,47 +1,59 @@
{ {
"Add to dictionary": "Aggiungi al dizionario", "action": {
"The image failed to save": "Non è stato possibile salvare l'immagine", "cancel": "Annulla",
"Failed to save image": "Salvataggio immagine fallito", "close": "Chiudi",
"Save image as...": "Salva immagine come...", "close_brand": "Chiudi %(brand)s",
"Copy link address": "Copia indirizzo collegamento", "copy": "Copia",
"Copy email address": "Copia indirizzo email", "cut": "Taglia",
"Copy image": "Copia immagine", "delete": "Elimina",
"File": "File", "edit": "Modifica",
"Bring All to Front": "Porta tutto in primo piano", "minimise": "Riduci",
"Zoom": "Zoom", "paste": "Incolla",
"Start Speaking": "Inizia a parlare", "paste_match_style": "Incolla e adegua lo stile",
"Unhide": "Mostra", "quit": "Esci",
"Hide Others": "Nascondi gli altri", "redo": "Ripeti",
"Hide": "Nascondi", "select_all": "Seleziona tutto",
"Services": "Servizi", "show_hide": "Mostra/Nascondi",
"About": "Informazioni su", "undo": "Annulla",
"Help": "Aiuto", "zoom_in": "Ingrandisci",
"Close": "Chiudi", "zoom_out": "Rimpicciolisci"
"Minimize": "Riduci", },
"Window": "Finestra", "common": {
"Toggle Developer Tools": "Attiva strumenti per sviluppatori", "about": "Informazioni su",
"Toggle Full Screen": "Passa a schermo intero", "brand_help": "Aiuto per %(brand)s",
"Preferences": "Preferenze", "help": "Aiuto",
"Zoom Out": "Rimpicciolisci", "preferences": "Preferenze"
"Zoom In": "Ingrandisci", },
"Actual Size": "Dimensione effettiva", "confirm_quit": "Vuoi veramente uscire?",
"View": "Vedi", "edit_menu": {
"Select All": "Seleziona tutto", "speech": "Dettatura",
"Delete": "Elimina", "speech_start_speaking": "Inizia a parlare",
"Paste and Match Style": "Incolla e adegua lo stile", "speech_stop_speaking": "Smetti di parlare"
"Paste": "Incolla", },
"Copy": "Copia", "menu": {
"Cut": "Taglia", "hide": "Nascondi",
"Redo": "Ripeti", "hide_others": "Nascondi gli altri",
"Undo": "Annulla", "services": "Servizi",
"Edit": "Modifica", "unhide": "Mostra"
"Quit": "Esci", },
"Show/Hide": "Mostra/Nascondi", "right_click_menu": {
"Are you sure you want to quit?": "Vuoi veramente uscire?", "add_to_dictionary": "Aggiungi al dizionario",
"Cancel": "Annulla", "copy_email": "Copia indirizzo email",
"Stop Speaking": "Smetti di parlare", "copy_image": "Copia immagine",
"Speech": "Dettatura", "copy_image_url": "Copia indirizzo immagine",
"Copy image address": "Copia indirizzo immagine", "copy_link_url": "Copia indirizzo collegamento",
"Close %(brand)s": "Chiudi %(brand)s", "save_image_as": "Salva immagine come...",
"%(brand)s Help": "Aiuto per %(brand)s" "save_image_as_error_description": "Non è stato possibile salvare l'immagine",
"save_image_as_error_title": "Salvataggio immagine fallito"
},
"view_menu": {
"actual_size": "Dimensione effettiva",
"toggle_developer_tools": "Attiva strumenti per sviluppatori",
"toggle_full_screen": "Passa a schermo intero",
"view": "Vedi"
},
"window_menu": {
"bring_all_to_front": "Porta tutto in primo piano",
"label": "Finestra"
}
} }

View file

@ -1,46 +1,62 @@
{ {
"Close %(brand)s": "%(brand)sを閉じる", "action": {
"Bring All to Front": "全てを前面に表示", "cancel": "キャンセル",
"The image failed to save": "画像の保存に失敗しました", "close": "閉じる",
"Unhide": "再表示", "close_brand": "%(brand)sを閉じる",
"Actual Size": "等倍", "copy": "コピー",
"Paste and Match Style": "スタイルを保持して貼り付け", "cut": "切り取り",
"Add to dictionary": "辞書に追加", "delete": "削除",
"Failed to save image": "画像の保存に失敗", "edit": "編集",
"Save image as...": "画像を保存", "minimise": "最小化",
"Speech": "スピーチ", "paste": "貼り付け",
"Stop Speaking": "録音を停止", "paste_match_style": "スタイルを保持して貼り付け",
"Start Speaking": "録音を開始", "quit": "終了",
"Toggle Developer Tools": "開発者ツールを切り替える", "redo": "やり直す",
"Toggle Full Screen": "全画面表示を切り替える", "select_all": "全て選択",
"Redo": "やり直す", "show_hide": "表示/非表示",
"Undo": "取り消す", "undo": "取り消す",
"Minimize": "最小化", "zoom_in": "拡大",
"Window": "ウィンドウ", "zoom_out": "縮小"
"Preferences": "環境設定", },
"Zoom Out": "縮小", "common": {
"Zoom In": "拡大", "about": "概要",
"Copy link address": "リンクのアドレスをコピー", "help": "ヘルプ",
"Copy image address": "画像のアドレスをコピー", "preferences": "環境設定"
"Copy email address": "メールアドレスをコピー", },
"Copy image": "画像をコピー", "confirm_quit": "終了してよろしいですか?",
"File": "ファイル", "edit_menu": {
"Zoom": "ズーム", "speech": "スピーチ",
"Hide Others": "他を非表示", "speech_start_speaking": "録音を開始",
"Hide": "非表示", "speech_stop_speaking": "録音を停止"
"Services": "サービス", },
"About": "概要", "file_menu": {
"Help": "ヘルプ", "label": "ファイル"
"Close": "閉じる", },
"View": "表示", "menu": {
"Select All": "全て選択", "hide": "非表示",
"Delete": "削除", "hide_others": "他を非表示",
"Paste": "貼り付け", "services": "サービス",
"Copy": "コピー", "unhide": "再表示"
"Cut": "切り取り", },
"Edit": "編集", "right_click_menu": {
"Quit": "終了", "add_to_dictionary": "辞書に追加",
"Are you sure you want to quit?": "終了してよろしいですか?", "copy_email": "メールアドレスをコピー",
"Show/Hide": "表示/非表示", "copy_image": "画像をコピー",
"Cancel": "キャンセル" "copy_image_url": "画像のアドレスをコピー",
"copy_link_url": "リンクのアドレスをコピー",
"save_image_as": "画像を保存",
"save_image_as_error_description": "画像の保存に失敗しました",
"save_image_as_error_title": "画像の保存に失敗"
},
"view_menu": {
"actual_size": "等倍",
"toggle_developer_tools": "開発者ツールを切り替える",
"toggle_full_screen": "全画面表示を切り替える",
"view": "表示"
},
"window_menu": {
"bring_all_to_front": "全てを前面に表示",
"label": "ウィンドウ",
"zoom": "ズーム"
}
} }

View file

@ -1,24 +1,36 @@
{ {
"File": "파일", "action": {
"Copy email address": "이메일 주소 복사", "cancel": "취소",
"Paste": "붙여넣기", "close_brand": "%(brand)s 닫기",
"Hide": "숨기기", "copy": "복사하기",
"Preferences": "환경설정", "cut": "잘라내기",
"Undo": "실행 취소", "delete": "삭제",
"Edit": "수정", "edit": "수정",
"Quit": "종료", "paste": "붙여넣기",
"Delete": "삭제", "paste_match_style": "붙여넣고 스타일 일치",
"Cancel": "취소", "quit": "종료",
"Are you sure you want to quit?": "종료하시겠습니까?", "redo": "되돌리기",
"Show/Hide": "보이기/숨기기", "select_all": "전체 선택",
"Redo": "되돌리기", "show_hide": "보이기/숨기기",
"Cut": "잘라내기", "undo": "실행 취소",
"Copy": "복사하기", "zoom_in": "확대",
"View": "보기", "zoom_out": "축소"
"Actual Size": "실제 크기", },
"Zoom In": "확대", "common": {
"Zoom Out": "축소", "preferences": "환경설정"
"Close %(brand)s": "%(brand)s 닫기", },
"Paste and Match Style": "붙여넣고 스타일 일치", "confirm_quit": "종료하시겠습니까?",
"Select All": "전체 선택" "file_menu": {
"label": "파일"
},
"menu": {
"hide": "숨기기"
},
"right_click_menu": {
"copy_email": "이메일 주소 복사"
},
"view_menu": {
"actual_size": "실제 크기",
"view": "보기"
}
} }

View file

@ -1,45 +1,61 @@
{ {
"Toggle Developer Tools": "ສະຫຼັບໄປໜ້າເຄື່ອງມືພັດທະນາ", "action": {
"Add to dictionary": "ເພີ່ມເຂົ້າໄປວັດຈະນານຸກົມ", "cancel": "ຍົກເລີກ",
"The image failed to save": "ຮູບພາບບໍ່ສາມາດບັດທຶກໄດ້", "close": "ປິດ",
"Failed to save image": "ການບັນທຶກຮູບພາບບໍ່ສຳເລັດ", "copy": "ສຳເນົາ",
"Save image as...": "ບັນທຶກຮູບພາບເປັນ...", "cut": "ຕັດ",
"Copy link address": "ສຳເນົາທີ່ຢູ່ລິ້ງ", "delete": "ລຶບ",
"Copy image address": "ສຳເນົາທີ່ຢູ່ຮູບພາບ", "edit": "ແກ້ໄຂ",
"Copy email address": "ສຳເນົາທີ່ຢູ່ເມວ", "minimise": "ຫຍໍ້ນ້ອຍ",
"Copy image": "ສຳເນົາຮູບ", "paste": "ກັອບມາໃສ່",
"File": "ຟາຍ", "paste_match_style": "ກັອບມາໃສ່ ແລະໃຫ້ສະຕາຍຕົງກັນ",
"Bring All to Front": "ເອົາທັງໝົດມາທາງໜ້າ", "quit": "ຍົກເລີກ",
"Zoom": "ຊູມ", "redo": "ລຶ້ມຄືນ",
"Stop Speaking": "ເຊົາສົນທະນາ", "select_all": "ເລືອກທັງໝົດ",
"Start Speaking": "ເລີ່ມສົນທະນາ", "show_hide": "ສະແດງ/ເຊື່ອງ",
"Speech": "ຄຳກ່າວ", "undo": "ຮື້ຄືນ",
"Unhide": "ໂຊຄືນ", "zoom_in": "ຊູມເຂົ້າ",
"Hide Others": "ເຊື່ອງອັນອື່ນ", "zoom_out": "ຊູມອອກ"
"Hide": "ເຊື່ອງ", },
"Services": "ບໍລິການ", "common": {
"About": "ກ່ຽວກັບ", "about": "ກ່ຽວກັບ",
"Help": "ຊ່ວຍເຫຼືອ", "help": "ຊ່ວຍເຫຼືອ",
"Close": "ປິດ", "preferences": "ການຕັ້ງຄ່າ"
"Minimize": "ຫຍໍ້ນ້ອຍ", },
"Window": "ປ່ອງຢ້ຽມ", "confirm_quit": "ທ່ານຕ້ອງການປິດແທ້ບໍ່?",
"Toggle Full Screen": "ສະຫຼັບເຕັມຈໍ", "edit_menu": {
"Preferences": "ການຕັ້ງຄ່າ", "speech": "ຄຳກ່າວ",
"Zoom Out": "ຊູມອອກ", "speech_start_speaking": "ເລີ່ມສົນທະນາ",
"Zoom In": "ຊູມເຂົ້າ", "speech_stop_speaking": "ເຊົາສົນທະນາ"
"Actual Size": "ຂະໜາດຕົວຈິງ", },
"View": "ເບິ່ງ", "file_menu": {
"Select All": "ເລືອກທັງໝົດ", "label": "ຟາຍ"
"Delete": "ລຶບ", },
"Paste and Match Style": "ກັອບມາໃສ່ ແລະໃຫ້ສະຕາຍຕົງກັນ", "menu": {
"Paste": "ກັອບມາໃສ່", "hide": "ເຊື່ອງ",
"Copy": "ສຳເນົາ", "hide_others": "ເຊື່ອງອັນອື່ນ",
"Cut": "ຕັດ", "services": "ບໍລິການ",
"Redo": "ລຶ້ມຄືນ", "unhide": "ໂຊຄືນ"
"Undo": "ຮື້ຄືນ", },
"Edit": "ແກ້ໄຂ", "right_click_menu": {
"Quit": "ຍົກເລີກ", "add_to_dictionary": "ເພີ່ມເຂົ້າໄປວັດຈະນານຸກົມ",
"Show/Hide": "ສະແດງ/ເຊື່ອງ", "copy_email": "ສຳເນົາທີ່ຢູ່ເມວ",
"Are you sure you want to quit?": "ທ່ານຕ້ອງການປິດແທ້ບໍ່?", "copy_image": "ສຳເນົາຮູບ",
"Cancel": "ຍົກເລີກ" "copy_image_url": "ສຳເນົາທີ່ຢູ່ຮູບພາບ",
"copy_link_url": "ສຳເນົາທີ່ຢູ່ລິ້ງ",
"save_image_as": "ບັນທຶກຮູບພາບເປັນ...",
"save_image_as_error_description": "ຮູບພາບບໍ່ສາມາດບັດທຶກໄດ້",
"save_image_as_error_title": "ການບັນທຶກຮູບພາບບໍ່ສຳເລັດ"
},
"view_menu": {
"actual_size": "ຂະໜາດຕົວຈິງ",
"toggle_developer_tools": "ສະຫຼັບໄປໜ້າເຄື່ອງມືພັດທະນາ",
"toggle_full_screen": "ສະຫຼັບເຕັມຈໍ",
"view": "ເບິ່ງ"
},
"window_menu": {
"bring_all_to_front": "ເອົາທັງໝົດມາທາງໜ້າ",
"label": "ປ່ອງຢ້ຽມ",
"zoom": "ຊູມ"
}
} }

View file

@ -1,46 +1,62 @@
{ {
"Failed to save image": "Nepavyko įrašyti paveikslėlio", "action": {
"Save image as...": "Įrašyti paveikslėlį kaip...", "cancel": "Atšaukti",
"Copy image address": "Kopijuoti paveikslėlio adresą", "close": "Uždaryti",
"Copy image": "Kopijuoti paveikslėlį", "close_brand": "Uždaryti %(brand)s",
"The image failed to save": "Paveikslėlio nepavyko išsaugoti", "copy": "Kopijuoti",
"Bring All to Front": "Viską iškelti į priekį", "cut": "Iškirpti",
"Speech": "Kalba", "delete": "Ištrinti",
"Actual Size": "Tikrasis dydis", "edit": "Redaguoti",
"Toggle Developer Tools": "Perjungti kūrėjo įrankius", "minimise": "Sumažinti",
"Toggle Full Screen": "Perjungti viso ekrano režimą", "paste": "Įklijuoti",
"Paste and Match Style": "Įklijuoti ir suderinti stilių", "paste_match_style": "Įklijuoti ir suderinti stilių",
"Redo": "Sugrąžinti veiksmą", "quit": "Išeiti",
"Undo": "Atšaukti veiksmą", "redo": "Sugrąžinti veiksmą",
"Select All": "Pasirinkti visus", "select_all": "Pasirinkti visus",
"Delete": "Ištrinti", "show_hide": "Rodyti/Slėpti",
"Paste": "Įklijuoti", "undo": "Atšaukti veiksmą",
"Copy": "Kopijuoti", "zoom_in": "Priartinti",
"Cut": "Iškirpti", "zoom_out": "Atitolinti"
"Add to dictionary": "Pridėti prie žodyno", },
"Copy link address": "Kopijuoti nuorodos adresą", "common": {
"Copy email address": "Kopijuoti el. pašto adresą", "about": "Apie",
"File": "Failas", "help": "Pagalba",
"Zoom": "Priartinti", "preferences": "Nuostatos"
"Stop Speaking": "Nustoti kalbėti", },
"Start Speaking": "Pradėti kalbėti", "confirm_quit": "Ar tikrai norite išeiti?",
"Unhide": "Nebeslėpti", "edit_menu": {
"Hide Others": "Slėpti kitus", "speech": "Kalba",
"Hide": "Slėpti", "speech_start_speaking": "Pradėti kalbėti",
"Services": "Paslaugos", "speech_stop_speaking": "Nustoti kalbėti"
"About": "Apie", },
"Help": "Pagalba", "file_menu": {
"Close": "Uždaryti", "label": "Failas"
"Minimize": "Sumažinti", },
"Window": "Langas", "menu": {
"Preferences": "Nuostatos", "hide": "Slėpti",
"Zoom Out": "Atitolinti", "hide_others": "Slėpti kitus",
"Zoom In": "Priartinti", "services": "Paslaugos",
"View": "Peržiūrėti", "unhide": "Nebeslėpti"
"Edit": "Redaguoti", },
"Quit": "Išeiti", "right_click_menu": {
"Show/Hide": "Rodyti/Slėpti", "add_to_dictionary": "Pridėti prie žodyno",
"Are you sure you want to quit?": "Ar tikrai norite išeiti?", "copy_email": "Kopijuoti el. pašto adresą",
"Cancel": "Atšaukti", "copy_image": "Kopijuoti paveikslėlį",
"Close %(brand)s": "Uždaryti %(brand)s" "copy_image_url": "Kopijuoti paveikslėlio adresą",
"copy_link_url": "Kopijuoti nuorodos adresą",
"save_image_as": "Įrašyti paveikslėlį kaip...",
"save_image_as_error_description": "Paveikslėlio nepavyko išsaugoti",
"save_image_as_error_title": "Nepavyko įrašyti paveikslėlio"
},
"view_menu": {
"actual_size": "Tikrasis dydis",
"toggle_developer_tools": "Perjungti kūrėjo įrankius",
"toggle_full_screen": "Perjungti viso ekrano režimą",
"view": "Peržiūrėti"
},
"window_menu": {
"bring_all_to_front": "Viską iškelti į priekį",
"label": "Langas",
"zoom": "Priartinti"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Start Speaking": "Uzsākt runāšanu", "action": {
"Add to dictionary": "Pievienot vārdnīcai", "cancel": "Atcelt",
"The image failed to save": "Attēlu neizdevās saglabāt", "close": "Aizvērt",
"Failed to save image": "Neizdevās saglabāt attēlu", "close_brand": "Aizvērt %(brand)s",
"Save image as...": "Saglabāt attēlu kā...", "copy": "Ievietot starpliktuvē",
"Copy link address": "Ievietot saites adresi starpliktuvē", "cut": "Izgriezt",
"Copy email address": "Ievietot e-pasta adresi starpliktuvē", "delete": "Izdzēst",
"Copy image": "Ievietot attēlu starpliktuvē", "edit": "Labot",
"File": "Datne", "minimise": "Samazināt",
"Bring All to Front": "Iznest visu priekšplānā", "paste": "Ielīmēt",
"Zoom": "Tālummaiņa", "paste_match_style": "Ielīmēt un pielāgot stilu",
"Stop Speaking": "Pārtraukt runāšanu", "quit": "Iziet",
"Speech": "Runa", "redo": "Atatsaukt",
"Unhide": "Rādīt", "select_all": "Atzīmēt visu",
"Hide Others": "Paslēpt citus", "show_hide": "Parādīt/paslēpt",
"Hide": "Paslēpt", "undo": "Atsaukt",
"Services": "Pakalpojumi", "zoom_in": "Tuvināt",
"About": "Par", "zoom_out": "Tālināt"
"Help": "Palīdzība", },
"Close": "Aizvērt", "common": {
"Minimize": "Samazināt", "about": "Par",
"Window": "Logs", "brand_help": "%(brand)s palīdzība",
"Toggle Developer Tools": "Pārslēgt izstrādātāja rīkus", "help": "Palīdzība",
"Toggle Full Screen": "Pārslēgt pilnekrānu", "preferences": "Iestatījumi"
"Preferences": "Iestatījumi", },
"Zoom Out": "Tālināt", "confirm_quit": "Vai tiešām iziet?",
"Zoom In": "Tuvināt", "edit_menu": {
"Actual Size": "Īstais izmērs", "speech": "Runa",
"View": "Skats", "speech_start_speaking": "Uzsākt runāšanu",
"Select All": "Atzīmēt visu", "speech_stop_speaking": "Pārtraukt runāšanu"
"Delete": "Izdzēst", },
"Paste and Match Style": "Ielīmēt un pielāgot stilu", "file_menu": {
"Paste": "Ielīmēt", "label": "Datne"
"Copy": "Ievietot starpliktuvē", },
"Cut": "Izgriezt", "menu": {
"Redo": "Atatsaukt", "hide": "Paslēpt",
"Undo": "Atsaukt", "hide_others": "Paslēpt citus",
"Edit": "Labot", "services": "Pakalpojumi",
"Quit": "Iziet", "unhide": "Rādīt"
"Show/Hide": "Parādīt/paslēpt", },
"Are you sure you want to quit?": "Vai tiešām iziet?", "right_click_menu": {
"Cancel": "Atcelt", "add_to_dictionary": "Pievienot vārdnīcai",
"Copy image address": "Ievietot attēla adresi starpliktuvē", "copy_email": "Ievietot e-pasta adresi starpliktuvē",
"Close %(brand)s": "Aizvērt %(brand)s", "copy_image": "Ievietot attēlu starpliktuvē",
"%(brand)s Help": "%(brand)s palīdzība" "copy_image_url": "Ievietot attēla adresi starpliktuvē",
"copy_link_url": "Ievietot saites adresi starpliktuvē",
"save_image_as": "Saglabāt attēlu kā...",
"save_image_as_error_description": "Attēlu neizdevās saglabāt",
"save_image_as_error_title": "Neizdevās saglabāt attēlu"
},
"view_menu": {
"actual_size": "Īstais izmērs",
"toggle_developer_tools": "Pārslēgt izstrādātāja rīkus",
"toggle_full_screen": "Pārslēgt pilnekrānu",
"view": "Skats"
},
"window_menu": {
"bring_all_to_front": "Iznest visu priekšplānā",
"label": "Logs",
"zoom": "Tālummaiņa"
}
} }

View file

@ -1,37 +1,53 @@
{ {
"Toggle Developer Tools": "Veksle Utvikleralternativer", "action": {
"Add to dictionary": "Legg til i ordbok", "cancel": "Avbryt",
"The image failed to save": "Bildet kunne ikke lagres", "close": "Lukk",
"Failed to save image": "Kunne ikke lagre bildet", "copy": "Kopier",
"Save image as...": "Lagre bildet som...", "delete": "Slett",
"Copy email address": "Kopier e-postadressen", "edit": "Rediger",
"Copy image": "Kopier bildet", "minimise": "Minimere",
"File": "Fil", "paste": "Lim inn",
"Stop Speaking": "Slutt å snakke", "quit": "Avslutt",
"Start Speaking": "Begynn å snakke", "select_all": "Velg alle",
"Speech": "Tale", "show_hide": "Vis/Skjul",
"Hide": "Skjul", "undo": "Angre",
"About": "Om", "zoom_in": "Zoom inn",
"Help": "Hjelp", "zoom_out": "Zoom ut"
"Close": "Lukk", },
"Minimize": "Minimere", "common": {
"Window": "Vindu", "about": "Om",
"Zoom Out": "Zoom ut", "help": "Hjelp"
"Zoom In": "Zoom inn", },
"Actual Size": "Faktisk størrelse", "confirm_quit": "Er du sikker på at du vil slutte?",
"View": "Se", "edit_menu": {
"Select All": "Velg alle", "speech": "Tale",
"Delete": "Slett", "speech_start_speaking": "Begynn å snakke",
"Paste": "Lim inn", "speech_stop_speaking": "Slutt å snakke"
"Copy": "Kopier", },
"Undo": "Angre", "file_menu": {
"Edit": "Rediger", "label": "Fil"
"Quit": "Avslutt", },
"Show/Hide": "Vis/Skjul", "menu": {
"Are you sure you want to quit?": "Er du sikker på at du vil slutte?", "hide": "Skjul",
"Cancel": "Avbryt", "hide_others": "Skjul Andre",
"Services": "Tjenester", "services": "Tjenester"
"Hide Others": "Skjul Andre", },
"Bring All to Front": "Flytt Alt Frem", "right_click_menu": {
"Toggle Full Screen": "Veksle Fullskjerm" "add_to_dictionary": "Legg til i ordbok",
"copy_email": "Kopier e-postadressen",
"copy_image": "Kopier bildet",
"save_image_as": "Lagre bildet som...",
"save_image_as_error_description": "Bildet kunne ikke lagres",
"save_image_as_error_title": "Kunne ikke lagre bildet"
},
"view_menu": {
"actual_size": "Faktisk størrelse",
"toggle_developer_tools": "Veksle Utvikleralternativer",
"toggle_full_screen": "Veksle Fullskjerm",
"view": "Se"
},
"window_menu": {
"bring_all_to_front": "Flytt Alt Frem",
"label": "Vindu"
}
} }

View file

@ -1,46 +1,60 @@
{ {
"Add to dictionary": "Aan woordenboek toevoegen", "action": {
"The image failed to save": "De afbeelding opslaan is mislukt", "cancel": "Annuleren",
"Failed to save image": "Afbeelding opslaan is mislukt", "close": "Sluiten",
"Save image as...": "Afbeelding opslaan als...", "close_brand": "Sluit %(brand)s",
"Copy link address": "Link kopiëren", "copy": "Kopiëren",
"Copy email address": "E-mailadres kopiëren", "cut": "Knippen",
"Copy image": "Afbeelding kopiëren", "delete": "Verwijderen",
"File": "Bestand", "edit": "Bewerken",
"Bring All to Front": "Alles naar voren brengen", "minimise": "Minimaliseren",
"Zoom": "Zoom", "paste": "Plakken",
"Stop Speaking": "Stop met praten", "paste_match_style": "Plakken zonder stijl",
"Start Speaking": "Begin met praten", "quit": "Sluiten",
"Speech": "Spraak", "redo": "Opnieuw doen",
"Unhide": "Weer laten zien", "select_all": "Alles selecteren",
"Hide Others": "Anderen verbergen", "show_hide": "Tonen/Verbergen",
"Hide": "Verbergen", "undo": "Ongedaan maken",
"Services": "Diensten", "zoom_in": "Inzoomen",
"About": "Over", "zoom_out": "Uitzoomen"
"Help": "Help", },
"Close": "Sluiten", "common": {
"Minimize": "Minimaliseren", "about": "Over",
"Window": "Venster", "preferences": "Voorkeuren"
"Toggle Developer Tools": "Developer Tools wisselen", },
"Toggle Full Screen": "Volledig scherm wisselen", "confirm_quit": "Weet u zeker dat u wilt stoppen?",
"Preferences": "Voorkeuren", "edit_menu": {
"Zoom Out": "Uitzoomen", "speech": "Spraak",
"Zoom In": "Inzoomen", "speech_start_speaking": "Begin met praten",
"Actual Size": "Werkelijke grootte", "speech_stop_speaking": "Stop met praten"
"View": "Bekijken", },
"Select All": "Alles selecteren", "file_menu": {
"Delete": "Verwijderen", "label": "Bestand"
"Paste and Match Style": "Plakken zonder stijl", },
"Paste": "Plakken", "menu": {
"Copy": "Kopiëren", "hide": "Verbergen",
"Cut": "Knippen", "hide_others": "Anderen verbergen",
"Redo": "Opnieuw doen", "services": "Diensten",
"Undo": "Ongedaan maken", "unhide": "Weer laten zien"
"Edit": "Bewerken", },
"Quit": "Sluiten", "right_click_menu": {
"Show/Hide": "Tonen/Verbergen", "add_to_dictionary": "Aan woordenboek toevoegen",
"Are you sure you want to quit?": "Weet u zeker dat u wilt stoppen?", "copy_email": "E-mailadres kopiëren",
"Cancel": "Annuleren", "copy_image": "Afbeelding kopiëren",
"Copy image address": "Kopieer afbeeldingsadres", "copy_image_url": "Kopieer afbeeldingsadres",
"Close %(brand)s": "Sluit %(brand)s" "copy_link_url": "Link kopiëren",
"save_image_as": "Afbeelding opslaan als...",
"save_image_as_error_description": "De afbeelding opslaan is mislukt",
"save_image_as_error_title": "Afbeelding opslaan is mislukt"
},
"view_menu": {
"actual_size": "Werkelijke grootte",
"toggle_developer_tools": "Developer Tools wisselen",
"toggle_full_screen": "Volledig scherm wisselen",
"view": "Bekijken"
},
"window_menu": {
"bring_all_to_front": "Alles naar voren brengen",
"label": "Venster"
}
} }

View file

@ -1,46 +1,61 @@
{ {
"The image failed to save": "Biletet vart ikkje lagra", "action": {
"Paste and Match Style": "Lim inn og tilpass stil", "cancel": "Avbryt",
"Redo": "Gjer om", "close": "Lat att",
"Undo": "Angre", "close_brand": "Lukk %(brand)s",
"Are you sure you want to quit?": "Er du sikker på at du vil avslutta?", "copy": "Lim inn",
"Add to dictionary": "Legg til i ordlista", "cut": "Klipp ut",
"Failed to save image": "Klarte ikkje å lagra biletet", "delete": "Slett",
"Save image as...": "Lagre bilete som…", "edit": "Rediger",
"Copy link address": "Kopier lenkjeadresse", "minimise": "Minimer",
"Copy email address": "Kopier e-postadresse", "paste": "Lim inn",
"Copy image": "Kopier bilete", "paste_match_style": "Lim inn og tilpass stil",
"File": "Fil", "quit": "Avslutt",
"Bring All to Front": "Plasser lengst fram", "redo": "Gjer om",
"Zoom": "Zoom", "select_all": "Marker alt",
"Stop Speaking": "Stopp snakka", "show_hide": "Vis/Gøym",
"Start Speaking": "Byrja snakka", "undo": "Angre",
"Speech": "Tale", "zoom_in": "Zoom inn",
"Unhide": "Ikkje gøym", "zoom_out": "Zoom ut"
"Hide Others": "Gøym andre", },
"Hide": "Gøym", "common": {
"Services": "Tenester", "about": "Om",
"About": "Om", "help": "Hjelp",
"Help": "Hjelp", "preferences": "Innstillingar"
"Close": "Lat att", },
"Minimize": "Minimer", "confirm_quit": "Er du sikker på at du vil avslutta?",
"Window": "Vindauga", "edit_menu": {
"Toggle Developer Tools": "Developer Tools av/på", "speech": "Tale",
"Toggle Full Screen": "Fullskjerm av/på", "speech_start_speaking": "Byrja snakka",
"Preferences": "Innstillingar", "speech_stop_speaking": "Stopp snakka"
"Zoom Out": "Zoom ut", },
"Zoom In": "Zoom inn", "file_menu": {
"Actual Size": "Faktisk storleik", "label": "Fil"
"View": "Vis", },
"Select All": "Marker alt", "menu": {
"Delete": "Slett", "hide": "Gøym",
"Paste": "Lim inn", "hide_others": "Gøym andre",
"Copy": "Lim inn", "services": "Tenester",
"Cut": "Klipp ut", "unhide": "Ikkje gøym"
"Edit": "Rediger", },
"Quit": "Avslutt", "right_click_menu": {
"Show/Hide": "Vis/Gøym", "add_to_dictionary": "Legg til i ordlista",
"Cancel": "Avbryt", "copy_email": "Kopier e-postadresse",
"Copy image address": "Kopier bildeadresse", "copy_image": "Kopier bilete",
"Close %(brand)s": "Lukk %(brand)s" "copy_image_url": "Kopier bildeadresse",
"copy_link_url": "Kopier lenkjeadresse",
"save_image_as": "Lagre bilete som…",
"save_image_as_error_description": "Biletet vart ikkje lagra",
"save_image_as_error_title": "Klarte ikkje å lagra biletet"
},
"view_menu": {
"actual_size": "Faktisk storleik",
"toggle_developer_tools": "Developer Tools av/på",
"toggle_full_screen": "Fullskjerm av/på",
"view": "Vis"
},
"window_menu": {
"bring_all_to_front": "Plasser lengst fram",
"label": "Vindauga"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Bring All to Front": "Wyciągnij wszystko do przodu", "action": {
"Add to dictionary": "Dodaj do słownika", "cancel": "Anuluj",
"The image failed to save": "Obraz nie został zapisany", "close": "Zamknij",
"Failed to save image": "Nie udało się zapisać obrazu", "close_brand": "Zamknij %(brand)s",
"Save image as...": "Zapisz obraz jako...", "copy": "Kopiuj",
"Copy link address": "Kopiuj adres odnośnika", "cut": "Wytnij",
"Copy email address": "Kopiuj adres e-mail", "delete": "Usuń",
"Copy image": "Kopiuj obraz", "edit": "Edytuj",
"File": "Plik", "minimise": "Minimalizuj",
"Zoom": "Powiększenie", "paste": "Wklej",
"Stop Speaking": "Przestań mówić", "paste_match_style": "Wklej i dopasuj styl",
"Start Speaking": "Zacznij mówić", "quit": "Zamknij",
"Speech": "Mowa", "redo": "Ponów",
"Unhide": "Odkryj", "select_all": "Zaznacz wszystko",
"Hide Others": "Ukryj inne", "show_hide": "Pokaż/Ukryj",
"Hide": "Ukryj", "undo": "Cofnij",
"Services": "Usługi", "zoom_in": "Powiększ",
"About": "O nas", "zoom_out": "Pomniejsz"
"Help": "Pomoc", },
"Close": "Zamknij", "common": {
"Minimize": "Minimalizuj", "about": "O nas",
"Window": "Okno", "brand_help": "Pomoc %(brand)s",
"Toggle Developer Tools": "Przełącz na narzędzia deweloperskie", "help": "Pomoc",
"Toggle Full Screen": "Przełącz na pełny ekran", "preferences": "Preferencje"
"Preferences": "Preferencje", },
"Zoom Out": "Pomniejsz", "confirm_quit": "Czy na pewno chcesz zamknąć?",
"Zoom In": "Powiększ", "edit_menu": {
"Actual Size": "Rozmiar rzeczywisty", "speech": "Mowa",
"View": "Pokaż", "speech_start_speaking": "Zacznij mówić",
"Select All": "Zaznacz wszystko", "speech_stop_speaking": "Przestań mówić"
"Delete": "Usuń", },
"Paste and Match Style": "Wklej i dopasuj styl", "file_menu": {
"Paste": "Wklej", "label": "Plik"
"Copy": "Kopiuj", },
"Cut": "Wytnij", "menu": {
"Redo": "Ponów", "hide": "Ukryj",
"Undo": "Cofnij", "hide_others": "Ukryj inne",
"Edit": "Edytuj", "services": "Usługi",
"Quit": "Zamknij", "unhide": "Odkryj"
"Show/Hide": "Pokaż/Ukryj", },
"Are you sure you want to quit?": "Czy na pewno chcesz zamknąć?", "right_click_menu": {
"Cancel": "Anuluj", "add_to_dictionary": "Dodaj do słownika",
"Copy image address": "Kopiuj adres obrazu", "copy_email": "Kopiuj adres e-mail",
"Close %(brand)s": "Zamknij %(brand)s", "copy_image": "Kopiuj obraz",
"%(brand)s Help": "Pomoc %(brand)s" "copy_image_url": "Kopiuj adres obrazu",
"copy_link_url": "Kopiuj adres odnośnika",
"save_image_as": "Zapisz obraz jako...",
"save_image_as_error_description": "Obraz nie został zapisany",
"save_image_as_error_title": "Nie udało się zapisać obrazu"
},
"view_menu": {
"actual_size": "Rozmiar rzeczywisty",
"toggle_developer_tools": "Przełącz na narzędzia deweloperskie",
"toggle_full_screen": "Przełącz na pełny ekran",
"view": "Pokaż"
},
"window_menu": {
"bring_all_to_front": "Wyciągnij wszystko do przodu",
"label": "Okno",
"zoom": "Powiększenie"
}
} }

View file

@ -1,46 +1,61 @@
{ {
"Add to dictionary": "Adicionar a dicionário", "action": {
"The image failed to save": "A imagem falhou para salvar", "cancel": "Cancelar",
"Failed to save image": "Falha para salvar imagem", "close": "Fechar",
"Save image as...": "Salvar imagem como...", "close_brand": "Fechar %(brand)s",
"Copy link address": "Copiar endereço de link", "copy": "Copiar",
"Copy email address": "Copiar endereço de email", "cut": "Cortar",
"Copy image": "Copiar imagem", "delete": "Deletar",
"File": "Arquivo", "edit": "Editar",
"Zoom": "Zoom", "minimise": "Minimizar",
"Stop Speaking": "Parar de Falar", "paste": "Colar",
"Start Speaking": "Começar a Falar", "paste_match_style": "Colar e Adequar Estilo",
"Speech": "Fala", "quit": "Sair",
"Unhide": "Desesconder", "redo": "Refazer",
"Hide": "Esconder", "select_all": "Selecionar Todas",
"Services": "Serviços", "show_hide": "Mostrar/Esconder",
"About": "Sobre", "undo": "Desfazer",
"Help": "Ajuda", "zoom_in": "Dar Zoom In",
"Close": "Fechar", "zoom_out": "Dar Zoom Out"
"Minimize": "Minimizar", },
"Window": "Janela", "common": {
"Toggle Developer Tools": "Ativar/Desativar Ferramentas de Desenvolvimento", "about": "Sobre",
"Toggle Full Screen": "Pôr em/Tirar de Tela Cheia", "help": "Ajuda",
"Preferences": "Preferências", "preferences": "Preferências"
"Zoom Out": "Dar Zoom Out", },
"Zoom In": "Dar Zoom In", "confirm_quit": "Você tem certeza que você quer sair?",
"Actual Size": "Tamanho de Verdade", "edit_menu": {
"View": "Visualizar", "speech": "Fala",
"Select All": "Selecionar Todas", "speech_start_speaking": "Começar a Falar",
"Delete": "Deletar", "speech_stop_speaking": "Parar de Falar"
"Paste and Match Style": "Colar e Adequar Estilo", },
"Paste": "Colar", "file_menu": {
"Copy": "Copiar", "label": "Arquivo"
"Cut": "Cortar", },
"Redo": "Refazer", "menu": {
"Undo": "Desfazer", "hide": "Esconder",
"Edit": "Editar", "hide_others": "Esconder Outras(os)",
"Quit": "Sair", "services": "Serviços",
"Show/Hide": "Mostrar/Esconder", "unhide": "Desesconder"
"Are you sure you want to quit?": "Você tem certeza que você quer sair?", },
"Cancel": "Cancelar", "right_click_menu": {
"Bring All to Front": "Trazer Todas Para Frente", "add_to_dictionary": "Adicionar a dicionário",
"Hide Others": "Esconder Outras(os)", "copy_email": "Copiar endereço de email",
"Copy image address": "Copiar endereço de imagem", "copy_image": "Copiar imagem",
"Close %(brand)s": "Fechar %(brand)s" "copy_image_url": "Copiar endereço de imagem",
"copy_link_url": "Copiar endereço de link",
"save_image_as": "Salvar imagem como...",
"save_image_as_error_description": "A imagem falhou para salvar",
"save_image_as_error_title": "Falha para salvar imagem"
},
"view_menu": {
"actual_size": "Tamanho de Verdade",
"toggle_developer_tools": "Ativar/Desativar Ferramentas de Desenvolvimento",
"toggle_full_screen": "Pôr em/Tirar de Tela Cheia",
"view": "Visualizar"
},
"window_menu": {
"bring_all_to_front": "Trazer Todas Para Frente",
"label": "Janela"
}
} }

View file

@ -1,43 +1,58 @@
{ {
"Add to dictionary": "Adăugați la dicționar", "action": {
"Failed to save image": "Eroare în salvarea imaginii", "cancel": "Anulare",
"Save image as...": "Salvează imagine ca ...", "close": "Inchide",
"Copy link address": "Copiază link", "close_brand": "Închide %(brand)s",
"Copy email address": "Copiază adresă de email", "copy": "Copiază",
"Copy image": "Copiază imagine", "cut": "Taie",
"File": "Fișier", "delete": "Șterge",
"Bring All to Front": "Aduce-ți totul in față", "edit": "Editare",
"Zoom": "Zoom", "minimise": "Minimizare",
"Stop Speaking": "Oprire Voce", "paste": "Lipește",
"Start Speaking": "Pornire Voce", "paste_match_style": "Lipește si potrivește stilul",
"Speech": "Voce", "quit": "Închid",
"Hide Others": "Ascunde restul", "redo": "Refă",
"Hide": "Ascunde", "select_all": "Selectează tot",
"Services": "Servicii", "show_hide": "Arată/Ascunde",
"About": "Despre", "undo": "Anulare",
"Help": "Ajutor", "zoom_in": "Mărește",
"Close": "Inchide", "zoom_out": "Micșorează"
"Minimize": "Minimizare", },
"Window": "Fereastră", "common": {
"Toggle Developer Tools": "Comutare unelte dezvoltator", "about": "Despre",
"Toggle Full Screen": "Comutare pe tot ecranul", "help": "Ajutor",
"Preferences": "Preferințe", "preferences": "Preferințe"
"Zoom Out": "Micșorează", },
"Zoom In": "Mărește", "confirm_quit": "Sigur vrei să ieși din cont?",
"Actual Size": "Mărime reală", "edit_menu": {
"View": "Vizualizează", "speech": "Voce",
"Select All": "Selectează tot", "speech_start_speaking": "Pornire Voce",
"Delete": "Șterge", "speech_stop_speaking": "Oprire Voce"
"Paste and Match Style": "Lipește si potrivește stilul", },
"Paste": "Lipește", "file_menu": {
"Copy": "Copiază", "label": "Fișier"
"Redo": "Refă", },
"Undo": "Anulare", "menu": {
"Edit": "Editare", "hide": "Ascunde",
"Quit": "Închid", "hide_others": "Ascunde restul",
"Show/Hide": "Arată/Ascunde", "services": "Servicii"
"Are you sure you want to quit?": "Sigur vrei să ieși din cont?", },
"Cancel": "Anulare", "right_click_menu": {
"Close %(brand)s": "Închide %(brand)s", "add_to_dictionary": "Adăugați la dicționar",
"Cut": "Taie" "copy_email": "Copiază adresă de email",
"copy_image": "Copiază imagine",
"copy_link_url": "Copiază link",
"save_image_as": "Salvează imagine ca ...",
"save_image_as_error_title": "Eroare în salvarea imaginii"
},
"view_menu": {
"actual_size": "Mărime reală",
"toggle_developer_tools": "Comutare unelte dezvoltator",
"toggle_full_screen": "Comutare pe tot ecranul",
"view": "Vizualizează"
},
"window_menu": {
"bring_all_to_front": "Aduce-ți totul in față",
"label": "Fereastră"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Edit": "Изменить", "action": {
"Quit": "Выйти", "cancel": "Отмена",
"Cancel": "Отмена", "close": "Закрыть",
"Show/Hide": "Показать/скрыть", "close_brand": "Закрыть %(brand)s",
"Are you sure you want to quit?": "Вы уверены, что хотите выйти?", "copy": "Копировать",
"Copy email address": "Копировать адрес почты", "cut": "Вырезать",
"Copy image": "Копировать изображение", "delete": "Удалить",
"File": "Файл", "edit": "Изменить",
"Zoom": "Масштаб", "minimise": "Свернуть",
"Unhide": "Показать", "paste": "Вставить",
"Hide": "Скрыть", "paste_match_style": "Вставить с тем же стилем",
"Services": "Службы", "quit": "Выйти",
"About": "О программе", "redo": "Повторить",
"Help": "Помощь", "select_all": "Выбрать все",
"Close": "Закрыть", "show_hide": "Показать/скрыть",
"Minimize": "Свернуть", "undo": "Отменить",
"Window": "Окно", "zoom_in": "Увеличить",
"Toggle Developer Tools": "Переключить инструменты разработчика", "zoom_out": "Уменьшить"
"Toggle Full Screen": "Переключить полноэкранный режим", },
"Preferences": "Предпочтения", "common": {
"Zoom Out": "Уменьшить", "about": "О программе",
"Zoom In": "Увеличить", "brand_help": "Помощь %(brand)s",
"Actual Size": "Фактический размер", "help": "Помощь",
"View": "Просмотр", "preferences": "Предпочтения"
"Select All": "Выбрать все", },
"Delete": "Удалить", "confirm_quit": "Вы уверены, что хотите выйти?",
"Paste": "Вставить", "edit_menu": {
"Copy": "Копировать", "speech": "Речь",
"Cut": "Вырезать", "speech_start_speaking": "Говорите",
"Redo": "Повторить", "speech_stop_speaking": "Перестаньте говорить"
"Undo": "Отменить", },
"Save image as...": "Сохранить изображение как...", "file_menu": {
"Copy link address": "Копировать ссылку", "label": "Файл"
"Add to dictionary": "Добавить в словарь", },
"The image failed to save": "Не удалось сохранить изображение", "menu": {
"Failed to save image": "Не удалось сохранить изображение", "hide": "Скрыть",
"Bring All to Front": "Вынести всё вперёд", "hide_others": "Скрыть прочие",
"Stop Speaking": "Перестаньте говорить", "services": "Службы",
"Start Speaking": "Говорите", "unhide": "Показать"
"Speech": "Речь", },
"Hide Others": "Скрыть прочие", "right_click_menu": {
"Paste and Match Style": "Вставить с тем же стилем", "add_to_dictionary": "Добавить в словарь",
"Copy image address": "Копировать адрес изображения", "copy_email": "Копировать адрес почты",
"Close %(brand)s": "Закрыть %(brand)s", "copy_image": "Копировать изображение",
"%(brand)s Help": "Помощь %(brand)s" "copy_image_url": "Копировать адрес изображения",
"copy_link_url": "Копировать ссылку",
"save_image_as": "Сохранить изображение как...",
"save_image_as_error_description": "Не удалось сохранить изображение",
"save_image_as_error_title": "Не удалось сохранить изображение"
},
"view_menu": {
"actual_size": "Фактический размер",
"toggle_developer_tools": "Переключить инструменты разработчика",
"toggle_full_screen": "Переключить полноэкранный режим",
"view": "Просмотр"
},
"window_menu": {
"bring_all_to_front": "Вынести всё вперёд",
"label": "Окно",
"zoom": "Масштаб"
}
} }

View file

@ -1,45 +1,61 @@
{ {
"Show/Hide": "පෙන්වන්න/සඟවන්න", "action": {
"Are you sure you want to quit?": "ඔබට ඉවත් වීමට අවශ්‍ය බව විශ්වාස ද?", "cancel": "අවලංගු කරන්න",
"Cancel": "අවලංගු කරන්න", "close": "වසන්න",
"Add to dictionary": "ශබ්ද කෝෂයට එකතු කරන්න", "copy": "පිටපත්",
"Copy link address": "සබැඳියේ ලිපිනය පිටපත් කරන්න", "cut": "කපන්න",
"Copy email address": "වි-තැපෑල පිටපත් කරන්න", "delete": "මකන්න",
"File": "ගොනුව", "edit": "සංස්කරණය",
"Zoom": "විශාල කරන්න", "minimise": "හකුලන්න",
"Hide Others": "වෙනත් දෑ සඟවන්න", "paste": "අලවන්න",
"Hide": "සඟවන්න", "paste_match_style": "අලවා ශෛලිය ගැළපුම",
"Services": "සේවා", "quit": "ඉවත් වන්න",
"About": "පිළිබඳව", "redo": "පසුසේ",
"Help": "උපකාර", "select_all": "සියල්ල තෝරන්න",
"Close": "වසන්න", "show_hide": "පෙන්වන්න/සඟවන්න",
"Minimize": "හකුලන්න", "undo": "පෙරසේ",
"Window": "කවුළුව", "zoom_in": "විශාලනය කරන්න",
"Zoom Out": "කුඩාලනය කරන්න", "zoom_out": "කුඩාලනය කරන්න"
"Zoom In": "විශාලනය කරන්න", },
"Actual Size": "සැබෑ ප්‍රමාණය", "common": {
"Select All": "සියල්ල තෝරන්න", "about": "පිළිබඳව",
"Paste": "අලවන්න", "help": "උපකාර",
"Copy": "පිටපත්", "preferences": "පෙනුම"
"Cut": "කපන්න", },
"Redo": "පසුසේ", "confirm_quit": "ඔබට ඉවත් වීමට අවශ්‍ය බව විශ්වාස ද?",
"Undo": "පෙරසේ", "edit_menu": {
"Edit": "සංස්කරණය", "speech": "කථාව",
"Quit": "ඉවත් වන්න", "speech_start_speaking": "කථාව ආරම්භය",
"Paste and Match Style": "අලවා ශෛලිය ගැළපුම", "speech_stop_speaking": "කථාව නිමාව"
"Delete": "මකන්න", },
"The image failed to save": "රූපය සුරැකීමට අසමත්", "file_menu": {
"Failed to save image": "රූපය සුරැකීමට අසමත්", "label": "ගොනුව"
"Save image as...": "...ලෙස රූපය සුරකින්න", },
"Copy image address": "රූපයේ ලිපිනයේ පිටපතක්", "menu": {
"Copy image": "රූපයෙහි පිටපතක්", "hide": "සඟවන්න",
"Bring All to Front": "සියල්ල ඉදිරිපසට", "hide_others": "වෙනත් දෑ සඟවන්න",
"Stop Speaking": "කථාව නිමාව", "services": "සේවා",
"Start Speaking": "කථාව ආරම්භය", "unhide": "නොසඟවන්න"
"Speech": "කථාව", },
"Unhide": "නොසඟවන්න", "right_click_menu": {
"Toggle Developer Tools": "සංවර්ධක මෙවලම්", "add_to_dictionary": "ශබ්ද කෝෂයට එකතු කරන්න",
"Toggle Full Screen": "පූර්ණ තිරයට", "copy_email": "වි-තැපෑල පිටපත් කරන්න",
"Preferences": "පෙනුම", "copy_image": "රූපයෙහි පිටපතක්",
"View": "දකින්න" "copy_image_url": "රූපයේ ලිපිනයේ පිටපතක්",
"copy_link_url": "සබැඳියේ ලිපිනය පිටපත් කරන්න",
"save_image_as": "...ලෙස රූපය සුරකින්න",
"save_image_as_error_description": "රූපය සුරැකීමට අසමත්",
"save_image_as_error_title": "රූපය සුරැකීමට අසමත්"
},
"view_menu": {
"actual_size": "සැබෑ ප්‍රමාණය",
"toggle_developer_tools": "සංවර්ධක මෙවලම්",
"toggle_full_screen": "පූර්ණ තිරයට",
"view": "දකින්න"
},
"window_menu": {
"bring_all_to_front": "සියල්ල ඉදිරිපසට",
"label": "කවුළුව",
"zoom": "විශාල කරන්න"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Unhide": "Odkryť", "action": {
"Stop Speaking": "Zastaviť nahrávanie hlasu", "cancel": "Zrušiť",
"Start Speaking": "Spustiť nahrávanie hlasu", "close": "Zavrieť",
"Speech": "Reč", "close_brand": "Zatvoriť %(brand)s",
"Paste and Match Style": "Vložiť a prispôsobiť štýl", "copy": "Kopírovať",
"Add to dictionary": "Pridať do slovníka", "cut": "Vystrihnúť",
"The image failed to save": "Obrázok sa nepodarilo uložiť", "delete": "Odstrániť",
"Failed to save image": "Chyba pri ukladaní obrázka", "edit": "Úpravy",
"Save image as...": "Uložiť obrázok ako...", "minimise": "Minimalizovať",
"Copy link address": "Kopírovať adresu odkazu", "paste": "Vložiť",
"Copy email address": "Kopírovať e-mailovú adresu", "paste_match_style": "Vložiť a prispôsobiť štýl",
"Copy image": "Kopírovať obrázok", "quit": "Ukončiť",
"File": "Súbor", "redo": "Opakovať",
"Bring All to Front": "Preniesť všetky do popredia", "select_all": "Vybrať všetko",
"Zoom": "Lupa", "show_hide": "Zobraziť/Skryť",
"Hide Others": "Skryť ostatné", "undo": "Späť",
"Hide": "Skryť", "zoom_in": "Priblížiť",
"Services": "Služby", "zoom_out": "Oddialiť"
"About": "O aplikácii", },
"Help": "Pomocník", "common": {
"Close": "Zavrieť", "about": "O aplikácii",
"Minimize": "Minimalizovať", "brand_help": "%(brand)s Pomoc",
"Window": "Okno", "help": "Pomocník",
"Toggle Developer Tools": "Nástroje pre vývojárov", "preferences": "Vlastnosti"
"Toggle Full Screen": "Celá obrazovka", },
"Preferences": "Vlastnosti", "confirm_quit": "Naozaj chcete zavrieť aplikáciu?",
"Zoom Out": "Oddialiť", "edit_menu": {
"Zoom In": "Priblížiť", "speech": "Reč",
"Actual Size": "Aktuálna veľkosť", "speech_start_speaking": "Spustiť nahrávanie hlasu",
"View": "Zobraziť", "speech_stop_speaking": "Zastaviť nahrávanie hlasu"
"Select All": "Vybrať všetko", },
"Delete": "Odstrániť", "file_menu": {
"Paste": "Vložiť", "label": "Súbor"
"Copy": "Kopírovať", },
"Cut": "Vystrihnúť", "menu": {
"Redo": "Opakovať", "hide": "Skryť",
"Undo": "Späť", "hide_others": "Skryť ostatné",
"Edit": "Úpravy", "services": "Služby",
"Quit": "Ukončiť", "unhide": "Odkryť"
"Show/Hide": "Zobraziť/Skryť", },
"Are you sure you want to quit?": "Naozaj chcete zavrieť aplikáciu?", "right_click_menu": {
"Cancel": "Zrušiť", "add_to_dictionary": "Pridať do slovníka",
"Copy image address": "Kopírovať adresu obrázka", "copy_email": "Kopírovať e-mailovú adresu",
"Close %(brand)s": "Zatvoriť %(brand)s", "copy_image": "Kopírovať obrázok",
"%(brand)s Help": "%(brand)s Pomoc" "copy_image_url": "Kopírovať adresu obrázka",
"copy_link_url": "Kopírovať adresu odkazu",
"save_image_as": "Uložiť obrázok ako...",
"save_image_as_error_description": "Obrázok sa nepodarilo uložiť",
"save_image_as_error_title": "Chyba pri ukladaní obrázka"
},
"view_menu": {
"actual_size": "Aktuálna veľkosť",
"toggle_developer_tools": "Nástroje pre vývojárov",
"toggle_full_screen": "Celá obrazovka",
"view": "Zobraziť"
},
"window_menu": {
"bring_all_to_front": "Preniesť všetky do popredia",
"label": "Okno",
"zoom": "Lupa"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Undo": "Razveljavi", "action": {
"Redo": "Uveljavi", "cancel": "Prekliči",
"Copy": "Kopiraj", "close": "Zapri",
"Paste": "Prilepi", "close_brand": "Zapri %(brand)s",
"Actual Size": "Dejanska velikost", "copy": "Kopiraj",
"Zoom Out": "Oddalji", "cut": "Izreži",
"Window": "Okno", "delete": "Izbriši",
"Minimize": "Zmanjšaj", "edit": "Uredi",
"Help": "Pomoč", "minimise": "Zmanjšaj",
"About": "O programu", "paste": "Prilepi",
"Services": "Storitve", "paste_match_style": "Prilepi ter obdrži oblikovanje",
"Hide Others": "Skrij ostalo", "quit": "Končaj",
"Unhide": "Razkrij", "redo": "Uveljavi",
"Speech": "Govor", "select_all": "Izberi vse",
"Copy link address": "Kopiraj naslov povezave", "show_hide": "Prikaži/Skrij",
"Add to dictionary": "Dodaj v slovar", "undo": "Razveljavi",
"Cancel": "Prekliči", "zoom_in": "Približaj",
"Close %(brand)s": "Zapri %(brand)s", "zoom_out": "Oddalji"
"Are you sure you want to quit?": "Ste prepričani, da želite zapreti program?", },
"Show/Hide": "Prikaži/Skrij", "common": {
"Quit": "Končaj", "about": "O programu",
"Edit": "Uredi", "brand_help": "%(brand)s pomoč",
"Cut": "Izreži", "help": "Pomoč",
"Paste and Match Style": "Prilepi ter obdrži oblikovanje", "preferences": "Nastavitve"
"Delete": "Izbriši", },
"Select All": "Izberi vse", "confirm_quit": "Ste prepričani, da želite zapreti program?",
"View": "Poglej", "edit_menu": {
"Zoom In": "Približaj", "speech": "Govor",
"Preferences": "Nastavitve", "speech_start_speaking": "Začnite govoriti",
"Toggle Full Screen": "Preklopi čez cel zaslon", "speech_stop_speaking": "Prenehajte govoriti"
"Toggle Developer Tools": "Preklopi na orodja za razvijalce", },
"Close": "Zapri", "file_menu": {
"%(brand)s Help": "%(brand)s pomoč", "label": "Datoteka"
"Hide": "Skrij", },
"Start Speaking": "Začnite govoriti", "menu": {
"Stop Speaking": "Prenehajte govoriti", "hide": "Skrij",
"Zoom": "Povečaj", "hide_others": "Skrij ostalo",
"Bring All to Front": "Postavi vse v ospredje", "services": "Storitve",
"File": "Datoteka", "unhide": "Razkrij"
"Copy image": "Kopiraj sliko", },
"Copy email address": "Kopiraj e-poštni naslov", "right_click_menu": {
"Copy image address": "Kopiraj naslov slike", "add_to_dictionary": "Dodaj v slovar",
"Save image as...": "Shrani sliko kot...", "copy_email": "Kopiraj e-poštni naslov",
"Failed to save image": "Shranjevanje slike ni uspelo", "copy_image": "Kopiraj sliko",
"The image failed to save": "Slike ni bilo mogoče shraniti" "copy_image_url": "Kopiraj naslov slike",
"copy_link_url": "Kopiraj naslov povezave",
"save_image_as": "Shrani sliko kot...",
"save_image_as_error_description": "Slike ni bilo mogoče shraniti",
"save_image_as_error_title": "Shranjevanje slike ni uspelo"
},
"view_menu": {
"actual_size": "Dejanska velikost",
"toggle_developer_tools": "Preklopi na orodja za razvijalce",
"toggle_full_screen": "Preklopi čez cel zaslon",
"view": "Poglej"
},
"window_menu": {
"bring_all_to_front": "Postavi vse v ospredje",
"label": "Okno",
"zoom": "Povečaj"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Save image as...": "Spara bild som…", "action": {
"Copy link address": "Kopiera länkadress", "cancel": "Avbryt",
"Copy email address": "Kopiera e-postadress", "close": "Stäng",
"Copy image": "Kopiera bild", "close_brand": "Stäng %(brand)s",
"File": "Arkiv", "copy": "Kopiera",
"Bring All to Front": "Lägg alla överst", "cut": "Klipp ut",
"Stop Speaking": "Sluta tala", "delete": "Radera",
"Start Speaking": "Börja tala", "edit": "Redigera",
"Speech": "Tal", "minimise": "Minimera",
"Hide Others": "Göm övriga", "paste": "Klistra in",
"Hide": "Göm", "paste_match_style": "Klistra in och matcha stilen",
"Services": "Tjänster", "quit": "Avsluta",
"About": "Om", "redo": "Gör om",
"Help": "Hjälp", "select_all": "Markera allt",
"Close": "Stäng", "show_hide": "Visa/dölj",
"Minimize": "Minimera", "undo": "Ångra",
"Window": "Fönster", "zoom_in": "Zooma in",
"Preferences": "Inställningar", "zoom_out": "Zooma ut"
"Actual Size": "Verklig storlek", },
"View": "Visa", "common": {
"Select All": "Markera allt", "about": "Om",
"Delete": "Radera", "brand_help": "%(brand)s-hjälp",
"Paste and Match Style": "Klistra in och matcha stilen", "help": "Hjälp",
"Paste": "Klistra in", "preferences": "Inställningar"
"Copy": "Kopiera", },
"Cut": "Klipp ut", "confirm_quit": "Är du säker att du vill avsluta?",
"Redo": "Gör om", "edit_menu": {
"Undo": "Ångra", "speech": "Tal",
"Edit": "Redigera", "speech_start_speaking": "Börja tala",
"Quit": "Avsluta", "speech_stop_speaking": "Sluta tala"
"Cancel": "Avbryt", },
"Zoom": "Zooma", "file_menu": {
"Toggle Developer Tools": "Växla utvecklarverktyg", "label": "Arkiv"
"Toggle Full Screen": "Växla helskärm", },
"Unhide": "Sluta gömma", "menu": {
"Zoom Out": "Zooma ut", "hide": "Göm",
"Zoom In": "Zooma in", "hide_others": "Göm övriga",
"Show/Hide": "Visa/dölj", "services": "Tjänster",
"Add to dictionary": "Lägg till i ordlistan", "unhide": "Sluta gömma"
"The image failed to save": "Bilden sparades inte", },
"Failed to save image": "Misslyckades med att spara bilden", "right_click_menu": {
"Are you sure you want to quit?": "Är du säker att du vill avsluta?", "add_to_dictionary": "Lägg till i ordlistan",
"Copy image address": "Kopiera bildadress", "copy_email": "Kopiera e-postadress",
"Close %(brand)s": "Stäng %(brand)s", "copy_image": "Kopiera bild",
"%(brand)s Help": "%(brand)s-hjälp" "copy_image_url": "Kopiera bildadress",
"copy_link_url": "Kopiera länkadress",
"save_image_as": "Spara bild som…",
"save_image_as_error_description": "Bilden sparades inte",
"save_image_as_error_title": "Misslyckades med att spara bilden"
},
"view_menu": {
"actual_size": "Verklig storlek",
"toggle_developer_tools": "Växla utvecklarverktyg",
"toggle_full_screen": "Växla helskärm",
"view": "Visa"
},
"window_menu": {
"bring_all_to_front": "Lägg alla överst",
"label": "Fönster",
"zoom": "Zooma"
}
} }

View file

@ -1,46 +1,62 @@
{ {
"Zoom": "பெரிதாக்குதல்", "action": {
"Minimize": "சிறிதாக்கு", "cancel": "விலக்கிக்கொள்",
"Toggle Developer Tools": "உருவாக்குநர் கருவிகளை நிலைமாற்று", "close": "மூடு",
"Toggle Full Screen": "முழு திரையை நிலைமாற்று", "close_brand": "%(brand)s ஐ மூடு",
"Paste and Match Style": "ஒட்டு மற்றும் நடையை பொருத்து", "copy": "நகலெடு",
"Add to dictionary": "அகராதியில் சேர்", "cut": "வெட்டு",
"The image failed to save": "படம் சேமிக்கத் தவறிவிட்டது", "delete": "அழி",
"Failed to save image": "படத்தைச் சேமிப்பதில் தோல்வி", "edit": "திருத்து",
"Save image as...": "படத்தை இவ்வாறு சேமி...", "minimise": "சிறிதாக்கு",
"Copy link address": "இணைப்பு முகவரியை நகலெடு", "paste": "ஒட்டு",
"Copy email address": "மின்னஞ்சல் முகவரியை நகலெடு", "paste_match_style": "ஒட்டு மற்றும் நடையை பொருத்து",
"Copy image": "படத்தை நகலெடு", "quit": "வெளியேறு",
"File": "கோப்பு", "redo": "மீண்டும் செய்",
"Bring All to Front": "அனைத்தையும் முன்னால் கொண்டுவா", "select_all": "அனைத்தையும் தேர்ந்தெடு",
"Stop Speaking": "பேசுவதை நிறுத்து", "show_hide": "காட்டு/மறை",
"Start Speaking": "பேசத் துவங்கு", "undo": "செயல்தவிர்",
"Speech": "பேச்சு", "zoom_in": "பெரிதாக்கு",
"Unhide": "மறைநீக்கு", "zoom_out": "சிறிதாக்கு"
"Hide Others": "மற்றவற்றை மறை", },
"Hide": "மறை", "common": {
"Services": "சேவைகள்", "about": "இதனைப் பற்றி",
"About": "இதனைப் பற்றி", "help": "உதவி",
"Help": "உதவி", "preferences": "விருப்பத்தேர்வுகள்"
"Close": "மூடு", },
"Window": "சாளரம்", "confirm_quit": "நீங்கள் நிச்சயம் வெளியேற விரும்புகிறீர்களா?",
"Preferences": "விருப்பத்தேர்வுகள்", "edit_menu": {
"Zoom Out": "சிறிதாக்கு", "speech": "பேச்சு",
"Zoom In": "பெரிதாக்கு", "speech_start_speaking": "பேசத் துவங்கு",
"Actual Size": "உண்மையான அளவு", "speech_stop_speaking": "பேசுவதை நிறுத்து"
"View": "காட்டு", },
"Select All": "அனைத்தையும் தேர்ந்தெடு", "file_menu": {
"Delete": "அழி", "label": "கோப்பு"
"Paste": "ஒட்டு", },
"Copy": "நகலெடு", "menu": {
"Cut": "வெட்டு", "hide": "மறை",
"Redo": "மீண்டும் செய்", "hide_others": "மற்றவற்றை மறை",
"Undo": "செயல்தவிர்", "services": "சேவைகள்",
"Edit": "திருத்து", "unhide": "மறைநீக்கு"
"Quit": "வெளியேறு", },
"Show/Hide": "காட்டு/மறை", "right_click_menu": {
"Are you sure you want to quit?": "நீங்கள் நிச்சயம் வெளியேற விரும்புகிறீர்களா?", "add_to_dictionary": "அகராதியில் சேர்",
"Cancel": "விலக்கிக்கொள்", "copy_email": "மின்னஞ்சல் முகவரியை நகலெடு",
"Copy image address": "பட முகவரியை நகலெடு", "copy_image": "படத்தை நகலெடு",
"Close %(brand)s": "%(brand)s ஐ மூடு" "copy_image_url": "பட முகவரியை நகலெடு",
"copy_link_url": "இணைப்பு முகவரியை நகலெடு",
"save_image_as": "படத்தை இவ்வாறு சேமி...",
"save_image_as_error_description": "படம் சேமிக்கத் தவறிவிட்டது",
"save_image_as_error_title": "படத்தைச் சேமிப்பதில் தோல்வி"
},
"view_menu": {
"actual_size": "உண்மையான அளவு",
"toggle_developer_tools": "உருவாக்குநர் கருவிகளை நிலைமாற்று",
"toggle_full_screen": "முழு திரையை நிலைமாற்று",
"view": "காட்டு"
},
"window_menu": {
"bring_all_to_front": "அனைத்தையும் முன்னால் கொண்டுவா",
"label": "சாளரம்",
"zoom": "பெரிதாக்குதல்"
}
} }

View file

@ -1,9 +1,13 @@
{ {
"About": "గ్రెంచ్", "action": {
"Paste and Match Style": "మునుపటి వంటి అతికించండి", "cancel": "ఆపు",
"Paste": "పేస్ట్", "copy": "కాపీ",
"Cut": "కట్", "cut": "కట్",
"Copy": "కాపీ", "paste": "పేస్ట్",
"Are you sure you want to quit?": "మీరు వెళ్ళిపోవాలని అనుకుంటున్నారా?", "paste_match_style": "మునుపటి వంటి అతికించండి"
"Cancel": "ఆపు" },
"common": {
"about": "గ్రెంచ్"
},
"confirm_quit": "మీరు వెళ్ళిపోవాలని అనుకుంటున్నారా?"
} }

View file

@ -1,16 +1,20 @@
{ {
"Hide": "Itago", "action": {
"Delete": "Alisin", "cancel": "Kanselahin",
"Paste and Match Style": "I-paste at Tumugma ng Style", "close_brand": "Isara ang %(brand)s",
"Paste": "I-paste", "show_hide": "Ipakita/itago",
"Copy": "I-copy", "quit": "Magsara",
"Cut": "I-cut", "edit": "I-edit",
"Redo": "Redo", "undo": "Undo",
"Undo": "Undo", "redo": "Redo",
"Edit": "I-edit", "copy": "I-copy",
"Quit": "Magsara", "paste": "I-paste",
"Show/Hide": "Ipakita/itago", "paste_match_style": "I-paste at Tumugma ng Style",
"Are you sure you want to quit?": "Sigurado ka ba na gusto mong magsara?", "delete": "Alisin",
"Close %(brand)s": "Isara ang %(brand)s", "cut": "I-cut"
"Cancel": "Kanselahin" },
"confirm_quit": "Sigurado ka ba na gusto mong magsara?",
"menu": {
"hide": "Itago"
}
} }

View file

@ -1,45 +1,61 @@
{ {
"Add to dictionary": "Sözlüğe ekle", "action": {
"The image failed to save": "Bu resim kaydedilemedi", "cancel": "İptal",
"Failed to save image": "Resim kaydedilemedi", "close": "Kapat",
"Save image as...": "Resmi ... olarak farklı kaydet", "copy": "Kopyala",
"Copy link address": "Bağlantılı adresi kopyala", "cut": "Kes",
"Copy email address": "E-posta adresini kopyala", "delete": "Sil",
"Copy image": "Resmi kopyala", "edit": "Düzenle",
"File": "Dosya", "minimise": "Küçült",
"Bring All to Front": "Hepsini öne getir", "paste": "Yapıştır",
"Zoom": "Yaklaştır", "paste_match_style": "Biçimiyle bir yapıştır",
"Stop Speaking": "Konuşmayı durdur", "quit": ık",
"Start Speaking": "Konuşmaya başla", "redo": "Yinele",
"Speech": "Konuşma", "select_all": "Tümünü seç",
"Unhide": "Gizlemeyi bırak", "show_hide": "Göster/Gizle",
"Hide Others": "Diğerlerini gizle", "undo": "Geri al",
"Hide": "Gizle", "zoom_in": "Yaklaştır",
"Services": "Hizmetler", "zoom_out": "Uzaklaştır"
"About": "Hakkında", },
"Help": "Yardım", "common": {
"Close": "Kapat", "about": "Hakkında",
"Minimize": "Küçült", "help": "Yardım",
"Window": "Pencere", "preferences": "Tercihler"
"Toggle Developer Tools": "Geliştirici araçları", },
"Toggle Full Screen": "Tam ekran", "confirm_quit": ıkmak istediğinize emin misiniz?",
"Preferences": "Tercihler", "edit_menu": {
"Zoom Out": "Uzaklaştır", "speech": "Konuşma",
"Zoom In": "Yaklaştır", "speech_start_speaking": "Konuşmaya başla",
"Actual Size": "Gerçek boyut", "speech_stop_speaking": "Konuşmayı durdur"
"View": "Görünüm", },
"Select All": "Tümünü seç", "file_menu": {
"Delete": "Sil", "label": "Dosya"
"Paste and Match Style": "Biçimiyle bir yapıştır", },
"Paste": "Yapıştır", "menu": {
"Copy": "Kopyala", "hide": "Gizle",
"Cut": "Kes", "hide_others": "Diğerlerini gizle",
"Redo": "Yinele", "services": "Hizmetler",
"Undo": "Geri al", "unhide": "Gizlemeyi bırak"
"Edit": "Düzenle", },
"Quit": ık", "right_click_menu": {
"Show/Hide": "Göster/Gizle", "add_to_dictionary": "Sözlüğe ekle",
"Are you sure you want to quit?": ıkmak istediğinize emin misiniz?", "copy_email": "E-posta adresini kopyala",
"Cancel": "İptal", "copy_image": "Resmi kopyala",
"Copy image address": "Görsel adresini kopyala" "copy_image_url": "Görsel adresini kopyala",
"copy_link_url": "Bağlantılı adresi kopyala",
"save_image_as": "Resmi ... olarak farklı kaydet",
"save_image_as_error_description": "Bu resim kaydedilemedi",
"save_image_as_error_title": "Resim kaydedilemedi"
},
"view_menu": {
"actual_size": "Gerçek boyut",
"toggle_developer_tools": "Geliştirici araçları",
"toggle_full_screen": "Tam ekran",
"view": "Görünüm"
},
"window_menu": {
"bring_all_to_front": "Hepsini öne getir",
"label": "Pencere",
"zoom": "Yaklaştır"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Add to dictionary": "Додати до словника", "action": {
"The image failed to save": "Не вдалося зберегти зображення", "cancel": "Скасувати",
"Failed to save image": "Не вдалося зберегти зображення", "close": "Закрити",
"Save image as...": "Зберегти зображення як...", "close_brand": "Закрити %(brand)s",
"Copy link address": "Копіювати адресу посилання", "copy": "Копіювати",
"Copy image address": "Копіювати адресу зображення", "cut": "Вирізати",
"Copy email address": "Копіювати адресу е-пошти", "delete": "Видалити",
"Copy image": "Копіювати зображення", "edit": "Змінити",
"File": "Файл", "minimise": "Згорнути",
"Bring All to Front": "Винести все вперед", "paste": "Вставити",
"Zoom": "Масштаб", "paste_match_style": "Вставити з таким же стилем",
"Stop Speaking": "Припинити говорити", "quit": "Вийти",
"Start Speaking": "Почати говорити", "redo": "Повторити дію",
"Speech": "Мовлення", "select_all": "Вибрати все",
"Unhide": "Показати", "show_hide": "Показати/Сховати",
"Hide Others": "Сховати інші", "undo": "Скасувати дію",
"Hide": "Сховати", "zoom_in": "Збільшити",
"Services": "Служби", "zoom_out": "Зменшити"
"About": "Про застосунок", },
"Help": "Довідка", "common": {
"Close": "Закрити", "about": "Про застосунок",
"Minimize": "Згорнути", "brand_help": "Довідка %(brand)s",
"Window": "Вікно", "help": "Довідка",
"Toggle Developer Tools": "Перемкнути інструменти розробника", "preferences": "Параметри"
"Toggle Full Screen": "Перемкнути повноекранний режим", },
"Preferences": "Параметри", "confirm_quit": "Ви впевнені, що хочете вийти?",
"Zoom Out": "Зменшити", "edit_menu": {
"Zoom In": "Збільшити", "speech": "Мовлення",
"Actual Size": "Фактичний розмір", "speech_start_speaking": "Почати говорити",
"View": "Перегляд", "speech_stop_speaking": "Припинити говорити"
"Select All": "Вибрати все", },
"Delete": "Видалити", "file_menu": {
"Paste and Match Style": "Вставити з таким же стилем", "label": "Файл"
"Paste": "Вставити", },
"Copy": "Копіювати", "menu": {
"Cut": "Вирізати", "hide": "Сховати",
"Redo": "Повторити дію", "hide_others": "Сховати інші",
"Undo": "Скасувати дію", "services": "Служби",
"Edit": "Змінити", "unhide": "Показати"
"Quit": "Вийти", },
"Show/Hide": "Показати/Сховати", "right_click_menu": {
"Are you sure you want to quit?": "Ви впевнені, що хочете вийти?", "add_to_dictionary": "Додати до словника",
"Close %(brand)s": "Закрити %(brand)s", "copy_email": "Копіювати адресу е-пошти",
"Cancel": "Скасувати", "copy_image": "Копіювати зображення",
"%(brand)s Help": "Довідка %(brand)s" "copy_image_url": "Копіювати адресу зображення",
"copy_link_url": "Копіювати адресу посилання",
"save_image_as": "Зберегти зображення як...",
"save_image_as_error_description": "Не вдалося зберегти зображення",
"save_image_as_error_title": "Не вдалося зберегти зображення"
},
"view_menu": {
"actual_size": "Фактичний розмір",
"toggle_developer_tools": "Перемкнути інструменти розробника",
"toggle_full_screen": "Перемкнути повноекранний режим",
"view": "Перегляд"
},
"window_menu": {
"bring_all_to_front": "Винести все вперед",
"label": "Вікно",
"zoom": "Масштаб"
}
} }

View file

@ -1,21 +1,34 @@
{ {
"Paste": "پیسٹ", "action": {
"Redo": "دوبارہ کریں", "close": "بند",
"Preferences": "ترجیحات", "copy": "کاپی",
"Hide Others": "", "cut": "کٹ",
"Show/Hide": "دکھائیں/چھپائیں", "delete": "مٹاؤ",
"Quit": "چھوڑو", "paste": "پیسٹ",
"Hide": "چھپائیں", "quit": "چھوڑو",
"Unhide": "دکھائیں", "redo": "دوبارہ کریں",
"Zoom": "زوم", "show_hide": "دکھائیں/چھپائیں"
"Close": "بند", },
"Window": "کھڑکی", "common": {
"Cut": "کٹ", "help": "مدد",
"Delete": "مٹاؤ", "preferences": "ترجیحات"
"File": "فائل", },
"Help": "مدد", "edit_menu": {
"Copy": "کاپی", "speech_start_speaking": "بولنا شروع کریں"
"Add to dictionary": "لغت میں شامل کریں", },
"Copy image": "تصویر کاپی کریں", "file_menu": {
"Start Speaking": "بولنا شروع کریں" "label": "فائل"
},
"menu": {
"hide": "چھپائیں",
"unhide": "دکھائیں"
},
"right_click_menu": {
"add_to_dictionary": "لغت میں شامل کریں",
"copy_image": "تصویر کاپی کریں"
},
"window_menu": {
"label": "کھڑکی",
"zoom": "زوم"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Add to dictionary": "Thêm vào từ điển", "action": {
"The image failed to save": "Ảnh không lưu được", "cancel": "Hủy bỏ",
"Failed to save image": "Không lưu được ảnh", "close": "Đóng",
"Save image as...": "Lưu ảnh…", "close_brand": "Đóng %(brand)s",
"Copy link address": "Sao chép địa chỉ liên kết", "copy": "Sao chép",
"Copy email address": "Sao chép địa chỉ email", "cut": "Cắt",
"Copy image": "Sao chép ảnh", "delete": "Xóa",
"File": "Tệp", "edit": "Chỉnh sửa",
"Bring All to Front": "Đưa tất cả lên trước", "minimise": "Thu nhỏ",
"Zoom": "Thu phóng", "paste": "Dán",
"Stop Speaking": "Dừng nói", "paste_match_style": "Dán và khớp kiểu",
"Start Speaking": "Bắt đầu nói", "quit": "Thoát",
"Speech": "Đọc màn hình", "redo": "Làm lại",
"Unhide": "Bỏ ẩn", "select_all": "Chọn tất cả",
"Hide Others": "Ẩn cái khác", "show_hide": "Hiện/Ẩn",
"Hide": "Ẩn", "undo": "Hoàn tác",
"Services": "Dịch vụ", "zoom_in": "Phóng to",
"About": "Giới thiệu", "zoom_out": "Thu nhỏ"
"Help": "Hỗ trợ", },
"Close": "Đóng", "common": {
"Minimize": "Thu nhỏ", "about": "Giới thiệu",
"Window": "Cửa sổ", "brand_help": "Hỗ trợ %(brand)s",
"Toggle Developer Tools": "Công cụ phát triển", "help": "Hỗ trợ",
"Toggle Full Screen": "Toàn màn hình", "preferences": "Tùy chọn"
"Preferences": "Tùy chọn", },
"Zoom Out": "Thu nhỏ", "confirm_quit": "Bạn có chắc chắn muốn thoát?",
"Zoom In": "Phóng to", "edit_menu": {
"Actual Size": "Kích thước thực", "speech": "Đọc màn hình",
"View": "Xem", "speech_start_speaking": "Bắt đầu nói",
"Select All": "Chọn tất cả", "speech_stop_speaking": "Dừng nói"
"Delete": "Xóa", },
"Paste and Match Style": "Dán và khớp kiểu", "file_menu": {
"Paste": "Dán", "label": "Tệp"
"Copy": "Sao chép", },
"Cut": "Cắt", "menu": {
"Redo": "Làm lại", "hide": "Ẩn",
"Undo": "Hoàn tác", "hide_others": "Ẩn cái khác",
"Edit": "Chỉnh sửa", "services": "Dịch vụ",
"Quit": "Thoát", "unhide": "Bỏ ẩn"
"Show/Hide": "Hiện/Ẩn", },
"Are you sure you want to quit?": "Bạn có chắc chắn muốn thoát?", "right_click_menu": {
"Cancel": "Hủy bỏ", "add_to_dictionary": "Thêm vào từ điển",
"Copy image address": "Sao chép địa chỉ ảnh", "copy_email": "Sao chép địa chỉ email",
"Close %(brand)s": "Đóng %(brand)s", "copy_image": "Sao chép ảnh",
"%(brand)s Help": "Hỗ trợ %(brand)s" "copy_image_url": "Sao chép địa chỉ ảnh",
"copy_link_url": "Sao chép địa chỉ liên kết",
"save_image_as": "Lưu ảnh…",
"save_image_as_error_description": "Ảnh không lưu được",
"save_image_as_error_title": "Không lưu được ảnh"
},
"view_menu": {
"actual_size": "Kích thước thực",
"toggle_developer_tools": "Công cụ phát triển",
"toggle_full_screen": "Toàn màn hình",
"view": "Xem"
},
"window_menu": {
"bring_all_to_front": "Đưa tất cả lên trước",
"label": "Cửa sổ",
"zoom": "Thu phóng"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Add to dictionary": "添加到字典", "action": {
"The image failed to save": "图片保存失败", "cancel": "取消",
"Failed to save image": "图片保存失败", "close": "关闭",
"Save image as...": "保存图片为……", "close_brand": "关闭 %(brand)s",
"Copy link address": "复制链接地址", "copy": "复制",
"Copy email address": "复制邮箱地址", "cut": "剪切",
"Copy image": "复制图片", "delete": "删除",
"File": "文件", "edit": "编辑",
"Bring All to Front": "全部置前", "minimise": "最小化",
"Zoom": "放大", "paste": "粘贴",
"Stop Speaking": "停止讲话", "paste_match_style": "粘贴并匹配样式",
"Start Speaking": "开始讲话", "quit": "退出",
"Speech": "讲话", "redo": "重做",
"Unhide": "显示", "select_all": "选中全部",
"Hide Others": "隐藏其他", "show_hide": "显示/隐藏",
"Hide": "隐藏", "undo": "撤销",
"Services": "服务", "zoom_in": "放大",
"About": "关于", "zoom_out": "缩小"
"Help": "帮助", },
"Close": "关闭", "common": {
"Minimize": "最小化", "about": "关于",
"Window": "窗口", "brand_help": "%(brand)s帮助",
"Toggle Developer Tools": "切换开发者工具", "help": "帮助",
"Toggle Full Screen": "切换全屏", "preferences": "偏好"
"Preferences": "偏好", },
"Zoom Out": "缩小", "confirm_quit": "你确定要退出吗?",
"Zoom In": "放大", "edit_menu": {
"Actual Size": "实际大小", "speech": "讲话",
"View": "查看", "speech_start_speaking": "开始讲话",
"Select All": "选中全部", "speech_stop_speaking": "停止讲话"
"Delete": "删除", },
"Paste and Match Style": "粘贴并匹配样式", "file_menu": {
"Paste": "粘贴", "label": "文件"
"Copy": "复制", },
"Cut": "剪切", "menu": {
"Redo": "重做", "hide": "隐藏",
"Undo": "撤销", "hide_others": "隐藏其他",
"Edit": "编辑", "services": "服务",
"Quit": "退出", "unhide": "显示"
"Show/Hide": "显示/隐藏", },
"Are you sure you want to quit?": "你确定要退出吗?", "right_click_menu": {
"Cancel": "取消", "add_to_dictionary": "添加到字典",
"Copy image address": "复制图片地址", "copy_email": "复制邮箱地址",
"Close %(brand)s": "关闭 %(brand)s", "copy_image": "复制图片",
"%(brand)s Help": "%(brand)s帮助" "copy_image_url": "复制图片地址",
"copy_link_url": "复制链接地址",
"save_image_as": "保存图片为……",
"save_image_as_error_description": "图片保存失败",
"save_image_as_error_title": "图片保存失败"
},
"view_menu": {
"actual_size": "实际大小",
"toggle_developer_tools": "切换开发者工具",
"toggle_full_screen": "切换全屏",
"view": "查看"
},
"window_menu": {
"bring_all_to_front": "全部置前",
"label": "窗口",
"zoom": "放大"
}
} }

View file

@ -1,47 +1,63 @@
{ {
"Bring All to Front": "全部移至最前", "action": {
"Add to dictionary": "新增到字典", "cancel": "取消",
"The image failed to save": "儲存圖片失敗", "close": "關閉",
"Failed to save image": "儲存圖片失敗", "close_brand": "關閉 %(brand)s",
"Save image as...": "另存圖片為...", "copy": "複製",
"Copy link address": "複製連結", "cut": "剪下",
"Copy email address": "複製電子郵件地址", "delete": "刪除",
"Copy image": "複製圖片", "edit": "編輯",
"File": "檔案", "minimise": "最小化",
"Zoom": "縮放", "paste": "貼上",
"Stop Speaking": "停止說話", "paste_match_style": "貼上並保留格式",
"Start Speaking": "開始說話", "quit": "離開",
"Speech": "語音", "redo": "取消復原",
"Unhide": "取消隱藏", "select_all": "全選",
"Hide Others": "隱藏其他", "show_hide": "顯示/隱藏",
"Hide": "隱藏", "undo": "復原",
"Services": "服務", "zoom_in": "放大",
"About": "關於", "zoom_out": "縮小"
"Help": "說明", },
"Close": "關閉", "common": {
"Minimize": "最小化", "about": "關於",
"Window": "視窗", "brand_help": "%(brand)s 說明",
"Toggle Developer Tools": "切換開發工具", "help": "說明",
"Toggle Full Screen": "切換全螢幕", "preferences": "偏好設定"
"Preferences": "偏好設定", },
"Zoom Out": "縮小", "confirm_quit": "您確定要離開嗎?",
"Zoom In": "放大", "edit_menu": {
"Actual Size": "實際大小", "speech": "語音",
"View": "檢視", "speech_start_speaking": "開始說話",
"Select All": "全選", "speech_stop_speaking": "停止說話"
"Delete": "刪除", },
"Paste and Match Style": "貼上並保留格式", "file_menu": {
"Paste": "貼上", "label": "檔案"
"Copy": "複製", },
"Cut": "剪下", "menu": {
"Redo": "取消復原", "hide": "隱藏",
"Undo": "復原", "hide_others": "隱藏其他",
"Edit": "編輯", "services": "服務",
"Quit": "離開", "unhide": "取消隱藏"
"Show/Hide": "顯示/隱藏", },
"Are you sure you want to quit?": "您確定要離開嗎?", "right_click_menu": {
"Cancel": "取消", "add_to_dictionary": "新增到字典",
"Copy image address": "複製圖片地址", "copy_email": "複製電子郵件地址",
"Close %(brand)s": "關閉 %(brand)s", "copy_image": "複製圖片",
"%(brand)s Help": "%(brand)s 說明" "copy_image_url": "複製圖片地址",
"copy_link_url": "複製連結",
"save_image_as": "另存圖片為...",
"save_image_as_error_description": "儲存圖片失敗",
"save_image_as_error_title": "儲存圖片失敗"
},
"view_menu": {
"actual_size": "實際大小",
"toggle_developer_tools": "切換開發工具",
"toggle_full_screen": "切換全螢幕",
"view": "檢視"
},
"window_menu": {
"bring_all_to_front": "全部移至最前",
"label": "視窗",
"zoom": "縮放"
}
} }

View file

@ -15,23 +15,27 @@ limitations under the License.
*/ */
import counterpart from "counterpart"; import counterpart from "counterpart";
import { TranslationKey as TKey } from "matrix-web-i18n";
import type Store from "electron-store"; import type Store from "electron-store";
import type EN from "./i18n/strings/en_EN.json";
const FALLBACK_LOCALE = "en"; const FALLBACK_LOCALE = "en";
export function _td(text: string): string { type TranslationKey = TKey<typeof EN>;
export function _td(text: TranslationKey): TranslationKey {
return text; return text;
} }
type SubstitutionValue = number | string; type SubstitutionValue = number | string;
interface IVariables { interface Variables {
[key: string]: SubstitutionValue | undefined; [key: string]: SubstitutionValue | undefined;
count?: number; count?: number;
} }
export function _t(text: string, variables: IVariables = {}): string { export function _t(text: TranslationKey, variables: Variables = {}): string {
const { count } = variables; const { count } = variables;
// Horrible hack to avoid https://github.com/vector-im/element-web/issues/4191 // Horrible hack to avoid https://github.com/vector-im/element-web/issues/4191

View file

@ -121,12 +121,12 @@ export function initApplicationMenu(): void {
const contextMenu = Menu.buildFromTemplate([ const contextMenu = Menu.buildFromTemplate([
{ {
label: _t("Show/Hide"), label: _t("action|show_hide"),
click: toggleWin, click: toggleWin,
}, },
{ type: "separator" }, { type: "separator" },
{ {
label: _t("Quit"), label: _t("action|quit"),
click: function (): void { click: function (): void {
app.quit(); app.quit();
}, },

View file

@ -24,46 +24,46 @@ export function buildMenuTemplate(): Menu {
// Menu template from http://electron.atom.io/docs/api/menu/, edited // Menu template from http://electron.atom.io/docs/api/menu/, edited
const template: Array<MenuItemConstructorOptions | MenuItem> = [ const template: Array<MenuItemConstructorOptions | MenuItem> = [
{ {
label: _t("Edit"), label: _t("action|edit"),
accelerator: "e", accelerator: "e",
submenu: [ submenu: [
{ {
role: "undo", role: "undo",
label: _t("Undo"), label: _t("action|undo"),
}, },
{ {
role: "redo", role: "redo",
label: _t("Redo"), label: _t("action|redo"),
}, },
{ type: "separator" }, { type: "separator" },
{ {
role: "cut", role: "cut",
label: _t("Cut"), label: _t("action|cut"),
}, },
{ {
role: "copy", role: "copy",
label: _t("Copy"), label: _t("action|copy"),
}, },
{ {
role: "paste", role: "paste",
label: _t("Paste"), label: _t("action|paste"),
}, },
{ {
role: "pasteAndMatchStyle", role: "pasteAndMatchStyle",
label: _t("Paste and Match Style"), label: _t("action|paste_match_style"),
}, },
{ {
role: "delete", role: "delete",
label: _t("Delete"), label: _t("action|delete"),
}, },
{ {
role: "selectAll", role: "selectAll",
label: _t("Select All"), label: _t("action|select_all"),
}, },
], ],
}, },
{ {
label: _t("View"), label: _t("view_menu|view"),
accelerator: "V", accelerator: "V",
submenu: [ submenu: [
{ type: "separator" }, { type: "separator" },
@ -84,22 +84,22 @@ export function buildMenuTemplate(): Menu {
}, },
{ {
role: "resetZoom", role: "resetZoom",
label: _t("Actual Size"), label: _t("view_menu|actual_size"),
}, },
{ {
role: "zoomIn", role: "zoomIn",
label: _t("Zoom In"), label: _t("action|zoom_in"),
}, },
{ {
role: "zoomOut", role: "zoomOut",
label: _t("Zoom Out"), label: _t("action|zoom_out"),
}, },
{ type: "separator" }, { type: "separator" },
// in macOS the Preferences menu item goes in the first menu // in macOS the Preferences menu item goes in the first menu
...(!isMac ...(!isMac
? [ ? [
{ {
label: _t("Preferences"), label: _t("common|preferences"),
click(): void { click(): void {
global.mainWindow?.webContents.send("preferences"); global.mainWindow?.webContents.send("preferences");
}, },
@ -108,37 +108,37 @@ export function buildMenuTemplate(): Menu {
: []), : []),
{ {
role: "togglefullscreen", role: "togglefullscreen",
label: _t("Toggle Full Screen"), label: _t("view_menu|toggle_full_screen"),
}, },
{ {
role: "toggleDevTools", role: "toggleDevTools",
label: _t("Toggle Developer Tools"), label: _t("view_menu|toggle_developer_tools"),
}, },
], ],
}, },
{ {
label: _t("Window"), label: _t("window_menu|label"),
accelerator: "w", accelerator: "w",
role: "window", role: "window",
submenu: [ submenu: [
{ {
role: "minimize", role: "minimize",
label: _t("Minimize"), label: _t("action|minimise"),
}, },
{ {
role: "close", role: "close",
label: _t("Close"), label: _t("action|close"),
}, },
], ],
}, },
{ {
label: _t("Help"), label: _t("common|help"),
accelerator: "h", accelerator: "h",
role: "help", role: "help",
submenu: [ submenu: [
{ {
// XXX: vectorConfig won't have defaults applied to it so we need to duplicate them here // XXX: vectorConfig won't have defaults applied to it so we need to duplicate them here
label: _t("%(brand)s Help", { brand: global.vectorConfig?.brand || "Element" }), label: _t("common|brand_help", { brand: global.vectorConfig?.brand || "Element" }),
click(): void { click(): void {
shell.openExternal(global.vectorConfig?.help_url || "https://element.io/help"); shell.openExternal(global.vectorConfig?.help_url || "https://element.io/help");
}, },
@ -156,11 +156,11 @@ export function buildMenuTemplate(): Menu {
submenu: [ submenu: [
{ {
role: "about", role: "about",
label: _t("About") + " " + app.name, label: _t("common|about") + " " + app.name,
}, },
{ type: "separator" }, { type: "separator" },
{ {
label: _t("Preferences") + "…", label: _t("common|preferences") + "…",
accelerator: "Command+,", // Mac-only accelerator accelerator: "Command+,", // Mac-only accelerator
click(): void { click(): void {
global.mainWindow?.webContents.send("preferences"); global.mainWindow?.webContents.send("preferences");
@ -169,26 +169,26 @@ export function buildMenuTemplate(): Menu {
{ type: "separator" }, { type: "separator" },
{ {
role: "services", role: "services",
label: _t("Services"), label: _t("menu|services"),
submenu: [], submenu: [],
}, },
{ type: "separator" }, { type: "separator" },
{ {
role: "hide", role: "hide",
label: _t("Hide"), label: _t("menu|hide"),
}, },
{ {
role: "hideOthers", role: "hideOthers",
label: _t("Hide Others"), label: _t("menu|hide_others"),
}, },
{ {
role: "unhide", role: "unhide",
label: _t("Unhide"), label: _t("menu|unhide"),
}, },
{ type: "separator" }, { type: "separator" },
{ {
role: "quit", role: "quit",
label: _t("Quit"), label: _t("action|quit"),
}, },
], ],
}); });
@ -197,15 +197,15 @@ export function buildMenuTemplate(): Menu {
(template[1].submenu as MenuItemConstructorOptions[]).push( (template[1].submenu as MenuItemConstructorOptions[]).push(
{ type: "separator" }, { type: "separator" },
{ {
label: _t("Speech"), label: _t("edit_menu|speech"),
submenu: [ submenu: [
{ {
role: "startSpeaking", role: "startSpeaking",
label: _t("Start Speaking"), label: _t("edit_menu|speech_start_speaking"),
}, },
{ {
role: "stopSpeaking", role: "stopSpeaking",
label: _t("Stop Speaking"), label: _t("edit_menu|speech_stop_speaking"),
}, },
], ],
}, },
@ -215,30 +215,30 @@ export function buildMenuTemplate(): Menu {
// This also has specific functionality on macOS // This also has specific functionality on macOS
template[3].submenu = [ template[3].submenu = [
{ {
label: _t("Close"), label: _t("action|close"),
accelerator: "CmdOrCtrl+W", accelerator: "CmdOrCtrl+W",
role: "close", role: "close",
}, },
{ {
label: _t("Minimize"), label: _t("action|minimise"),
accelerator: "CmdOrCtrl+M", accelerator: "CmdOrCtrl+M",
role: "minimize", role: "minimize",
}, },
{ {
label: _t("Zoom"), label: _t("window_menu|zoom"),
role: "zoom", role: "zoom",
}, },
{ {
type: "separator", type: "separator",
}, },
{ {
label: _t("Bring All to Front"), label: _t("window_menu|bring_all_to_front"),
role: "front", role: "front",
}, },
]; ];
} else { } else {
template.unshift({ template.unshift({
label: _t("File"), label: _t("file_menu|label"),
accelerator: "f", accelerator: "f",
submenu: [ submenu: [
// For some reason, 'about' does not seem to work on windows. // For some reason, 'about' does not seem to work on windows.
@ -248,7 +248,7 @@ export function buildMenuTemplate(): Menu {
},*/ },*/
{ {
role: "quit", role: "quit",
label: _t("Quit"), label: _t("action|quit"),
}, },
], ],
}); });

View file

@ -105,7 +105,7 @@ function onLinkContextMenu(ev: Event, params: ContextMenuParams, webContents: We
if (params.hasImageContents) { if (params.hasImageContents) {
popupMenu.append( popupMenu.append(
new MenuItem({ new MenuItem({
label: _t("Copy image"), label: _t("right_click_menu|copy_image"),
accelerator: "c", accelerator: "c",
click(): void { click(): void {
webContents.copyImageAt(params.x, params.y); webContents.copyImageAt(params.x, params.y);
@ -120,7 +120,7 @@ function onLinkContextMenu(ev: Event, params: ContextMenuParams, webContents: We
if (url.startsWith(MAILTO_PREFIX)) { if (url.startsWith(MAILTO_PREFIX)) {
popupMenu.append( popupMenu.append(
new MenuItem({ new MenuItem({
label: _t("Copy email address"), label: _t("right_click_menu|copy_email"),
accelerator: "a", accelerator: "a",
click(): void { click(): void {
clipboard.writeText(url.substr(MAILTO_PREFIX.length)); clipboard.writeText(url.substr(MAILTO_PREFIX.length));
@ -130,7 +130,9 @@ function onLinkContextMenu(ev: Event, params: ContextMenuParams, webContents: We
} else { } else {
popupMenu.append( popupMenu.append(
new MenuItem({ new MenuItem({
label: params.hasImageContents ? _t("Copy image address") : _t("Copy link address"), label: params.hasImageContents
? _t("right_click_menu|copy_image_url")
: _t("right_click_menu|copy_link_url"),
accelerator: "a", accelerator: "a",
click(): void { click(): void {
clipboard.writeText(url); clipboard.writeText(url);
@ -145,7 +147,7 @@ function onLinkContextMenu(ev: Event, params: ContextMenuParams, webContents: We
if (params.hasImageContents && !url.startsWith("blob:")) { if (params.hasImageContents && !url.startsWith("blob:")) {
popupMenu.append( popupMenu.append(
new MenuItem({ new MenuItem({
label: _t("Save image as..."), label: _t("right_click_menu|save_image_as"),
accelerator: "s", accelerator: "s",
async click(): Promise<void> { async click(): Promise<void> {
const targetFileName = params.suggestedFilename || params.altText || "image.png"; const targetFileName = params.suggestedFilename || params.altText || "image.png";
@ -168,8 +170,8 @@ function onLinkContextMenu(ev: Event, params: ContextMenuParams, webContents: We
console.error(err); console.error(err);
dialog.showMessageBox({ dialog.showMessageBox({
type: "error", type: "error",
title: _t("Failed to save image"), title: _t("right_click_menu|save_image_as_error_title"),
message: _t("The image failed to save"), message: _t("right_click_menu|save_image_as_error_description"),
}); });
} }
}, },
@ -199,7 +201,7 @@ function cutCopyPasteSelectContextMenus(params: ContextMenuParams): MenuItemCons
type: "separator", type: "separator",
}, },
{ {
label: _t("Add to dictionary"), label: _t("right_click_menu|add_to_dictionary"),
click: (menuItem, browserWindow) => { click: (menuItem, browserWindow) => {
browserWindow?.webContents.session.addWordToSpellCheckerDictionary(params.misspelledWord); browserWindow?.webContents.session.addWordToSpellCheckerDictionary(params.misspelledWord);
}, },
@ -213,19 +215,19 @@ function cutCopyPasteSelectContextMenus(params: ContextMenuParams): MenuItemCons
options.push( options.push(
{ {
role: "cut", role: "cut",
label: _t("Cut"), label: _t("action|cut"),
accelerator: "t", accelerator: "t",
enabled: params.editFlags.canCut, enabled: params.editFlags.canCut,
}, },
{ {
role: "copy", role: "copy",
label: _t("Copy"), label: _t("action|copy"),
accelerator: "c", accelerator: "c",
enabled: params.editFlags.canCopy, enabled: params.editFlags.canCopy,
}, },
{ {
role: "paste", role: "paste",
label: _t("Paste"), label: _t("action|paste"),
accelerator: "p", accelerator: "p",
enabled: params.editFlags.canPaste, enabled: params.editFlags.canPaste,
}, },
@ -235,7 +237,7 @@ function cutCopyPasteSelectContextMenus(params: ContextMenuParams): MenuItemCons
}, },
{ {
role: "selectAll", role: "selectAll",
label: _t("Select All"), label: _t("action|select_all"),
accelerator: "a", accelerator: "a",
enabled: params.editFlags.canSelectAll, enabled: params.editFlags.canSelectAll,
}, },

View file

@ -5472,14 +5472,15 @@ matcher@^3.0.0:
dependencies: dependencies:
escape-string-regexp "^4.0.0" escape-string-regexp "^4.0.0"
matrix-web-i18n@^2.0.0: matrix-web-i18n@^3.1.1:
version "2.1.0" version "3.1.1"
resolved "https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-2.1.0.tgz#bab2db9ac462773de829053b4b8d43c11154a85b" resolved "https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.1.1.tgz#da851748515b20ca15fa986817bbce2e242b3dd6"
integrity sha512-z+B9D/PkWYB4O9SP4lsG4KNA2V3ypMWstP+lreft1c1wz6L5R1U3ennp+cs3yOsylBfcK+xLRvkwLNZsU6QEUA== integrity sha512-BOeOTedtONIqVQUlyHFXpxXkrETWdCoJdToyA+edMU+yGjKOW7bekAd9uAEfkV9jErP5eXw3cHYsKZPpa8ifWg==
dependencies: dependencies:
"@babel/parser" "^7.18.5" "@babel/parser" "^7.18.5"
"@babel/traverse" "^7.18.5" "@babel/traverse" "^7.18.5"
lodash "^4.17.21" lodash "^4.17.21"
minimist "^1.2.8"
walk "^2.3.15" walk "^2.3.15"
memoizee@^0.4.15: memoizee@^0.4.15:
@ -5577,7 +5578,7 @@ minimatch@^9.0.0, minimatch@^9.0.1:
dependencies: dependencies:
brace-expansion "^2.0.1" brace-expansion "^2.0.1"
minimist@^1.2.0, minimist@^1.2.6: minimist@^1.2.0, minimist@^1.2.6, minimist@^1.2.8:
version "1.2.8" version "1.2.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==