diff --git a/packages/keystatic/scripts/l10n.ts b/packages/keystatic/scripts/l10n.ts index 6ba1a7a17..c86afbf03 100644 --- a/packages/keystatic/scripts/l10n.ts +++ b/packages/keystatic/scripts/l10n.ts @@ -5,44 +5,31 @@ import { compileString } from '@internationalized/string-compiler'; const localesDir = 'src/app/l10n'; (async () => { const locales: Record> = {}; - await Promise.all( - (await fs.readdir(localesDir, { withFileTypes: true })).map( - async localeEntry => { - if (!localeEntry.isDirectory()) return; - const localeDir = path.join(localesDir, localeEntry.name); - const entries: Record = {}; - await Promise.all( - (await fs.readdir(localeDir, { withFileTypes: true })).map( - async entry => { - if (!entry.isDirectory()) return; - let json; - try { - json = JSON.parse( - await fs.readFile( - path.join(localeDir, entry.name, 'index.json'), - 'utf-8' - ) - ); - } catch (err) { - if ((err as any).code === 'ENOENT') { - return; - } - throw err; - } - entries[entry.name] = json.value; - } - ) - ); - if (Object.keys(entries).length) { - locales[localeEntry.name] = entries; - } - } - ) - ); + for (const entry of ( + await fs.readdir(localesDir, { withFileTypes: true }) + ).sort((a, b) => a.name.localeCompare(b.name))) { + if (!entry.isFile() || !entry.name.endsWith('.json')) continue; + const locale = path.basename(entry.name, '.json'); + const translations = JSON.parse( + await fs.readFile(path.join(localesDir, entry.name), 'utf-8') + ); + if ( + !translations || + typeof translations !== 'object' || + Array.isArray(translations) + ) { + throw new Error( + `${entry.name} must contain an object of translation values` + ); + } + locales[locale] = translations; + } let out = 'const strings = {\n'; for (const [lang, translations] of Object.entries(locales)) { out += ` ${JSON.stringify(lang)}: {\n`; - for (const [key, value] of Object.entries(translations)) { + for (const [key, value] of Object.entries(translations).sort(([a], [b]) => + a.localeCompare(b) + )) { out += ` ${JSON.stringify(key)}: ${compileString(value)},\n`; } out += ' },\n'; diff --git a/packages/keystatic/src/app/l10n/ar-AE.json b/packages/keystatic/src/app/l10n/ar-AE.json new file mode 100644 index 000000000..4e9d5c578 --- /dev/null +++ b/packages/keystatic/src/app/l10n/ar-AE.json @@ -0,0 +1,29 @@ +{ + "add": "يضيف", + "basedOn": "مرتكز على", + "branchName": "اسم الفرع", + "branches": "الفروع", + "cancel": "يلغي", + "clear": "مسح", + "collection": "مجموعة", + "collections": "المجموعات", + "create": "يخلق", + "createPullRequest": "إنشاء طلب سحب", + "currentBranch": "الفرع الحالي", + "dashboard": "لوحة القيادة", + "defaultBranch": "الفرع الافتراضي", + "delete": "يمسح", + "deleteBranch": "حذف الفرع", + "edit": "يحرر", + "loading": "جارٍ التحميل", + "newBranch": "فرع جديد", + "otherBranches": "الفروع الأخرى", + "pullRequests": "طلبات السحب", + "save": "يحفظ", + "search": "بحث", + "singleton": "سينجلتون", + "singletons": "الفردي", + "theCurrentlyCheckedOutBranch": "الفرع المعاد حاليا. اختر هذا إذا كنت بحاجة إلى البناء على العمل الحالي من الفرع الحالي.", + "theDefaultBranchInYourRepository": "الفرع الافتراضي في المستودع الخاص بك. اختر هذا لبدء شيء جديد لا يعتمد على فرعك الحالي.", + "viewPullRequests": "عرض طلبات السحب" +} diff --git a/packages/keystatic/src/app/l10n/ar-AE/add/index.json b/packages/keystatic/src/app/l10n/ar-AE/add/index.json deleted file mode 100644 index abf32cadd..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "يضيف", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/basedOn/index.json b/packages/keystatic/src/app/l10n/ar-AE/basedOn/index.json deleted file mode 100644 index 6f41de354..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "مرتكز على", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/branchName/index.json b/packages/keystatic/src/app/l10n/ar-AE/branchName/index.json deleted file mode 100644 index 0f9e066ce..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "اسم الفرع", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/branches/index.json b/packages/keystatic/src/app/l10n/ar-AE/branches/index.json deleted file mode 100644 index 8493e0ca5..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "الفروع", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/cancel/index.json b/packages/keystatic/src/app/l10n/ar-AE/cancel/index.json deleted file mode 100644 index c7b37b61b..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "يلغي", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/clear/index.json b/packages/keystatic/src/app/l10n/ar-AE/clear/index.json deleted file mode 100644 index 55b23be75..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "مسح", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/collection/index.json b/packages/keystatic/src/app/l10n/ar-AE/collection/index.json deleted file mode 100644 index 8330a102f..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "مجموعة", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/collections/index.json b/packages/keystatic/src/app/l10n/ar-AE/collections/index.json deleted file mode 100644 index 69ca8dd7a..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "المجموعات", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/create/index.json b/packages/keystatic/src/app/l10n/ar-AE/create/index.json deleted file mode 100644 index 472afc781..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "يخلق", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/createPullRequest/index.json b/packages/keystatic/src/app/l10n/ar-AE/createPullRequest/index.json deleted file mode 100644 index 784d60527..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "إنشاء طلب سحب", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/currentBranch/index.json b/packages/keystatic/src/app/l10n/ar-AE/currentBranch/index.json deleted file mode 100644 index e40d1e42f..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "الفرع الحالي", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/dashboard/index.json b/packages/keystatic/src/app/l10n/ar-AE/dashboard/index.json deleted file mode 100644 index 1fda5fd87..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "لوحة القيادة", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/defaultBranch/index.json b/packages/keystatic/src/app/l10n/ar-AE/defaultBranch/index.json deleted file mode 100644 index fc1029801..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "الفرع الافتراضي", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/delete/index.json b/packages/keystatic/src/app/l10n/ar-AE/delete/index.json deleted file mode 100644 index 953fd9304..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "يمسح", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/deleteBranch/index.json b/packages/keystatic/src/app/l10n/ar-AE/deleteBranch/index.json deleted file mode 100644 index b01f5862e..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "حذف الفرع", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/edit/index.json b/packages/keystatic/src/app/l10n/ar-AE/edit/index.json deleted file mode 100644 index 037bd5abe..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "يحرر", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/loading/index.json b/packages/keystatic/src/app/l10n/ar-AE/loading/index.json deleted file mode 100644 index 4ac2c56f0..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "جارٍ التحميل", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/newBranch/index.json b/packages/keystatic/src/app/l10n/ar-AE/newBranch/index.json deleted file mode 100644 index 8b9d26665..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "فرع جديد", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/otherBranches/index.json b/packages/keystatic/src/app/l10n/ar-AE/otherBranches/index.json deleted file mode 100644 index e33f5118b..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "الفروع الأخرى", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/pullRequests/index.json b/packages/keystatic/src/app/l10n/ar-AE/pullRequests/index.json deleted file mode 100644 index db8c3bf71..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "طلبات السحب", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/save/index.json b/packages/keystatic/src/app/l10n/ar-AE/save/index.json deleted file mode 100644 index 3eb91b84e..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "يحفظ", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/search/index.json b/packages/keystatic/src/app/l10n/ar-AE/search/index.json deleted file mode 100644 index 8d64d239c..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "بحث", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/singleton/index.json b/packages/keystatic/src/app/l10n/ar-AE/singleton/index.json deleted file mode 100644 index 4437262fa..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "سينجلتون", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/singletons/index.json b/packages/keystatic/src/app/l10n/ar-AE/singletons/index.json deleted file mode 100644 index 3203ad702..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "الفردي", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/ar-AE/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 47bb7a4c7..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "الفرع المعاد حاليا. اختر هذا إذا كنت بحاجة إلى البناء على العمل الحالي من الفرع الحالي.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/ar-AE/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index cf57c6fc0..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "الفرع الافتراضي في المستودع الخاص بك. اختر هذا لبدء شيء جديد لا يعتمد على فرعك الحالي.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ar-AE/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/ar-AE/viewPullRequests/index.json deleted file mode 100644 index ff1bbca4a..000000000 --- a/packages/keystatic/src/app/l10n/ar-AE/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "عرض طلبات السحب", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG.json b/packages/keystatic/src/app/l10n/bg-BG.json new file mode 100644 index 000000000..9ea3049f4 --- /dev/null +++ b/packages/keystatic/src/app/l10n/bg-BG.json @@ -0,0 +1,29 @@ +{ + "add": "Добавете", + "basedOn": "Базиран на", + "branchName": "Име на клон", + "branches": "Клонове", + "cancel": "Отказ", + "clear": "Изчисти", + "collection": "колекция", + "collections": "Колекции", + "create": "Създавайте", + "createPullRequest": "Създайте заявка за изтегляне", + "currentBranch": "Текущ клон", + "dashboard": "Табло", + "defaultBranch": "Клон по подразбиране", + "delete": "Изтрий", + "deleteBranch": "Изтриване на клон", + "edit": "редактиране", + "loading": "Зареждане", + "newBranch": "Нов клон", + "otherBranches": "Други клонове", + "pullRequests": "Заявки за изтегляне", + "save": "Запазване", + "search": "Търсене", + "singleton": "Сингълтън", + "singletons": "Единични", + "theCurrentlyCheckedOutBranch": "Текущо провереният клон. Изберете това, ако трябва да надграждате върху съществуваща работа от текущия клон.", + "theDefaultBranchInYourRepository": "Клонът по подразбиране във вашето хранилище. Изберете това, за да започнете с нещо ново, което не зависи от текущия ви клон.", + "viewPullRequests": "Преглед на заявките за изтегляне" +} diff --git a/packages/keystatic/src/app/l10n/bg-BG/add/index.json b/packages/keystatic/src/app/l10n/bg-BG/add/index.json deleted file mode 100644 index d6bb0d38e..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Добавете", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/basedOn/index.json b/packages/keystatic/src/app/l10n/bg-BG/basedOn/index.json deleted file mode 100644 index 7e2928730..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Базиран на", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/branchName/index.json b/packages/keystatic/src/app/l10n/bg-BG/branchName/index.json deleted file mode 100644 index 2655bf95f..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Име на клон", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/branches/index.json b/packages/keystatic/src/app/l10n/bg-BG/branches/index.json deleted file mode 100644 index 766aab5e8..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Клонове", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/cancel/index.json b/packages/keystatic/src/app/l10n/bg-BG/cancel/index.json deleted file mode 100644 index ea819446a..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Отказ", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/clear/index.json b/packages/keystatic/src/app/l10n/bg-BG/clear/index.json deleted file mode 100644 index e811964dc..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Изчисти", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/collection/index.json b/packages/keystatic/src/app/l10n/bg-BG/collection/index.json deleted file mode 100644 index 6916d62ce..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "колекция", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/collections/index.json b/packages/keystatic/src/app/l10n/bg-BG/collections/index.json deleted file mode 100644 index d9384ceb9..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Колекции", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/create/index.json b/packages/keystatic/src/app/l10n/bg-BG/create/index.json deleted file mode 100644 index 87b3ed975..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Създавайте", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/createPullRequest/index.json b/packages/keystatic/src/app/l10n/bg-BG/createPullRequest/index.json deleted file mode 100644 index 6e8ad4693..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Създайте заявка за изтегляне", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/currentBranch/index.json b/packages/keystatic/src/app/l10n/bg-BG/currentBranch/index.json deleted file mode 100644 index c07b0cbfc..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Текущ клон", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/dashboard/index.json b/packages/keystatic/src/app/l10n/bg-BG/dashboard/index.json deleted file mode 100644 index 012bdc798..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Табло", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/defaultBranch/index.json b/packages/keystatic/src/app/l10n/bg-BG/defaultBranch/index.json deleted file mode 100644 index ec7a446bb..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Клон по подразбиране", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/delete/index.json b/packages/keystatic/src/app/l10n/bg-BG/delete/index.json deleted file mode 100644 index ed9835d6c..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Изтрий", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/deleteBranch/index.json b/packages/keystatic/src/app/l10n/bg-BG/deleteBranch/index.json deleted file mode 100644 index 6a14c8ae5..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Изтриване на клон", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/edit/index.json b/packages/keystatic/src/app/l10n/bg-BG/edit/index.json deleted file mode 100644 index 1786791df..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "редактиране", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/loading/index.json b/packages/keystatic/src/app/l10n/bg-BG/loading/index.json deleted file mode 100644 index 127a59ef1..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Зареждане", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/newBranch/index.json b/packages/keystatic/src/app/l10n/bg-BG/newBranch/index.json deleted file mode 100644 index 74715fef0..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Нов клон", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/otherBranches/index.json b/packages/keystatic/src/app/l10n/bg-BG/otherBranches/index.json deleted file mode 100644 index 6979bd253..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Други клонове", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/pullRequests/index.json b/packages/keystatic/src/app/l10n/bg-BG/pullRequests/index.json deleted file mode 100644 index b9516e20c..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Заявки за изтегляне", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/save/index.json b/packages/keystatic/src/app/l10n/bg-BG/save/index.json deleted file mode 100644 index 52f11c1b2..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Запазване", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/search/index.json b/packages/keystatic/src/app/l10n/bg-BG/search/index.json deleted file mode 100644 index a87fe7ba3..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Търсене", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/singleton/index.json b/packages/keystatic/src/app/l10n/bg-BG/singleton/index.json deleted file mode 100644 index 1be0784b5..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Сингълтън", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/singletons/index.json b/packages/keystatic/src/app/l10n/bg-BG/singletons/index.json deleted file mode 100644 index 97cecd4d7..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Единични", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/bg-BG/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 17ebf2709..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Текущо провереният клон. Изберете това, ако трябва да надграждате върху съществуваща работа от текущия клон.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/bg-BG/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index d6760bf9f..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Клонът по подразбиране във вашето хранилище. Изберете това, за да започнете с нещо ново, което не зависи от текущия ви клон.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/bg-BG/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/bg-BG/viewPullRequests/index.json deleted file mode 100644 index dc21cc24a..000000000 --- a/packages/keystatic/src/app/l10n/bg-BG/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Преглед на заявките за изтегляне", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ.json b/packages/keystatic/src/app/l10n/cs-CZ.json new file mode 100644 index 000000000..3789f9ac7 --- /dev/null +++ b/packages/keystatic/src/app/l10n/cs-CZ.json @@ -0,0 +1,29 @@ +{ + "add": "Přidat", + "basedOn": "Na základě", + "branchName": "Jméno pobočky", + "branches": "Větve", + "cancel": "zrušení", + "clear": "Vymazat", + "collection": "Sbírka", + "collections": "Sbírky", + "create": "Vytvořit", + "createPullRequest": "Vytvořit požadavek na stažení", + "currentBranch": "Současná pobočka", + "dashboard": "Přístrojová deska", + "defaultBranch": "Výchozí větev", + "delete": "Vymazat", + "deleteBranch": "Smazat větev", + "edit": "Upravit", + "loading": "Načítání", + "newBranch": "Nová pobočka", + "otherBranches": "Ostatní pobočky", + "pullRequests": "Vytáhněte požadavky", + "save": "Uložit", + "search": "Hledat", + "singleton": "Jedináček", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "Aktuálně odhlášená pobočka. Tuto možnost vyberte, pokud potřebujete navázat na stávající práci z aktuální pobočky.", + "theDefaultBranchInYourRepository": "Výchozí větev ve vašem úložišti. Zvolte tuto možnost, chcete-li začít s něčím novým, co není závislé na vaší aktuální větvi.", + "viewPullRequests": "Zobrazit žádosti o stažení" +} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/add/index.json b/packages/keystatic/src/app/l10n/cs-CZ/add/index.json deleted file mode 100644 index 5dcf6253d..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Přidat", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/basedOn/index.json b/packages/keystatic/src/app/l10n/cs-CZ/basedOn/index.json deleted file mode 100644 index 91b0de8ce..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Na základě", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/branchName/index.json b/packages/keystatic/src/app/l10n/cs-CZ/branchName/index.json deleted file mode 100644 index 125bcfae6..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Jméno pobočky", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/branches/index.json b/packages/keystatic/src/app/l10n/cs-CZ/branches/index.json deleted file mode 100644 index 9bf3fe279..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Větve", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/cancel/index.json b/packages/keystatic/src/app/l10n/cs-CZ/cancel/index.json deleted file mode 100644 index 3ae904c42..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "zrušení", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/clear/index.json b/packages/keystatic/src/app/l10n/cs-CZ/clear/index.json deleted file mode 100644 index 19f19d049..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Vymazat", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/collection/index.json b/packages/keystatic/src/app/l10n/cs-CZ/collection/index.json deleted file mode 100644 index 81849d8fa..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Sbírka", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/collections/index.json b/packages/keystatic/src/app/l10n/cs-CZ/collections/index.json deleted file mode 100644 index 89bcedc56..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Sbírky", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/create/index.json b/packages/keystatic/src/app/l10n/cs-CZ/create/index.json deleted file mode 100644 index 577b56f8c..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Vytvořit", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/createPullRequest/index.json b/packages/keystatic/src/app/l10n/cs-CZ/createPullRequest/index.json deleted file mode 100644 index 602082ce5..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Vytvořit požadavek na stažení", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/currentBranch/index.json b/packages/keystatic/src/app/l10n/cs-CZ/currentBranch/index.json deleted file mode 100644 index 1384a7299..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Současná pobočka", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/dashboard/index.json b/packages/keystatic/src/app/l10n/cs-CZ/dashboard/index.json deleted file mode 100644 index 255f6f894..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Přístrojová deska", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/defaultBranch/index.json b/packages/keystatic/src/app/l10n/cs-CZ/defaultBranch/index.json deleted file mode 100644 index e3aed83dc..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Výchozí větev", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/delete/index.json b/packages/keystatic/src/app/l10n/cs-CZ/delete/index.json deleted file mode 100644 index 81998bcb7..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Vymazat", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/deleteBranch/index.json b/packages/keystatic/src/app/l10n/cs-CZ/deleteBranch/index.json deleted file mode 100644 index 565fdd6e3..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Smazat větev", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/edit/index.json b/packages/keystatic/src/app/l10n/cs-CZ/edit/index.json deleted file mode 100644 index 9a8603252..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Upravit", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/loading/index.json b/packages/keystatic/src/app/l10n/cs-CZ/loading/index.json deleted file mode 100644 index 0756b459e..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Načítání", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/newBranch/index.json b/packages/keystatic/src/app/l10n/cs-CZ/newBranch/index.json deleted file mode 100644 index 68f9c2068..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nová pobočka", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/otherBranches/index.json b/packages/keystatic/src/app/l10n/cs-CZ/otherBranches/index.json deleted file mode 100644 index fe2eb52d9..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Ostatní pobočky", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/pullRequests/index.json b/packages/keystatic/src/app/l10n/cs-CZ/pullRequests/index.json deleted file mode 100644 index dc0d1bd5d..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Vytáhněte požadavky", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/save/index.json b/packages/keystatic/src/app/l10n/cs-CZ/save/index.json deleted file mode 100644 index 983c9fc18..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Uložit", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/search/index.json b/packages/keystatic/src/app/l10n/cs-CZ/search/index.json deleted file mode 100644 index f8b5f8dbc..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Hledat", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/singleton/index.json b/packages/keystatic/src/app/l10n/cs-CZ/singleton/index.json deleted file mode 100644 index fb0ef6159..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Jedináček", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/singletons/index.json b/packages/keystatic/src/app/l10n/cs-CZ/singletons/index.json deleted file mode 100644 index 80071fa33..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/cs-CZ/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 06e15e69c..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Aktuálně odhlášená pobočka. Tuto možnost vyberte, pokud potřebujete navázat na stávající práci z aktuální pobočky.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/cs-CZ/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 8cfac659e..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Výchozí větev ve vašem úložišti. Zvolte tuto možnost, chcete-li začít s něčím novým, co není závislé na vaší aktuální větvi.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/cs-CZ/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/cs-CZ/viewPullRequests/index.json deleted file mode 100644 index 54771790e..000000000 --- a/packages/keystatic/src/app/l10n/cs-CZ/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Zobrazit žádosti o stažení", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK.json b/packages/keystatic/src/app/l10n/da-DK.json new file mode 100644 index 000000000..f0fe1b3da --- /dev/null +++ b/packages/keystatic/src/app/l10n/da-DK.json @@ -0,0 +1,29 @@ +{ + "add": "Tilføje", + "basedOn": "Baseret på", + "branchName": "Afdelingsnavn", + "branches": "Grene", + "cancel": "Afbestille", + "clear": "Ryd", + "collection": "Kollektion", + "collections": "Samlinger", + "create": "skab", + "createPullRequest": "Opret pull-anmodning", + "currentBranch": "Nuværende filial", + "dashboard": "Dashboard", + "defaultBranch": "Standard gren", + "delete": "Slet", + "deleteBranch": "Slet filial", + "edit": "Redigere", + "loading": "Indlæser", + "newBranch": "Ny filial", + "otherBranches": "Andre grene", + "pullRequests": "Træk anmodninger", + "save": "Gemme", + "search": "Søg", + "singleton": "Singleton", + "singletons": "Singletoner", + "theCurrentlyCheckedOutBranch": "Den aktuelt tjekkede filial. Vælg dette, hvis du skal bygge videre på eksisterende arbejde fra den nuværende filial.", + "theDefaultBranchInYourRepository": "Standardgrenen i dit lager. Vælg dette for at starte på noget nyt, der ikke er afhængigt af din nuværende filial.", + "viewPullRequests": "Se pull-anmodninger" +} diff --git a/packages/keystatic/src/app/l10n/da-DK/add/index.json b/packages/keystatic/src/app/l10n/da-DK/add/index.json deleted file mode 100644 index e93e4aa3c..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Tilføje", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/basedOn/index.json b/packages/keystatic/src/app/l10n/da-DK/basedOn/index.json deleted file mode 100644 index 8c0cd8f13..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Baseret på", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/branchName/index.json b/packages/keystatic/src/app/l10n/da-DK/branchName/index.json deleted file mode 100644 index ea3f1d7a7..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Afdelingsnavn", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/branches/index.json b/packages/keystatic/src/app/l10n/da-DK/branches/index.json deleted file mode 100644 index 881a04d7e..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Grene", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/cancel/index.json b/packages/keystatic/src/app/l10n/da-DK/cancel/index.json deleted file mode 100644 index ad44be321..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Afbestille", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/clear/index.json b/packages/keystatic/src/app/l10n/da-DK/clear/index.json deleted file mode 100644 index de16b0062..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Ryd", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/collection/index.json b/packages/keystatic/src/app/l10n/da-DK/collection/index.json deleted file mode 100644 index 46227183c..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Kollektion", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/collections/index.json b/packages/keystatic/src/app/l10n/da-DK/collections/index.json deleted file mode 100644 index 999a43401..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Samlinger", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/create/index.json b/packages/keystatic/src/app/l10n/da-DK/create/index.json deleted file mode 100644 index 0424e2128..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "skab", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/createPullRequest/index.json b/packages/keystatic/src/app/l10n/da-DK/createPullRequest/index.json deleted file mode 100644 index 11a7e242e..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Opret pull-anmodning", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/currentBranch/index.json b/packages/keystatic/src/app/l10n/da-DK/currentBranch/index.json deleted file mode 100644 index 7ab286916..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Nuværende filial", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/dashboard/index.json b/packages/keystatic/src/app/l10n/da-DK/dashboard/index.json deleted file mode 100644 index 01b2977e0..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Dashboard", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/defaultBranch/index.json b/packages/keystatic/src/app/l10n/da-DK/defaultBranch/index.json deleted file mode 100644 index 84914bea7..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Standard gren", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/delete/index.json b/packages/keystatic/src/app/l10n/da-DK/delete/index.json deleted file mode 100644 index 34e1ec937..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Slet", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/deleteBranch/index.json b/packages/keystatic/src/app/l10n/da-DK/deleteBranch/index.json deleted file mode 100644 index bea062b83..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Slet filial", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/edit/index.json b/packages/keystatic/src/app/l10n/da-DK/edit/index.json deleted file mode 100644 index 2bd431e90..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Redigere", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/loading/index.json b/packages/keystatic/src/app/l10n/da-DK/loading/index.json deleted file mode 100644 index 3258a9f38..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Indlæser", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/newBranch/index.json b/packages/keystatic/src/app/l10n/da-DK/newBranch/index.json deleted file mode 100644 index 537f1f9d5..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Ny filial", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/otherBranches/index.json b/packages/keystatic/src/app/l10n/da-DK/otherBranches/index.json deleted file mode 100644 index 6e8b91e1f..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Andre grene", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/pullRequests/index.json b/packages/keystatic/src/app/l10n/da-DK/pullRequests/index.json deleted file mode 100644 index ab325743e..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Træk anmodninger", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/save/index.json b/packages/keystatic/src/app/l10n/da-DK/save/index.json deleted file mode 100644 index 58d9d364b..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Gemme", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/search/index.json b/packages/keystatic/src/app/l10n/da-DK/search/index.json deleted file mode 100644 index 80c2af8a3..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Søg", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/singleton/index.json b/packages/keystatic/src/app/l10n/da-DK/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/singletons/index.json b/packages/keystatic/src/app/l10n/da-DK/singletons/index.json deleted file mode 100644 index ce17e10c6..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletoner", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/da-DK/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 4a56fa11d..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Den aktuelt tjekkede filial. Vælg dette, hvis du skal bygge videre på eksisterende arbejde fra den nuværende filial.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/da-DK/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index ce02751d8..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Standardgrenen i dit lager. Vælg dette for at starte på noget nyt, der ikke er afhængigt af din nuværende filial.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/da-DK/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/da-DK/viewPullRequests/index.json deleted file mode 100644 index bdd685107..000000000 --- a/packages/keystatic/src/app/l10n/da-DK/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Se pull-anmodninger", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE.json b/packages/keystatic/src/app/l10n/de-DE.json new file mode 100644 index 000000000..1e72778d1 --- /dev/null +++ b/packages/keystatic/src/app/l10n/de-DE.json @@ -0,0 +1,29 @@ +{ + "add": "Hinzufügen", + "basedOn": "Bezogen auf", + "branchName": "Zweigname", + "branches": "Zweig", + "cancel": "Abbrechen", + "clear": "Löschen", + "collection": "Sammlung", + "collections": "Sammlungen", + "create": "Erstellen", + "createPullRequest": "Pull-Request erstellen", + "currentBranch": "Aktueller Zweig", + "dashboard": "Dashboard", + "defaultBranch": "Standardzweig", + "delete": "Löschen", + "deleteBranch": "Zweig löschen", + "edit": "Bearbeiten", + "loading": "Wird geladen", + "newBranch": "Neuer Zweig", + "otherBranches": "Andere Zweige", + "pullRequests": "Pull-Requests", + "save": "Speichern", + "search": "Suchen", + "singleton": "Einzeln", + "singletons": "Einzelne", + "theCurrentlyCheckedOutBranch": "Der aktuell ausgecheckte Zweig. Wählen Sie diese Option, wenn Sie auf vorhandener Arbeit aus dem aktuellen Zweig aufbauen müssen.", + "theDefaultBranchInYourRepository": "Der Standard-Branch in Ihrem Repository. Wählen Sie dies, um etwas Neues zu starten, das nicht von Ihrem aktuellen Zweig abhängt.", + "viewPullRequests": "Pull-Requests anzeigen" +} diff --git a/packages/keystatic/src/app/l10n/de-DE/add/index.json b/packages/keystatic/src/app/l10n/de-DE/add/index.json deleted file mode 100644 index 0afd5dcae..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Hinzufügen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/basedOn/index.json b/packages/keystatic/src/app/l10n/de-DE/basedOn/index.json deleted file mode 100644 index 7686a409d..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Bezogen auf", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/branchName/index.json b/packages/keystatic/src/app/l10n/de-DE/branchName/index.json deleted file mode 100644 index b3010a3f1..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Zweigname", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/branches/index.json b/packages/keystatic/src/app/l10n/de-DE/branches/index.json deleted file mode 100644 index 7dadaefe7..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Zweig", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/cancel/index.json b/packages/keystatic/src/app/l10n/de-DE/cancel/index.json deleted file mode 100644 index d907448f0..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Abbrechen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/clear/index.json b/packages/keystatic/src/app/l10n/de-DE/clear/index.json deleted file mode 100644 index 785f10570..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Löschen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/collection/index.json b/packages/keystatic/src/app/l10n/de-DE/collection/index.json deleted file mode 100644 index 12ccf7b80..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Sammlung", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/collections/index.json b/packages/keystatic/src/app/l10n/de-DE/collections/index.json deleted file mode 100644 index bbc28717d..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Sammlungen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/create/index.json b/packages/keystatic/src/app/l10n/de-DE/create/index.json deleted file mode 100644 index e85be335f..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Erstellen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/createPullRequest/index.json b/packages/keystatic/src/app/l10n/de-DE/createPullRequest/index.json deleted file mode 100644 index dbe403661..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Pull-Request erstellen", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/currentBranch/index.json b/packages/keystatic/src/app/l10n/de-DE/currentBranch/index.json deleted file mode 100644 index ce70b267a..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Aktueller Zweig", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/dashboard/index.json b/packages/keystatic/src/app/l10n/de-DE/dashboard/index.json deleted file mode 100644 index 01b2977e0..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Dashboard", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/defaultBranch/index.json b/packages/keystatic/src/app/l10n/de-DE/defaultBranch/index.json deleted file mode 100644 index 8d6f6e3f7..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Standardzweig", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/delete/index.json b/packages/keystatic/src/app/l10n/de-DE/delete/index.json deleted file mode 100644 index ba09dda89..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Löschen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/deleteBranch/index.json b/packages/keystatic/src/app/l10n/de-DE/deleteBranch/index.json deleted file mode 100644 index 923f16f60..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Zweig löschen", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/edit/index.json b/packages/keystatic/src/app/l10n/de-DE/edit/index.json deleted file mode 100644 index c727daab4..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Bearbeiten", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/loading/index.json b/packages/keystatic/src/app/l10n/de-DE/loading/index.json deleted file mode 100644 index 2f34038eb..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Wird geladen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/newBranch/index.json b/packages/keystatic/src/app/l10n/de-DE/newBranch/index.json deleted file mode 100644 index 3fa325505..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Neuer Zweig", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/otherBranches/index.json b/packages/keystatic/src/app/l10n/de-DE/otherBranches/index.json deleted file mode 100644 index 77bd728ba..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Andere Zweige", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/pullRequests/index.json b/packages/keystatic/src/app/l10n/de-DE/pullRequests/index.json deleted file mode 100644 index bb8c3d269..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Pull-Requests", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/save/index.json b/packages/keystatic/src/app/l10n/de-DE/save/index.json deleted file mode 100644 index dea5f59f8..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Speichern", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/search/index.json b/packages/keystatic/src/app/l10n/de-DE/search/index.json deleted file mode 100644 index 87dd60d2d..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Suchen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/singleton/index.json b/packages/keystatic/src/app/l10n/de-DE/singleton/index.json deleted file mode 100644 index 1fb55421d..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Einzeln", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/singletons/index.json b/packages/keystatic/src/app/l10n/de-DE/singletons/index.json deleted file mode 100644 index b5949a2a3..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Einzelne", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/de-DE/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index c3e8039c4..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Der aktuell ausgecheckte Zweig. Wählen Sie diese Option, wenn Sie auf vorhandener Arbeit aus dem aktuellen Zweig aufbauen müssen.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/de-DE/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 532f1e230..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Der Standard-Branch in Ihrem Repository. Wählen Sie dies, um etwas Neues zu starten, das nicht von Ihrem aktuellen Zweig abhängt.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/de-DE/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/de-DE/viewPullRequests/index.json deleted file mode 100644 index 067ebedee..000000000 --- a/packages/keystatic/src/app/l10n/de-DE/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Pull-Requests anzeigen", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR.json b/packages/keystatic/src/app/l10n/el-GR.json new file mode 100644 index 000000000..1a66ef7e1 --- /dev/null +++ b/packages/keystatic/src/app/l10n/el-GR.json @@ -0,0 +1,29 @@ +{ + "add": "Προσθήκη", + "basedOn": "Βασισμένο στο", + "branchName": "Όνομα υποκαταστήματος", + "branches": "Κλαδια δεντρου", + "cancel": "Ματαίωση", + "clear": "Καθαρισμός", + "collection": "Συλλογή", + "collections": "Συλλογές", + "create": "Δημιουργώ", + "createPullRequest": "Δημιουργία αιτήματος έλξης", + "currentBranch": "Τρέχον υποκατάστημα", + "dashboard": "Ταμπλό", + "defaultBranch": "Προεπιλεγμένος κλάδος", + "delete": "Διαγράφω", + "deleteBranch": "Διαγραφή υποκαταστήματος", + "edit": "Επεξεργασία", + "loading": "Φόρτωση", + "newBranch": "Νέο υποκατάστημα", + "otherBranches": "Άλλα υποκαταστήματα", + "pullRequests": "Τραβήξτε αιτήματα", + "save": "Αποθηκεύσετε", + "search": "Αναζήτηση", + "singleton": "Μοναδικό χαρτί", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "Το υποκατάστημα που ελέγχεται αυτήν τη στιγμή. Επιλέξτε αυτό εάν χρειάζεται να βασιστείτε σε υπάρχουσες εργασίες από τον τρέχοντα κλάδο.", + "theDefaultBranchInYourRepository": "Ο προεπιλεγμένος κλάδος στο αποθετήριο σας. Επιλέξτε αυτό για να ξεκινήσετε κάτι νέο που δεν εξαρτάται από το τρέχον υποκατάστημά σας.", + "viewPullRequests": "Προβολή αιτημάτων έλξης" +} diff --git a/packages/keystatic/src/app/l10n/el-GR/add/index.json b/packages/keystatic/src/app/l10n/el-GR/add/index.json deleted file mode 100644 index 05641664c..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Προσθήκη", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/basedOn/index.json b/packages/keystatic/src/app/l10n/el-GR/basedOn/index.json deleted file mode 100644 index 0127dda1f..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Βασισμένο στο", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/branchName/index.json b/packages/keystatic/src/app/l10n/el-GR/branchName/index.json deleted file mode 100644 index aa2ac5075..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Όνομα υποκαταστήματος", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/branches/index.json b/packages/keystatic/src/app/l10n/el-GR/branches/index.json deleted file mode 100644 index f8138c5e3..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Κλαδια δεντρου", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/cancel/index.json b/packages/keystatic/src/app/l10n/el-GR/cancel/index.json deleted file mode 100644 index ccefcb757..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Ματαίωση", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/clear/index.json b/packages/keystatic/src/app/l10n/el-GR/clear/index.json deleted file mode 100644 index 3ed2fffa9..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Καθαρισμός", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/collection/index.json b/packages/keystatic/src/app/l10n/el-GR/collection/index.json deleted file mode 100644 index 207b2341f..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Συλλογή", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/collections/index.json b/packages/keystatic/src/app/l10n/el-GR/collections/index.json deleted file mode 100644 index a552eea55..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Συλλογές", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/create/index.json b/packages/keystatic/src/app/l10n/el-GR/create/index.json deleted file mode 100644 index dd45f6840..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Δημιουργώ", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/createPullRequest/index.json b/packages/keystatic/src/app/l10n/el-GR/createPullRequest/index.json deleted file mode 100644 index eae6878c4..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Δημιουργία αιτήματος έλξης", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/currentBranch/index.json b/packages/keystatic/src/app/l10n/el-GR/currentBranch/index.json deleted file mode 100644 index 886015d7f..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Τρέχον υποκατάστημα", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/dashboard/index.json b/packages/keystatic/src/app/l10n/el-GR/dashboard/index.json deleted file mode 100644 index ec91371c2..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Ταμπλό", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/defaultBranch/index.json b/packages/keystatic/src/app/l10n/el-GR/defaultBranch/index.json deleted file mode 100644 index 4367e913e..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Προεπιλεγμένος κλάδος", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/delete/index.json b/packages/keystatic/src/app/l10n/el-GR/delete/index.json deleted file mode 100644 index e6065293c..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Διαγράφω", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/deleteBranch/index.json b/packages/keystatic/src/app/l10n/el-GR/deleteBranch/index.json deleted file mode 100644 index 178714905..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Διαγραφή υποκαταστήματος", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/edit/index.json b/packages/keystatic/src/app/l10n/el-GR/edit/index.json deleted file mode 100644 index 95812e8ea..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Επεξεργασία", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/loading/index.json b/packages/keystatic/src/app/l10n/el-GR/loading/index.json deleted file mode 100644 index 294f99775..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Φόρτωση", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/newBranch/index.json b/packages/keystatic/src/app/l10n/el-GR/newBranch/index.json deleted file mode 100644 index 9a865b451..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Νέο υποκατάστημα", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/otherBranches/index.json b/packages/keystatic/src/app/l10n/el-GR/otherBranches/index.json deleted file mode 100644 index 8f50ad637..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Άλλα υποκαταστήματα", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/pullRequests/index.json b/packages/keystatic/src/app/l10n/el-GR/pullRequests/index.json deleted file mode 100644 index e6dd95ef0..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Τραβήξτε αιτήματα", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/save/index.json b/packages/keystatic/src/app/l10n/el-GR/save/index.json deleted file mode 100644 index afe703eb8..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Αποθηκεύσετε", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/search/index.json b/packages/keystatic/src/app/l10n/el-GR/search/index.json deleted file mode 100644 index ed3be17a4..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Αναζήτηση", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/singleton/index.json b/packages/keystatic/src/app/l10n/el-GR/singleton/index.json deleted file mode 100644 index e354ee380..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Μοναδικό χαρτί", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/singletons/index.json b/packages/keystatic/src/app/l10n/el-GR/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/el-GR/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 0c629ea03..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Το υποκατάστημα που ελέγχεται αυτήν τη στιγμή. Επιλέξτε αυτό εάν χρειάζεται να βασιστείτε σε υπάρχουσες εργασίες από τον τρέχοντα κλάδο.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/el-GR/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 9269c6df4..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Ο προεπιλεγμένος κλάδος στο αποθετήριο σας. Επιλέξτε αυτό για να ξεκινήσετε κάτι νέο που δεν εξαρτάται από το τρέχον υποκατάστημά σας.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/el-GR/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/el-GR/viewPullRequests/index.json deleted file mode 100644 index e0d7d337e..000000000 --- a/packages/keystatic/src/app/l10n/el-GR/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Προβολή αιτημάτων έλξης", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US.json b/packages/keystatic/src/app/l10n/en-US.json new file mode 100644 index 000000000..6a3c81874 --- /dev/null +++ b/packages/keystatic/src/app/l10n/en-US.json @@ -0,0 +1,29 @@ +{ + "add": "Add", + "basedOn": "Based on", + "branchName": "Branch name", + "branches": "Branches", + "cancel": "Cancel", + "clear": "Clear", + "collection": "Collection", + "collections": "Collections", + "create": "Create", + "createPullRequest": "Create pull request", + "currentBranch": "Current branch", + "dashboard": "Dashboard", + "defaultBranch": "Default branch", + "delete": "Delete", + "deleteBranch": "Delete branch", + "edit": "Edit", + "loading": "Loading", + "newBranch": "New branch…", + "otherBranches": "Other branches", + "pullRequests": "Pull requests", + "save": "Save", + "search": "Search", + "singleton": "Singleton", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "The currently checked out branch. Choose this if you need to build on existing work from the current branch.", + "theDefaultBranchInYourRepository": "The default branch in your repository. Choose this to start something new that's not dependent on your current branch.", + "viewPullRequests": "View pull requests" +} diff --git a/packages/keystatic/src/app/l10n/en-US/add/index.json b/packages/keystatic/src/app/l10n/en-US/add/index.json deleted file mode 100644 index 22534cd5c..000000000 --- a/packages/keystatic/src/app/l10n/en-US/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Add", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/basedOn/index.json b/packages/keystatic/src/app/l10n/en-US/basedOn/index.json deleted file mode 100644 index beed31333..000000000 --- a/packages/keystatic/src/app/l10n/en-US/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Based on", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/branchName/index.json b/packages/keystatic/src/app/l10n/en-US/branchName/index.json deleted file mode 100644 index ac5d273e2..000000000 --- a/packages/keystatic/src/app/l10n/en-US/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Branch name", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/branches/index.json b/packages/keystatic/src/app/l10n/en-US/branches/index.json deleted file mode 100644 index db1a82617..000000000 --- a/packages/keystatic/src/app/l10n/en-US/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Branches", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/cancel/index.json b/packages/keystatic/src/app/l10n/en-US/cancel/index.json deleted file mode 100644 index 12c936764..000000000 --- a/packages/keystatic/src/app/l10n/en-US/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Cancel", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/clear/index.json b/packages/keystatic/src/app/l10n/en-US/clear/index.json deleted file mode 100644 index bd2f5f95f..000000000 --- a/packages/keystatic/src/app/l10n/en-US/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Clear", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/collection/index.json b/packages/keystatic/src/app/l10n/en-US/collection/index.json deleted file mode 100644 index 36aa12faa..000000000 --- a/packages/keystatic/src/app/l10n/en-US/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Collection", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/collections/index.json b/packages/keystatic/src/app/l10n/en-US/collections/index.json deleted file mode 100644 index dd55a055e..000000000 --- a/packages/keystatic/src/app/l10n/en-US/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Collections", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/create/index.json b/packages/keystatic/src/app/l10n/en-US/create/index.json deleted file mode 100644 index 39be50da6..000000000 --- a/packages/keystatic/src/app/l10n/en-US/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Create", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/createPullRequest/index.json b/packages/keystatic/src/app/l10n/en-US/createPullRequest/index.json deleted file mode 100644 index dc93882e5..000000000 --- a/packages/keystatic/src/app/l10n/en-US/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Create pull request", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/currentBranch/index.json b/packages/keystatic/src/app/l10n/en-US/currentBranch/index.json deleted file mode 100644 index 6de530a47..000000000 --- a/packages/keystatic/src/app/l10n/en-US/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Current branch", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/dashboard/index.json b/packages/keystatic/src/app/l10n/en-US/dashboard/index.json deleted file mode 100644 index 01b2977e0..000000000 --- a/packages/keystatic/src/app/l10n/en-US/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Dashboard", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/defaultBranch/index.json b/packages/keystatic/src/app/l10n/en-US/defaultBranch/index.json deleted file mode 100644 index 0315c4428..000000000 --- a/packages/keystatic/src/app/l10n/en-US/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Default branch", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/delete/index.json b/packages/keystatic/src/app/l10n/en-US/delete/index.json deleted file mode 100644 index 346611113..000000000 --- a/packages/keystatic/src/app/l10n/en-US/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Delete", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/deleteBranch/index.json b/packages/keystatic/src/app/l10n/en-US/deleteBranch/index.json deleted file mode 100644 index 5d0d42086..000000000 --- a/packages/keystatic/src/app/l10n/en-US/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Delete branch", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/edit/index.json b/packages/keystatic/src/app/l10n/en-US/edit/index.json deleted file mode 100644 index bd1992b98..000000000 --- a/packages/keystatic/src/app/l10n/en-US/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Edit", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/loading/index.json b/packages/keystatic/src/app/l10n/en-US/loading/index.json deleted file mode 100644 index 1d1f108e8..000000000 --- a/packages/keystatic/src/app/l10n/en-US/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Loading", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/newBranch/index.json b/packages/keystatic/src/app/l10n/en-US/newBranch/index.json deleted file mode 100644 index f8d034fd7..000000000 --- a/packages/keystatic/src/app/l10n/en-US/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "New branch…", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/otherBranches/index.json b/packages/keystatic/src/app/l10n/en-US/otherBranches/index.json deleted file mode 100644 index d96d4f977..000000000 --- a/packages/keystatic/src/app/l10n/en-US/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Other branches", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/pullRequests/index.json b/packages/keystatic/src/app/l10n/en-US/pullRequests/index.json deleted file mode 100644 index 0c359db44..000000000 --- a/packages/keystatic/src/app/l10n/en-US/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Pull requests", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/save/index.json b/packages/keystatic/src/app/l10n/en-US/save/index.json deleted file mode 100644 index e534079c3..000000000 --- a/packages/keystatic/src/app/l10n/en-US/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Save", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/search/index.json b/packages/keystatic/src/app/l10n/en-US/search/index.json deleted file mode 100644 index 6241d714a..000000000 --- a/packages/keystatic/src/app/l10n/en-US/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Search", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/singleton/index.json b/packages/keystatic/src/app/l10n/en-US/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/en-US/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/singletons/index.json b/packages/keystatic/src/app/l10n/en-US/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/en-US/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/en-US/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/en-US/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 44720562f..000000000 --- a/packages/keystatic/src/app/l10n/en-US/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "The currently checked out branch. Choose this if you need to build on existing work from the current branch.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/en-US/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 8f48d9940..000000000 --- a/packages/keystatic/src/app/l10n/en-US/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "The default branch in your repository. Choose this to start something new that's not dependent on your current branch.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/en-US/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/en-US/viewPullRequests/index.json deleted file mode 100644 index c6081bd70..000000000 --- a/packages/keystatic/src/app/l10n/en-US/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "View pull requests", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES.json b/packages/keystatic/src/app/l10n/es-ES.json new file mode 100644 index 000000000..f2c7c9f68 --- /dev/null +++ b/packages/keystatic/src/app/l10n/es-ES.json @@ -0,0 +1,29 @@ +{ + "add": "Agregar", + "basedOn": "Basado en", + "branchName": "Nombre de la rama", + "branches": "Ramas", + "cancel": "Cancelar", + "clear": "Borrar", + "collection": "Colección", + "collections": "Colecciones", + "create": "Crear", + "createPullRequest": "Crear Pull Request", + "currentBranch": "Rama actual", + "dashboard": "Panel", + "defaultBranch": "Rama predeterminada", + "delete": "Borrar", + "deleteBranch": "Eliminar rama", + "edit": "Editar", + "loading": "Cargando", + "newBranch": "Nueva rama", + "otherBranches": "Otras ramas", + "pullRequests": "Pull Requests", + "save": "Guardar", + "search": "Buscar", + "singleton": "Singleton", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "La rama actualmente seleccionada. Elige esto si necesitas continuar trabajando sobre el progreso existente de la rama actual.", + "theDefaultBranchInYourRepository": "La rama predeterminada en tu repositorio. Elige esto para comenzar algo nuevo que no dependa de tu rama actual.", + "viewPullRequests": "Ver Pull Requests" +} diff --git a/packages/keystatic/src/app/l10n/es-ES/add/index.json b/packages/keystatic/src/app/l10n/es-ES/add/index.json deleted file mode 100644 index c7ca65bee..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Agregar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/basedOn/index.json b/packages/keystatic/src/app/l10n/es-ES/basedOn/index.json deleted file mode 100644 index 70a579f14..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Basado en", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/branchName/index.json b/packages/keystatic/src/app/l10n/es-ES/branchName/index.json deleted file mode 100644 index 7bf385cd0..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Nombre de la rama", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/branches/index.json b/packages/keystatic/src/app/l10n/es-ES/branches/index.json deleted file mode 100644 index 7f392b7d2..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Ramas", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/cancel/index.json b/packages/keystatic/src/app/l10n/es-ES/cancel/index.json deleted file mode 100644 index fc7fd884f..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Cancelar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/clear/index.json b/packages/keystatic/src/app/l10n/es-ES/clear/index.json deleted file mode 100644 index e8fc85377..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Borrar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/collection/index.json b/packages/keystatic/src/app/l10n/es-ES/collection/index.json deleted file mode 100644 index 29e8727fd..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Colección", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/collections/index.json b/packages/keystatic/src/app/l10n/es-ES/collections/index.json deleted file mode 100644 index 938fa0fe8..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Colecciones", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/create/index.json b/packages/keystatic/src/app/l10n/es-ES/create/index.json deleted file mode 100644 index c1b7bf095..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Crear", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/createPullRequest/index.json b/packages/keystatic/src/app/l10n/es-ES/createPullRequest/index.json deleted file mode 100644 index 8ecfb645f..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Crear Pull Request", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/currentBranch/index.json b/packages/keystatic/src/app/l10n/es-ES/currentBranch/index.json deleted file mode 100644 index 61c98894e..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Rama actual", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/dashboard/index.json b/packages/keystatic/src/app/l10n/es-ES/dashboard/index.json deleted file mode 100644 index 1212fdbd2..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Panel", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/defaultBranch/index.json b/packages/keystatic/src/app/l10n/es-ES/defaultBranch/index.json deleted file mode 100644 index 6138a171d..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Rama predeterminada", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/delete/index.json b/packages/keystatic/src/app/l10n/es-ES/delete/index.json deleted file mode 100644 index 2077e0f80..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Borrar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/deleteBranch/index.json b/packages/keystatic/src/app/l10n/es-ES/deleteBranch/index.json deleted file mode 100644 index b849f4205..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Eliminar rama", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/edit/index.json b/packages/keystatic/src/app/l10n/es-ES/edit/index.json deleted file mode 100644 index 0d460a026..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Editar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/loading/index.json b/packages/keystatic/src/app/l10n/es-ES/loading/index.json deleted file mode 100644 index fdadf1003..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Cargando", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/newBranch/index.json b/packages/keystatic/src/app/l10n/es-ES/newBranch/index.json deleted file mode 100644 index b382798d8..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nueva rama", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/otherBranches/index.json b/packages/keystatic/src/app/l10n/es-ES/otherBranches/index.json deleted file mode 100644 index 96e05ee57..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Otras ramas", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/pullRequests/index.json b/packages/keystatic/src/app/l10n/es-ES/pullRequests/index.json deleted file mode 100644 index 11e67185d..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Pull Requests", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/save/index.json b/packages/keystatic/src/app/l10n/es-ES/save/index.json deleted file mode 100644 index ac63a28c0..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Guardar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/search/index.json b/packages/keystatic/src/app/l10n/es-ES/search/index.json deleted file mode 100644 index ad18c32a7..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Buscar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/singleton/index.json b/packages/keystatic/src/app/l10n/es-ES/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/singletons/index.json b/packages/keystatic/src/app/l10n/es-ES/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/es-ES/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 9879d4187..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "La rama actualmente seleccionada. Elige esto si necesitas continuar trabajando sobre el progreso existente de la rama actual.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/es-ES/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index a80099b6e..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "La rama predeterminada en tu repositorio. Elige esto para comenzar algo nuevo que no dependa de tu rama actual.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/es-ES/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/es-ES/viewPullRequests/index.json deleted file mode 100644 index fcb235b40..000000000 --- a/packages/keystatic/src/app/l10n/es-ES/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Ver Pull Requests", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE.json b/packages/keystatic/src/app/l10n/et-EE.json new file mode 100644 index 000000000..56212a6a3 --- /dev/null +++ b/packages/keystatic/src/app/l10n/et-EE.json @@ -0,0 +1,29 @@ +{ + "add": "Lisama", + "basedOn": "Põhineb", + "branchName": "Filiaali nimi", + "branches": "Filiaalid", + "cancel": "Tühista", + "clear": "Puhasta", + "collection": "Kollektsioon", + "collections": "Kollektsioonid", + "create": "Loo", + "createPullRequest": "Loo tõmbamistaotlus", + "currentBranch": "Praegune filiaal", + "dashboard": "Armatuurlaud", + "defaultBranch": "Vaikeharu", + "delete": "Kustuta", + "deleteBranch": "Kustuta haru", + "edit": "Muuda", + "loading": "Laadimine", + "newBranch": "Uus filiaal", + "otherBranches": "Muud oksad", + "pullRequests": "Tõmbetaotlused", + "save": "Salvesta", + "search": "Otsi", + "singleton": "üksikud", + "singletons": "Üksikud", + "theCurrentlyCheckedOutBranch": "Praegu välja registreeritud filiaal. Valige see, kui peate kasutama praeguse haru olemasolevaid töid.", + "theDefaultBranchInYourRepository": "Vaikeharu teie hoidlas. Valige see, et alustada midagi uut, mis ei sõltu teie praegusest harust.", + "viewPullRequests": "Vaadake tõmbamistaotlusi" +} diff --git a/packages/keystatic/src/app/l10n/et-EE/add/index.json b/packages/keystatic/src/app/l10n/et-EE/add/index.json deleted file mode 100644 index ac0578a4f..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Lisama", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/basedOn/index.json b/packages/keystatic/src/app/l10n/et-EE/basedOn/index.json deleted file mode 100644 index e34e08c91..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Põhineb", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/branchName/index.json b/packages/keystatic/src/app/l10n/et-EE/branchName/index.json deleted file mode 100644 index ffe9ccf36..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Filiaali nimi", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/branches/index.json b/packages/keystatic/src/app/l10n/et-EE/branches/index.json deleted file mode 100644 index cd178ff7c..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Filiaalid", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/cancel/index.json b/packages/keystatic/src/app/l10n/et-EE/cancel/index.json deleted file mode 100644 index 441dd4ef9..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Tühista", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/clear/index.json b/packages/keystatic/src/app/l10n/et-EE/clear/index.json deleted file mode 100644 index 74eaa54b0..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Puhasta", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/collection/index.json b/packages/keystatic/src/app/l10n/et-EE/collection/index.json deleted file mode 100644 index c18fcd2cf..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Kollektsioon", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/collections/index.json b/packages/keystatic/src/app/l10n/et-EE/collections/index.json deleted file mode 100644 index ec79d512f..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Kollektsioonid", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/create/index.json b/packages/keystatic/src/app/l10n/et-EE/create/index.json deleted file mode 100644 index 4927a283a..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Loo", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/createPullRequest/index.json b/packages/keystatic/src/app/l10n/et-EE/createPullRequest/index.json deleted file mode 100644 index 86d12ea85..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Loo tõmbamistaotlus", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/currentBranch/index.json b/packages/keystatic/src/app/l10n/et-EE/currentBranch/index.json deleted file mode 100644 index 49deb185c..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Praegune filiaal", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/dashboard/index.json b/packages/keystatic/src/app/l10n/et-EE/dashboard/index.json deleted file mode 100644 index baa393ec3..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Armatuurlaud", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/defaultBranch/index.json b/packages/keystatic/src/app/l10n/et-EE/defaultBranch/index.json deleted file mode 100644 index 64204c85d..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Vaikeharu", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/delete/index.json b/packages/keystatic/src/app/l10n/et-EE/delete/index.json deleted file mode 100644 index 804ae6186..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Kustuta", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/deleteBranch/index.json b/packages/keystatic/src/app/l10n/et-EE/deleteBranch/index.json deleted file mode 100644 index fd2f35fc3..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Kustuta haru", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/edit/index.json b/packages/keystatic/src/app/l10n/et-EE/edit/index.json deleted file mode 100644 index f58bc74ea..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Muuda", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/loading/index.json b/packages/keystatic/src/app/l10n/et-EE/loading/index.json deleted file mode 100644 index 6b4a9b906..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Laadimine", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/newBranch/index.json b/packages/keystatic/src/app/l10n/et-EE/newBranch/index.json deleted file mode 100644 index 4a0370844..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Uus filiaal", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/otherBranches/index.json b/packages/keystatic/src/app/l10n/et-EE/otherBranches/index.json deleted file mode 100644 index 119321b34..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Muud oksad", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/pullRequests/index.json b/packages/keystatic/src/app/l10n/et-EE/pullRequests/index.json deleted file mode 100644 index cfb256055..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Tõmbetaotlused", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/save/index.json b/packages/keystatic/src/app/l10n/et-EE/save/index.json deleted file mode 100644 index b963d816d..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Salvesta", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/search/index.json b/packages/keystatic/src/app/l10n/et-EE/search/index.json deleted file mode 100644 index 9b0ec49f6..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Otsi", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/singleton/index.json b/packages/keystatic/src/app/l10n/et-EE/singleton/index.json deleted file mode 100644 index c3f3ee215..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "üksikud", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/singletons/index.json b/packages/keystatic/src/app/l10n/et-EE/singletons/index.json deleted file mode 100644 index 5aee43c59..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Üksikud", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/et-EE/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 9528b0ff5..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Praegu välja registreeritud filiaal. Valige see, kui peate kasutama praeguse haru olemasolevaid töid.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/et-EE/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 50e5d1889..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Vaikeharu teie hoidlas. Valige see, et alustada midagi uut, mis ei sõltu teie praegusest harust.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/et-EE/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/et-EE/viewPullRequests/index.json deleted file mode 100644 index c0bd9b3e3..000000000 --- a/packages/keystatic/src/app/l10n/et-EE/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Vaadake tõmbamistaotlusi", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI.json b/packages/keystatic/src/app/l10n/fi-FI.json new file mode 100644 index 000000000..1c7277268 --- /dev/null +++ b/packages/keystatic/src/app/l10n/fi-FI.json @@ -0,0 +1,29 @@ +{ + "add": "Lisätä", + "basedOn": "Perustuen", + "branchName": "Sivukonttorin nimi", + "branches": "Oksat", + "cancel": "Tühista", + "clear": "Kirkas", + "collection": "Kokoelma", + "collections": "Kokoelmat", + "create": "Luoda", + "createPullRequest": "Luo vetopyyntö", + "currentBranch": "Nykyinen haara", + "dashboard": "Kojelauta", + "defaultBranch": "Oletushaara", + "delete": "Poistaa", + "deleteBranch": "Poista haara", + "edit": "Muokata", + "loading": "Ladataan", + "newBranch": "Uusi haara", + "otherBranches": "Muut haarat", + "pullRequests": "Vedä pyyntöjä", + "save": "Tallentaa", + "search": "Hae", + "singleton": "Singleton", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "Tällä hetkellä uloskirjautunut sivuliike. Valitse tämä, jos haluat rakentaa nykyisen haaran olemassa olevaan työhön.", + "theDefaultBranchInYourRepository": "Oletushaara arkistossasi. Valitse tämä aloittaaksesi jotain uutta, joka ei ole riippuvainen nykyisestä haarastasi.", + "viewPullRequests": "Näytä vetopyynnöt" +} diff --git a/packages/keystatic/src/app/l10n/fi-FI/add/index.json b/packages/keystatic/src/app/l10n/fi-FI/add/index.json deleted file mode 100644 index d69d205af..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Lisätä", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/basedOn/index.json b/packages/keystatic/src/app/l10n/fi-FI/basedOn/index.json deleted file mode 100644 index 438332d29..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Perustuen", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/branchName/index.json b/packages/keystatic/src/app/l10n/fi-FI/branchName/index.json deleted file mode 100644 index fbd7ee17f..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Sivukonttorin nimi", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/branches/index.json b/packages/keystatic/src/app/l10n/fi-FI/branches/index.json deleted file mode 100644 index dee4f3b62..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Oksat", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/cancel/index.json b/packages/keystatic/src/app/l10n/fi-FI/cancel/index.json deleted file mode 100644 index 441dd4ef9..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Tühista", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/clear/index.json b/packages/keystatic/src/app/l10n/fi-FI/clear/index.json deleted file mode 100644 index 1177b8f53..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Kirkas", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/collection/index.json b/packages/keystatic/src/app/l10n/fi-FI/collection/index.json deleted file mode 100644 index 66068e443..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Kokoelma", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/collections/index.json b/packages/keystatic/src/app/l10n/fi-FI/collections/index.json deleted file mode 100644 index 9bf1d8029..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Kokoelmat", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/create/index.json b/packages/keystatic/src/app/l10n/fi-FI/create/index.json deleted file mode 100644 index d906b689f..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Luoda", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/createPullRequest/index.json b/packages/keystatic/src/app/l10n/fi-FI/createPullRequest/index.json deleted file mode 100644 index 5bba69496..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Luo vetopyyntö", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/currentBranch/index.json b/packages/keystatic/src/app/l10n/fi-FI/currentBranch/index.json deleted file mode 100644 index 89037ba9c..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Nykyinen haara", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/dashboard/index.json b/packages/keystatic/src/app/l10n/fi-FI/dashboard/index.json deleted file mode 100644 index f090f1597..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Kojelauta", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/defaultBranch/index.json b/packages/keystatic/src/app/l10n/fi-FI/defaultBranch/index.json deleted file mode 100644 index 709b46414..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Oletushaara", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/delete/index.json b/packages/keystatic/src/app/l10n/fi-FI/delete/index.json deleted file mode 100644 index efcd9e60d..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Poistaa", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/deleteBranch/index.json b/packages/keystatic/src/app/l10n/fi-FI/deleteBranch/index.json deleted file mode 100644 index 0e1fd4803..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Poista haara", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/edit/index.json b/packages/keystatic/src/app/l10n/fi-FI/edit/index.json deleted file mode 100644 index 96e495cdb..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Muokata", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/loading/index.json b/packages/keystatic/src/app/l10n/fi-FI/loading/index.json deleted file mode 100644 index 7880a7fdd..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Ladataan", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/newBranch/index.json b/packages/keystatic/src/app/l10n/fi-FI/newBranch/index.json deleted file mode 100644 index 55f9392eb..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Uusi haara", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/otherBranches/index.json b/packages/keystatic/src/app/l10n/fi-FI/otherBranches/index.json deleted file mode 100644 index 97e3887e8..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Muut haarat", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/pullRequests/index.json b/packages/keystatic/src/app/l10n/fi-FI/pullRequests/index.json deleted file mode 100644 index ddb79382c..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Vedä pyyntöjä", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/save/index.json b/packages/keystatic/src/app/l10n/fi-FI/save/index.json deleted file mode 100644 index 11a7e5114..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Tallentaa", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/search/index.json b/packages/keystatic/src/app/l10n/fi-FI/search/index.json deleted file mode 100644 index 1898b05f2..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Hae", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/singleton/index.json b/packages/keystatic/src/app/l10n/fi-FI/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/singletons/index.json b/packages/keystatic/src/app/l10n/fi-FI/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/fi-FI/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 568cb2719..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Tällä hetkellä uloskirjautunut sivuliike. Valitse tämä, jos haluat rakentaa nykyisen haaran olemassa olevaan työhön.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/fi-FI/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 114910c6f..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Oletushaara arkistossasi. Valitse tämä aloittaaksesi jotain uutta, joka ei ole riippuvainen nykyisestä haarastasi.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fi-FI/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/fi-FI/viewPullRequests/index.json deleted file mode 100644 index 18404eab6..000000000 --- a/packages/keystatic/src/app/l10n/fi-FI/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Näytä vetopyynnöt", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR.json b/packages/keystatic/src/app/l10n/fr-FR.json new file mode 100644 index 000000000..1ffb7a4bd --- /dev/null +++ b/packages/keystatic/src/app/l10n/fr-FR.json @@ -0,0 +1,29 @@ +{ + "add": "Ajouter", + "basedOn": "Basé sur", + "branchName": "Nom de la filiale", + "branches": "Branches", + "cancel": "Annuler", + "clear": "Effacer", + "collection": "Collection", + "collections": "Collections", + "create": "Créer", + "createPullRequest": "Créer une demande d'extraction", + "currentBranch": "Succursale actuelle", + "dashboard": "Tableau de bord", + "defaultBranch": "Branche par défaut", + "delete": "Supprimer", + "deleteBranch": "Supprimer la branche", + "edit": "Modifier", + "loading": "Chargement en cours", + "newBranch": "Nouvelle branche", + "otherBranches": "Autres succursales", + "pullRequests": "Demandes d'extraction", + "save": "Sauvegarder", + "search": "Rechercher", + "singleton": "Singleton", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "La branche actuellement extraite. Choisissez cette option si vous devez vous appuyer sur le travail existant de la branche actuelle.", + "theDefaultBranchInYourRepository": "La branche par défaut de votre référentiel. Choisissez ceci pour commencer quelque chose de nouveau qui ne dépend pas de votre branche actuelle.", + "viewPullRequests": "Afficher les demandes d'extraction" +} diff --git a/packages/keystatic/src/app/l10n/fr-FR/add/index.json b/packages/keystatic/src/app/l10n/fr-FR/add/index.json deleted file mode 100644 index 3bbfc36db..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Ajouter", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/basedOn/index.json b/packages/keystatic/src/app/l10n/fr-FR/basedOn/index.json deleted file mode 100644 index d2d2bdfdd..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Basé sur", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/branchName/index.json b/packages/keystatic/src/app/l10n/fr-FR/branchName/index.json deleted file mode 100644 index 1dec2d593..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Nom de la filiale", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/branches/index.json b/packages/keystatic/src/app/l10n/fr-FR/branches/index.json deleted file mode 100644 index db1a82617..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Branches", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/cancel/index.json b/packages/keystatic/src/app/l10n/fr-FR/cancel/index.json deleted file mode 100644 index ce23e9e27..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Annuler", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/clear/index.json b/packages/keystatic/src/app/l10n/fr-FR/clear/index.json deleted file mode 100644 index ef686b405..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Effacer", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/collection/index.json b/packages/keystatic/src/app/l10n/fr-FR/collection/index.json deleted file mode 100644 index 36aa12faa..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Collection", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/collections/index.json b/packages/keystatic/src/app/l10n/fr-FR/collections/index.json deleted file mode 100644 index dd55a055e..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Collections", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/create/index.json b/packages/keystatic/src/app/l10n/fr-FR/create/index.json deleted file mode 100644 index c60ac2136..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Créer", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/createPullRequest/index.json b/packages/keystatic/src/app/l10n/fr-FR/createPullRequest/index.json deleted file mode 100644 index 594b90f9d..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Créer une demande d'extraction", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/currentBranch/index.json b/packages/keystatic/src/app/l10n/fr-FR/currentBranch/index.json deleted file mode 100644 index 3348e2198..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Succursale actuelle", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/dashboard/index.json b/packages/keystatic/src/app/l10n/fr-FR/dashboard/index.json deleted file mode 100644 index 03cc64af2..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Tableau de bord", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/defaultBranch/index.json b/packages/keystatic/src/app/l10n/fr-FR/defaultBranch/index.json deleted file mode 100644 index 387817f06..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Branche par défaut", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/delete/index.json b/packages/keystatic/src/app/l10n/fr-FR/delete/index.json deleted file mode 100644 index 3c624817a..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Supprimer", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/deleteBranch/index.json b/packages/keystatic/src/app/l10n/fr-FR/deleteBranch/index.json deleted file mode 100644 index 3b389a8be..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Supprimer la branche", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/edit/index.json b/packages/keystatic/src/app/l10n/fr-FR/edit/index.json deleted file mode 100644 index 9f6dfdf7c..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Modifier", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/loading/index.json b/packages/keystatic/src/app/l10n/fr-FR/loading/index.json deleted file mode 100644 index 01e8b7f00..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Chargement en cours", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/newBranch/index.json b/packages/keystatic/src/app/l10n/fr-FR/newBranch/index.json deleted file mode 100644 index 28aa72f14..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nouvelle branche", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/otherBranches/index.json b/packages/keystatic/src/app/l10n/fr-FR/otherBranches/index.json deleted file mode 100644 index 4a2d9b47d..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Autres succursales", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/pullRequests/index.json b/packages/keystatic/src/app/l10n/fr-FR/pullRequests/index.json deleted file mode 100644 index 30a187287..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Demandes d'extraction", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/save/index.json b/packages/keystatic/src/app/l10n/fr-FR/save/index.json deleted file mode 100644 index 61371ce8d..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Sauvegarder", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/search/index.json b/packages/keystatic/src/app/l10n/fr-FR/search/index.json deleted file mode 100644 index 50b9f82fd..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Rechercher", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/singleton/index.json b/packages/keystatic/src/app/l10n/fr-FR/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/singletons/index.json b/packages/keystatic/src/app/l10n/fr-FR/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/fr-FR/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index d2a1c9e0b..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "La branche actuellement extraite. Choisissez cette option si vous devez vous appuyer sur le travail existant de la branche actuelle.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/fr-FR/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 820d8b1b7..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "La branche par défaut de votre référentiel. Choisissez ceci pour commencer quelque chose de nouveau qui ne dépend pas de votre branche actuelle.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/fr-FR/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/fr-FR/viewPullRequests/index.json deleted file mode 100644 index d1727dea4..000000000 --- a/packages/keystatic/src/app/l10n/fr-FR/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Afficher les demandes d'extraction", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL.json b/packages/keystatic/src/app/l10n/he-IL.json new file mode 100644 index 000000000..b0b92698c --- /dev/null +++ b/packages/keystatic/src/app/l10n/he-IL.json @@ -0,0 +1,29 @@ +{ + "add": "לְהוֹסִיף", + "basedOn": "מבוסס על", + "branchName": "שם הסניף", + "branches": "ענפים", + "cancel": "לְבַטֵל", + "clear": "נקי", + "collection": "אוסף", + "collections": "אוספים", + "create": "לִיצוֹר", + "createPullRequest": "צור בקשת משיכה", + "currentBranch": "סניף נוכחי", + "dashboard": "לוּחַ מַחווָנִים", + "defaultBranch": "סניף ברירת מחדל", + "delete": "לִמְחוֹק", + "deleteBranch": "מחק סניף", + "edit": "לַעֲרוֹך", + "loading": "טוען", + "newBranch": "סניף חדש", + "otherBranches": "סניפים אחרים", + "pullRequests": "משוך בקשות", + "save": "להציל", + "search": "חפש", + "singleton": "קְלָף בּוֹדֵד", + "singletons": "רווקים", + "theCurrentlyCheckedOutBranch": "הסניף שנקבע כעת. בחר באפשרות זו אם אתה צריך לבנות על עבודה קיימת מהסניף הנוכחי.", + "theDefaultBranchInYourRepository": "סניף ברירת המחדל במאגר שלך. בחר באפשרות זו כדי להתחיל משהו חדש שאינו תלוי בסניף הנוכחי שלך.", + "viewPullRequests": "הצג בקשות משיכה" +} diff --git a/packages/keystatic/src/app/l10n/he-IL/add/index.json b/packages/keystatic/src/app/l10n/he-IL/add/index.json deleted file mode 100644 index 4aa89a942..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "לְהוֹסִיף", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/basedOn/index.json b/packages/keystatic/src/app/l10n/he-IL/basedOn/index.json deleted file mode 100644 index c68996dd8..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "מבוסס על", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/branchName/index.json b/packages/keystatic/src/app/l10n/he-IL/branchName/index.json deleted file mode 100644 index 56d051767..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "שם הסניף", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/branches/index.json b/packages/keystatic/src/app/l10n/he-IL/branches/index.json deleted file mode 100644 index 2c5b6da28..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "ענפים", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/cancel/index.json b/packages/keystatic/src/app/l10n/he-IL/cancel/index.json deleted file mode 100644 index 1f617eab9..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "לְבַטֵל", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/clear/index.json b/packages/keystatic/src/app/l10n/he-IL/clear/index.json deleted file mode 100644 index 98633e8fa..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "נקי", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/collection/index.json b/packages/keystatic/src/app/l10n/he-IL/collection/index.json deleted file mode 100644 index a3ad79f43..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "אוסף", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/collections/index.json b/packages/keystatic/src/app/l10n/he-IL/collections/index.json deleted file mode 100644 index 30a3bc9c7..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "אוספים", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/create/index.json b/packages/keystatic/src/app/l10n/he-IL/create/index.json deleted file mode 100644 index 85ccb6e94..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "לִיצוֹר", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/createPullRequest/index.json b/packages/keystatic/src/app/l10n/he-IL/createPullRequest/index.json deleted file mode 100644 index 7dda7bb58..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "צור בקשת משיכה", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/currentBranch/index.json b/packages/keystatic/src/app/l10n/he-IL/currentBranch/index.json deleted file mode 100644 index e255b2cc3..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "סניף נוכחי", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/dashboard/index.json b/packages/keystatic/src/app/l10n/he-IL/dashboard/index.json deleted file mode 100644 index b32553000..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "לוּחַ מַחווָנִים", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/defaultBranch/index.json b/packages/keystatic/src/app/l10n/he-IL/defaultBranch/index.json deleted file mode 100644 index 1540832f1..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "סניף ברירת מחדל", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/delete/index.json b/packages/keystatic/src/app/l10n/he-IL/delete/index.json deleted file mode 100644 index 1c8ebd306..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "לִמְחוֹק", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/deleteBranch/index.json b/packages/keystatic/src/app/l10n/he-IL/deleteBranch/index.json deleted file mode 100644 index 2546ebe53..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "מחק סניף", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/edit/index.json b/packages/keystatic/src/app/l10n/he-IL/edit/index.json deleted file mode 100644 index 0587c3198..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "לַעֲרוֹך", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/loading/index.json b/packages/keystatic/src/app/l10n/he-IL/loading/index.json deleted file mode 100644 index 2d1d32358..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "טוען", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/newBranch/index.json b/packages/keystatic/src/app/l10n/he-IL/newBranch/index.json deleted file mode 100644 index 0608e4718..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "סניף חדש", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/otherBranches/index.json b/packages/keystatic/src/app/l10n/he-IL/otherBranches/index.json deleted file mode 100644 index 1b9db9cc7..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "סניפים אחרים", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/pullRequests/index.json b/packages/keystatic/src/app/l10n/he-IL/pullRequests/index.json deleted file mode 100644 index 803c49fd6..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "משוך בקשות", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/save/index.json b/packages/keystatic/src/app/l10n/he-IL/save/index.json deleted file mode 100644 index 4c1515384..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "להציל", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/search/index.json b/packages/keystatic/src/app/l10n/he-IL/search/index.json deleted file mode 100644 index 675e58791..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "חפש", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/singleton/index.json b/packages/keystatic/src/app/l10n/he-IL/singleton/index.json deleted file mode 100644 index 26505fa38..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "קְלָף בּוֹדֵד", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/singletons/index.json b/packages/keystatic/src/app/l10n/he-IL/singletons/index.json deleted file mode 100644 index ecdb196b6..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "רווקים", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/he-IL/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 8836e6b96..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "הסניף שנקבע כעת. בחר באפשרות זו אם אתה צריך לבנות על עבודה קיימת מהסניף הנוכחי.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/he-IL/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 93b8b7d2c..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "סניף ברירת המחדל במאגר שלך. בחר באפשרות זו כדי להתחיל משהו חדש שאינו תלוי בסניף הנוכחי שלך.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/he-IL/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/he-IL/viewPullRequests/index.json deleted file mode 100644 index ce1de7f6d..000000000 --- a/packages/keystatic/src/app/l10n/he-IL/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "הצג בקשות משיכה", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR.json b/packages/keystatic/src/app/l10n/hr-HR.json new file mode 100644 index 000000000..9a831d47e --- /dev/null +++ b/packages/keystatic/src/app/l10n/hr-HR.json @@ -0,0 +1,29 @@ +{ + "add": "Dodati", + "basedOn": "Na temelju", + "branchName": "Naziv podružnice", + "branches": "Podružnice", + "cancel": "Otkazati", + "clear": "Izbriši", + "collection": "Kolekcija", + "collections": "Zbirke", + "create": "Stvoriti", + "createPullRequest": "Kreirajte zahtjev za povlačenjem", + "currentBranch": "Trenutna grana", + "dashboard": "Nadzorna ploča", + "defaultBranch": "Zadana grana", + "delete": "Izbrisati", + "deleteBranch": "Izbriši granu", + "edit": "Uredi", + "loading": "Učitavam", + "newBranch": "Nova grana", + "otherBranches": "Ostale grane", + "pullRequests": "Zahtjevi za povlačenjem", + "save": "Uštedjeti", + "search": "Traži", + "singleton": "samac", + "singletons": "Samci", + "theCurrentlyCheckedOutBranch": "Trenutno odjavljena poslovnica. Odaberite ovo ako trebate graditi na postojećem radu iz trenutne grane.", + "theDefaultBranchInYourRepository": "Zadana grana u vašem spremištu. Odaberite ovo da započnete nešto novo što ne ovisi o vašoj trenutnoj grani.", + "viewPullRequests": "Pregledajte zahtjeve za povlačenjem" +} diff --git a/packages/keystatic/src/app/l10n/hr-HR/add/index.json b/packages/keystatic/src/app/l10n/hr-HR/add/index.json deleted file mode 100644 index 217ed055a..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Dodati", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/basedOn/index.json b/packages/keystatic/src/app/l10n/hr-HR/basedOn/index.json deleted file mode 100644 index 1724c698f..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Na temelju", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/branchName/index.json b/packages/keystatic/src/app/l10n/hr-HR/branchName/index.json deleted file mode 100644 index fb1dcf098..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Naziv podružnice", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/branches/index.json b/packages/keystatic/src/app/l10n/hr-HR/branches/index.json deleted file mode 100644 index b4b95e950..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Podružnice", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/cancel/index.json b/packages/keystatic/src/app/l10n/hr-HR/cancel/index.json deleted file mode 100644 index 9481c0719..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Otkazati", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/clear/index.json b/packages/keystatic/src/app/l10n/hr-HR/clear/index.json deleted file mode 100644 index 34371ebf8..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Izbriši", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/collection/index.json b/packages/keystatic/src/app/l10n/hr-HR/collection/index.json deleted file mode 100644 index 6c6f14e57..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Kolekcija", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/collections/index.json b/packages/keystatic/src/app/l10n/hr-HR/collections/index.json deleted file mode 100644 index 34a221599..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Zbirke", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/create/index.json b/packages/keystatic/src/app/l10n/hr-HR/create/index.json deleted file mode 100644 index 295b3639a..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Stvoriti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/createPullRequest/index.json b/packages/keystatic/src/app/l10n/hr-HR/createPullRequest/index.json deleted file mode 100644 index e50325629..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Kreirajte zahtjev za povlačenjem", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/currentBranch/index.json b/packages/keystatic/src/app/l10n/hr-HR/currentBranch/index.json deleted file mode 100644 index 521e1a9bf..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Trenutna grana", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/dashboard/index.json b/packages/keystatic/src/app/l10n/hr-HR/dashboard/index.json deleted file mode 100644 index 7cab5c6b2..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Nadzorna ploča", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/defaultBranch/index.json b/packages/keystatic/src/app/l10n/hr-HR/defaultBranch/index.json deleted file mode 100644 index abf696b3e..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Zadana grana", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/delete/index.json b/packages/keystatic/src/app/l10n/hr-HR/delete/index.json deleted file mode 100644 index ef0b8827e..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Izbrisati", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/deleteBranch/index.json b/packages/keystatic/src/app/l10n/hr-HR/deleteBranch/index.json deleted file mode 100644 index ebbbd15e8..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Izbriši granu", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/edit/index.json b/packages/keystatic/src/app/l10n/hr-HR/edit/index.json deleted file mode 100644 index 8c41e5b41..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Uredi", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/loading/index.json b/packages/keystatic/src/app/l10n/hr-HR/loading/index.json deleted file mode 100644 index 0b94d84ef..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Učitavam", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/newBranch/index.json b/packages/keystatic/src/app/l10n/hr-HR/newBranch/index.json deleted file mode 100644 index 3f9d0b97a..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nova grana", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/otherBranches/index.json b/packages/keystatic/src/app/l10n/hr-HR/otherBranches/index.json deleted file mode 100644 index 02d21c6ef..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Ostale grane", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/pullRequests/index.json b/packages/keystatic/src/app/l10n/hr-HR/pullRequests/index.json deleted file mode 100644 index a0080a2c6..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Zahtjevi za povlačenjem", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/save/index.json b/packages/keystatic/src/app/l10n/hr-HR/save/index.json deleted file mode 100644 index de34f7f61..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Uštedjeti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/search/index.json b/packages/keystatic/src/app/l10n/hr-HR/search/index.json deleted file mode 100644 index 51600b5f2..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Traži", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/singleton/index.json b/packages/keystatic/src/app/l10n/hr-HR/singleton/index.json deleted file mode 100644 index 581c9989f..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "samac", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/singletons/index.json b/packages/keystatic/src/app/l10n/hr-HR/singletons/index.json deleted file mode 100644 index 145e46de2..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Samci", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/hr-HR/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 6e3e0a5eb..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Trenutno odjavljena poslovnica. Odaberite ovo ako trebate graditi na postojećem radu iz trenutne grane.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/hr-HR/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 06ef6fe9e..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Zadana grana u vašem spremištu. Odaberite ovo da započnete nešto novo što ne ovisi o vašoj trenutnoj grani.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hr-HR/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/hr-HR/viewPullRequests/index.json deleted file mode 100644 index ba55ce036..000000000 --- a/packages/keystatic/src/app/l10n/hr-HR/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Pregledajte zahtjeve za povlačenjem", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU.json b/packages/keystatic/src/app/l10n/hu-HU.json new file mode 100644 index 000000000..e00764f4e --- /dev/null +++ b/packages/keystatic/src/app/l10n/hu-HU.json @@ -0,0 +1,29 @@ +{ + "add": "Hozzáadás", + "basedOn": "Alapján", + "branchName": "Fiók neve", + "branches": "Ágak", + "cancel": "Megszünteti", + "clear": "Törlés", + "collection": "Gyűjtemény", + "collections": "Gyűjtemények", + "create": "Teremt", + "createPullRequest": "Lehívási kérelem létrehozása", + "currentBranch": "Jelenlegi ág", + "dashboard": "Irányítópult", + "defaultBranch": "Alapértelmezett ág", + "delete": "Töröl", + "deleteBranch": "Elágazás törlése", + "edit": "Szerkesztés", + "loading": "Betöltés folyamatban", + "newBranch": "Új ág", + "otherBranches": "Egyéb ágak", + "pullRequests": "Lehívási kérések", + "save": "Megment", + "search": "Keresés", + "singleton": "szingli", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "A jelenleg kivett fiók. Válassza ezt, ha az aktuális ág meglévő munkájára kell építenie.", + "theDefaultBranchInYourRepository": "Az alapértelmezett ág az adattárban. Válassza ezt, ha valami újat szeretne indítani, amely nem függ az aktuális ágtól.", + "viewPullRequests": "Lehívási kérelmek megtekintése" +} diff --git a/packages/keystatic/src/app/l10n/hu-HU/add/index.json b/packages/keystatic/src/app/l10n/hu-HU/add/index.json deleted file mode 100644 index 67f7425a9..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Hozzáadás", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/basedOn/index.json b/packages/keystatic/src/app/l10n/hu-HU/basedOn/index.json deleted file mode 100644 index 5ca187fe2..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Alapján", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/branchName/index.json b/packages/keystatic/src/app/l10n/hu-HU/branchName/index.json deleted file mode 100644 index 855806abd..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Fiók neve", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/branches/index.json b/packages/keystatic/src/app/l10n/hu-HU/branches/index.json deleted file mode 100644 index 68d85ff27..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Ágak", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/cancel/index.json b/packages/keystatic/src/app/l10n/hu-HU/cancel/index.json deleted file mode 100644 index 7b58cf1bd..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Megszünteti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/clear/index.json b/packages/keystatic/src/app/l10n/hu-HU/clear/index.json deleted file mode 100644 index 198996161..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Törlés", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/collection/index.json b/packages/keystatic/src/app/l10n/hu-HU/collection/index.json deleted file mode 100644 index 3cc15983a..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Gyűjtemény", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/collections/index.json b/packages/keystatic/src/app/l10n/hu-HU/collections/index.json deleted file mode 100644 index 412360f7c..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Gyűjtemények", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/create/index.json b/packages/keystatic/src/app/l10n/hu-HU/create/index.json deleted file mode 100644 index facd93005..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Teremt", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/createPullRequest/index.json b/packages/keystatic/src/app/l10n/hu-HU/createPullRequest/index.json deleted file mode 100644 index 774477367..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Lehívási kérelem létrehozása", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/currentBranch/index.json b/packages/keystatic/src/app/l10n/hu-HU/currentBranch/index.json deleted file mode 100644 index 07de5144c..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Jelenlegi ág", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/dashboard/index.json b/packages/keystatic/src/app/l10n/hu-HU/dashboard/index.json deleted file mode 100644 index 44ca3a3aa..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Irányítópult", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/defaultBranch/index.json b/packages/keystatic/src/app/l10n/hu-HU/defaultBranch/index.json deleted file mode 100644 index bb3cd7592..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Alapértelmezett ág", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/delete/index.json b/packages/keystatic/src/app/l10n/hu-HU/delete/index.json deleted file mode 100644 index ee52ac611..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Töröl", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/deleteBranch/index.json b/packages/keystatic/src/app/l10n/hu-HU/deleteBranch/index.json deleted file mode 100644 index 1d7229055..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Elágazás törlése", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/edit/index.json b/packages/keystatic/src/app/l10n/hu-HU/edit/index.json deleted file mode 100644 index 597b2ff01..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Szerkesztés", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/loading/index.json b/packages/keystatic/src/app/l10n/hu-HU/loading/index.json deleted file mode 100644 index c27d776c8..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Betöltés folyamatban", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/newBranch/index.json b/packages/keystatic/src/app/l10n/hu-HU/newBranch/index.json deleted file mode 100644 index 5937dbccd..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Új ág", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/otherBranches/index.json b/packages/keystatic/src/app/l10n/hu-HU/otherBranches/index.json deleted file mode 100644 index 978487bb8..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Egyéb ágak", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/pullRequests/index.json b/packages/keystatic/src/app/l10n/hu-HU/pullRequests/index.json deleted file mode 100644 index f9a3bec1e..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Lehívási kérések", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/save/index.json b/packages/keystatic/src/app/l10n/hu-HU/save/index.json deleted file mode 100644 index eef49d7e8..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Megment", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/search/index.json b/packages/keystatic/src/app/l10n/hu-HU/search/index.json deleted file mode 100644 index fda1641d7..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Keresés", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/singleton/index.json b/packages/keystatic/src/app/l10n/hu-HU/singleton/index.json deleted file mode 100644 index 33c1c4021..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "szingli", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/singletons/index.json b/packages/keystatic/src/app/l10n/hu-HU/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/hu-HU/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 92457c3dc..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "A jelenleg kivett fiók. Válassza ezt, ha az aktuális ág meglévő munkájára kell építenie.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/hu-HU/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 12341012e..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Az alapértelmezett ág az adattárban. Válassza ezt, ha valami újat szeretne indítani, amely nem függ az aktuális ágtól.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/hu-HU/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/hu-HU/viewPullRequests/index.json deleted file mode 100644 index 6173e84d4..000000000 --- a/packages/keystatic/src/app/l10n/hu-HU/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Lehívási kérelmek megtekintése", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT.json b/packages/keystatic/src/app/l10n/it-IT.json new file mode 100644 index 000000000..86a29f340 --- /dev/null +++ b/packages/keystatic/src/app/l10n/it-IT.json @@ -0,0 +1,29 @@ +{ + "add": "Aggiungere", + "basedOn": "Basato su", + "branchName": "Nome ramo", + "branches": "Rami", + "cancel": "Annulla", + "clear": "Cancella", + "collection": "Collezione", + "collections": "Collezioni", + "create": "Creare", + "createPullRequest": "Crea richiesta pull", + "currentBranch": "Ramo attuale", + "dashboard": "Pannello di controllo", + "defaultBranch": "Ramo predefinito", + "delete": "Eliminare", + "deleteBranch": "Elimina ramo", + "edit": "Modificare", + "loading": "Caricamento in corso", + "newBranch": "Nuova filiale", + "otherBranches": "Altri rami", + "pullRequests": "Richieste pull", + "save": "Salva", + "search": "Cerca", + "singleton": "Singleton", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "La filiale attualmente verificata. Scegli questa opzione se devi basarti su un lavoro esistente dal ramo corrente.", + "theDefaultBranchInYourRepository": "Il ramo predefinito nel tuo repository. Scegli questa opzione per iniziare qualcosa di nuovo che non dipenda dal tuo ramo attuale.", + "viewPullRequests": "Visualizza le richieste pull" +} diff --git a/packages/keystatic/src/app/l10n/it-IT/add/index.json b/packages/keystatic/src/app/l10n/it-IT/add/index.json deleted file mode 100644 index 2f4297120..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Aggiungere", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/basedOn/index.json b/packages/keystatic/src/app/l10n/it-IT/basedOn/index.json deleted file mode 100644 index e64d491ef..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Basato su", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/branchName/index.json b/packages/keystatic/src/app/l10n/it-IT/branchName/index.json deleted file mode 100644 index d3bcebbab..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Nome ramo", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/branches/index.json b/packages/keystatic/src/app/l10n/it-IT/branches/index.json deleted file mode 100644 index 714f4dc2f..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Rami", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/cancel/index.json b/packages/keystatic/src/app/l10n/it-IT/cancel/index.json deleted file mode 100644 index 7c63e165f..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Annulla", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/clear/index.json b/packages/keystatic/src/app/l10n/it-IT/clear/index.json deleted file mode 100644 index 65e274f45..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Cancella", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/collection/index.json b/packages/keystatic/src/app/l10n/it-IT/collection/index.json deleted file mode 100644 index f36b482f0..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Collezione", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/collections/index.json b/packages/keystatic/src/app/l10n/it-IT/collections/index.json deleted file mode 100644 index a2e6f767c..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Collezioni", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/create/index.json b/packages/keystatic/src/app/l10n/it-IT/create/index.json deleted file mode 100644 index 5229b3266..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Creare", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/createPullRequest/index.json b/packages/keystatic/src/app/l10n/it-IT/createPullRequest/index.json deleted file mode 100644 index 9694032a5..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Crea richiesta pull", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/currentBranch/index.json b/packages/keystatic/src/app/l10n/it-IT/currentBranch/index.json deleted file mode 100644 index a8b4e1c8d..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Ramo attuale", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/dashboard/index.json b/packages/keystatic/src/app/l10n/it-IT/dashboard/index.json deleted file mode 100644 index 59d25f4d0..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Pannello di controllo", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/defaultBranch/index.json b/packages/keystatic/src/app/l10n/it-IT/defaultBranch/index.json deleted file mode 100644 index 79e25fb57..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Ramo predefinito", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/delete/index.json b/packages/keystatic/src/app/l10n/it-IT/delete/index.json deleted file mode 100644 index db7f25849..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Eliminare", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/deleteBranch/index.json b/packages/keystatic/src/app/l10n/it-IT/deleteBranch/index.json deleted file mode 100644 index 40f0e9223..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Elimina ramo", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/edit/index.json b/packages/keystatic/src/app/l10n/it-IT/edit/index.json deleted file mode 100644 index 99b1426a7..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Modificare", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/loading/index.json b/packages/keystatic/src/app/l10n/it-IT/loading/index.json deleted file mode 100644 index e29539631..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Caricamento in corso", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/newBranch/index.json b/packages/keystatic/src/app/l10n/it-IT/newBranch/index.json deleted file mode 100644 index 5c0ff00b9..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nuova filiale", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/otherBranches/index.json b/packages/keystatic/src/app/l10n/it-IT/otherBranches/index.json deleted file mode 100644 index e3facdcc4..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Altri rami", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/pullRequests/index.json b/packages/keystatic/src/app/l10n/it-IT/pullRequests/index.json deleted file mode 100644 index 83b42c5d1..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Richieste pull", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/save/index.json b/packages/keystatic/src/app/l10n/it-IT/save/index.json deleted file mode 100644 index 5cc96ecda..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Salva", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/search/index.json b/packages/keystatic/src/app/l10n/it-IT/search/index.json deleted file mode 100644 index da73a80ca..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Cerca", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/singleton/index.json b/packages/keystatic/src/app/l10n/it-IT/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/singletons/index.json b/packages/keystatic/src/app/l10n/it-IT/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/it-IT/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 93dc030a0..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "La filiale attualmente verificata. Scegli questa opzione se devi basarti su un lavoro esistente dal ramo corrente.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/it-IT/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 98c43ba69..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Il ramo predefinito nel tuo repository. Scegli questa opzione per iniziare qualcosa di nuovo che non dipenda dal tuo ramo attuale.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/it-IT/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/it-IT/viewPullRequests/index.json deleted file mode 100644 index ebf98342f..000000000 --- a/packages/keystatic/src/app/l10n/it-IT/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Visualizza le richieste pull", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP.json b/packages/keystatic/src/app/l10n/ja-JP.json new file mode 100644 index 000000000..fdc376702 --- /dev/null +++ b/packages/keystatic/src/app/l10n/ja-JP.json @@ -0,0 +1,29 @@ +{ + "add": "追加", + "basedOn": "に基づく", + "branchName": "支店名", + "branches": "支店", + "cancel": "キャンセル", + "clear": "クリア", + "collection": "コレクション", + "collections": "コレクション", + "create": "作成", + "createPullRequest": "プルリクエストを作成", + "currentBranch": "現在のブランチ", + "dashboard": "ダッシュボード", + "defaultBranch": "デフォルトのブランチ", + "delete": "消去", + "deleteBranch": "ブランチを削除", + "edit": "編集", + "loading": "読み込み中", + "newBranch": "新しい支店", + "otherBranches": "その他の支店", + "pullRequests": "プルリクエスト", + "save": "保存", + "search": "検索", + "singleton": "シングルトン", + "singletons": "シングルトン", + "theCurrentlyCheckedOutBranch": "現在チェックアウトされているブランチ。 現在のブランチの既存の作業に基づいて構築する必要がある場合は、これを選択してください。", + "theDefaultBranchInYourRepository": "リポジトリのデフォルト ブランチ。 これを選択して、現在のブランチに依存しない新しい何かを開始します。", + "viewPullRequests": "プル リクエストを表示" +} diff --git a/packages/keystatic/src/app/l10n/ja-JP/add/index.json b/packages/keystatic/src/app/l10n/ja-JP/add/index.json deleted file mode 100644 index ecb252af4..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "追加", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/basedOn/index.json b/packages/keystatic/src/app/l10n/ja-JP/basedOn/index.json deleted file mode 100644 index bc5262d01..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "に基づく", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/branchName/index.json b/packages/keystatic/src/app/l10n/ja-JP/branchName/index.json deleted file mode 100644 index 49aefb4a3..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "支店名", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/branches/index.json b/packages/keystatic/src/app/l10n/ja-JP/branches/index.json deleted file mode 100644 index e7092cfef..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "支店", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/cancel/index.json b/packages/keystatic/src/app/l10n/ja-JP/cancel/index.json deleted file mode 100644 index 86a79a721..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "キャンセル", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/clear/index.json b/packages/keystatic/src/app/l10n/ja-JP/clear/index.json deleted file mode 100644 index 67eca5464..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "クリア", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/collection/index.json b/packages/keystatic/src/app/l10n/ja-JP/collection/index.json deleted file mode 100644 index 698f593b8..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "コレクション", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/collections/index.json b/packages/keystatic/src/app/l10n/ja-JP/collections/index.json deleted file mode 100644 index b0fae0bef..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "コレクション", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/create/index.json b/packages/keystatic/src/app/l10n/ja-JP/create/index.json deleted file mode 100644 index 6ec646031..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "作成", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/createPullRequest/index.json b/packages/keystatic/src/app/l10n/ja-JP/createPullRequest/index.json deleted file mode 100644 index bf9acfc72..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "プルリクエストを作成", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/currentBranch/index.json b/packages/keystatic/src/app/l10n/ja-JP/currentBranch/index.json deleted file mode 100644 index cd4e86580..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "現在のブランチ", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/dashboard/index.json b/packages/keystatic/src/app/l10n/ja-JP/dashboard/index.json deleted file mode 100644 index 5d5335c7d..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "ダッシュボード", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/defaultBranch/index.json b/packages/keystatic/src/app/l10n/ja-JP/defaultBranch/index.json deleted file mode 100644 index edc44abaf..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "デフォルトのブランチ", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/delete/index.json b/packages/keystatic/src/app/l10n/ja-JP/delete/index.json deleted file mode 100644 index 6e207c617..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "消去", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/deleteBranch/index.json b/packages/keystatic/src/app/l10n/ja-JP/deleteBranch/index.json deleted file mode 100644 index 9081dcee8..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "ブランチを削除", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/edit/index.json b/packages/keystatic/src/app/l10n/ja-JP/edit/index.json deleted file mode 100644 index 215f3f915..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "編集", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/loading/index.json b/packages/keystatic/src/app/l10n/ja-JP/loading/index.json deleted file mode 100644 index db6461920..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "読み込み中", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/newBranch/index.json b/packages/keystatic/src/app/l10n/ja-JP/newBranch/index.json deleted file mode 100644 index 7783c4025..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "新しい支店", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/otherBranches/index.json b/packages/keystatic/src/app/l10n/ja-JP/otherBranches/index.json deleted file mode 100644 index 15cdd54e1..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "その他の支店", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/pullRequests/index.json b/packages/keystatic/src/app/l10n/ja-JP/pullRequests/index.json deleted file mode 100644 index d442a9a8a..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "プルリクエスト", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/save/index.json b/packages/keystatic/src/app/l10n/ja-JP/save/index.json deleted file mode 100644 index e50adc200..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "保存", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/search/index.json b/packages/keystatic/src/app/l10n/ja-JP/search/index.json deleted file mode 100644 index 68f729466..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "検索", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/singleton/index.json b/packages/keystatic/src/app/l10n/ja-JP/singleton/index.json deleted file mode 100644 index ed88215e1..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "シングルトン", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/singletons/index.json b/packages/keystatic/src/app/l10n/ja-JP/singletons/index.json deleted file mode 100644 index 3ff63ae71..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "シングルトン", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/ja-JP/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index d76554f95..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "現在チェックアウトされているブランチ。 現在のブランチの既存の作業に基づいて構築する必要がある場合は、これを選択してください。", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/ja-JP/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 7751b00c5..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "リポジトリのデフォルト ブランチ。 これを選択して、現在のブランチに依存しない新しい何かを開始します。", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ja-JP/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/ja-JP/viewPullRequests/index.json deleted file mode 100644 index 5a9d717d0..000000000 --- a/packages/keystatic/src/app/l10n/ja-JP/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "プル リクエストを表示", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR.json b/packages/keystatic/src/app/l10n/ko-KR.json new file mode 100644 index 000000000..6608da3aa --- /dev/null +++ b/packages/keystatic/src/app/l10n/ko-KR.json @@ -0,0 +1,29 @@ +{ + "add": "추가", + "basedOn": "기준 브랜치", + "branchName": "브랜치 이름", + "branches": "브랜치", + "cancel": "취소", + "clear": "지우기", + "collection": "컬렉션", + "collections": "컬렉션", + "create": "생성", + "createPullRequest": "Pull Request 생성", + "currentBranch": "현재 브랜치", + "dashboard": "대시보드", + "defaultBranch": "기본 브랜치", + "delete": "삭제", + "deleteBranch": "브랜치 삭제", + "edit": "편집", + "loading": "로딩 중", + "newBranch": "새 브랜치", + "otherBranches": "기타 브랜치", + "pullRequests": "Pull Request", + "save": "저장", + "search": "검색", + "singleton": "싱글톤", + "singletons": "싱글톤", + "theCurrentlyCheckedOutBranch": "현재 작업 중인 브랜치입니다. 현재 브랜치의 변경 사항을 기반으로 새 브랜치를 만들 때 선택하세요.", + "theDefaultBranchInYourRepository": "리포지토리의 기본 브랜치입니다. 기존 작업과 무관한 새 브랜치를 만들 때 선택하세요.", + "viewPullRequests": "Pull Request 보기" +} diff --git a/packages/keystatic/src/app/l10n/ko-KR/add/index.json b/packages/keystatic/src/app/l10n/ko-KR/add/index.json deleted file mode 100644 index 71a0ec93c..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "추가", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/basedOn/index.json b/packages/keystatic/src/app/l10n/ko-KR/basedOn/index.json deleted file mode 100644 index b9dad5007..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "기준 브랜치", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/branchName/index.json b/packages/keystatic/src/app/l10n/ko-KR/branchName/index.json deleted file mode 100644 index 82ae6ab81..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "브랜치 이름", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/branches/index.json b/packages/keystatic/src/app/l10n/ko-KR/branches/index.json deleted file mode 100644 index 974c8db3b..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "브랜치", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/cancel/index.json b/packages/keystatic/src/app/l10n/ko-KR/cancel/index.json deleted file mode 100644 index 486361f80..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "취소", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/clear/index.json b/packages/keystatic/src/app/l10n/ko-KR/clear/index.json deleted file mode 100644 index 59d50071d..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "지우기", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/collection/index.json b/packages/keystatic/src/app/l10n/ko-KR/collection/index.json deleted file mode 100644 index 1073d5200..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "컬렉션", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/collections/index.json b/packages/keystatic/src/app/l10n/ko-KR/collections/index.json deleted file mode 100644 index 0416695f6..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "컬렉션", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/create/index.json b/packages/keystatic/src/app/l10n/ko-KR/create/index.json deleted file mode 100644 index b4ae9d6b2..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "생성", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/createPullRequest/index.json b/packages/keystatic/src/app/l10n/ko-KR/createPullRequest/index.json deleted file mode 100644 index e96431c10..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Pull Request 생성", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/currentBranch/index.json b/packages/keystatic/src/app/l10n/ko-KR/currentBranch/index.json deleted file mode 100644 index 352e6c9a5..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "현재 브랜치", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/dashboard/index.json b/packages/keystatic/src/app/l10n/ko-KR/dashboard/index.json deleted file mode 100644 index 790d5e2ea..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "대시보드", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/defaultBranch/index.json b/packages/keystatic/src/app/l10n/ko-KR/defaultBranch/index.json deleted file mode 100644 index 2a9cf30d2..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "기본 브랜치", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/delete/index.json b/packages/keystatic/src/app/l10n/ko-KR/delete/index.json deleted file mode 100644 index c885f3caf..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "삭제", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/deleteBranch/index.json b/packages/keystatic/src/app/l10n/ko-KR/deleteBranch/index.json deleted file mode 100644 index 9ae5775ef..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "브랜치 삭제", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/edit/index.json b/packages/keystatic/src/app/l10n/ko-KR/edit/index.json deleted file mode 100644 index 7171c497a..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "편집", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/loading/index.json b/packages/keystatic/src/app/l10n/ko-KR/loading/index.json deleted file mode 100644 index acec1d8f4..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "로딩 중", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/newBranch/index.json b/packages/keystatic/src/app/l10n/ko-KR/newBranch/index.json deleted file mode 100644 index e4430eacf..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "새 브랜치", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/otherBranches/index.json b/packages/keystatic/src/app/l10n/ko-KR/otherBranches/index.json deleted file mode 100644 index 9cd6e4616..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "기타 브랜치", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/pullRequests/index.json b/packages/keystatic/src/app/l10n/ko-KR/pullRequests/index.json deleted file mode 100644 index a896994ea..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Pull Request", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/save/index.json b/packages/keystatic/src/app/l10n/ko-KR/save/index.json deleted file mode 100644 index 26ca045e2..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "저장", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/search/index.json b/packages/keystatic/src/app/l10n/ko-KR/search/index.json deleted file mode 100644 index 44fcc41df..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "검색", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/singleton/index.json b/packages/keystatic/src/app/l10n/ko-KR/singleton/index.json deleted file mode 100644 index d53e3ca32..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "싱글톤", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/singletons/index.json b/packages/keystatic/src/app/l10n/ko-KR/singletons/index.json deleted file mode 100644 index 5fe3b5943..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "싱글톤", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/ko-KR/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 81da51420..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "현재 작업 중인 브랜치입니다. 현재 브랜치의 변경 사항을 기반으로 새 브랜치를 만들 때 선택하세요.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/ko-KR/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 8578a3ac1..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "리포지토리의 기본 브랜치입니다. 기존 작업과 무관한 새 브랜치를 만들 때 선택하세요.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ko-KR/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/ko-KR/viewPullRequests/index.json deleted file mode 100644 index 8f1ac2861..000000000 --- a/packages/keystatic/src/app/l10n/ko-KR/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Pull Request 보기", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT.json b/packages/keystatic/src/app/l10n/lt-LT.json new file mode 100644 index 000000000..2a9769f1e --- /dev/null +++ b/packages/keystatic/src/app/l10n/lt-LT.json @@ -0,0 +1,29 @@ +{ + "add": "Papildyti", + "basedOn": "Remiantis", + "branchName": "Filialo pavadinimas", + "branches": "Filialai", + "cancel": "Atšaukti", + "clear": "Skaidrus", + "collection": "Kolekcija", + "collections": "Kolekcijos", + "create": "Sukurti", + "createPullRequest": "Sukurti ištraukimo užklausą", + "currentBranch": "Dabartinis filialas", + "dashboard": "Prietaisų skydelis", + "defaultBranch": "Numatytoji šaka", + "delete": "Ištrinti", + "deleteBranch": "Ištrinti šaką", + "edit": "Redaguoti", + "loading": "Įkeliama", + "newBranch": "Naujas filialas", + "otherBranches": "Kitos šakos", + "pullRequests": "Ištraukti užklausas", + "save": "Sutaupyti", + "search": "Ieškoti", + "singleton": "vienvietis", + "singletons": "Vienišiai", + "theCurrentlyCheckedOutBranch": "Šiuo metu išregistruotas filialas. Pasirinkite tai, jei reikia remtis esamu darbu iš dabartinės šakos.", + "theDefaultBranchInYourRepository": "Numatytoji šaka jūsų saugykloje. Pasirinkite tai, kad pradėtumėte ką nors naujo, nepriklausančio nuo dabartinės šakos.", + "viewPullRequests": "Peržiūrėkite ištraukimo užklausas" +} diff --git a/packages/keystatic/src/app/l10n/lt-LT/add/index.json b/packages/keystatic/src/app/l10n/lt-LT/add/index.json deleted file mode 100644 index 6b926f59f..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Papildyti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/basedOn/index.json b/packages/keystatic/src/app/l10n/lt-LT/basedOn/index.json deleted file mode 100644 index d3d089a6c..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Remiantis", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/branchName/index.json b/packages/keystatic/src/app/l10n/lt-LT/branchName/index.json deleted file mode 100644 index a569ca76b..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Filialo pavadinimas", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/branches/index.json b/packages/keystatic/src/app/l10n/lt-LT/branches/index.json deleted file mode 100644 index 9efe4638b..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Filialai", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/cancel/index.json b/packages/keystatic/src/app/l10n/lt-LT/cancel/index.json deleted file mode 100644 index 62aba5cee..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Atšaukti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/clear/index.json b/packages/keystatic/src/app/l10n/lt-LT/clear/index.json deleted file mode 100644 index 17b8de9af..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Skaidrus", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/collection/index.json b/packages/keystatic/src/app/l10n/lt-LT/collection/index.json deleted file mode 100644 index 6c6f14e57..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Kolekcija", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/collections/index.json b/packages/keystatic/src/app/l10n/lt-LT/collections/index.json deleted file mode 100644 index 5b6d84b1b..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Kolekcijos", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/create/index.json b/packages/keystatic/src/app/l10n/lt-LT/create/index.json deleted file mode 100644 index 9720c87f0..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Sukurti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/createPullRequest/index.json b/packages/keystatic/src/app/l10n/lt-LT/createPullRequest/index.json deleted file mode 100644 index f29d8b825..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Sukurti ištraukimo užklausą", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/currentBranch/index.json b/packages/keystatic/src/app/l10n/lt-LT/currentBranch/index.json deleted file mode 100644 index 910c43871..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Dabartinis filialas", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/dashboard/index.json b/packages/keystatic/src/app/l10n/lt-LT/dashboard/index.json deleted file mode 100644 index 27649667d..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Prietaisų skydelis", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/defaultBranch/index.json b/packages/keystatic/src/app/l10n/lt-LT/defaultBranch/index.json deleted file mode 100644 index 8d49e23a3..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Numatytoji šaka", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/delete/index.json b/packages/keystatic/src/app/l10n/lt-LT/delete/index.json deleted file mode 100644 index eae7943a7..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Ištrinti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/deleteBranch/index.json b/packages/keystatic/src/app/l10n/lt-LT/deleteBranch/index.json deleted file mode 100644 index 8e6a6de64..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Ištrinti šaką", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/edit/index.json b/packages/keystatic/src/app/l10n/lt-LT/edit/index.json deleted file mode 100644 index 592f7e2fc..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Redaguoti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/loading/index.json b/packages/keystatic/src/app/l10n/lt-LT/loading/index.json deleted file mode 100644 index 8bb71c7a7..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Įkeliama", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/newBranch/index.json b/packages/keystatic/src/app/l10n/lt-LT/newBranch/index.json deleted file mode 100644 index 448f47dfa..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Naujas filialas", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/otherBranches/index.json b/packages/keystatic/src/app/l10n/lt-LT/otherBranches/index.json deleted file mode 100644 index 7be1c4448..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Kitos šakos", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/pullRequests/index.json b/packages/keystatic/src/app/l10n/lt-LT/pullRequests/index.json deleted file mode 100644 index 10527d14f..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Ištraukti užklausas", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/save/index.json b/packages/keystatic/src/app/l10n/lt-LT/save/index.json deleted file mode 100644 index 2704cf495..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Sutaupyti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/search/index.json b/packages/keystatic/src/app/l10n/lt-LT/search/index.json deleted file mode 100644 index c1ae06a41..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Ieškoti", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/singleton/index.json b/packages/keystatic/src/app/l10n/lt-LT/singleton/index.json deleted file mode 100644 index 94c13701f..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "vienvietis", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/singletons/index.json b/packages/keystatic/src/app/l10n/lt-LT/singletons/index.json deleted file mode 100644 index c4764e3cd..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Vienišiai", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/lt-LT/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index b7901b8f4..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Šiuo metu išregistruotas filialas. Pasirinkite tai, jei reikia remtis esamu darbu iš dabartinės šakos.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/lt-LT/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 8bb332b30..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Numatytoji šaka jūsų saugykloje. Pasirinkite tai, kad pradėtumėte ką nors naujo, nepriklausančio nuo dabartinės šakos.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lt-LT/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/lt-LT/viewPullRequests/index.json deleted file mode 100644 index 62f16cbe9..000000000 --- a/packages/keystatic/src/app/l10n/lt-LT/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Peržiūrėkite ištraukimo užklausas", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV.json b/packages/keystatic/src/app/l10n/lv-LV.json new file mode 100644 index 000000000..335361e03 --- /dev/null +++ b/packages/keystatic/src/app/l10n/lv-LV.json @@ -0,0 +1,29 @@ +{ + "add": "Pievienot", + "basedOn": "Balstoties uz", + "branchName": "Filiāles nosaukums", + "branches": "Nozares", + "cancel": "Atcelt", + "clear": "Notīrīt", + "collection": "Kolekcija", + "collections": "Kolekcijas", + "create": "Izveidot", + "createPullRequest": "Izveidot izvilkšanas pieprasījumu", + "currentBranch": "Pašreizējā filiāle", + "dashboard": "Mērinstrumentu panelis", + "defaultBranch": "Noklusējuma filiāle", + "delete": "Dzēst", + "deleteBranch": "Dzēst filiāli", + "edit": "Rediģēt", + "loading": "Notiek ielāde", + "newBranch": "Jauna filiāle", + "otherBranches": "Citas filiāles", + "pullRequests": "Izvilkšanas pieprasījumi", + "save": "Saglabāt", + "search": "Meklēt", + "singleton": "Singleton", + "singletons": "Vientuļi", + "theCurrentlyCheckedOutBranch": "Pašlaik izrakstītā filiāle. Izvēlieties šo, ja vēlaties izmantot esošo darbu no pašreizējās filiāles.", + "theDefaultBranchInYourRepository": "Noklusējuma filiāle jūsu repozitorijā. Izvēlieties šo, lai sāktu kaut ko jaunu, kas nav atkarīgs no jūsu pašreizējās filiāles.", + "viewPullRequests": "Skatīt izvilkšanas pieprasījumus" +} diff --git a/packages/keystatic/src/app/l10n/lv-LV/add/index.json b/packages/keystatic/src/app/l10n/lv-LV/add/index.json deleted file mode 100644 index 287e7e530..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Pievienot", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/basedOn/index.json b/packages/keystatic/src/app/l10n/lv-LV/basedOn/index.json deleted file mode 100644 index 63f0ffbab..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Balstoties uz", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/branchName/index.json b/packages/keystatic/src/app/l10n/lv-LV/branchName/index.json deleted file mode 100644 index 080c5490e..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Filiāles nosaukums", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/branches/index.json b/packages/keystatic/src/app/l10n/lv-LV/branches/index.json deleted file mode 100644 index d9da1393d..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Nozares", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/cancel/index.json b/packages/keystatic/src/app/l10n/lv-LV/cancel/index.json deleted file mode 100644 index d8b73074e..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Atcelt", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/clear/index.json b/packages/keystatic/src/app/l10n/lv-LV/clear/index.json deleted file mode 100644 index 71604f87b..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Notīrīt", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/collection/index.json b/packages/keystatic/src/app/l10n/lv-LV/collection/index.json deleted file mode 100644 index 6c6f14e57..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Kolekcija", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/collections/index.json b/packages/keystatic/src/app/l10n/lv-LV/collections/index.json deleted file mode 100644 index ac5cb1485..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Kolekcijas", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/create/index.json b/packages/keystatic/src/app/l10n/lv-LV/create/index.json deleted file mode 100644 index e079f45e7..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Izveidot", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/createPullRequest/index.json b/packages/keystatic/src/app/l10n/lv-LV/createPullRequest/index.json deleted file mode 100644 index 56c23fd3d..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Izveidot izvilkšanas pieprasījumu", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/currentBranch/index.json b/packages/keystatic/src/app/l10n/lv-LV/currentBranch/index.json deleted file mode 100644 index f65296192..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Pašreizējā filiāle", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/dashboard/index.json b/packages/keystatic/src/app/l10n/lv-LV/dashboard/index.json deleted file mode 100644 index 6c7e73c2a..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Mērinstrumentu panelis", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/defaultBranch/index.json b/packages/keystatic/src/app/l10n/lv-LV/defaultBranch/index.json deleted file mode 100644 index 3e758db2b..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Noklusējuma filiāle", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/delete/index.json b/packages/keystatic/src/app/l10n/lv-LV/delete/index.json deleted file mode 100644 index 19164da60..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Dzēst", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/deleteBranch/index.json b/packages/keystatic/src/app/l10n/lv-LV/deleteBranch/index.json deleted file mode 100644 index f4c7d0f5a..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Dzēst filiāli", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/edit/index.json b/packages/keystatic/src/app/l10n/lv-LV/edit/index.json deleted file mode 100644 index 1df65bb20..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Rediģēt", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/loading/index.json b/packages/keystatic/src/app/l10n/lv-LV/loading/index.json deleted file mode 100644 index ac318bcc9..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Notiek ielāde", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/newBranch/index.json b/packages/keystatic/src/app/l10n/lv-LV/newBranch/index.json deleted file mode 100644 index 79c19ce7a..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Jauna filiāle", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/otherBranches/index.json b/packages/keystatic/src/app/l10n/lv-LV/otherBranches/index.json deleted file mode 100644 index 3ef629283..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Citas filiāles", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/pullRequests/index.json b/packages/keystatic/src/app/l10n/lv-LV/pullRequests/index.json deleted file mode 100644 index 0c3bc44c6..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Izvilkšanas pieprasījumi", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/save/index.json b/packages/keystatic/src/app/l10n/lv-LV/save/index.json deleted file mode 100644 index 5bb622952..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Saglabāt", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/search/index.json b/packages/keystatic/src/app/l10n/lv-LV/search/index.json deleted file mode 100644 index 23a29918e..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Meklēt", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/singleton/index.json b/packages/keystatic/src/app/l10n/lv-LV/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/singletons/index.json b/packages/keystatic/src/app/l10n/lv-LV/singletons/index.json deleted file mode 100644 index 043e4b37a..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Vientuļi", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/lv-LV/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 94b9965bf..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Pašlaik izrakstītā filiāle. Izvēlieties šo, ja vēlaties izmantot esošo darbu no pašreizējās filiāles.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/lv-LV/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 04856729f..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Noklusējuma filiāle jūsu repozitorijā. Izvēlieties šo, lai sāktu kaut ko jaunu, kas nav atkarīgs no jūsu pašreizējās filiāles.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/lv-LV/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/lv-LV/viewPullRequests/index.json deleted file mode 100644 index 3cb003579..000000000 --- a/packages/keystatic/src/app/l10n/lv-LV/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Skatīt izvilkšanas pieprasījumus", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO.json b/packages/keystatic/src/app/l10n/nb-NO.json new file mode 100644 index 000000000..08fc56145 --- /dev/null +++ b/packages/keystatic/src/app/l10n/nb-NO.json @@ -0,0 +1,29 @@ +{ + "add": "Legg til", + "basedOn": "Basert på", + "branchName": "Filialnavn", + "branches": "Grener", + "cancel": "Avbryt", + "clear": "Tøm", + "collection": "Samling", + "collections": "Samlinger", + "create": "Skape", + "createPullRequest": "Opprett pull-forespørsel", + "currentBranch": "Nåværende gren", + "dashboard": "Dashbord", + "defaultBranch": "Standard gren", + "delete": "Slett", + "deleteBranch": "Slett filial", + "edit": "Redigere", + "loading": "Laster inn", + "newBranch": "Ny gren", + "otherBranches": "Andre grener", + "pullRequests": "Trekk forespørsler", + "save": "Lagre", + "search": "Søk", + "singleton": "Singleton", + "singletons": "Singletoner", + "theCurrentlyCheckedOutBranch": "Den utsjekkede grenen. Velg dette hvis du skal bygge på eksisterende arbeid fra gjeldende gren.", + "theDefaultBranchInYourRepository": "Standardgrenen i depotet ditt. Velg dette for å starte noe nytt som ikke er avhengig av din nåværende filial.", + "viewPullRequests": "Se pull-forespørsler" +} diff --git a/packages/keystatic/src/app/l10n/nb-NO/add/index.json b/packages/keystatic/src/app/l10n/nb-NO/add/index.json deleted file mode 100644 index 5ac45e389..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Legg til", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/basedOn/index.json b/packages/keystatic/src/app/l10n/nb-NO/basedOn/index.json deleted file mode 100644 index b87fed9de..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Basert på", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/branchName/index.json b/packages/keystatic/src/app/l10n/nb-NO/branchName/index.json deleted file mode 100644 index 0b036ca3d..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Filialnavn", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/branches/index.json b/packages/keystatic/src/app/l10n/nb-NO/branches/index.json deleted file mode 100644 index 42670e127..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Grener", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/cancel/index.json b/packages/keystatic/src/app/l10n/nb-NO/cancel/index.json deleted file mode 100644 index 4a7f38e17..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Avbryt", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/clear/index.json b/packages/keystatic/src/app/l10n/nb-NO/clear/index.json deleted file mode 100644 index 7696c76a9..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Tøm", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/collection/index.json b/packages/keystatic/src/app/l10n/nb-NO/collection/index.json deleted file mode 100644 index 1e98e71e5..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Samling", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/collections/index.json b/packages/keystatic/src/app/l10n/nb-NO/collections/index.json deleted file mode 100644 index 999a43401..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Samlinger", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/create/index.json b/packages/keystatic/src/app/l10n/nb-NO/create/index.json deleted file mode 100644 index 53fc543da..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Skape", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/createPullRequest/index.json b/packages/keystatic/src/app/l10n/nb-NO/createPullRequest/index.json deleted file mode 100644 index 3deafc422..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Opprett pull-forespørsel", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/currentBranch/index.json b/packages/keystatic/src/app/l10n/nb-NO/currentBranch/index.json deleted file mode 100644 index ca87c2a54..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Nåværende gren", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/dashboard/index.json b/packages/keystatic/src/app/l10n/nb-NO/dashboard/index.json deleted file mode 100644 index c37d052b5..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Dashbord", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/defaultBranch/index.json b/packages/keystatic/src/app/l10n/nb-NO/defaultBranch/index.json deleted file mode 100644 index 84914bea7..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Standard gren", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/delete/index.json b/packages/keystatic/src/app/l10n/nb-NO/delete/index.json deleted file mode 100644 index dcdfe4902..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Slett", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/deleteBranch/index.json b/packages/keystatic/src/app/l10n/nb-NO/deleteBranch/index.json deleted file mode 100644 index 98624e918..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Slett filial", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/edit/index.json b/packages/keystatic/src/app/l10n/nb-NO/edit/index.json deleted file mode 100644 index 2bd431e90..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Redigere", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/loading/index.json b/packages/keystatic/src/app/l10n/nb-NO/loading/index.json deleted file mode 100644 index e28e8850a..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Laster inn", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/newBranch/index.json b/packages/keystatic/src/app/l10n/nb-NO/newBranch/index.json deleted file mode 100644 index 19f4fd650..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Ny gren", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/otherBranches/index.json b/packages/keystatic/src/app/l10n/nb-NO/otherBranches/index.json deleted file mode 100644 index 70e921737..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Andre grener", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/pullRequests/index.json b/packages/keystatic/src/app/l10n/nb-NO/pullRequests/index.json deleted file mode 100644 index bf1b1fa12..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Trekk forespørsler", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/save/index.json b/packages/keystatic/src/app/l10n/nb-NO/save/index.json deleted file mode 100644 index 028d96061..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Lagre", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/search/index.json b/packages/keystatic/src/app/l10n/nb-NO/search/index.json deleted file mode 100644 index 8646f8057..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Søk", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/singleton/index.json b/packages/keystatic/src/app/l10n/nb-NO/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/singletons/index.json b/packages/keystatic/src/app/l10n/nb-NO/singletons/index.json deleted file mode 100644 index ce17e10c6..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletoner", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/nb-NO/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 9a947b58a..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Den utsjekkede grenen. Velg dette hvis du skal bygge på eksisterende arbeid fra gjeldende gren.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/nb-NO/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 14726c658..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Standardgrenen i depotet ditt. Velg dette for å starte noe nytt som ikke er avhengig av din nåværende filial.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nb-NO/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/nb-NO/viewPullRequests/index.json deleted file mode 100644 index 8c31884f5..000000000 --- a/packages/keystatic/src/app/l10n/nb-NO/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Se pull-forespørsler", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL.json b/packages/keystatic/src/app/l10n/nl-NL.json new file mode 100644 index 000000000..f8a93a85c --- /dev/null +++ b/packages/keystatic/src/app/l10n/nl-NL.json @@ -0,0 +1,29 @@ +{ + "add": "Toevoegen", + "basedOn": "Gebaseerd op", + "branchName": "Filiaal naam", + "branches": "Takken", + "cancel": "Annuleren", + "clear": "Helder", + "collection": "Verzameling", + "collections": "Collecties", + "create": "Creëren", + "createPullRequest": "Pull-aanvraag maken", + "currentBranch": "Huidige tak", + "dashboard": "Dashboard", + "defaultBranch": "Standaard filiaal", + "delete": "Verwijderen", + "deleteBranch": "Filiaal verwijderen", + "edit": "Bewerking", + "loading": "Laden", + "newBranch": "Nieuwe tak", + "otherBranches": "Andere takken", + "pullRequests": "Trek verzoeken", + "save": "Redden", + "search": "Zoeken", + "singleton": "eenling", + "singletons": "Eenlingen", + "theCurrentlyCheckedOutBranch": "Het momenteel uitgecheckte filiaal. Kies dit als u moet voortbouwen op bestaand werk van de huidige branch.", + "theDefaultBranchInYourRepository": "De standaard branch in uw repository. Kies dit om iets nieuws te starten dat niet afhankelijk is van uw huidige branche.", + "viewPullRequests": "Bekijk pull-aanvragen" +} diff --git a/packages/keystatic/src/app/l10n/nl-NL/add/index.json b/packages/keystatic/src/app/l10n/nl-NL/add/index.json deleted file mode 100644 index f311f7a48..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Toevoegen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/basedOn/index.json b/packages/keystatic/src/app/l10n/nl-NL/basedOn/index.json deleted file mode 100644 index 84c938c05..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Gebaseerd op", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/branchName/index.json b/packages/keystatic/src/app/l10n/nl-NL/branchName/index.json deleted file mode 100644 index 0bf264932..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Filiaal naam", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/branches/index.json b/packages/keystatic/src/app/l10n/nl-NL/branches/index.json deleted file mode 100644 index 0028f4c02..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Takken", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/cancel/index.json b/packages/keystatic/src/app/l10n/nl-NL/cancel/index.json deleted file mode 100644 index b4ce3b2c9..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Annuleren", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/clear/index.json b/packages/keystatic/src/app/l10n/nl-NL/clear/index.json deleted file mode 100644 index f2cbba5e6..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Helder", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/collection/index.json b/packages/keystatic/src/app/l10n/nl-NL/collection/index.json deleted file mode 100644 index d397e9886..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Verzameling", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/collections/index.json b/packages/keystatic/src/app/l10n/nl-NL/collections/index.json deleted file mode 100644 index 3bd8a1269..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Collecties", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/create/index.json b/packages/keystatic/src/app/l10n/nl-NL/create/index.json deleted file mode 100644 index 2d0b59554..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Creëren", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/createPullRequest/index.json b/packages/keystatic/src/app/l10n/nl-NL/createPullRequest/index.json deleted file mode 100644 index 2bef8bf4e..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Pull-aanvraag maken", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/currentBranch/index.json b/packages/keystatic/src/app/l10n/nl-NL/currentBranch/index.json deleted file mode 100644 index 7d0cdcc98..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Huidige tak", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/dashboard/index.json b/packages/keystatic/src/app/l10n/nl-NL/dashboard/index.json deleted file mode 100644 index 01b2977e0..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Dashboard", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/defaultBranch/index.json b/packages/keystatic/src/app/l10n/nl-NL/defaultBranch/index.json deleted file mode 100644 index 2978f6db9..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Standaard filiaal", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/delete/index.json b/packages/keystatic/src/app/l10n/nl-NL/delete/index.json deleted file mode 100644 index 11afa27e3..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Verwijderen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/deleteBranch/index.json b/packages/keystatic/src/app/l10n/nl-NL/deleteBranch/index.json deleted file mode 100644 index b5ba167be..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Filiaal verwijderen", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/edit/index.json b/packages/keystatic/src/app/l10n/nl-NL/edit/index.json deleted file mode 100644 index 177972753..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Bewerking", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/loading/index.json b/packages/keystatic/src/app/l10n/nl-NL/loading/index.json deleted file mode 100644 index 82e4ff1bd..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Laden", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/newBranch/index.json b/packages/keystatic/src/app/l10n/nl-NL/newBranch/index.json deleted file mode 100644 index 1b5f77999..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nieuwe tak", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/otherBranches/index.json b/packages/keystatic/src/app/l10n/nl-NL/otherBranches/index.json deleted file mode 100644 index d77086ab6..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Andere takken", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/pullRequests/index.json b/packages/keystatic/src/app/l10n/nl-NL/pullRequests/index.json deleted file mode 100644 index 5b6202f88..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Trek verzoeken", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/save/index.json b/packages/keystatic/src/app/l10n/nl-NL/save/index.json deleted file mode 100644 index 617c001d7..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Redden", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/search/index.json b/packages/keystatic/src/app/l10n/nl-NL/search/index.json deleted file mode 100644 index 7ddac50a0..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Zoeken", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/singleton/index.json b/packages/keystatic/src/app/l10n/nl-NL/singleton/index.json deleted file mode 100644 index 204334083..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "eenling", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/singletons/index.json b/packages/keystatic/src/app/l10n/nl-NL/singletons/index.json deleted file mode 100644 index 7694849dc..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Eenlingen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/nl-NL/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index c1c8cfb4b..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Het momenteel uitgecheckte filiaal. Kies dit als u moet voortbouwen op bestaand werk van de huidige branch.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/nl-NL/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index df20b906d..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "De standaard branch in uw repository. Kies dit om iets nieuws te starten dat niet afhankelijk is van uw huidige branche.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/nl-NL/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/nl-NL/viewPullRequests/index.json deleted file mode 100644 index ea125ff48..000000000 --- a/packages/keystatic/src/app/l10n/nl-NL/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Bekijk pull-aanvragen", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL.json b/packages/keystatic/src/app/l10n/pl-PL.json new file mode 100644 index 000000000..eacad711d --- /dev/null +++ b/packages/keystatic/src/app/l10n/pl-PL.json @@ -0,0 +1,29 @@ +{ + "add": "Dodaj", + "basedOn": "Oparte na", + "branchName": "Nazwa filii", + "branches": "Gałęzie", + "cancel": "Anuluj", + "clear": "Wyczyść", + "collection": "Kolekcja", + "collections": "Kolekcje", + "create": "Utwórz", + "createPullRequest": "Utwórz żądanie ściągnięcia", + "currentBranch": "Obecna gałąź", + "dashboard": "Panel", + "defaultBranch": "Domyślna gałąź", + "delete": "Usuń", + "deleteBranch": "Usuń gałąź", + "edit": "Edytuj", + "loading": "Trwa ładowanie", + "newBranch": "Nowa gałąź", + "otherBranches": "Inne gałęzie", + "pullRequests": "Żądania ściągnięcia", + "save": "Zapisz", + "search": "Szukaj", + "singleton": "Singleton", + "singletons": "Singletony", + "theCurrentlyCheckedOutBranch": "Aktualnie wyewidencjonowana gałąź. Wybierz tę opcję, jeśli chcesz oprzeć się na istniejącej pracy z bieżącej gałęzi.", + "theDefaultBranchInYourRepository": "Domyślna gałąź w twoim repozytorium. Wybierz tę opcję, aby rozpocząć coś nowego, co nie jest zależne od bieżącej gałęzi.", + "viewPullRequests": "Wyświetl żądania ściągnięcia" +} diff --git a/packages/keystatic/src/app/l10n/pl-PL/add/index.json b/packages/keystatic/src/app/l10n/pl-PL/add/index.json deleted file mode 100644 index 6be71172d..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Dodaj", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/basedOn/index.json b/packages/keystatic/src/app/l10n/pl-PL/basedOn/index.json deleted file mode 100644 index 2557f7fb3..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Oparte na", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/branchName/index.json b/packages/keystatic/src/app/l10n/pl-PL/branchName/index.json deleted file mode 100644 index ecfceea19..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Nazwa filii", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/branches/index.json b/packages/keystatic/src/app/l10n/pl-PL/branches/index.json deleted file mode 100644 index f271d9621..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Gałęzie", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/cancel/index.json b/packages/keystatic/src/app/l10n/pl-PL/cancel/index.json deleted file mode 100644 index 95bb7ea0a..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Anuluj", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/clear/index.json b/packages/keystatic/src/app/l10n/pl-PL/clear/index.json deleted file mode 100644 index b8b35da8c..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Wyczyść", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/collection/index.json b/packages/keystatic/src/app/l10n/pl-PL/collection/index.json deleted file mode 100644 index b343219e3..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Kolekcja", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/collections/index.json b/packages/keystatic/src/app/l10n/pl-PL/collections/index.json deleted file mode 100644 index ec8fbe318..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Kolekcje", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/create/index.json b/packages/keystatic/src/app/l10n/pl-PL/create/index.json deleted file mode 100644 index 646f28434..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Utwórz", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/createPullRequest/index.json b/packages/keystatic/src/app/l10n/pl-PL/createPullRequest/index.json deleted file mode 100644 index 9cf1635fc..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Utwórz żądanie ściągnięcia", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/currentBranch/index.json b/packages/keystatic/src/app/l10n/pl-PL/currentBranch/index.json deleted file mode 100644 index 2bd051822..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Obecna gałąź", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/dashboard/index.json b/packages/keystatic/src/app/l10n/pl-PL/dashboard/index.json deleted file mode 100644 index 1212fdbd2..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Panel", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/defaultBranch/index.json b/packages/keystatic/src/app/l10n/pl-PL/defaultBranch/index.json deleted file mode 100644 index 3d662a8cb..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Domyślna gałąź", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/delete/index.json b/packages/keystatic/src/app/l10n/pl-PL/delete/index.json deleted file mode 100644 index d6c79e1fe..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Usuń", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/deleteBranch/index.json b/packages/keystatic/src/app/l10n/pl-PL/deleteBranch/index.json deleted file mode 100644 index 1f0314ab9..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Usuń gałąź", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/edit/index.json b/packages/keystatic/src/app/l10n/pl-PL/edit/index.json deleted file mode 100644 index adff56618..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Edytuj", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/loading/index.json b/packages/keystatic/src/app/l10n/pl-PL/loading/index.json deleted file mode 100644 index 82e12b913..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Trwa ładowanie", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/newBranch/index.json b/packages/keystatic/src/app/l10n/pl-PL/newBranch/index.json deleted file mode 100644 index 28caacb60..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nowa gałąź", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/otherBranches/index.json b/packages/keystatic/src/app/l10n/pl-PL/otherBranches/index.json deleted file mode 100644 index 9301e59d6..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Inne gałęzie", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/pullRequests/index.json b/packages/keystatic/src/app/l10n/pl-PL/pullRequests/index.json deleted file mode 100644 index eb3e87f10..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Żądania ściągnięcia", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/save/index.json b/packages/keystatic/src/app/l10n/pl-PL/save/index.json deleted file mode 100644 index 967f0814a..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Zapisz", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/search/index.json b/packages/keystatic/src/app/l10n/pl-PL/search/index.json deleted file mode 100644 index 1c3acb992..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Szukaj", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/singleton/index.json b/packages/keystatic/src/app/l10n/pl-PL/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/singletons/index.json b/packages/keystatic/src/app/l10n/pl-PL/singletons/index.json deleted file mode 100644 index 4301217b9..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletony", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/pl-PL/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 443103c14..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Aktualnie wyewidencjonowana gałąź. Wybierz tę opcję, jeśli chcesz oprzeć się na istniejącej pracy z bieżącej gałęzi.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/pl-PL/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index edd04b095..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Domyślna gałąź w twoim repozytorium. Wybierz tę opcję, aby rozpocząć coś nowego, co nie jest zależne od bieżącej gałęzi.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pl-PL/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/pl-PL/viewPullRequests/index.json deleted file mode 100644 index 0e4b1f6a3..000000000 --- a/packages/keystatic/src/app/l10n/pl-PL/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Wyświetl żądania ściągnięcia", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR.json b/packages/keystatic/src/app/l10n/pt-BR.json new file mode 100644 index 000000000..25a09b25f --- /dev/null +++ b/packages/keystatic/src/app/l10n/pt-BR.json @@ -0,0 +1,29 @@ +{ + "add": "Adicionar", + "basedOn": "Baseado em", + "branchName": "Nome do branch", + "branches": "Branches", + "cancel": "Cancelar", + "clear": "Limpar", + "collection": "Coleção", + "collections": "Coleções", + "create": "Criar", + "createPullRequest": "Criar pull request", + "currentBranch": "branch atual", + "dashboard": "Painel", + "defaultBranch": "branch padrão", + "delete": "Excluir", + "deleteBranch": "Excluir branch", + "edit": "Editar", + "loading": "Carregando", + "newBranch": "Novo branch", + "otherBranches": "Outros branches", + "pullRequests": "Requisições pull", + "save": "Salvar", + "search": "Pesquisar", + "singleton": "solteiro", + "singletons": "Solteiros", + "theCurrentlyCheckedOutBranch": "A ramificação atualmente com check-out. Escolha esta opção se precisar criar um trabalho existente na ramificação atual.", + "theDefaultBranchInYourRepository": "A ramificação padrão em seu repositório. Escolha isso para iniciar algo novo que não dependa de sua ramificação atual.", + "viewPullRequests": "Ver solicitações pull" +} diff --git a/packages/keystatic/src/app/l10n/pt-BR/add/index.json b/packages/keystatic/src/app/l10n/pt-BR/add/index.json deleted file mode 100644 index 706de4f19..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Adicionar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/basedOn/index.json b/packages/keystatic/src/app/l10n/pt-BR/basedOn/index.json deleted file mode 100644 index b5ed8e8e7..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Baseado em", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/branchName/index.json b/packages/keystatic/src/app/l10n/pt-BR/branchName/index.json deleted file mode 100644 index 476ce7818..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Nome do branch", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/branches/index.json b/packages/keystatic/src/app/l10n/pt-BR/branches/index.json deleted file mode 100644 index db1a82617..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Branches", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/cancel/index.json b/packages/keystatic/src/app/l10n/pt-BR/cancel/index.json deleted file mode 100644 index fc7fd884f..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Cancelar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/clear/index.json b/packages/keystatic/src/app/l10n/pt-BR/clear/index.json deleted file mode 100644 index 35244461c..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Limpar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/collection/index.json b/packages/keystatic/src/app/l10n/pt-BR/collection/index.json deleted file mode 100644 index a199de00b..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Coleção", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/collections/index.json b/packages/keystatic/src/app/l10n/pt-BR/collections/index.json deleted file mode 100644 index 933ab6643..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Coleções", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/create/index.json b/packages/keystatic/src/app/l10n/pt-BR/create/index.json deleted file mode 100644 index ea3968a9d..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Criar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/createPullRequest/index.json b/packages/keystatic/src/app/l10n/pt-BR/createPullRequest/index.json deleted file mode 100644 index 52aa12876..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Criar pull request", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/currentBranch/index.json b/packages/keystatic/src/app/l10n/pt-BR/currentBranch/index.json deleted file mode 100644 index 47f47a254..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "branch atual", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/dashboard/index.json b/packages/keystatic/src/app/l10n/pt-BR/dashboard/index.json deleted file mode 100644 index ed7358329..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Painel", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/defaultBranch/index.json b/packages/keystatic/src/app/l10n/pt-BR/defaultBranch/index.json deleted file mode 100644 index 5488d8d5a..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "branch padrão", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/delete/index.json b/packages/keystatic/src/app/l10n/pt-BR/delete/index.json deleted file mode 100644 index e3995ed2c..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Excluir", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/deleteBranch/index.json b/packages/keystatic/src/app/l10n/pt-BR/deleteBranch/index.json deleted file mode 100644 index 1249c24d3..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Excluir branch", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/edit/index.json b/packages/keystatic/src/app/l10n/pt-BR/edit/index.json deleted file mode 100644 index 0d460a026..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Editar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/loading/index.json b/packages/keystatic/src/app/l10n/pt-BR/loading/index.json deleted file mode 100644 index 83b7b6554..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Carregando", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/newBranch/index.json b/packages/keystatic/src/app/l10n/pt-BR/newBranch/index.json deleted file mode 100644 index 72bf0017d..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Novo branch", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/otherBranches/index.json b/packages/keystatic/src/app/l10n/pt-BR/otherBranches/index.json deleted file mode 100644 index c212ddf62..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Outros branches", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/pullRequests/index.json b/packages/keystatic/src/app/l10n/pt-BR/pullRequests/index.json deleted file mode 100644 index 6f6f9bb8a..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Requisições pull", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/save/index.json b/packages/keystatic/src/app/l10n/pt-BR/save/index.json deleted file mode 100644 index 0b2af7e6b..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Salvar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/search/index.json b/packages/keystatic/src/app/l10n/pt-BR/search/index.json deleted file mode 100644 index 5193bcdfa..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Pesquisar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/singleton/index.json b/packages/keystatic/src/app/l10n/pt-BR/singleton/index.json deleted file mode 100644 index 4d1f51ea4..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "solteiro", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/singletons/index.json b/packages/keystatic/src/app/l10n/pt-BR/singletons/index.json deleted file mode 100644 index 40a2ad420..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Solteiros", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/pt-BR/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 5a721a3fa..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "A ramificação atualmente com check-out. Escolha esta opção se precisar criar um trabalho existente na ramificação atual.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/pt-BR/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index fa701e7a6..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "A ramificação padrão em seu repositório. Escolha isso para iniciar algo novo que não dependa de sua ramificação atual.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-BR/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/pt-BR/viewPullRequests/index.json deleted file mode 100644 index d14a7249d..000000000 --- a/packages/keystatic/src/app/l10n/pt-BR/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Ver solicitações pull", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT.json b/packages/keystatic/src/app/l10n/pt-PT.json new file mode 100644 index 000000000..e9ca25592 --- /dev/null +++ b/packages/keystatic/src/app/l10n/pt-PT.json @@ -0,0 +1,29 @@ +{ + "add": "Adicionar", + "basedOn": "Baseado em", + "branchName": "Nome da filial", + "branches": "Galhos", + "cancel": "Cancelar", + "clear": "Limpar", + "collection": "Coleção", + "collections": "Coleções", + "create": "Criar", + "createPullRequest": "Criar solicitação pull", + "currentBranch": "filial atual", + "dashboard": "Painel", + "defaultBranch": "ramo padrão", + "delete": "Excluir", + "deleteBranch": "Excluir ramificação", + "edit": "Editar", + "loading": "A carregar", + "newBranch": "Nova filial", + "otherBranches": "Outros ramos", + "pullRequests": "Requisições pull", + "save": "Guardar", + "search": "Procurar", + "singleton": "solteiro", + "singletons": "Solteiros", + "theCurrentlyCheckedOutBranch": "A ramificação atualmente com check-out. Escolha esta opção se precisar criar um trabalho existente na ramificação atual.", + "theDefaultBranchInYourRepository": "A ramificação padrão em seu repositório. Escolha isso para iniciar algo novo que não dependa de sua ramificação atual.", + "viewPullRequests": "Ver solicitações pull" +} diff --git a/packages/keystatic/src/app/l10n/pt-PT/add/index.json b/packages/keystatic/src/app/l10n/pt-PT/add/index.json deleted file mode 100644 index 706de4f19..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Adicionar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/basedOn/index.json b/packages/keystatic/src/app/l10n/pt-PT/basedOn/index.json deleted file mode 100644 index b5ed8e8e7..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Baseado em", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/branchName/index.json b/packages/keystatic/src/app/l10n/pt-PT/branchName/index.json deleted file mode 100644 index 43e9375c7..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Nome da filial", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/branches/index.json b/packages/keystatic/src/app/l10n/pt-PT/branches/index.json deleted file mode 100644 index 65ac4ef57..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Galhos", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/cancel/index.json b/packages/keystatic/src/app/l10n/pt-PT/cancel/index.json deleted file mode 100644 index fc7fd884f..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Cancelar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/clear/index.json b/packages/keystatic/src/app/l10n/pt-PT/clear/index.json deleted file mode 100644 index 35244461c..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Limpar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/collection/index.json b/packages/keystatic/src/app/l10n/pt-PT/collection/index.json deleted file mode 100644 index a199de00b..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Coleção", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/collections/index.json b/packages/keystatic/src/app/l10n/pt-PT/collections/index.json deleted file mode 100644 index 933ab6643..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Coleções", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/create/index.json b/packages/keystatic/src/app/l10n/pt-PT/create/index.json deleted file mode 100644 index ea3968a9d..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Criar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/createPullRequest/index.json b/packages/keystatic/src/app/l10n/pt-PT/createPullRequest/index.json deleted file mode 100644 index 8bd9337b8..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Criar solicitação pull", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/currentBranch/index.json b/packages/keystatic/src/app/l10n/pt-PT/currentBranch/index.json deleted file mode 100644 index 862a5d578..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "filial atual", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/dashboard/index.json b/packages/keystatic/src/app/l10n/pt-PT/dashboard/index.json deleted file mode 100644 index ed7358329..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Painel", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/defaultBranch/index.json b/packages/keystatic/src/app/l10n/pt-PT/defaultBranch/index.json deleted file mode 100644 index 92e47419b..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "ramo padrão", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/delete/index.json b/packages/keystatic/src/app/l10n/pt-PT/delete/index.json deleted file mode 100644 index e3995ed2c..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Excluir", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/deleteBranch/index.json b/packages/keystatic/src/app/l10n/pt-PT/deleteBranch/index.json deleted file mode 100644 index 628c64b7e..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Excluir ramificação", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/edit/index.json b/packages/keystatic/src/app/l10n/pt-PT/edit/index.json deleted file mode 100644 index 0d460a026..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Editar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/loading/index.json b/packages/keystatic/src/app/l10n/pt-PT/loading/index.json deleted file mode 100644 index c25622dfc..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "A carregar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/newBranch/index.json b/packages/keystatic/src/app/l10n/pt-PT/newBranch/index.json deleted file mode 100644 index 739b8206b..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nova filial", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/otherBranches/index.json b/packages/keystatic/src/app/l10n/pt-PT/otherBranches/index.json deleted file mode 100644 index 0acdf29c7..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Outros ramos", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/pullRequests/index.json b/packages/keystatic/src/app/l10n/pt-PT/pullRequests/index.json deleted file mode 100644 index 6f6f9bb8a..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Requisições pull", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/save/index.json b/packages/keystatic/src/app/l10n/pt-PT/save/index.json deleted file mode 100644 index ac63a28c0..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Guardar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/search/index.json b/packages/keystatic/src/app/l10n/pt-PT/search/index.json deleted file mode 100644 index 8ad01eda6..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Procurar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/singleton/index.json b/packages/keystatic/src/app/l10n/pt-PT/singleton/index.json deleted file mode 100644 index 4d1f51ea4..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "solteiro", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/singletons/index.json b/packages/keystatic/src/app/l10n/pt-PT/singletons/index.json deleted file mode 100644 index 40a2ad420..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Solteiros", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/pt-PT/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 5a721a3fa..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "A ramificação atualmente com check-out. Escolha esta opção se precisar criar um trabalho existente na ramificação atual.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/pt-PT/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index fa701e7a6..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "A ramificação padrão em seu repositório. Escolha isso para iniciar algo novo que não dependa de sua ramificação atual.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/pt-PT/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/pt-PT/viewPullRequests/index.json deleted file mode 100644 index d14a7249d..000000000 --- a/packages/keystatic/src/app/l10n/pt-PT/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Ver solicitações pull", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO.json b/packages/keystatic/src/app/l10n/ro-RO.json new file mode 100644 index 000000000..657af5c10 --- /dev/null +++ b/packages/keystatic/src/app/l10n/ro-RO.json @@ -0,0 +1,29 @@ +{ + "add": "Adăuga", + "basedOn": "Bazat pe", + "branchName": "Numele sucursalei", + "branches": "Ramuri", + "cancel": "Anulare", + "clear": "Golire", + "collection": "Colectie", + "collections": "Colecții", + "create": "Crea", + "createPullRequest": "Creați cerere de tragere", + "currentBranch": "Filiala actuală", + "dashboard": "Bord", + "defaultBranch": "Ramura implicită", + "delete": "Șterge", + "deleteBranch": "Ștergeți ramura", + "edit": "Editați", + "loading": "Se încarcă", + "newBranch": "Filiala noua", + "otherBranches": "Alte ramuri", + "pullRequests": "Solicitări de tragere", + "save": "Salvați", + "search": "Căutare", + "singleton": "Singleton", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "Sucursala verificată în prezent. Alegeți acest lucru dacă trebuie să vă bazați pe munca existentă din ramura curentă.", + "theDefaultBranchInYourRepository": "Ramura implicită din depozitul dvs. Alegeți acest lucru pentru a începe ceva nou, care nu depinde de ramura dvs. actuală.", + "viewPullRequests": "Vizualizați solicitările de extragere" +} diff --git a/packages/keystatic/src/app/l10n/ro-RO/add/index.json b/packages/keystatic/src/app/l10n/ro-RO/add/index.json deleted file mode 100644 index f748932c8..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Adăuga", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/basedOn/index.json b/packages/keystatic/src/app/l10n/ro-RO/basedOn/index.json deleted file mode 100644 index 5b961ee94..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Bazat pe", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/branchName/index.json b/packages/keystatic/src/app/l10n/ro-RO/branchName/index.json deleted file mode 100644 index 7ae7be8b9..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Numele sucursalei", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/branches/index.json b/packages/keystatic/src/app/l10n/ro-RO/branches/index.json deleted file mode 100644 index 3684b06b7..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Ramuri", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/cancel/index.json b/packages/keystatic/src/app/l10n/ro-RO/cancel/index.json deleted file mode 100644 index ef9703871..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Anulare", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/clear/index.json b/packages/keystatic/src/app/l10n/ro-RO/clear/index.json deleted file mode 100644 index 790a40e6b..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Golire", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/collection/index.json b/packages/keystatic/src/app/l10n/ro-RO/collection/index.json deleted file mode 100644 index 2cd0ee66f..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Colectie", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/collections/index.json b/packages/keystatic/src/app/l10n/ro-RO/collections/index.json deleted file mode 100644 index 3c02eb975..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Colecții", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/create/index.json b/packages/keystatic/src/app/l10n/ro-RO/create/index.json deleted file mode 100644 index 8217ffd2a..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Crea", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/createPullRequest/index.json b/packages/keystatic/src/app/l10n/ro-RO/createPullRequest/index.json deleted file mode 100644 index 65047caf2..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Creați cerere de tragere", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/currentBranch/index.json b/packages/keystatic/src/app/l10n/ro-RO/currentBranch/index.json deleted file mode 100644 index 8abc1f254..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Filiala actuală", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/dashboard/index.json b/packages/keystatic/src/app/l10n/ro-RO/dashboard/index.json deleted file mode 100644 index 0dfbb8271..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Bord", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/defaultBranch/index.json b/packages/keystatic/src/app/l10n/ro-RO/defaultBranch/index.json deleted file mode 100644 index a0b92d401..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Ramura implicită", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/delete/index.json b/packages/keystatic/src/app/l10n/ro-RO/delete/index.json deleted file mode 100644 index a09b2f8fb..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Șterge", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/deleteBranch/index.json b/packages/keystatic/src/app/l10n/ro-RO/deleteBranch/index.json deleted file mode 100644 index 4fe6cdf09..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Ștergeți ramura", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/edit/index.json b/packages/keystatic/src/app/l10n/ro-RO/edit/index.json deleted file mode 100644 index 30e573732..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Editați", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/loading/index.json b/packages/keystatic/src/app/l10n/ro-RO/loading/index.json deleted file mode 100644 index 19799e17c..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Se încarcă", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/newBranch/index.json b/packages/keystatic/src/app/l10n/ro-RO/newBranch/index.json deleted file mode 100644 index ab21af8d3..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Filiala noua", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/otherBranches/index.json b/packages/keystatic/src/app/l10n/ro-RO/otherBranches/index.json deleted file mode 100644 index abb0f4915..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Alte ramuri", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/pullRequests/index.json b/packages/keystatic/src/app/l10n/ro-RO/pullRequests/index.json deleted file mode 100644 index d4e3a6890..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Solicitări de tragere", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/save/index.json b/packages/keystatic/src/app/l10n/ro-RO/save/index.json deleted file mode 100644 index b2dcfb114..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Salvați", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/search/index.json b/packages/keystatic/src/app/l10n/ro-RO/search/index.json deleted file mode 100644 index 9ca713ebc..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Căutare", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/singleton/index.json b/packages/keystatic/src/app/l10n/ro-RO/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/singletons/index.json b/packages/keystatic/src/app/l10n/ro-RO/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/ro-RO/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 5177cac59..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Sucursala verificată în prezent. Alegeți acest lucru dacă trebuie să vă bazați pe munca existentă din ramura curentă.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/ro-RO/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 003e1b6c0..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Ramura implicită din depozitul dvs. Alegeți acest lucru pentru a începe ceva nou, care nu depinde de ramura dvs. actuală.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ro-RO/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/ro-RO/viewPullRequests/index.json deleted file mode 100644 index 59d612f82..000000000 --- a/packages/keystatic/src/app/l10n/ro-RO/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Vizualizați solicitările de extragere", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU.json b/packages/keystatic/src/app/l10n/ru-RU.json new file mode 100644 index 000000000..b76218c8b --- /dev/null +++ b/packages/keystatic/src/app/l10n/ru-RU.json @@ -0,0 +1,29 @@ +{ + "add": "Добавить", + "basedOn": "На основе", + "branchName": "Название ветви", + "branches": "Ветви", + "cancel": "Отмена", + "clear": "Очистить", + "collection": "Коллекция", + "collections": "Коллекции", + "create": "Создать", + "createPullRequest": "Создать пул-реквест", + "currentBranch": "Текущая ветвь", + "dashboard": "Панель приборов", + "defaultBranch": "Ветвь по умолчанию", + "delete": "Удалить", + "deleteBranch": "Удалить ветвь", + "edit": "Редактировать", + "loading": "Загрузка", + "newBranch": "Новая ветвь", + "otherBranches": "Другие ветви", + "pullRequests": "Пул-реквесты", + "save": "Сохранить", + "search": "Поиск", + "singleton": "Синглтон", + "singletons": "Синглтоны", + "theCurrentlyCheckedOutBranch": "Текущая проверенная ветвь. Выберите это, если вам нужно опираться на существующую работу из текущей ветви.", + "theDefaultBranchInYourRepository": "Ветвь по умолчанию в вашем репозитории. Выберите это, чтобы начать что-то новое, не зависящее от вашей текущей ветви.", + "viewPullRequests": "Посмотреть пул-реквесты" +} diff --git a/packages/keystatic/src/app/l10n/ru-RU/add/index.json b/packages/keystatic/src/app/l10n/ru-RU/add/index.json deleted file mode 100644 index 23e29e584..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Добавить", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/basedOn/index.json b/packages/keystatic/src/app/l10n/ru-RU/basedOn/index.json deleted file mode 100644 index 5d5094ca7..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "На основе", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/branchName/index.json b/packages/keystatic/src/app/l10n/ru-RU/branchName/index.json deleted file mode 100644 index 4a474166a..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Название ветви", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/branches/index.json b/packages/keystatic/src/app/l10n/ru-RU/branches/index.json deleted file mode 100644 index 26545ba51..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Ветви", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/cancel/index.json b/packages/keystatic/src/app/l10n/ru-RU/cancel/index.json deleted file mode 100644 index fe0d92a07..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Отмена", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/clear/index.json b/packages/keystatic/src/app/l10n/ru-RU/clear/index.json deleted file mode 100644 index 8891a15ed..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Очистить", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/collection/index.json b/packages/keystatic/src/app/l10n/ru-RU/collection/index.json deleted file mode 100644 index 61212d82a..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Коллекция", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/collections/index.json b/packages/keystatic/src/app/l10n/ru-RU/collections/index.json deleted file mode 100644 index 60bb471ba..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Коллекции", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/create/index.json b/packages/keystatic/src/app/l10n/ru-RU/create/index.json deleted file mode 100644 index 6e0ed15ee..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Создать", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/createPullRequest/index.json b/packages/keystatic/src/app/l10n/ru-RU/createPullRequest/index.json deleted file mode 100644 index f59e52cfc..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Создать пул-реквест", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/currentBranch/index.json b/packages/keystatic/src/app/l10n/ru-RU/currentBranch/index.json deleted file mode 100644 index 126c920e7..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Текущая ветвь", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/dashboard/index.json b/packages/keystatic/src/app/l10n/ru-RU/dashboard/index.json deleted file mode 100644 index 52eef83b6..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Панель приборов", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/defaultBranch/index.json b/packages/keystatic/src/app/l10n/ru-RU/defaultBranch/index.json deleted file mode 100644 index 29a42af5a..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Ветвь по умолчанию", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/delete/index.json b/packages/keystatic/src/app/l10n/ru-RU/delete/index.json deleted file mode 100644 index 284663947..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Удалить", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/deleteBranch/index.json b/packages/keystatic/src/app/l10n/ru-RU/deleteBranch/index.json deleted file mode 100644 index c29864d4a..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Удалить ветвь", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/edit/index.json b/packages/keystatic/src/app/l10n/ru-RU/edit/index.json deleted file mode 100644 index 036fad05a..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Редактировать", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/loading/index.json b/packages/keystatic/src/app/l10n/ru-RU/loading/index.json deleted file mode 100644 index 654f1db7e..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Загрузка", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/newBranch/index.json b/packages/keystatic/src/app/l10n/ru-RU/newBranch/index.json deleted file mode 100644 index b328081b3..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Новая ветвь", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/otherBranches/index.json b/packages/keystatic/src/app/l10n/ru-RU/otherBranches/index.json deleted file mode 100644 index f64ecc742..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Другие ветви", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/pullRequests/index.json b/packages/keystatic/src/app/l10n/ru-RU/pullRequests/index.json deleted file mode 100644 index 3e0af11a4..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Пул-реквесты", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/save/index.json b/packages/keystatic/src/app/l10n/ru-RU/save/index.json deleted file mode 100644 index 9817eaed4..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Сохранить", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/search/index.json b/packages/keystatic/src/app/l10n/ru-RU/search/index.json deleted file mode 100644 index 070f59e15..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Поиск", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/singleton/index.json b/packages/keystatic/src/app/l10n/ru-RU/singleton/index.json deleted file mode 100644 index 5737fdc99..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Синглтон", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/singletons/index.json b/packages/keystatic/src/app/l10n/ru-RU/singletons/index.json deleted file mode 100644 index 857e17679..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Синглтоны", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/ru-RU/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 91c1b00b9..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Текущая проверенная ветвь. Выберите это, если вам нужно опираться на существующую работу из текущей ветви.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/ru-RU/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 5c2566170..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Ветвь по умолчанию в вашем репозитории. Выберите это, чтобы начать что-то новое, не зависящее от вашей текущей ветви.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/ru-RU/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/ru-RU/viewPullRequests/index.json deleted file mode 100644 index 2f710adba..000000000 --- a/packages/keystatic/src/app/l10n/ru-RU/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Посмотреть пул-реквесты", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK.json b/packages/keystatic/src/app/l10n/sk-SK.json new file mode 100644 index 000000000..e8f1f299c --- /dev/null +++ b/packages/keystatic/src/app/l10n/sk-SK.json @@ -0,0 +1,29 @@ +{ + "add": "Pridať", + "basedOn": "Založené na", + "branchName": "Meno pobočky", + "branches": "Pobočky", + "cancel": "Zrušiť", + "clear": "Vymazať", + "collection": "Zbierka", + "collections": "zbierky", + "create": "Vytvorte", + "createPullRequest": "Vytvorte požiadavku na stiahnutie", + "currentBranch": "Aktuálna pobočka", + "dashboard": "Dashboard", + "defaultBranch": "Predvolená vetva", + "delete": "Odstrániť", + "deleteBranch": "Odstrániť vetvu", + "edit": "Upraviť", + "loading": "Načítava sa", + "newBranch": "Nová pobočka", + "otherBranches": "Ostatné pobočky", + "pullRequests": "Vytiahnite žiadosti", + "save": "Uložiť", + "search": "Vyhľadávať", + "singleton": "Singleton", + "singletons": "Singletons", + "theCurrentlyCheckedOutBranch": "Aktuálne odhlásená pobočka. Túto možnosť vyberte, ak potrebujete stavať na existujúcej práci z aktuálnej pobočky.", + "theDefaultBranchInYourRepository": "Predvolená vetva vo vašom úložisku. Zvoľte túto možnosť, ak chcete začať niečo nové, čo nezávisí od vašej aktuálnej pobočky.", + "viewPullRequests": "Zobraziť požiadavky na stiahnutie" +} diff --git a/packages/keystatic/src/app/l10n/sk-SK/add/index.json b/packages/keystatic/src/app/l10n/sk-SK/add/index.json deleted file mode 100644 index 56cb88345..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Pridať", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/basedOn/index.json b/packages/keystatic/src/app/l10n/sk-SK/basedOn/index.json deleted file mode 100644 index b52c1aa1e..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Založené na", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/branchName/index.json b/packages/keystatic/src/app/l10n/sk-SK/branchName/index.json deleted file mode 100644 index a4736809e..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Meno pobočky", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/branches/index.json b/packages/keystatic/src/app/l10n/sk-SK/branches/index.json deleted file mode 100644 index c40fd21dc..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Pobočky", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/cancel/index.json b/packages/keystatic/src/app/l10n/sk-SK/cancel/index.json deleted file mode 100644 index e86ee5205..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Zrušiť", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/clear/index.json b/packages/keystatic/src/app/l10n/sk-SK/clear/index.json deleted file mode 100644 index 45ba1a60d..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Vymazať", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/collection/index.json b/packages/keystatic/src/app/l10n/sk-SK/collection/index.json deleted file mode 100644 index 6a75a19cb..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Zbierka", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/collections/index.json b/packages/keystatic/src/app/l10n/sk-SK/collections/index.json deleted file mode 100644 index 085116d37..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "zbierky", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/create/index.json b/packages/keystatic/src/app/l10n/sk-SK/create/index.json deleted file mode 100644 index 54235c28d..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Vytvorte", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/createPullRequest/index.json b/packages/keystatic/src/app/l10n/sk-SK/createPullRequest/index.json deleted file mode 100644 index ac2d536c3..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Vytvorte požiadavku na stiahnutie", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/currentBranch/index.json b/packages/keystatic/src/app/l10n/sk-SK/currentBranch/index.json deleted file mode 100644 index f0b825150..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Aktuálna pobočka", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/dashboard/index.json b/packages/keystatic/src/app/l10n/sk-SK/dashboard/index.json deleted file mode 100644 index 01b2977e0..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Dashboard", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/defaultBranch/index.json b/packages/keystatic/src/app/l10n/sk-SK/defaultBranch/index.json deleted file mode 100644 index 1db44aad8..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Predvolená vetva", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/delete/index.json b/packages/keystatic/src/app/l10n/sk-SK/delete/index.json deleted file mode 100644 index b94c6754e..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Odstrániť", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/deleteBranch/index.json b/packages/keystatic/src/app/l10n/sk-SK/deleteBranch/index.json deleted file mode 100644 index a0eb0c9f8..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Odstrániť vetvu", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/edit/index.json b/packages/keystatic/src/app/l10n/sk-SK/edit/index.json deleted file mode 100644 index 7634a455c..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Upraviť", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/loading/index.json b/packages/keystatic/src/app/l10n/sk-SK/loading/index.json deleted file mode 100644 index 0d0592912..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Načítava sa", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/newBranch/index.json b/packages/keystatic/src/app/l10n/sk-SK/newBranch/index.json deleted file mode 100644 index 68f9c2068..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nová pobočka", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/otherBranches/index.json b/packages/keystatic/src/app/l10n/sk-SK/otherBranches/index.json deleted file mode 100644 index 085db6119..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Ostatné pobočky", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/pullRequests/index.json b/packages/keystatic/src/app/l10n/sk-SK/pullRequests/index.json deleted file mode 100644 index b03c80454..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Vytiahnite žiadosti", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/save/index.json b/packages/keystatic/src/app/l10n/sk-SK/save/index.json deleted file mode 100644 index 6d9b455a3..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Uložiť", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/search/index.json b/packages/keystatic/src/app/l10n/sk-SK/search/index.json deleted file mode 100644 index f8215b733..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Vyhľadávať", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/singleton/index.json b/packages/keystatic/src/app/l10n/sk-SK/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/singletons/index.json b/packages/keystatic/src/app/l10n/sk-SK/singletons/index.json deleted file mode 100644 index 78f72d3c1..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singletons", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/sk-SK/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 1001f4c34..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Aktuálne odhlásená pobočka. Túto možnosť vyberte, ak potrebujete stavať na existujúcej práci z aktuálnej pobočky.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/sk-SK/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index c82c85448..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Predvolená vetva vo vašom úložisku. Zvoľte túto možnosť, ak chcete začať niečo nové, čo nezávisí od vašej aktuálnej pobočky.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sk-SK/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/sk-SK/viewPullRequests/index.json deleted file mode 100644 index 16c4a4a3b..000000000 --- a/packages/keystatic/src/app/l10n/sk-SK/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Zobraziť požiadavky na stiahnutie", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI.json b/packages/keystatic/src/app/l10n/sl-SI.json new file mode 100644 index 000000000..0eea57523 --- /dev/null +++ b/packages/keystatic/src/app/l10n/sl-SI.json @@ -0,0 +1,29 @@ +{ + "add": "Dodaj", + "basedOn": "Temelji na", + "branchName": "Ime podružnice", + "branches": "Podružnice", + "cancel": "Prekliči", + "clear": "Jasen", + "collection": "Zbirka", + "collections": "Zbirke", + "create": "Ustvari", + "createPullRequest": "Ustvari zahtevo za vleko", + "currentBranch": "Trenutna veja", + "dashboard": "Nadzorna plošča", + "defaultBranch": "Privzeta veja", + "delete": "Izbriši", + "deleteBranch": "Izbriši vejo", + "edit": "Uredi", + "loading": "Nalaganje", + "newBranch": "Nova podružnica", + "otherBranches": "Druge veje", + "pullRequests": "Zahteve za vlečenje", + "save": "Shrani", + "search": "Iskanje", + "singleton": "Singleton", + "singletons": "Samski", + "theCurrentlyCheckedOutBranch": "Trenutno odjavljena podružnica. To izberite, če morate graditi na obstoječem delu iz trenutne veje.", + "theDefaultBranchInYourRepository": "Privzeta veja v vašem skladišču. Izberite to, da začnete nekaj novega, kar ni odvisno od vaše trenutne veje.", + "viewPullRequests": "Oglejte si zahteve za vlečenje" +} diff --git a/packages/keystatic/src/app/l10n/sl-SI/add/index.json b/packages/keystatic/src/app/l10n/sl-SI/add/index.json deleted file mode 100644 index 6be71172d..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Dodaj", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/basedOn/index.json b/packages/keystatic/src/app/l10n/sl-SI/basedOn/index.json deleted file mode 100644 index 0133eed7e..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Temelji na", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/branchName/index.json b/packages/keystatic/src/app/l10n/sl-SI/branchName/index.json deleted file mode 100644 index f857bc617..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Ime podružnice", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/branches/index.json b/packages/keystatic/src/app/l10n/sl-SI/branches/index.json deleted file mode 100644 index b4b95e950..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Podružnice", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/cancel/index.json b/packages/keystatic/src/app/l10n/sl-SI/cancel/index.json deleted file mode 100644 index 90fa015f3..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Prekliči", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/clear/index.json b/packages/keystatic/src/app/l10n/sl-SI/clear/index.json deleted file mode 100644 index 1901a312a..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Jasen", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/collection/index.json b/packages/keystatic/src/app/l10n/sl-SI/collection/index.json deleted file mode 100644 index e7d134db7..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Zbirka", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/collections/index.json b/packages/keystatic/src/app/l10n/sl-SI/collections/index.json deleted file mode 100644 index 34a221599..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Zbirke", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/create/index.json b/packages/keystatic/src/app/l10n/sl-SI/create/index.json deleted file mode 100644 index 6cbe69c41..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Ustvari", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/createPullRequest/index.json b/packages/keystatic/src/app/l10n/sl-SI/createPullRequest/index.json deleted file mode 100644 index 159e63ef4..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Ustvari zahtevo za vleko", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/currentBranch/index.json b/packages/keystatic/src/app/l10n/sl-SI/currentBranch/index.json deleted file mode 100644 index 8a7f25bc3..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Trenutna veja", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/dashboard/index.json b/packages/keystatic/src/app/l10n/sl-SI/dashboard/index.json deleted file mode 100644 index bb86f9f52..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Nadzorna plošča", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/defaultBranch/index.json b/packages/keystatic/src/app/l10n/sl-SI/defaultBranch/index.json deleted file mode 100644 index a6cd5093a..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Privzeta veja", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/delete/index.json b/packages/keystatic/src/app/l10n/sl-SI/delete/index.json deleted file mode 100644 index 14a051f9f..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Izbriši", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/deleteBranch/index.json b/packages/keystatic/src/app/l10n/sl-SI/deleteBranch/index.json deleted file mode 100644 index f03c1f36e..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Izbriši vejo", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/edit/index.json b/packages/keystatic/src/app/l10n/sl-SI/edit/index.json deleted file mode 100644 index 8c41e5b41..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Uredi", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/loading/index.json b/packages/keystatic/src/app/l10n/sl-SI/loading/index.json deleted file mode 100644 index 5b9441298..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Nalaganje", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/newBranch/index.json b/packages/keystatic/src/app/l10n/sl-SI/newBranch/index.json deleted file mode 100644 index e3380a74b..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Nova podružnica", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/otherBranches/index.json b/packages/keystatic/src/app/l10n/sl-SI/otherBranches/index.json deleted file mode 100644 index 8b6c0804e..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Druge veje", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/pullRequests/index.json b/packages/keystatic/src/app/l10n/sl-SI/pullRequests/index.json deleted file mode 100644 index 33a2c519a..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Zahteve za vlečenje", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/save/index.json b/packages/keystatic/src/app/l10n/sl-SI/save/index.json deleted file mode 100644 index b3e784079..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Shrani", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/search/index.json b/packages/keystatic/src/app/l10n/sl-SI/search/index.json deleted file mode 100644 index 25343dbc0..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Iskanje", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/singleton/index.json b/packages/keystatic/src/app/l10n/sl-SI/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/singletons/index.json b/packages/keystatic/src/app/l10n/sl-SI/singletons/index.json deleted file mode 100644 index 3d9f1c278..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Samski", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/sl-SI/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 6d64d9f8f..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Trenutno odjavljena podružnica. To izberite, če morate graditi na obstoječem delu iz trenutne veje.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/sl-SI/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index bf1613b96..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Privzeta veja v vašem skladišču. Izberite to, da začnete nekaj novega, kar ni odvisno od vaše trenutne veje.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sl-SI/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/sl-SI/viewPullRequests/index.json deleted file mode 100644 index 456a33baf..000000000 --- a/packages/keystatic/src/app/l10n/sl-SI/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Oglejte si zahteve za vlečenje", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP.json b/packages/keystatic/src/app/l10n/sr-SP.json new file mode 100644 index 000000000..25acc53e5 --- /dev/null +++ b/packages/keystatic/src/app/l10n/sr-SP.json @@ -0,0 +1,29 @@ +{ + "add": "Додати", + "basedOn": "На бази", + "branchName": "Назив огранка", + "branches": "Огранци", + "cancel": "Поништити, отказати", + "clear": "Izbriši", + "collection": "Цоллецтион", + "collections": "Збирке", + "create": "Креирај", + "createPullRequest": "Креирајте захтев за повлачење", + "currentBranch": "Тренутна грана", + "dashboard": "Командна табла", + "defaultBranch": "Подразумевана грана", + "delete": "Избриши", + "deleteBranch": "Обриши грану", + "edit": "Уредити", + "loading": "Učitavam", + "newBranch": "Нова грана", + "otherBranches": "Остале гране", + "pullRequests": "Захтеви за повлачење", + "save": "сачувати", + "search": "Pretraga", + "singleton": "Синглетон", + "singletons": "Синглетонс", + "theCurrentlyCheckedOutBranch": "Тренутно одјављена филијала. Изаберите ово ако треба да надоградите постојећи рад из тренутне гране.", + "theDefaultBranchInYourRepository": "Подразумевана грана у вашем спремишту. Изаберите ово да започнете нешто ново што не зависи од ваше тренутне гране.", + "viewPullRequests": "Прегледајте захтеве за повлачењем" +} diff --git a/packages/keystatic/src/app/l10n/sr-SP/add/index.json b/packages/keystatic/src/app/l10n/sr-SP/add/index.json deleted file mode 100644 index dc8526e73..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Додати", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/basedOn/index.json b/packages/keystatic/src/app/l10n/sr-SP/basedOn/index.json deleted file mode 100644 index e7e5b5196..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "На бази", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/branchName/index.json b/packages/keystatic/src/app/l10n/sr-SP/branchName/index.json deleted file mode 100644 index 3b46e7adf..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Назив огранка", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/branches/index.json b/packages/keystatic/src/app/l10n/sr-SP/branches/index.json deleted file mode 100644 index 44f93eeec..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Огранци", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/cancel/index.json b/packages/keystatic/src/app/l10n/sr-SP/cancel/index.json deleted file mode 100644 index 6df34ab2b..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Поништити, отказати", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/clear/index.json b/packages/keystatic/src/app/l10n/sr-SP/clear/index.json deleted file mode 100644 index 34371ebf8..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Izbriši", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/collection/index.json b/packages/keystatic/src/app/l10n/sr-SP/collection/index.json deleted file mode 100644 index d8dabe694..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Цоллецтион", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/collections/index.json b/packages/keystatic/src/app/l10n/sr-SP/collections/index.json deleted file mode 100644 index fdb373559..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Збирке", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/create/index.json b/packages/keystatic/src/app/l10n/sr-SP/create/index.json deleted file mode 100644 index 779e6d3c0..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Креирај", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/createPullRequest/index.json b/packages/keystatic/src/app/l10n/sr-SP/createPullRequest/index.json deleted file mode 100644 index 281c18529..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Креирајте захтев за повлачење", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/currentBranch/index.json b/packages/keystatic/src/app/l10n/sr-SP/currentBranch/index.json deleted file mode 100644 index db0ab770b..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Тренутна грана", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/dashboard/index.json b/packages/keystatic/src/app/l10n/sr-SP/dashboard/index.json deleted file mode 100644 index 148f823c7..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Командна табла", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/defaultBranch/index.json b/packages/keystatic/src/app/l10n/sr-SP/defaultBranch/index.json deleted file mode 100644 index 22d335029..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Подразумевана грана", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/delete/index.json b/packages/keystatic/src/app/l10n/sr-SP/delete/index.json deleted file mode 100644 index b2de2bceb..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Избриши", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/deleteBranch/index.json b/packages/keystatic/src/app/l10n/sr-SP/deleteBranch/index.json deleted file mode 100644 index 87fa3df8f..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Обриши грану", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/edit/index.json b/packages/keystatic/src/app/l10n/sr-SP/edit/index.json deleted file mode 100644 index 67c30e7b4..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Уредити", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/loading/index.json b/packages/keystatic/src/app/l10n/sr-SP/loading/index.json deleted file mode 100644 index 0b94d84ef..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Učitavam", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/newBranch/index.json b/packages/keystatic/src/app/l10n/sr-SP/newBranch/index.json deleted file mode 100644 index e56fa548a..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Нова грана", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/otherBranches/index.json b/packages/keystatic/src/app/l10n/sr-SP/otherBranches/index.json deleted file mode 100644 index 80ddf361d..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Остале гране", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/pullRequests/index.json b/packages/keystatic/src/app/l10n/sr-SP/pullRequests/index.json deleted file mode 100644 index 704b289a2..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Захтеви за повлачење", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/save/index.json b/packages/keystatic/src/app/l10n/sr-SP/save/index.json deleted file mode 100644 index 37c8d6e3b..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "сачувати", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/search/index.json b/packages/keystatic/src/app/l10n/sr-SP/search/index.json deleted file mode 100644 index f28cbe45f..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Pretraga", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/singleton/index.json b/packages/keystatic/src/app/l10n/sr-SP/singleton/index.json deleted file mode 100644 index 53879f6f2..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Синглетон", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/singletons/index.json b/packages/keystatic/src/app/l10n/sr-SP/singletons/index.json deleted file mode 100644 index 79536be92..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Синглетонс", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/sr-SP/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index a32f3ac19..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Тренутно одјављена филијала. Изаберите ово ако треба да надоградите постојећи рад из тренутне гране.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/sr-SP/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index fd134d690..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Подразумевана грана у вашем спремишту. Изаберите ово да започнете нешто ново што не зависи од ваше тренутне гране.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sr-SP/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/sr-SP/viewPullRequests/index.json deleted file mode 100644 index dcbaa8902..000000000 --- a/packages/keystatic/src/app/l10n/sr-SP/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Прегледајте захтеве за повлачењем", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE.json b/packages/keystatic/src/app/l10n/sv-SE.json new file mode 100644 index 000000000..0acf037f6 --- /dev/null +++ b/packages/keystatic/src/app/l10n/sv-SE.json @@ -0,0 +1,29 @@ +{ + "add": "Lägg till", + "basedOn": "Baserat på", + "branchName": "Filialens namn", + "branches": "Grenar", + "cancel": "Поништити, отказати", + "clear": "Rensa", + "collection": "Samling", + "collections": "Samlingar", + "create": "Skapa", + "createPullRequest": "Skapa pull-förfrågan", + "currentBranch": "Nuvarande gren", + "dashboard": "instrumentbräda", + "defaultBranch": "Standardgren", + "delete": "Radera", + "deleteBranch": "Ta bort gren", + "edit": "Redigera", + "loading": "Läser in", + "newBranch": "Ny gren", + "otherBranches": "Andra grenar", + "pullRequests": "Dra förfrågningar", + "save": "Spara", + "search": "Sök", + "singleton": "Singleton", + "singletons": "Singlar", + "theCurrentlyCheckedOutBranch": "Den utcheckade filialen. Välj detta om du behöver bygga på befintligt arbete från den aktuella grenen.", + "theDefaultBranchInYourRepository": "Standardgrenen i ditt arkiv. Välj detta för att starta något nytt som inte är beroende av din nuvarande filial.", + "viewPullRequests": "Visa pull-förfrågningar" +} diff --git a/packages/keystatic/src/app/l10n/sv-SE/add/index.json b/packages/keystatic/src/app/l10n/sv-SE/add/index.json deleted file mode 100644 index 3622f57f9..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Lägg till", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/basedOn/index.json b/packages/keystatic/src/app/l10n/sv-SE/basedOn/index.json deleted file mode 100644 index 44a465855..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Baserat på", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/branchName/index.json b/packages/keystatic/src/app/l10n/sv-SE/branchName/index.json deleted file mode 100644 index 4ed334288..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Filialens namn", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/branches/index.json b/packages/keystatic/src/app/l10n/sv-SE/branches/index.json deleted file mode 100644 index 489e9f6d5..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Grenar", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/cancel/index.json b/packages/keystatic/src/app/l10n/sv-SE/cancel/index.json deleted file mode 100644 index 6df34ab2b..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Поништити, отказати", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/clear/index.json b/packages/keystatic/src/app/l10n/sv-SE/clear/index.json deleted file mode 100644 index a501e3b2d..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Rensa", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/collection/index.json b/packages/keystatic/src/app/l10n/sv-SE/collection/index.json deleted file mode 100644 index 1e98e71e5..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Samling", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/collections/index.json b/packages/keystatic/src/app/l10n/sv-SE/collections/index.json deleted file mode 100644 index b18895343..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Samlingar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/create/index.json b/packages/keystatic/src/app/l10n/sv-SE/create/index.json deleted file mode 100644 index 2e0728e28..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Skapa", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/createPullRequest/index.json b/packages/keystatic/src/app/l10n/sv-SE/createPullRequest/index.json deleted file mode 100644 index 6c74c1b14..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Skapa pull-förfrågan", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/currentBranch/index.json b/packages/keystatic/src/app/l10n/sv-SE/currentBranch/index.json deleted file mode 100644 index 4727b570d..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Nuvarande gren", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/dashboard/index.json b/packages/keystatic/src/app/l10n/sv-SE/dashboard/index.json deleted file mode 100644 index ac925f69a..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "instrumentbräda", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/defaultBranch/index.json b/packages/keystatic/src/app/l10n/sv-SE/defaultBranch/index.json deleted file mode 100644 index 7d9446ecb..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Standardgren", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/delete/index.json b/packages/keystatic/src/app/l10n/sv-SE/delete/index.json deleted file mode 100644 index c4ba185fd..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Radera", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/deleteBranch/index.json b/packages/keystatic/src/app/l10n/sv-SE/deleteBranch/index.json deleted file mode 100644 index 321a82438..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Ta bort gren", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/edit/index.json b/packages/keystatic/src/app/l10n/sv-SE/edit/index.json deleted file mode 100644 index 1d9f756a8..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Redigera", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/loading/index.json b/packages/keystatic/src/app/l10n/sv-SE/loading/index.json deleted file mode 100644 index 010de5c18..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Läser in", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/newBranch/index.json b/packages/keystatic/src/app/l10n/sv-SE/newBranch/index.json deleted file mode 100644 index 19f4fd650..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Ny gren", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/otherBranches/index.json b/packages/keystatic/src/app/l10n/sv-SE/otherBranches/index.json deleted file mode 100644 index 8d1358a3e..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Andra grenar", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/pullRequests/index.json b/packages/keystatic/src/app/l10n/sv-SE/pullRequests/index.json deleted file mode 100644 index 16826b90c..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Dra förfrågningar", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/save/index.json b/packages/keystatic/src/app/l10n/sv-SE/save/index.json deleted file mode 100644 index e8281aa10..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Spara", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/search/index.json b/packages/keystatic/src/app/l10n/sv-SE/search/index.json deleted file mode 100644 index 2020bf849..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Sök", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/singleton/index.json b/packages/keystatic/src/app/l10n/sv-SE/singleton/index.json deleted file mode 100644 index 9b6d043cd..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Singleton", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/singletons/index.json b/packages/keystatic/src/app/l10n/sv-SE/singletons/index.json deleted file mode 100644 index 0d9883b23..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singlar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/sv-SE/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 4dac47cf7..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Den utcheckade filialen. Välj detta om du behöver bygga på befintligt arbete från den aktuella grenen.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/sv-SE/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index eb5c7c415..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Standardgrenen i ditt arkiv. Välj detta för att starta något nytt som inte är beroende av din nuvarande filial.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/sv-SE/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/sv-SE/viewPullRequests/index.json deleted file mode 100644 index 6062763e4..000000000 --- a/packages/keystatic/src/app/l10n/sv-SE/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Visa pull-förfrågningar", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR.json b/packages/keystatic/src/app/l10n/tr-TR.json new file mode 100644 index 000000000..2fc28ad09 --- /dev/null +++ b/packages/keystatic/src/app/l10n/tr-TR.json @@ -0,0 +1,29 @@ +{ + "add": "Avbryt", + "basedOn": "Dayalı", + "branchName": "şube adı", + "branches": "Şubeler", + "cancel": "iptal etmek", + "clear": "Temizle", + "collection": "Toplamak", + "collections": "Koleksiyonlar", + "create": "Yaratmak", + "createPullRequest": "Çekme isteği oluştur", + "currentBranch": "Mevcut şube", + "dashboard": "Gösterge Paneli", + "defaultBranch": "varsayılan dal", + "delete": "Silmek", + "deleteBranch": "Şubeyi sil", + "edit": "Düzenlemek", + "loading": "Yükleniyor", + "newBranch": "Yeni dal", + "otherBranches": "Diğer şubeler", + "pullRequests": "Çekme istekleri", + "save": "Kaydetmek", + "search": "Ara", + "singleton": "Tekil", + "singletons": "Singleton'lar", + "theCurrentlyCheckedOutBranch": "Şu anda kontrol edilen şube. Geçerli daldaki mevcut işi geliştirmeniz gerekiyorsa bunu seçin.", + "theDefaultBranchInYourRepository": "Deponuzdaki varsayılan şube. Mevcut şubenize bağlı olmayan yeni bir şey başlatmak için bunu seçin.", + "viewPullRequests": "Çekme isteklerini görüntüle" +} diff --git a/packages/keystatic/src/app/l10n/tr-TR/add/index.json b/packages/keystatic/src/app/l10n/tr-TR/add/index.json deleted file mode 100644 index 4a7f38e17..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Avbryt", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/basedOn/index.json b/packages/keystatic/src/app/l10n/tr-TR/basedOn/index.json deleted file mode 100644 index 1059c4fe6..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "Dayalı", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/branchName/index.json b/packages/keystatic/src/app/l10n/tr-TR/branchName/index.json deleted file mode 100644 index 76f67c2f3..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "şube adı", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/branches/index.json b/packages/keystatic/src/app/l10n/tr-TR/branches/index.json deleted file mode 100644 index d563fb853..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Şubeler", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/cancel/index.json b/packages/keystatic/src/app/l10n/tr-TR/cancel/index.json deleted file mode 100644 index f8ac7ebbe..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "iptal etmek", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/clear/index.json b/packages/keystatic/src/app/l10n/tr-TR/clear/index.json deleted file mode 100644 index 40ad55be7..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Temizle", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/collection/index.json b/packages/keystatic/src/app/l10n/tr-TR/collection/index.json deleted file mode 100644 index 10c3dee05..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Toplamak", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/collections/index.json b/packages/keystatic/src/app/l10n/tr-TR/collections/index.json deleted file mode 100644 index 3faec23ef..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Koleksiyonlar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/create/index.json b/packages/keystatic/src/app/l10n/tr-TR/create/index.json deleted file mode 100644 index d5d6b0b62..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Yaratmak", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/createPullRequest/index.json b/packages/keystatic/src/app/l10n/tr-TR/createPullRequest/index.json deleted file mode 100644 index ec57ff589..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Çekme isteği oluştur", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/currentBranch/index.json b/packages/keystatic/src/app/l10n/tr-TR/currentBranch/index.json deleted file mode 100644 index 624519569..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Mevcut şube", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/dashboard/index.json b/packages/keystatic/src/app/l10n/tr-TR/dashboard/index.json deleted file mode 100644 index 7e15322b2..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Gösterge Paneli", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/defaultBranch/index.json b/packages/keystatic/src/app/l10n/tr-TR/defaultBranch/index.json deleted file mode 100644 index 18cf32db3..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "varsayılan dal", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/delete/index.json b/packages/keystatic/src/app/l10n/tr-TR/delete/index.json deleted file mode 100644 index dc292748f..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Silmek", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/deleteBranch/index.json b/packages/keystatic/src/app/l10n/tr-TR/deleteBranch/index.json deleted file mode 100644 index bdf15b75c..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Şubeyi sil", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/edit/index.json b/packages/keystatic/src/app/l10n/tr-TR/edit/index.json deleted file mode 100644 index dc90dd598..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Düzenlemek", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/loading/index.json b/packages/keystatic/src/app/l10n/tr-TR/loading/index.json deleted file mode 100644 index c9c406a80..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Yükleniyor", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/newBranch/index.json b/packages/keystatic/src/app/l10n/tr-TR/newBranch/index.json deleted file mode 100644 index 632cb6888..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Yeni dal", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/otherBranches/index.json b/packages/keystatic/src/app/l10n/tr-TR/otherBranches/index.json deleted file mode 100644 index eb1f247e4..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Diğer şubeler", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/pullRequests/index.json b/packages/keystatic/src/app/l10n/tr-TR/pullRequests/index.json deleted file mode 100644 index 98040e1c0..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Çekme istekleri", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/save/index.json b/packages/keystatic/src/app/l10n/tr-TR/save/index.json deleted file mode 100644 index c1f4b7a4f..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Kaydetmek", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/search/index.json b/packages/keystatic/src/app/l10n/tr-TR/search/index.json deleted file mode 100644 index 84871ed22..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Ara", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/singleton/index.json b/packages/keystatic/src/app/l10n/tr-TR/singleton/index.json deleted file mode 100644 index d4aa503e1..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Tekil", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/singletons/index.json b/packages/keystatic/src/app/l10n/tr-TR/singletons/index.json deleted file mode 100644 index fd618e66f..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Singleton'lar", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/tr-TR/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 869e3ec54..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Şu anda kontrol edilen şube. Geçerli daldaki mevcut işi geliştirmeniz gerekiyorsa bunu seçin.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/tr-TR/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 3607caebb..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Deponuzdaki varsayılan şube. Mevcut şubenize bağlı olmayan yeni bir şey başlatmak için bunu seçin.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/tr-TR/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/tr-TR/viewPullRequests/index.json deleted file mode 100644 index 4d73ed927..000000000 --- a/packages/keystatic/src/app/l10n/tr-TR/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Çekme isteklerini görüntüle", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA.json b/packages/keystatic/src/app/l10n/uk-UA.json new file mode 100644 index 000000000..eb5adcb7a --- /dev/null +++ b/packages/keystatic/src/app/l10n/uk-UA.json @@ -0,0 +1,29 @@ +{ + "add": "Додати", + "basedOn": "На основі", + "branchName": "Назва гілки", + "branches": "Гілки", + "cancel": "Скасувати", + "clear": "Очистити", + "collection": "Колекція", + "collections": "Колекції", + "create": "Створити", + "createPullRequest": "Створити запит на злиття змін", + "currentBranch": "Поточна гілка", + "dashboard": "Дашборд", + "defaultBranch": "Типова гілка", + "delete": "Видалити", + "deleteBranch": "Видалити гілку", + "edit": "Редагувати", + "loading": "Завантаження", + "newBranch": "Нова гілка", + "otherBranches": "Інші гілки", + "pullRequests": "Запити на злиття", + "save": "Зберегти", + "search": "Пошук", + "singleton": "Одиночка", + "singletons": "Одиночки", + "theCurrentlyCheckedOutBranch": "Поточна обрана гілка. Виберіть це, якщо вам потрібно продовжити роботу на основі поточної гілки.", + "theDefaultBranchInYourRepository": "Типова гілка у вашому репозиторії. Виберіть це, щоб почати щось нове, що не залежить від вашої поточної гілки.", + "viewPullRequests": "Перегляд запитів на злиття" +} diff --git a/packages/keystatic/src/app/l10n/uk-UA/add/index.json b/packages/keystatic/src/app/l10n/uk-UA/add/index.json deleted file mode 100644 index dc8526e73..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "Додати", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/basedOn/index.json b/packages/keystatic/src/app/l10n/uk-UA/basedOn/index.json deleted file mode 100644 index 411032066..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "На основі", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/branchName/index.json b/packages/keystatic/src/app/l10n/uk-UA/branchName/index.json deleted file mode 100644 index ca94e12b8..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "Назва гілки", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/branches/index.json b/packages/keystatic/src/app/l10n/uk-UA/branches/index.json deleted file mode 100644 index f0349f9be..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "Гілки", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/cancel/index.json b/packages/keystatic/src/app/l10n/uk-UA/cancel/index.json deleted file mode 100644 index 54e755146..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "Скасувати", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/clear/index.json b/packages/keystatic/src/app/l10n/uk-UA/clear/index.json deleted file mode 100644 index a63c5fc63..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "Очистити", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/collection/index.json b/packages/keystatic/src/app/l10n/uk-UA/collection/index.json deleted file mode 100644 index e7a02e273..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "Колекція", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/collections/index.json b/packages/keystatic/src/app/l10n/uk-UA/collections/index.json deleted file mode 100644 index ae445c55f..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "Колекції", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/create/index.json b/packages/keystatic/src/app/l10n/uk-UA/create/index.json deleted file mode 100644 index 0fedd0a55..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "Створити", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/createPullRequest/index.json b/packages/keystatic/src/app/l10n/uk-UA/createPullRequest/index.json deleted file mode 100644 index f62789e39..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "Створити запит на злиття змін", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/currentBranch/index.json b/packages/keystatic/src/app/l10n/uk-UA/currentBranch/index.json deleted file mode 100644 index 26f786d8a..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "Поточна гілка", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/dashboard/index.json b/packages/keystatic/src/app/l10n/uk-UA/dashboard/index.json deleted file mode 100644 index d057f284a..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "Дашборд", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/defaultBranch/index.json b/packages/keystatic/src/app/l10n/uk-UA/defaultBranch/index.json deleted file mode 100644 index 01065a39a..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "Типова гілка", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/delete/index.json b/packages/keystatic/src/app/l10n/uk-UA/delete/index.json deleted file mode 100644 index 0ee69f377..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "Видалити", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/deleteBranch/index.json b/packages/keystatic/src/app/l10n/uk-UA/deleteBranch/index.json deleted file mode 100644 index 0a4a06d52..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "Видалити гілку", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/edit/index.json b/packages/keystatic/src/app/l10n/uk-UA/edit/index.json deleted file mode 100644 index c55e9c158..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "Редагувати", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/loading/index.json b/packages/keystatic/src/app/l10n/uk-UA/loading/index.json deleted file mode 100644 index 4f9bb9d48..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "Завантаження", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/newBranch/index.json b/packages/keystatic/src/app/l10n/uk-UA/newBranch/index.json deleted file mode 100644 index 8a93e8ca1..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "Нова гілка", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/otherBranches/index.json b/packages/keystatic/src/app/l10n/uk-UA/otherBranches/index.json deleted file mode 100644 index 60e1cfcf2..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "Інші гілки", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/pullRequests/index.json b/packages/keystatic/src/app/l10n/uk-UA/pullRequests/index.json deleted file mode 100644 index ffa572ab9..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "Запити на злиття", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/save/index.json b/packages/keystatic/src/app/l10n/uk-UA/save/index.json deleted file mode 100644 index 110b4b9d4..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "Зберегти", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/search/index.json b/packages/keystatic/src/app/l10n/uk-UA/search/index.json deleted file mode 100644 index 2c6fcc0fb..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "Пошук", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/singleton/index.json b/packages/keystatic/src/app/l10n/uk-UA/singleton/index.json deleted file mode 100644 index 1f10a7311..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "Одиночка", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/singletons/index.json b/packages/keystatic/src/app/l10n/uk-UA/singletons/index.json deleted file mode 100644 index 0be9f5176..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "Одиночки", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/uk-UA/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 22a474273..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "Поточна обрана гілка. Виберіть це, якщо вам потрібно продовжити роботу на основі поточної гілки.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/uk-UA/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 64a1061bf..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "Типова гілка у вашому репозиторії. Виберіть це, щоб почати щось нове, що не залежить від вашої поточної гілки.", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/uk-UA/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/uk-UA/viewPullRequests/index.json deleted file mode 100644 index 9d0437291..000000000 --- a/packages/keystatic/src/app/l10n/uk-UA/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "Перегляд запитів на злиття", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN.json b/packages/keystatic/src/app/l10n/zh-CN.json new file mode 100644 index 000000000..87d7a90a8 --- /dev/null +++ b/packages/keystatic/src/app/l10n/zh-CN.json @@ -0,0 +1,29 @@ +{ + "add": "添加", + "basedOn": "基于", + "branchName": "分店名称", + "branches": "分支机构", + "cancel": "取消", + "clear": "透明", + "collection": "收藏", + "collections": "收藏品", + "create": "创造", + "createPullRequest": "创建拉取请求", + "currentBranch": "当前分支", + "dashboard": "仪表板", + "defaultBranch": "默认分支", + "delete": "删除", + "deleteBranch": "删除分支", + "edit": "编辑", + "loading": "正在加载", + "newBranch": "新分行", + "otherBranches": "其他分行", + "pullRequests": "拉取请求", + "save": "节省", + "search": "搜索", + "singleton": "单例", + "singletons": "单例", + "theCurrentlyCheckedOutBranch": "当前签出的分支。 如果您需要在当前分支的现有工作的基础上构建,请选择此项。", + "theDefaultBranchInYourRepository": "存储库中的默认分支。 选择此选项可开始一些不依赖于当前分支的新操作。", + "viewPullRequests": "查看拉取请求" +} diff --git a/packages/keystatic/src/app/l10n/zh-CN/add/index.json b/packages/keystatic/src/app/l10n/zh-CN/add/index.json deleted file mode 100644 index 79eca8cb7..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "添加", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/basedOn/index.json b/packages/keystatic/src/app/l10n/zh-CN/basedOn/index.json deleted file mode 100644 index 92b50a029..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "基于", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/branchName/index.json b/packages/keystatic/src/app/l10n/zh-CN/branchName/index.json deleted file mode 100644 index 92b4d80e7..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "分店名称", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/branches/index.json b/packages/keystatic/src/app/l10n/zh-CN/branches/index.json deleted file mode 100644 index cf4a8d89e..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "分支机构", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/cancel/index.json b/packages/keystatic/src/app/l10n/zh-CN/cancel/index.json deleted file mode 100644 index a6c72fbc3..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "取消", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/clear/index.json b/packages/keystatic/src/app/l10n/zh-CN/clear/index.json deleted file mode 100644 index 8663b3ed6..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "透明", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/collection/index.json b/packages/keystatic/src/app/l10n/zh-CN/collection/index.json deleted file mode 100644 index 532c90043..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "收藏", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/collections/index.json b/packages/keystatic/src/app/l10n/zh-CN/collections/index.json deleted file mode 100644 index 856643385..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "收藏品", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/create/index.json b/packages/keystatic/src/app/l10n/zh-CN/create/index.json deleted file mode 100644 index 5a6f4dee5..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "创造", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/createPullRequest/index.json b/packages/keystatic/src/app/l10n/zh-CN/createPullRequest/index.json deleted file mode 100644 index 858dadeec..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "创建拉取请求", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/currentBranch/index.json b/packages/keystatic/src/app/l10n/zh-CN/currentBranch/index.json deleted file mode 100644 index fde083ccd..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "当前分支", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/dashboard/index.json b/packages/keystatic/src/app/l10n/zh-CN/dashboard/index.json deleted file mode 100644 index 2a5bb7ba7..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "仪表板", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/defaultBranch/index.json b/packages/keystatic/src/app/l10n/zh-CN/defaultBranch/index.json deleted file mode 100644 index 72379234c..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "默认分支", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/delete/index.json b/packages/keystatic/src/app/l10n/zh-CN/delete/index.json deleted file mode 100644 index d6b15f558..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "删除", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/deleteBranch/index.json b/packages/keystatic/src/app/l10n/zh-CN/deleteBranch/index.json deleted file mode 100644 index 414648b6f..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "删除分支", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/edit/index.json b/packages/keystatic/src/app/l10n/zh-CN/edit/index.json deleted file mode 100644 index 6e5ede1bc..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "编辑", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/loading/index.json b/packages/keystatic/src/app/l10n/zh-CN/loading/index.json deleted file mode 100644 index 9980b87ec..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "正在加载", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/newBranch/index.json b/packages/keystatic/src/app/l10n/zh-CN/newBranch/index.json deleted file mode 100644 index d894ea77c..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "新分行", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/otherBranches/index.json b/packages/keystatic/src/app/l10n/zh-CN/otherBranches/index.json deleted file mode 100644 index 9854b7459..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "其他分行", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/pullRequests/index.json b/packages/keystatic/src/app/l10n/zh-CN/pullRequests/index.json deleted file mode 100644 index 615620250..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "拉取请求", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/save/index.json b/packages/keystatic/src/app/l10n/zh-CN/save/index.json deleted file mode 100644 index de7ee057f..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "节省", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/search/index.json b/packages/keystatic/src/app/l10n/zh-CN/search/index.json deleted file mode 100644 index f8b749450..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "搜索", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/singleton/index.json b/packages/keystatic/src/app/l10n/zh-CN/singleton/index.json deleted file mode 100644 index a26825688..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "单例", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/singletons/index.json b/packages/keystatic/src/app/l10n/zh-CN/singletons/index.json deleted file mode 100644 index f500a5722..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "单例", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/zh-CN/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 8c3e6d5bb..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "当前签出的分支。 如果您需要在当前分支的现有工作的基础上构建,请选择此项。", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/zh-CN/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index 1e3959da1..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "存储库中的默认分支。 选择此选项可开始一些不依赖于当前分支的新操作。", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-CN/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/zh-CN/viewPullRequests/index.json deleted file mode 100644 index 4dee6ea61..000000000 --- a/packages/keystatic/src/app/l10n/zh-CN/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "查看拉取请求", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW.json b/packages/keystatic/src/app/l10n/zh-TW.json new file mode 100644 index 000000000..32b7889e7 --- /dev/null +++ b/packages/keystatic/src/app/l10n/zh-TW.json @@ -0,0 +1,29 @@ +{ + "add": "添加", + "basedOn": "基於", + "branchName": "分店名稱", + "branches": "分支機構", + "cancel": "取消", + "clear": "清除", + "collection": "收藏", + "collections": "收藏品", + "create": "創造", + "createPullRequest": "創建拉取請求", + "currentBranch": "當前分支", + "dashboard": "儀表板", + "defaultBranch": "默認分支", + "delete": "刪除", + "deleteBranch": "刪除分支", + "edit": "編輯", + "loading": "正在載入", + "newBranch": "新分行", + "otherBranches": "其他分行", + "pullRequests": "拉取請求", + "save": "節省", + "search": "搜尋", + "singleton": "單例", + "singletons": "單例", + "theCurrentlyCheckedOutBranch": "當前簽出的分支。 如果您需要在當前分支的現有工作的基礎上構建,請選擇此項。", + "theDefaultBranchInYourRepository": "存儲庫中的默認分支。 選擇此選項可開始一些不依賴於當前分支的新操作。", + "viewPullRequests": "查看拉取請求" +} diff --git a/packages/keystatic/src/app/l10n/zh-TW/add/index.json b/packages/keystatic/src/app/l10n/zh-TW/add/index.json deleted file mode 100644 index 79eca8cb7..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/add/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "add", - "value": "添加", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/basedOn/index.json b/packages/keystatic/src/app/l10n/zh-TW/basedOn/index.json deleted file mode 100644 index 24e4e8895..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/basedOn/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "basedOn", - "value": "基於", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/branchName/index.json b/packages/keystatic/src/app/l10n/zh-TW/branchName/index.json deleted file mode 100644 index 1915e4c51..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/branchName/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branchName", - "value": "分店名稱", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/branches/index.json b/packages/keystatic/src/app/l10n/zh-TW/branches/index.json deleted file mode 100644 index 44d2d3d1f..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/branches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "branches", - "value": "分支機構", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/cancel/index.json b/packages/keystatic/src/app/l10n/zh-TW/cancel/index.json deleted file mode 100644 index a6c72fbc3..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/cancel/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "cancel", - "value": "取消", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/clear/index.json b/packages/keystatic/src/app/l10n/zh-TW/clear/index.json deleted file mode 100644 index d1ebd7086..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/clear/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "clear", - "value": "清除", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/collection/index.json b/packages/keystatic/src/app/l10n/zh-TW/collection/index.json deleted file mode 100644 index 532c90043..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/collection/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collection", - "value": "收藏", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/collections/index.json b/packages/keystatic/src/app/l10n/zh-TW/collections/index.json deleted file mode 100644 index 856643385..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/collections/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "collections", - "value": "收藏品", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/create/index.json b/packages/keystatic/src/app/l10n/zh-TW/create/index.json deleted file mode 100644 index d0dc57fce..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/create/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "create", - "value": "創造", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/createPullRequest/index.json b/packages/keystatic/src/app/l10n/zh-TW/createPullRequest/index.json deleted file mode 100644 index f744fb15b..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/createPullRequest/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "createPullRequest", - "value": "創建拉取請求", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/currentBranch/index.json b/packages/keystatic/src/app/l10n/zh-TW/currentBranch/index.json deleted file mode 100644 index be574f9a2..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/currentBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "currentBranch", - "value": "當前分支", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/dashboard/index.json b/packages/keystatic/src/app/l10n/zh-TW/dashboard/index.json deleted file mode 100644 index ca4312da0..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/dashboard/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dashboard", - "value": "儀表板", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/defaultBranch/index.json b/packages/keystatic/src/app/l10n/zh-TW/defaultBranch/index.json deleted file mode 100644 index 160f2972b..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/defaultBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "defaultBranch", - "value": "默認分支", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/delete/index.json b/packages/keystatic/src/app/l10n/zh-TW/delete/index.json deleted file mode 100644 index c8c4cb38a..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/delete/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "delete", - "value": "刪除", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/deleteBranch/index.json b/packages/keystatic/src/app/l10n/zh-TW/deleteBranch/index.json deleted file mode 100644 index 8dd604073..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/deleteBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "deleteBranch", - "value": "刪除分支", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/edit/index.json b/packages/keystatic/src/app/l10n/zh-TW/edit/index.json deleted file mode 100644 index d6ab93479..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/edit/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "edit", - "value": "編輯", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/loading/index.json b/packages/keystatic/src/app/l10n/zh-TW/loading/index.json deleted file mode 100644 index f8960aea5..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/loading/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "loading", - "value": "正在載入", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/newBranch/index.json b/packages/keystatic/src/app/l10n/zh-TW/newBranch/index.json deleted file mode 100644 index d894ea77c..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/newBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "newBranch", - "value": "新分行", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/otherBranches/index.json b/packages/keystatic/src/app/l10n/zh-TW/otherBranches/index.json deleted file mode 100644 index 9854b7459..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/otherBranches/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "otherBranches", - "value": "其他分行", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/pullRequests/index.json b/packages/keystatic/src/app/l10n/zh-TW/pullRequests/index.json deleted file mode 100644 index d6789f15a..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/pullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "pullRequests", - "value": "拉取請求", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/save/index.json b/packages/keystatic/src/app/l10n/zh-TW/save/index.json deleted file mode 100644 index 39e7b9ae8..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/save/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "save", - "value": "節省", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/search/index.json b/packages/keystatic/src/app/l10n/zh-TW/search/index.json deleted file mode 100644 index 7f2382b57..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/search/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "search", - "value": "搜尋", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/singleton/index.json b/packages/keystatic/src/app/l10n/zh-TW/singleton/index.json deleted file mode 100644 index a3e9ddeab..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/singleton/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singleton", - "value": "單例", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/singletons/index.json b/packages/keystatic/src/app/l10n/zh-TW/singletons/index.json deleted file mode 100644 index f759be31f..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/singletons/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "singletons", - "value": "單例", - "notes": "", - "type": "global" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/theCurrentlyCheckedOutBranch/index.json b/packages/keystatic/src/app/l10n/zh-TW/theCurrentlyCheckedOutBranch/index.json deleted file mode 100644 index 2d7f63003..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/theCurrentlyCheckedOutBranch/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theCurrentlyCheckedOutBranch", - "value": "當前簽出的分支。 如果您需要在當前分支的現有工作的基礎上構建,請選擇此項。", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/theDefaultBranchInYourRepository/index.json b/packages/keystatic/src/app/l10n/zh-TW/theDefaultBranchInYourRepository/index.json deleted file mode 100644 index cacf4f99b..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/theDefaultBranchInYourRepository/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "theDefaultBranchInYourRepository", - "value": "存儲庫中的默認分支。 選擇此選項可開始一些不依賴於當前分支的新操作。", - "notes": "", - "type": "git-related" -} diff --git a/packages/keystatic/src/app/l10n/zh-TW/viewPullRequests/index.json b/packages/keystatic/src/app/l10n/zh-TW/viewPullRequests/index.json deleted file mode 100644 index 53ef6550d..000000000 --- a/packages/keystatic/src/app/l10n/zh-TW/viewPullRequests/index.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "viewPullRequests", - "value": "查看拉取請求", - "notes": "", - "type": "git-related" -}