mirror of
https://github.com/plankanban/planka.git
synced 2025-12-24 09:15:01 +03:00
Compare commits
14 Commits
planka-1.1
...
planka-1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a2564f575 | ||
|
|
3edcc5ae61 | ||
|
|
d99e949d07 | ||
|
|
f5000e8c40 | ||
|
|
d385a1c238 | ||
|
|
0d8edbbbc6 | ||
|
|
04e5124dfd | ||
|
|
3a84fb2d52 | ||
|
|
232a760a3d | ||
|
|
2f873dc82f | ||
|
|
c35e720265 | ||
|
|
fee300908c | ||
|
|
20d8f8ae53 | ||
|
|
39f970689a |
@@ -15,7 +15,7 @@ type: application
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 1.1.0
|
||||
version: 1.1.1
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
|
||||
@@ -114,7 +114,7 @@ Any questions or concerns, [raise an issue](https://github.com/Chris-Greaves/pla
|
||||
|
||||
### Extra Volume Mounts
|
||||
|
||||
The Helm chart supports mounting arbitrary ConfigMaps, Secrets, and Volumes to the Planka deployment using the `extraMounts` configuration. This is especially useful for scenarios like:
|
||||
The Helm chart supports mounting arbitrary ConfigMaps, Secrets, and Volumes to the PLANKA deployment using the `extraMounts` configuration. This is especially useful for scenarios like:
|
||||
|
||||
- Mounting custom CA certificates for OIDC with self-hosted identity providers
|
||||
- Adding custom configuration files
|
||||
@@ -136,7 +136,7 @@ extraMounts:
|
||||
readOnly: true
|
||||
configMap:
|
||||
name: ca-certificates # Must exist
|
||||
|
||||
|
||||
# Mount TLS certificates from existing Secret
|
||||
- name: tls-certs
|
||||
mountPath: /etc/ssl/private
|
||||
@@ -148,14 +148,14 @@ extraMounts:
|
||||
path: server.crt
|
||||
- key: tls.key
|
||||
path: server.key
|
||||
|
||||
|
||||
# Temporary storage
|
||||
- name: temp-storage
|
||||
mountPath: /tmp/planka-temp
|
||||
readOnly: false
|
||||
emptyDir:
|
||||
sizeLimit: 1Gi
|
||||
|
||||
|
||||
# Host path mount
|
||||
- name: backup-storage
|
||||
mountPath: /var/lib/planka-backups
|
||||
@@ -163,7 +163,7 @@ extraMounts:
|
||||
hostPath:
|
||||
path: /var/lib/planka-backups
|
||||
type: DirectoryOrCreate
|
||||
|
||||
|
||||
# NFS mount
|
||||
- name: nfs-storage
|
||||
mountPath: /shared/data
|
||||
@@ -175,7 +175,7 @@ extraMounts:
|
||||
|
||||
### OIDC with Self-Hosted Keycloak
|
||||
|
||||
A common use case is configuring OIDC with a self-hosted Keycloak instance that uses custom CA certificates.
|
||||
A common use case is configuring OIDC with a self-hosted Keycloak instance that uses custom CA certificates.
|
||||
|
||||
First, create the CA certificate ConfigMap:
|
||||
```bash
|
||||
|
||||
@@ -27,6 +27,11 @@ existingSecretkeySecret: ""
|
||||
## NOTE: When it's set, the `admin_username` and `admin_password` parameters are ignored
|
||||
existingAdminCredsSecret: ""
|
||||
|
||||
admin_email: ""
|
||||
admin_password: ""
|
||||
admin_name: ""
|
||||
admin_username: ""
|
||||
|
||||
# Base url for PLANKA. Will override `ingress.hosts[0].host`
|
||||
# Defaults to `http://localhost:3000` if ingress is disabled.
|
||||
baseUrl: ""
|
||||
@@ -240,7 +245,7 @@ extraEnv: []
|
||||
## value: "your_email@example.com"
|
||||
|
||||
## Extra volume mounts configuration
|
||||
## Mount ConfigMaps, Secrets, and arbitrary volumes to the Planka container
|
||||
## Mount ConfigMaps, Secrets, and arbitrary volumes to the PLANKA container
|
||||
## This allows mounting any pre-existing ConfigMaps, Secrets, or other volume types
|
||||
##
|
||||
extraMounts: []
|
||||
|
||||
42
client/package-lock.json
generated
42
client/package-lock.json
generated
@@ -84,8 +84,8 @@
|
||||
"sass-embedded": "^1.91.0",
|
||||
"semantic-ui-react": "^2.1.5",
|
||||
"socket.io-client": "^2.5.0",
|
||||
"validator": "^13.15.15",
|
||||
"vite": "^6.3.6",
|
||||
"validator": "^13.15.20",
|
||||
"vite": "^6.4.1",
|
||||
"vite-plugin-commonjs": "^0.10.4",
|
||||
"vite-plugin-node-polyfills": "^0.23.0",
|
||||
"vite-plugin-svgr": "^4.5.0",
|
||||
@@ -96,7 +96,7 @@
|
||||
"@babel/preset-env": "^7.28.3",
|
||||
"@cucumber/cucumber": "^11.3.0",
|
||||
"@cucumber/pretty-formatter": "^1.0.1",
|
||||
"@playwright/test": "^1.55.0",
|
||||
"@playwright/test": "^1.56.1",
|
||||
"babel-jest": "^29.7.0",
|
||||
"babel-preset-airbnb": "^5.0.0",
|
||||
"eslint": "^8.57.1",
|
||||
@@ -108,7 +108,7 @@
|
||||
"eslint-plugin-react": "^7.37.5",
|
||||
"eslint-plugin-react-hooks": "^4.6.2",
|
||||
"jest": "^29.7.0",
|
||||
"playwright": "^1.55.0",
|
||||
"playwright": "^1.56.1",
|
||||
"prettier": "3.3.3"
|
||||
}
|
||||
},
|
||||
@@ -4604,13 +4604,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@playwright/test": {
|
||||
"version": "1.55.0",
|
||||
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.55.0.tgz",
|
||||
"integrity": "sha512-04IXzPwHrW69XusN/SIdDdKZBzMfOT9UNT/YiJit/xpy2VuAoB8NHc8Aplb96zsWDddLnbkPL3TsmrS04ZU2xQ==",
|
||||
"version": "1.56.1",
|
||||
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.56.1.tgz",
|
||||
"integrity": "sha512-vSMYtL/zOcFpvJCW71Q/OEGQb7KYBPAdKh35WNSkaZA75JlAO8ED8UN6GUNTm3drWomcbcqRPFqQbLae8yBTdg==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"playwright": "1.55.0"
|
||||
"playwright": "1.56.1"
|
||||
},
|
||||
"bin": {
|
||||
"playwright": "cli.js"
|
||||
@@ -12924,13 +12924,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/playwright": {
|
||||
"version": "1.55.0",
|
||||
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.55.0.tgz",
|
||||
"integrity": "sha512-sdCWStblvV1YU909Xqx0DhOjPZE4/5lJsIS84IfN9dAZfcl/CIZ5O8l3o0j7hPMjDvqoTF8ZUcc+i/GL5erstA==",
|
||||
"version": "1.56.1",
|
||||
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.56.1.tgz",
|
||||
"integrity": "sha512-aFi5B0WovBHTEvpM3DzXTUaeN6eN0qWnTkKx4NQaH4Wvcmc153PdaY2UBdSYKaGYw+UyWXSVyxDUg5DoPEttjw==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"playwright-core": "1.55.0"
|
||||
"playwright-core": "1.56.1"
|
||||
},
|
||||
"bin": {
|
||||
"playwright": "cli.js"
|
||||
@@ -12943,9 +12943,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/playwright-core": {
|
||||
"version": "1.55.0",
|
||||
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.55.0.tgz",
|
||||
"integrity": "sha512-GvZs4vU3U5ro2nZpeiwyb0zuFaqb9sUiAJuyrWpcGouD8y9/HLgGbNRjIph7zU9D3hnPaisMl9zG9CgFi/biIg==",
|
||||
"version": "1.56.1",
|
||||
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.56.1.tgz",
|
||||
"integrity": "sha512-hutraynyn31F+Bifme+Ps9Vq59hKuUCz7H1kDOcBs+2oGguKkWTU50bBWrtz34OUWmIwpBTWDxaRPXrIXkgvmQ==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"bin": {
|
||||
@@ -16661,9 +16661,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/validator": {
|
||||
"version": "13.15.15",
|
||||
"resolved": "https://registry.npmjs.org/validator/-/validator-13.15.15.tgz",
|
||||
"integrity": "sha512-BgWVbCI72aIQy937xbawcs+hrVaN/CZ2UwutgaJ36hGqRrLNM+f5LUT/YPRbo8IV/ASeFzXszezV+y2+rq3l8A==",
|
||||
"version": "13.15.20",
|
||||
"resolved": "https://registry.npmjs.org/validator/-/validator-13.15.20.tgz",
|
||||
"integrity": "sha512-KxPOq3V2LmfQPP4eqf3Mq/zrT0Dqp2Vmx2Bn285LwVahLc+CsxOM0crBHczm8ijlcjZ0Q5Xd6LW3z3odTPnlrw==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.10"
|
||||
@@ -16676,9 +16676,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/vite": {
|
||||
"version": "6.3.6",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-6.3.6.tgz",
|
||||
"integrity": "sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==",
|
||||
"version": "6.4.1",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
|
||||
"integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"esbuild": "^0.25.0",
|
||||
|
||||
@@ -155,8 +155,8 @@
|
||||
"sass-embedded": "^1.91.0",
|
||||
"semantic-ui-react": "^2.1.5",
|
||||
"socket.io-client": "^2.5.0",
|
||||
"validator": "^13.15.15",
|
||||
"vite": "^6.3.6",
|
||||
"validator": "^13.15.20",
|
||||
"vite": "^6.4.1",
|
||||
"vite-plugin-commonjs": "^0.10.4",
|
||||
"vite-plugin-node-polyfills": "^0.23.0",
|
||||
"vite-plugin-svgr": "^4.5.0",
|
||||
@@ -167,7 +167,7 @@
|
||||
"@babel/preset-env": "^7.28.3",
|
||||
"@cucumber/cucumber": "^11.3.0",
|
||||
"@cucumber/pretty-formatter": "^1.0.1",
|
||||
"@playwright/test": "^1.55.0",
|
||||
"@playwright/test": "^1.56.1",
|
||||
"babel-jest": "^29.7.0",
|
||||
"babel-preset-airbnb": "^5.0.0",
|
||||
"eslint": "^8.57.1",
|
||||
@@ -179,7 +179,7 @@
|
||||
"eslint-plugin-react": "^7.37.5",
|
||||
"eslint-plugin-react-hooks": "^4.6.2",
|
||||
"jest": "^29.7.0",
|
||||
"playwright": "^1.55.0",
|
||||
"playwright": "^1.56.1",
|
||||
"prettier": "3.3.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,8 +29,7 @@ const AccountPane = React.memo(() => {
|
||||
|
||||
const handleLanguageChange = useCallback(
|
||||
(_, { value }) => {
|
||||
// FIXME: hack
|
||||
dispatch(entryActions.updateCurrentUserLanguage(value === 'auto' ? null : value));
|
||||
dispatch(entryActions.updateCurrentUserLanguage(value));
|
||||
},
|
||||
[dispatch],
|
||||
);
|
||||
@@ -62,18 +61,12 @@ const AccountPane = React.memo(() => {
|
||||
<Dropdown
|
||||
fluid
|
||||
selection
|
||||
options={[
|
||||
{
|
||||
value: 'auto',
|
||||
text: t('common.detectAutomatically'),
|
||||
},
|
||||
...locales.map((locale) => ({
|
||||
value: locale.language,
|
||||
flag: locale.country,
|
||||
text: locale.name,
|
||||
})),
|
||||
]}
|
||||
value={user.language || 'auto'}
|
||||
options={locales.map((locale) => ({
|
||||
value: locale.language,
|
||||
flag: locale.country,
|
||||
text: locale.name,
|
||||
}))}
|
||||
value={user.language}
|
||||
onChange={handleLanguageChange}
|
||||
/>
|
||||
{(isUsernameEditable || isEmailEditable || isPasswordEditable) && (
|
||||
|
||||
@@ -151,7 +151,7 @@ i18n.loadCoreLocale = async (language = i18n.resolvedLanguage) => {
|
||||
});
|
||||
};
|
||||
|
||||
i18n.detectLanguage = () => {
|
||||
/* i18n.detectLanguage = () => {
|
||||
const {
|
||||
services: { languageDetector, languageUtils },
|
||||
} = i18n;
|
||||
@@ -164,6 +164,6 @@ i18n.detectLanguage = () => {
|
||||
|
||||
i18n.resolvedLanguage = undefined;
|
||||
i18n.setResolvedLanguage(i18n.language);
|
||||
};
|
||||
}; */
|
||||
|
||||
export default i18n;
|
||||
|
||||
@@ -22,10 +22,13 @@
|
||||
left: 0;
|
||||
line-height: 20px;
|
||||
margin: 0 12px;
|
||||
overflow: hidden;
|
||||
padding: 12px 28px 8px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
text-overflow: ellipsis;
|
||||
top: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import dateFns from 'date-fns/locale/ar';
|
||||
import timeAgo from 'javascript-time-ago/locale/ar';
|
||||
|
||||
import markdownEditor from './markdown-editor.json';
|
||||
|
||||
export default {
|
||||
dateFns,
|
||||
timeAgo,
|
||||
markdownEditor,
|
||||
|
||||
format: {
|
||||
date: 'M/d/yyyy',
|
||||
@@ -18,427 +21,440 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'حول PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'رمز الوصول',
|
||||
account: 'الحساب',
|
||||
actions: 'إجراءات',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'تفعيل المستخدم',
|
||||
active: 'نشط',
|
||||
addAttachment_title: 'إضافة مرفق',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'إضافة مجموعة حقل مخصص',
|
||||
addCustomField_title: 'إضافة حقل مخصص',
|
||||
addManager_title: 'إضافة مدير',
|
||||
addMember_title: 'إضافة عضو',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'إضافة قائمة مهام',
|
||||
addUser_title: 'إضافة مستخدم',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'مدير',
|
||||
administration: 'الإدارة',
|
||||
all: 'الكل',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'سيتم حفظ جميع التغييرات تلقائياً<br />بعد استعادة الإتصال.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'أبجدياً',
|
||||
alwaysDisplayCardCreator: 'عرض منشئ البطاقة دائماً',
|
||||
archive: 'أرشيف',
|
||||
archiveCard_title: 'أرشفة البطاقة',
|
||||
archiveCards_title: 'أرشفة البطاقات',
|
||||
areYouSureYouWantToActivateThisUser: 'هل أنت متأكد أنك تريد تفعيل هذا المستخدم؟',
|
||||
areYouSureYouWantToArchiveCards: 'هل أنت متأكد أنك تريد أرشفة البطاقات؟',
|
||||
areYouSureYouWantToArchiveThisCard: 'هل أنت متأكد أنك تريد أرشفة هذه البطاقة؟',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'هل أنت متأكد أنك تريد تعيين مدير المشروع هذا كمالك؟',
|
||||
areYouSureYouWantToDeactivateThisUser: 'هل أنت متأكد أنك تريد إلغاء تفعيل هذا المستخدم؟',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'هل أنت متأكد أنك تريد حذف هذا المرفق؟',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: 'هل أنت متأكد أنك تريد حذف صورة الخلفية هذه؟',
|
||||
areYouSureYouWantToDeleteThisBoard: 'هل أنت متأكد أنك تريد حذف هذه اللوحة؟',
|
||||
areYouSureYouWantToDeleteThisCard: 'هل أنت متأكد أنك تريد حذف هذه البطاقة؟',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever: 'هل أنت متأكد أنك تريد حذف هذه البطاقة نهائياً؟',
|
||||
areYouSureYouWantToDeleteThisComment: 'هل أنت متأكد أنك تريد حذف هذا التعليق؟',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField: 'هل أنت متأكد أنك تريد حذف هذا الحقل المخصص؟',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'هل أنت متأكد أنك تريد حذف مجموعة الحقل المخصص هذه؟',
|
||||
areYouSureYouWantToDeleteThisLabel: 'هل أنت متأكد أنك تريد حذف هذا الملصق؟',
|
||||
areYouSureYouWantToDeleteThisList: 'هل أنت متأكد أنك تريد حذف هذه القائمة؟',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'هل أنت متأكد أنك تريد حذف هذه القائمة؟ سيتم نقل جميع البطاقات إلى سلة المهملات.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'هل أنت متأكد أنك تريد حذف خدمة الإشعارات هذه؟',
|
||||
areYouSureYouWantToDeleteThisProject: 'هل أنت متأكد أنك تريد حذف هذا المشروع؟',
|
||||
areYouSureYouWantToDeleteThisTask: 'هل أنت متأكد أنك تريد حذف هذه المهمة؟',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'هل أنت متأكد أنك تريد حذف قائمة المهام هذه؟',
|
||||
areYouSureYouWantToDeleteThisUser: 'هل أنت متأكد أنك تريد حذف هذا المستخدم؟',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'هل أنت متأكد أنك تريد حذف هذا الويب هوك؟',
|
||||
areYouSureYouWantToEmptyTrash: 'هل أنت متأكد أنك تريد إفراغ سلة المهملات؟',
|
||||
areYouSureYouWantToLeaveBoard: 'هل أنت متأكد أنك تريد مغادرة اللوحة؟',
|
||||
areYouSureYouWantToLeaveProject: 'هل أنت متأكد أنك تريد مغادرة المشروع؟',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate: 'هل أنت متأكد أنك تريد جعل هذا المشروع خاصاً؟',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'هل أنت متأكد أنك تريد مشاركة هذا المشروع؟',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'هل أنت متأكد أنك تريد إزالة هذا المدير من المشروع؟',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'هل أنت متأكد أنك تريد إزالة هذا العضو من اللوحة؟',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'تعيين كمالك',
|
||||
atLeastOneListMustBePresent: 'يجب وجود قائمة واحدة على الأقل',
|
||||
attachment: 'مرفق',
|
||||
attachments: 'مرفقات',
|
||||
authentication: 'المصادقة',
|
||||
background: 'الخلفية',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'الحقول المخصصة الأساسية',
|
||||
baseGroup: 'المجموعة الأساسية',
|
||||
board: 'لوحة',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'إجراءات اللوحة',
|
||||
boardNotFound_title: 'لم يتم العثور على اللوحة',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'تم الاشتراك في اللوحة',
|
||||
boardUser: 'مستخدم اللوحة',
|
||||
byCreationTime: 'حسب وقت الإنشاء',
|
||||
byDefault: 'افتراضياً',
|
||||
byDueDate: 'حسب تاريخ الاستحقاق',
|
||||
canBeInvitedToWorkInBoards: 'يمكن دعوته للعمل في اللوحات.',
|
||||
canComment: 'يمكن التعليق',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'يمكنه إنشاء مشاريعه الخاصة ودعوته للعمل في مشاريع أخرى.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'يمكنه تعديل تخطيط اللوحة وتعيين الأعضاء للبطاقات.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'يمكنه إدارة إعدادات النظام والعمل كمالك للمشروع.',
|
||||
canOnlyViewBoard: 'يمكن فقط عرض اللوحة.',
|
||||
cardActions_title: 'إجراءات البطاقة',
|
||||
cardNotFound_title: 'لم يتم العثور على البطاقة',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'البطاقات في هذه القائمة متاحة لجميع أعضاء اللوحة.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'البطاقات في هذه القائمة مكتملة وجاهزة للأرشفة.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'البطاقات في هذه القائمة جاهزة للعمل عليها.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>انقر هنا</0> أو حدث الصفحة للتحديث.',
|
||||
clientHostnameInEhlo: 'اسم مضيف العميل في EHLO',
|
||||
closed: 'مغلق',
|
||||
color: 'اللون',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
comments: 'التعليقات',
|
||||
contentExceedsLimit: 'المحتوى يتجاوز {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: 'محتوى هذا المرفق كبير جداً للعرض.',
|
||||
copy_inline: 'نسخ',
|
||||
createBoard_title: 'إنشاء لوحة',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'إنشاء مجموعة حقل مخصص',
|
||||
createLabel_title: 'إنشاء ملصق',
|
||||
createNewOneOrSelectExistingOne: 'أنشئ واحدة جديدة أو اختر<br />واحدة موجودة.',
|
||||
createProject_title: 'إنشاء مشروع',
|
||||
createTextFile_title: 'إنشاء ملف نصي',
|
||||
creator: null,
|
||||
creator: 'المنشئ',
|
||||
currentPassword: 'كلمة المرور الحالية',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'مجموعة الحقل المخصص',
|
||||
customFieldGroups_title: 'مجموعات الحقول المخصصة',
|
||||
customField_title: 'الحقل المخصص',
|
||||
customFields_title: 'الحقول المخصصة',
|
||||
dangerZone_title: 'منطقة الخطر',
|
||||
date: 'تاريخ',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'إلغاء تفعيل المستخدم',
|
||||
defaultCardType_title: 'نوع البطاقة الافتراضي',
|
||||
defaultFrom: 'افتراضي من',
|
||||
defaultView_title: 'العرض الافتراضي',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: 'احذف جميع اللوحات لتتمكن من حذف هذا المشروع',
|
||||
deleteAttachment_title: 'حذف المرفق',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: 'حذف صورة الخلفية',
|
||||
deleteBoard_title: 'حذف اللوحة',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'حذف البطاقة نهائياً',
|
||||
deleteCard_title: 'حذف البطاقة',
|
||||
deleteComment_title: 'حذف التعليق',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'حذف مجموعة الحقل المخصص',
|
||||
deleteCustomField_title: 'حذف الحقل المخصص',
|
||||
deleteLabel_title: 'حذف الملصق',
|
||||
deleteList_title: 'حذف القائمة',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'حذف خدمة الإشعارات',
|
||||
deleteProject_title: 'حذف المشروع',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'حذف قائمة المهام',
|
||||
deleteTask_title: 'حذف المهمة',
|
||||
deleteUser_title: 'حذف المستخدم',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'حذف الويب هوك',
|
||||
deletedUser_title: 'مستخدم محذوف',
|
||||
description: 'الوصف',
|
||||
detectAutomatically: 'الكشف تلقائياً',
|
||||
display: null,
|
||||
display: 'عرض',
|
||||
dropFileToUpload: 'أفلت الملف لرفعه',
|
||||
dueDate_title: 'تاريخ الاستحقاق',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'تخطيط ديناميكي وغير متساوي المسافات.',
|
||||
editAttachment_title: 'تعديل المرفق',
|
||||
editAvatar_title: 'تحرير الصورة الرمزية',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: 'تعديل اللون',
|
||||
editCustomFieldGroup_title: 'تعديل مجموعة الحقل المخصص',
|
||||
editCustomField_title: 'تعديل الحقل المخصص',
|
||||
editDueDate_title: 'تعديل تاريخ الاستحقاق',
|
||||
editEmail_title: 'تعديل البريد الإلكتروني',
|
||||
editInformation_title: 'تعديل المعلومات',
|
||||
editLabel_title: 'تعديل الملصق',
|
||||
editPassword_title: 'تعديل كلمة المرور',
|
||||
editPermissions_title: 'تعديل الأذونات',
|
||||
editRole_title: null,
|
||||
editRole_title: 'تعديل الدور',
|
||||
editStopwatch_title: 'تعديل المؤقت',
|
||||
editType_title: null,
|
||||
editType_title: 'تعديل النوع',
|
||||
editUsername_title: 'تعديل اسم المستخدم',
|
||||
editor: 'محرر',
|
||||
editors: null,
|
||||
editors: 'المحررون',
|
||||
email: 'البريد الإلكتروني',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'إفراغ سلة المهملات',
|
||||
enterCardTitle: 'أدخل عنوان البطاقة...',
|
||||
enterDescription: 'أدخل الوصف...',
|
||||
enterFilename: 'أدخل اسم الملف',
|
||||
enterListTitle: 'أدخل عنوان القائمة...',
|
||||
enterTaskDescription: 'أدخل وصف المهمة...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'الأحداث',
|
||||
excludedEvents: 'الأحداث المستبعدة',
|
||||
expandTaskListsByDefault: 'توسيع قوائم المهام افتراضياً',
|
||||
filterByLabels_title: 'تصفية حسب الملصقات',
|
||||
filterByMembers_title: 'تصفية حسب الأعضاء',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'للمشاريع الشخصية.',
|
||||
forTeamBasedProjects: 'للمشاريع الجماعية.',
|
||||
fromComputer_title: 'من الكمبيوتر',
|
||||
fromTrello: 'من Trello',
|
||||
general: 'عام',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'التدرجات',
|
||||
grid: 'الشبكة',
|
||||
hideCompletedTasks: 'إخفاء المهام المكتملة',
|
||||
hideFromProjectListAndFavorites: 'إخفاء من قائمة المشاريع والمفضلة',
|
||||
host: 'المضيف',
|
||||
hours: 'ساعات',
|
||||
importBoard_title: 'استيراد اللوحة',
|
||||
invalidCurrentPassword: 'كلمة المرور الحالية غير صالحة',
|
||||
kanban: null,
|
||||
kanban: 'كانبان',
|
||||
labels: 'الملصقات',
|
||||
language: 'اللغة',
|
||||
leaveBoard_title: 'غادر اللوحة',
|
||||
leaveProject_title: 'غادر المشروع',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'تقييد أنواع البطاقات للنوع الافتراضي',
|
||||
linkToCard: 'رابط للبطاقة',
|
||||
list: 'القائمة',
|
||||
listActions_title: 'قائمة الإجراءات',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'القوائم',
|
||||
makeProjectPrivate_title: 'جعل المشروع خاصاً',
|
||||
makeProjectShared_title: 'مشاركة المشروع',
|
||||
managers: 'المديرون',
|
||||
memberActions_title: 'إجراءات العضو',
|
||||
members: 'الأعضاء',
|
||||
minutes: 'الدقائق',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'المزيد من الإجراءات',
|
||||
moreActions_title: 'المزيد من الإجراءات',
|
||||
moveCard_title: 'نقل البطاقة',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'نقل القائمة',
|
||||
myOwn_title: 'ملكي',
|
||||
name: 'الاسم',
|
||||
newEmail: 'بريد إلكتروني جديد',
|
||||
newPassword: 'كلمة سر جديدة',
|
||||
newUsername: 'مستخدم جديد',
|
||||
newVersionAvailable: null,
|
||||
newVersionAvailable: 'إصدار جديد متاح',
|
||||
newestFirst: 'الأحدث أولاً',
|
||||
noBoards: 'لا توجد لوحات',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'لم يتم العثور على بطاقات.',
|
||||
noConnectionToServer: 'لا يوجد اتصال بالخادم',
|
||||
noLists: 'لاتوجد قوائم',
|
||||
noProjects: 'لاتوجد مشاريع',
|
||||
noUnreadNotifications: 'لاتوجد إشعارات غير مقروءة',
|
||||
notifications: 'الإشعارات',
|
||||
oldestFirst: 'الأقدم أولاً',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'يجب أن يبقى مدير واحد فقط لجعل هذا المشروع خاصاً',
|
||||
openBoard_title: 'فتح اللوحة',
|
||||
optional_inline: 'اختياري',
|
||||
organization: 'المنظمة',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'آخرون',
|
||||
passwordIsSet: 'تم تعيين كلمة المرور',
|
||||
phone: 'الهاتف',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'تستخدم بلانكا <1><0>Apprise</0></1> لإرسال الإشعارات إلى أكثر من 100 خدمة شائعة.',
|
||||
port: 'المنفذ',
|
||||
preferences: 'التفضيلات',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'نصيحة: اضغط على Ctrl-V (Cmd-V على Mac) لإضافة مرفق من الحافظة.',
|
||||
private: null,
|
||||
private: 'خاص',
|
||||
project: 'مشروع',
|
||||
projectNotFound_title: 'المشروع غير موجود',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'مالك المشروع',
|
||||
referenceDataAndKnowledgeStorage: 'تخزين البيانات المرجعية والمعرفة.',
|
||||
rejectUnauthorizedTlsCertificates: 'رفض شهادات TLS غير المصرح بها',
|
||||
removeManager_title: 'إزالة المدير',
|
||||
removeMember_title: 'إزالة العضو',
|
||||
role: null,
|
||||
role: 'الدور',
|
||||
searchCards: 'البحث عن البطاقات...',
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchCustomFieldGroups: 'البحث عن مجموعات الحقول المخصصة...',
|
||||
searchCustomFields: 'البحث عن الحقول المخصصة...',
|
||||
searchLabels: 'البحث عن التصنيفات...',
|
||||
searchLists: null,
|
||||
searchLists: 'البحث عن القوائم...',
|
||||
searchMembers: 'البحث عن الأعضاء...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'البحث عن المشاريع...',
|
||||
searchUsers: 'البحث عن المستخدمين...',
|
||||
seconds: 'ثواني',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'اختيار المكلف',
|
||||
selectBoard: 'اختر لوحة',
|
||||
selectList: 'اختر قائمة',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: 'اختر قائمة لاستعادة هذه البطاقة',
|
||||
selectOrder_title: 'اختيار الترتيب',
|
||||
selectPermissions_title: 'حدد الأذونات',
|
||||
selectProject: 'حدد المشروع',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'اختيار الدور',
|
||||
selectType_title: 'اختيار النوع',
|
||||
sequentialDisplayOfCards: 'العرض المتسلسل للبطاقات.',
|
||||
settings: 'الإعدادات',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
shared: 'مشترك',
|
||||
sharedWithMe_title: 'مشترك معي',
|
||||
showOnFrontOfCard: 'عرض في مقدمة البطاقة',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'فرز القائمة',
|
||||
stopwatch: 'المؤقت',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'القصة',
|
||||
subscribeToCardWhenCommenting: 'الاشتراك في البطاقة عند التعليق',
|
||||
subscribeToMyOwnCardsByDefault: 'الاشتراك في بطاقاتي الخاصة إفتراضياً',
|
||||
taskActions_title: 'إجراءات المهمة',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: 'تعيين المهام وإنجاز المشروع.',
|
||||
taskListActions_title: 'إجراءات قائمة المهام',
|
||||
taskList_title: 'قائمة المهام',
|
||||
team: 'الفريق',
|
||||
terms: 'الشروط',
|
||||
testLog_title: 'سجل الاختبار',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'لا يوجد معاينة متاحة لهذا المرفق.',
|
||||
time: 'الوقت',
|
||||
title: 'العنوان',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'سلة المهملات',
|
||||
trashHasBeenSuccessfullyEmptied: 'تم إفراغ سلة المهملات بنجاح.',
|
||||
turnOffRecentCardHighlighting: 'إيقاف تمييز البطاقات الحديثة',
|
||||
typeNameToConfirm: 'اكتب الاسم للتأكيد.',
|
||||
typeTitleToConfirm: 'اكتب العنوان للتأكيد.',
|
||||
unsavedChanges: 'تغييرات غير محفوظة',
|
||||
uploadFailedFileIsTooBig: 'فشل الرفع: الملف كبير جداً.',
|
||||
uploadFailedNotEnoughStorageSpace: 'فشل الرفع: مساحة التخزين غير كافية.',
|
||||
uploadedImages: 'الصور المرفوعة',
|
||||
url: 'الرابط',
|
||||
useSecureConnection: 'استخدام اتصال آمن',
|
||||
userActions_title: 'إجراءات المستخدم',
|
||||
userAddedCardToList: null,
|
||||
userAddedThisCardToList: '<0>{{user}}</0> تمت إضافة هذه البطاقة إلى {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> أضاف <2>{{card}}</2> إلى {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> أضاف هذه البطاقة إلى {{list}}',
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> أضاف {{addedUser}} إلى <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> أضاف {{addedUser}} إلى هذه البطاقة',
|
||||
userAddedYouToCard: '<0>{{user}}</0> أضافك إلى <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> أكمل {{task}} في <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> أكمل {{task}} في هذه البطاقة',
|
||||
userJoinedCard: '<0>{{user}}</0> انضم إلى <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> انضم إلى هذه البطاقة',
|
||||
userLeftCard: '<0>{{user}}</0> غادر <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard: '<0>{{user}}</0> ترك تعليق جديد «{{comment}}» إلى <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> غادر هذه البطاقة',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> وضع علامة على {{task}} كغير مكتملة في <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> وضع علامة على {{task}} كغير مكتملة في هذه البطاقة',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> ذكرك في تعليق «{{comment}}» على <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> انتقل <2>{{card}}</2> من {{fromList}} إلى {{toList}}',
|
||||
'<0>{{user}}</0> نقل <2>{{card}}</2> من {{fromList}} إلى {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> نُقلت هذه البطاقة من {{fromList}} إلى {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
'<0>{{user}}</0> نقل هذه البطاقة من {{fromList}} إلى {{toList}}',
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> أزال {{removedUser}} من <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> أزال {{removedUser}} من هذه البطاقة',
|
||||
username: 'اسم المستخدم',
|
||||
users: 'المستخدمين',
|
||||
viewer: 'مشاهد',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'المشاهدون',
|
||||
visualTaskManagementWithLists: 'إدارة المهام البصرية بالقوائم.',
|
||||
webhooks: 'الويب هوكس',
|
||||
withoutBaseGroup: 'بدون مجموعة أساسية',
|
||||
writeComment: 'اكتب تعليقاً...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'تفعيل المستخدم',
|
||||
activateUser_title: 'تفعيل المستخدم',
|
||||
addAnotherCard: 'إضافة بطاقة أخرى',
|
||||
addAnotherList: 'إضافة قائمة أخرى',
|
||||
addAnotherTask: 'إضافة مهمة أخرى',
|
||||
addCard: 'إضافة بطاقة',
|
||||
addCard_title: 'إضافة بطاقة',
|
||||
addComment: 'إضافة تعليق',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'إضافة حقل مخصص',
|
||||
addCustomFieldGroup: 'إضافة مجموعة حقل مخصص',
|
||||
addList: 'إضافة قائمة',
|
||||
addMember: 'إضافة عضو',
|
||||
addMoreDetailedDescription: 'إضافة وصف أكثر تفصيلاً',
|
||||
addTask: 'إضافة مهمة',
|
||||
addTaskList: null,
|
||||
addTaskList: 'إضافة قائمة مهام',
|
||||
addToCard: 'إضافة إلى البطاقة',
|
||||
addUser: 'إضافة مستخدم',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'إضافة ويب هوك',
|
||||
archive: 'أرشفة',
|
||||
archiveCard: 'أرشفة البطاقة',
|
||||
archiveCard_title: 'أرشفة البطاقة',
|
||||
archiveCards: 'أرشفة البطاقات',
|
||||
archiveCards_title: 'أرشفة البطاقات',
|
||||
assignAsOwner: 'تعيين كمالك',
|
||||
cancel: 'إلغاء',
|
||||
createBoard: 'إنشاء لوحة',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'إنشاء مجموعة حقل مخصص',
|
||||
createFile: 'إنشاء ملف',
|
||||
createLabel: 'إنشاء ملصق',
|
||||
createNewLabel: 'إنشاء ملصق جديد',
|
||||
createProject: 'إنشاء مشروع',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'إلغاء تفعيل المستخدم',
|
||||
deactivateUser_title: 'إلغاء تفعيل المستخدم',
|
||||
delete: 'حذف',
|
||||
deleteAttachment: 'حذف المرفق',
|
||||
deleteAvatar: 'حذف الصورة الرمزية',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'حذف صورة الخلفية',
|
||||
deleteBoard: 'حذف اللوحة',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'حذف اللوحة',
|
||||
deleteCard: 'حذف البطاقة',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'حذف البطاقة نهائياً',
|
||||
deleteCard_title: 'حذف البطاقة',
|
||||
deleteComment: 'حذف التعليق',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'حذف الحقل المخصص',
|
||||
deleteCustomFieldGroup: 'حذف مجموعة الحقل المخصص',
|
||||
deleteForever_title: 'حذف نهائياً',
|
||||
deleteGroup: 'حذف المجموعة',
|
||||
deleteLabel: 'حذف الملصق',
|
||||
deleteList: 'حذف القائمة',
|
||||
deleteList_title: 'حذف القائمة',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: 'حذف خدمة الإشعارات',
|
||||
deleteProject: 'حذف المشروع',
|
||||
deleteProject_title: 'حذف المشروع',
|
||||
deleteTask: 'حذف المهمة',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'حذف قائمة المهام',
|
||||
deleteTask_title: 'حذف المهمة',
|
||||
deleteUser: 'حذف المستخدم',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
deleteUser_title: 'حذف المستخدم',
|
||||
deleteWebhook: 'حذف الويب هوك',
|
||||
dismissAll: 'رفض الكل',
|
||||
download: 'تحميل',
|
||||
duplicateCard_title: 'تكرار البطاقة',
|
||||
edit: 'تعديل',
|
||||
editColor_title: null,
|
||||
editColor_title: 'تعديل اللون',
|
||||
editDescription_title: 'تعديل الوصف',
|
||||
editDueDate_title: 'تعديل تاريخ الاستحقاق',
|
||||
editEmail_title: 'تعديل البريد الإلكتروني',
|
||||
editGroup: null,
|
||||
editGroup: 'تعديل المجموعة',
|
||||
editInformation_title: 'تعديل المعلومات',
|
||||
editPassword_title: 'تعديل كلمة المرور',
|
||||
editPermissions: 'تعديل الأذونات',
|
||||
editRole_title: null,
|
||||
editRole_title: 'تعديل الدور',
|
||||
editStopwatch_title: 'تعديل المؤقت',
|
||||
editTitle_title: 'تعديل العنوان',
|
||||
editType_title: null,
|
||||
editType_title: 'تعديل النوع',
|
||||
editUsername_title: 'تعديل اسم المستخدم',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: 'إفراغ سلة المهملات',
|
||||
emptyTrash_title: 'إفراغ سلة المهملات',
|
||||
import: 'استيراد',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'انضمام',
|
||||
leave: 'مغادرة',
|
||||
leaveBoard: 'غادر اللوحة',
|
||||
leaveProject: 'غادر المشروع',
|
||||
logOut_title: 'تسجيل الخروج',
|
||||
makeCover_title: 'إصنع غلافاً',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'جعل المشروع خاصاً',
|
||||
makeProjectPrivate_title: 'جعل المشروع خاصاً',
|
||||
makeProjectShared: 'مشاركة المشروع',
|
||||
makeProjectShared_title: 'مشاركة المشروع',
|
||||
move: 'نقل',
|
||||
moveCard_title: 'نقل البطاقة',
|
||||
moveList_title: null,
|
||||
moveList_title: 'نقل القائمة',
|
||||
remove: 'حذف',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'إزالة المكلف',
|
||||
removeColor: 'إزالة اللون',
|
||||
removeCover_title: 'إزالة الغلاف',
|
||||
removeFromBoard: 'إزالة اللوحة',
|
||||
removeFromProject: 'إزالة المشروع',
|
||||
removeManager: 'إزالة المدير',
|
||||
removeMember: 'إزالة العضو',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'استعادة إلى {{list}}',
|
||||
returnToBoard: 'العودة إلى اللوحة',
|
||||
save: 'حفظ',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
showAllAttachments: 'إظهار جميع المرفقات ({{hidden}} hidden)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
sendTestEmail: 'إرسال بريد إلكتروني تجريبي',
|
||||
showActive: 'عرض النشط',
|
||||
showAllAttachments: 'إظهار جميع المرفقات ({{hidden}} مخفي)',
|
||||
showCardsWithThisUser: 'عرض البطاقات مع هذا المستخدم',
|
||||
showDeactivated: 'عرض المعطل',
|
||||
showFewerAttachments: 'عرض مرفقات أقل',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'عرض أقل',
|
||||
showMore: 'عرض المزيد',
|
||||
sortList_title: 'فرز القائمة',
|
||||
start: 'ابدأ',
|
||||
stop: 'توقف',
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'تم الوصول إلى حد المستخدمين النشطين',
|
||||
adminLoginRequiredToInitializeInstance: 'مطلوب تسجيل دخول المدير لتهيئة المثيل',
|
||||
emailAlreadyInUse: 'البريد الإلكتروني مستخدم بالفعل',
|
||||
emailOrUsername: 'البريد الإلكتروني أو اسم المستخدم',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'لقد قرأت ووافقت على هذه الشروط',
|
||||
invalidCredentials: 'بيانات الاعتماد غير صالحة',
|
||||
invalidEmailOrUsername: 'البريد الإلكتروني أو اسم المستخدم غير صالح',
|
||||
invalidPassword: 'كلمة المرور غير صالحة',
|
||||
logIn_title: null,
|
||||
logIn_title: 'تسجيل الدخول',
|
||||
noInternetConnection: 'لا يوجد اتصال بالإنترنت',
|
||||
or: null,
|
||||
or: 'أو',
|
||||
pageNotFound_title: 'الصفحة غير موجودة',
|
||||
password: 'كلمة المرور',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'مدعوم بواسطة <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'فشل الاتصال بالخادم',
|
||||
unknownError: 'خطأ غير معروف، يرجى المحاولة لاحقاً',
|
||||
useSingleSignOn: 'استخدم تسجيل الدخول الموحد',
|
||||
@@ -22,8 +22,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'إلغاء وإغلاق',
|
||||
continue: 'متابعة',
|
||||
logIn: 'تسجيل الدخول',
|
||||
logInWithSso: 'تسجيل الدخول باستخدام SSO',
|
||||
},
|
||||
|
||||
165
client/src/locales/ar-YE/markdown-editor.json
Normal file
165
client/src/locales/ar-YE/markdown-editor.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"action-previews": {
|
||||
"text": "هذا نص بدون عنوان.\nيمكن تمييز كل من العنوان والنص\nبالخط العريض والمائل واللون\nوالشطب والتسطير.",
|
||||
"text-with-head": "هذا نص مع عنوان.\nيمكن تمييز كل من العنوان والنص\nبالخط العريض والمائل واللون\nوالشطب والتسطير.",
|
||||
"heading": "العنوان"
|
||||
},
|
||||
"bundle": {
|
||||
"error-title": "خطأ في محرر markdown",
|
||||
"settings_wysiwyg": "المحرر المرئي (wysiwyg)",
|
||||
"settings_markup": "ترميز markdown",
|
||||
"markup_placeholder": "أدخل ترميز markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
"remove": "إزالة",
|
||||
"empty_option": "لم يتم العثور على تطابقات"
|
||||
},
|
||||
"common": {
|
||||
"delete": "حذف",
|
||||
"edit": "تحرير",
|
||||
"toolbar_action_disabled": "عنصر ترميز غير متوافق"
|
||||
},
|
||||
"forms": {
|
||||
"common_action_cancel": "إلغاء",
|
||||
"common_action_submit": "إرسال",
|
||||
"common_action_upload": "اختيار",
|
||||
"common_tab_attach": "إضافة من الجهاز",
|
||||
"common_tab_link": "إضافة بالرابط",
|
||||
"common_link": "رابط",
|
||||
"common_sizes": "الحجم، px",
|
||||
"image_name": "العنوان",
|
||||
"image_link_href": "رابط الصورة",
|
||||
"image_link_href_help": "العنوان الذي يؤدي إليه رابط الصورة.",
|
||||
"image_alt": "النص البديل",
|
||||
"image_alt_help": "يتم عرض النص البديل إذا لم يتم تحميل الصورة.",
|
||||
"image_upload_help": "صورة JPEG أو GIF أو PNG لا تزيد عن 1 ميجابايت.",
|
||||
"image_upload_failed": "فشل في إضافة الصورة",
|
||||
"image_size_width": "العرض",
|
||||
"image_size_height": "الارتفاع",
|
||||
"link_url_help": "العنوان الذي يؤدي إليه الرابط.",
|
||||
"link_text": "نص الرابط",
|
||||
"link_text_help": "النص المعروض كرابط.",
|
||||
"link_open_help": "فتح الرابط في علامة تبويب جديدة"
|
||||
},
|
||||
"md-hints": {
|
||||
"header_title": "رأس",
|
||||
"header_hint": "# نصك",
|
||||
"italic_title": "مائل",
|
||||
"italic_hint": "_نصك_",
|
||||
"bold_title": "عريض",
|
||||
"bold_hint": "**نصك**",
|
||||
"strikethrough_title": "مشطوب",
|
||||
"strikethrough_hint": "~~نصك~~",
|
||||
"blockquote_title": "اقتباس",
|
||||
"blockquote_hint": "> نصك",
|
||||
"code_title": "كود",
|
||||
"code_hint": "```نصك```",
|
||||
"link_title": "رابط",
|
||||
"link_hint": "[نصك](url)",
|
||||
"image_title": "صورة",
|
||||
"image_hint": "",
|
||||
"list_title": "عنصر قائمة",
|
||||
"list_hint": "- نصك",
|
||||
"numbered-list_title": "قائمة مرقمة",
|
||||
"numbered-list_hint": "1. نصك",
|
||||
"documentation": "التوثيق",
|
||||
"documentation_link": "https://diplodoc.com/docs/en/syntax/"
|
||||
},
|
||||
"menubar": {
|
||||
"bold": "عريض",
|
||||
"code": "كود",
|
||||
"code_inline": "كود مضمن",
|
||||
"codeblock": "كتلة كود",
|
||||
"colorify": "لون النص",
|
||||
"colorify__color_blue": "أزرق",
|
||||
"colorify__color_default": "افتراضي",
|
||||
"colorify__color_gray": "رمادي",
|
||||
"colorify__color_green": "أخضر",
|
||||
"colorify__color_orange": "برتقالي",
|
||||
"colorify__color_red": "أحمر",
|
||||
"colorify__color_violet": "بنفسجي",
|
||||
"colorify__color_yellow": "أصفر",
|
||||
"colorify__group_text": "نص",
|
||||
"cut": "قص",
|
||||
"emoji": "رموز تعبيرية",
|
||||
"emoji__hint": "يمكن إضافة الرموز التعبيرية في WYSIWYG أو يدوياً بالترميز",
|
||||
"heading": "عنوان",
|
||||
"heading1": "عنوان 1",
|
||||
"heading2": "عنوان 2",
|
||||
"heading3": "عنوان 3",
|
||||
"heading4": "عنوان 4",
|
||||
"heading5": "عنوان 5",
|
||||
"heading6": "عنوان 6",
|
||||
"hrule": "فاصل",
|
||||
"image": "صورة",
|
||||
"italic": "مائل",
|
||||
"link": "رابط",
|
||||
"list": "قائمة",
|
||||
"list__action_lift": "رفع العنصر",
|
||||
"list__action_sink": "خفض العنصر",
|
||||
"list_action_disabled": "يتعارض مع منطق القائمة",
|
||||
"mark": "مميز",
|
||||
"mono": "أحادي المسافة",
|
||||
"more_action": "المزيد من الإجراءات",
|
||||
"note": "ملاحظة",
|
||||
"olist": "قائمة مرتبة",
|
||||
"quote": "اقتباس",
|
||||
"redo": "إعادة",
|
||||
"strike": "مشطوب",
|
||||
"table": "جدول",
|
||||
"text": "نص",
|
||||
"ulist": "قائمة نقطية",
|
||||
"underline": "مسطر",
|
||||
"undo": "تراجع"
|
||||
},
|
||||
"placeholder": {
|
||||
"doc_empty": "اكتب / لاستخدام أوامر الشرطة المائلة...",
|
||||
"checkbox": "أدخل وصف المهمة...",
|
||||
"deflist_term": "مصطلح",
|
||||
"deflist_desc": "وصف التعريف",
|
||||
"heading": "عنوان",
|
||||
"cut_title": "العنوان",
|
||||
"cut_content": "المحتوى المراد عرضه عند النقر",
|
||||
"note_title": "العنوان",
|
||||
"note_content": "محتوى الملاحظة",
|
||||
"table_cell": "محتوى الخلية",
|
||||
"select_filter": "البحث في اللغات..."
|
||||
},
|
||||
"search": {
|
||||
"label_case-sensitive": "حساس لحالة الأحرف",
|
||||
"label_whole-word": "كلمة كاملة",
|
||||
"title": "البحث في الكود"
|
||||
},
|
||||
"suggest": {
|
||||
"empty-msg": "غير موجود"
|
||||
},
|
||||
"widgets": {
|
||||
"image": "إضافة صورة",
|
||||
"link": "إضافة رابط"
|
||||
},
|
||||
"yfm-note": {
|
||||
"info": "ملاحظة",
|
||||
"tip": "نصيحة",
|
||||
"warning": "تحذير",
|
||||
"alert": "تنبيه",
|
||||
"remove": "إزالة"
|
||||
},
|
||||
"yfm-table": {
|
||||
"column.add.before": "إضافة عمود قبل",
|
||||
"column.add.after": "إضافة عمود بعد",
|
||||
"column.remove": "إزالة العمود",
|
||||
"row.add.before": "إضافة صف قبل",
|
||||
"row.add.after": "إضافة صف بعد",
|
||||
"row.remove": "إزالة الصف",
|
||||
"table.remove": "إزالة الجدول",
|
||||
"table.menu.cell.align.left": "محاذاة محتوى الخلية إلى اليسار",
|
||||
"table.menu.cell.align.right": "محاذاة محتوى الخلية إلى اليمين",
|
||||
"table.menu.cell.align.center": "محاذاة محتوى الخلية إلى المركز",
|
||||
"table.menu.row.add": "إضافة صف بعد",
|
||||
"table.menu.row.remove": "إزالة الصف",
|
||||
"table.menu.column.add": "إضافة عمود بعد",
|
||||
"table.menu.column.remove": "إزالة العمود",
|
||||
"table.menu.convert.yfm": "تحويل إلى جدول YFM",
|
||||
"table.menu.table.remove": "إزالة الجدول"
|
||||
}
|
||||
}
|
||||
@@ -21,429 +21,454 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'За PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Токен за достъп',
|
||||
account: 'Акаунт',
|
||||
actions: 'Действия',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'Активиране на потребител',
|
||||
active: 'Активен',
|
||||
addAttachment_title: 'Добавяне на прикачен файл',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'Добавяне на група персонализирани полета',
|
||||
addCustomField_title: 'Добавяне на персонализирано поле',
|
||||
addManager_title: 'Добавяне на мениджър',
|
||||
addMember_title: 'Добавяне на член',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'Добавяне на списък със задачи',
|
||||
addUser_title: 'Добавяне на потребител',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'Администратор',
|
||||
administration: 'Администрация',
|
||||
all: 'Всички',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Всички промени ще бъдат автоматично запазени<br />след възстановяване на връзката.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'По азбучен ред',
|
||||
alwaysDisplayCardCreator: 'Винаги показвай създателя на картата',
|
||||
archive: 'Архив',
|
||||
archiveCard_title: 'Архивиране на карта',
|
||||
archiveCards_title: 'Архивиране на карти',
|
||||
areYouSureYouWantToActivateThisUser:
|
||||
'Сигурни ли сте, че искате да активирате този потребител?',
|
||||
areYouSureYouWantToArchiveCards: 'Сигурни ли сте, че искате да архивирате картите?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Сигурни ли сте, че искате да архивирате тази карта?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Сигурни ли сте, че искате да назначите този мениджър на проекта като собственик?',
|
||||
areYouSureYouWantToDeactivateThisUser:
|
||||
'Сигурни ли сте, че искате да деактивирате този потребител?',
|
||||
areYouSureYouWantToDeleteThisAttachment:
|
||||
'Сигурни ли сте, че искате да изтриете този прикачен файл?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Сигурни ли сте, че искате да изтриете това фоново изображение?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Сигурни ли сте, че искате да изтриете това табло?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Сигурни ли сте, че искате да изтриете тази карта?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Сигурни ли сте, че искате да изтриете тази карта завинаги?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Сигурни ли сте, че искате да изтриете този коментар?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'Сигурни ли сте, че искате да изтриете това персонализирано поле?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Сигурни ли сте, че искате да изтриете тази група персонализирани полета?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Сигурни ли сте, че искате да изтриете този етикет?',
|
||||
areYouSureYouWantToDeleteThisList: 'Сигурни ли сте, че искате да изтриете този списък?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Сигурни ли сте, че искате да изтриете този списък? Всички карти ще бъдат преместени в кошчето.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Сигурни ли сте, че искате да изтриете тази услуга за известия?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Сигурни ли сте, че искате да изтриете този проект?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Сигурни ли сте, че искате да изтриете тази задача?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList:
|
||||
'Сигурни ли сте, че искате да изтриете този списък със задачи?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Сигурни ли сте, че искате да изтриете този потребител?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Сигурни ли сте, че искате да изтриете този webhook?',
|
||||
areYouSureYouWantToEmptyTrash: 'Сигурни ли сте, че искате да изпразните кошчето?',
|
||||
areYouSureYouWantToLeaveBoard: 'Сигурни ли сте, че искате да напуснете таблото?',
|
||||
areYouSureYouWantToLeaveProject: 'Сигурни ли сте, че искате да напуснете проекта?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Сигурни ли сте, че искате да направите този проект частен?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Сигурни ли сте, че искате да споделите този проект?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Сигурни ли сте, че искате да премахнете този мениджър от проекта?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Сигурни ли сте, че искате да премахнете този член от таблото?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Назначаване като собственик',
|
||||
atLeastOneListMustBePresent: 'Трябва да присъства поне един списък',
|
||||
attachment: 'Прикачен файл',
|
||||
attachments: 'Прикачени файлове',
|
||||
authentication: 'Удостоверяване',
|
||||
background: 'Фон',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Основни персонализирани полета',
|
||||
baseGroup: 'Основна група',
|
||||
board: 'Табло',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Действия с табло',
|
||||
boardNotFound_title: 'Таблото не е намерено',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'Абониран за табло',
|
||||
boardUser: 'Потребител на табло',
|
||||
byCreationTime: 'По време на създаване',
|
||||
byDefault: 'По подразбиране',
|
||||
byDueDate: 'По краен срок',
|
||||
canBeInvitedToWorkInBoards: 'Може да бъде поканен да работи в табла.',
|
||||
canComment: 'Може да коментира',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Може да създава собствени проекти и да бъде поканен да работи в други.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Може да редактира оформлението на таблото и да назначава членове към карти.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Може да управлява системните настройки и да действа като собственик на проект.',
|
||||
canOnlyViewBoard: 'Може само да преглежда таблото.',
|
||||
cardActions_title: 'Действия с карта',
|
||||
cardNotFound_title: 'Картата не може да бъде открита',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Картите в този списък са достъпни за всички членове на таблото.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Картите в този списък са завършени и готови за архивиране.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Картите в този списък са готови за работа.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>Кликнете тук</0> или обновете страницата за актуализация.',
|
||||
clientHostnameInEhlo: 'Име на клиентския хост в EHLO',
|
||||
closed: 'Затворен',
|
||||
color: 'Цвят',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: 'копирай',
|
||||
comments: 'Коментари',
|
||||
contentExceedsLimit: 'Съдържанието надвишава {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Съдържанието на този прикачен файл е твърде голямо за показване.',
|
||||
copy_inline: 'копие',
|
||||
createBoard_title: 'Създаване на табло',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'Създаване на група персонализирани полета',
|
||||
createLabel_title: 'Създаване на етикет',
|
||||
createNewOneOrSelectExistingOne: 'Създайте нов или изберете<br/>съществуващ.',
|
||||
createNewOneOrSelectExistingOne: 'Създайте нов или изберете<br />съществуващ.',
|
||||
createProject_title: 'Създаване на проект',
|
||||
createTextFile_title: 'Създаване на текстов файл',
|
||||
creator: null,
|
||||
creator: 'Създател',
|
||||
currentPassword: 'Текуща парола',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'Група персонализирани полета',
|
||||
customFieldGroups_title: 'Групи персонализирани полета',
|
||||
customField_title: 'Персонализирано поле',
|
||||
customFields_title: 'Персонализирани полета',
|
||||
dangerZone_title: 'Опасна зона',
|
||||
date: 'Дата',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'Деактивиране на потребител',
|
||||
defaultCardType_title: 'Тип карта по подразбиране',
|
||||
defaultFrom: 'По подразбиране от',
|
||||
defaultView_title: 'Изглед по подразбиране',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Изтрийте всички табла, за да можете да изтриете този проект',
|
||||
deleteAttachment_title: 'Изтриване на прикачен файл',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: 'Изтриване на фоново изображение',
|
||||
deleteBoard_title: 'Изтриване на табло',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'Изтриване на карта завинаги',
|
||||
deleteCard_title: 'Изтриване на карта',
|
||||
deleteComment_title: 'Изтриване на коментар',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'Изтриване на група персонализирани полета',
|
||||
deleteCustomField_title: 'Изтриване на персонализирано поле',
|
||||
deleteLabel_title: 'Изтриване на етикета',
|
||||
deleteList_title: 'Изтриване на списък',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'Изтриване на услуга за известия',
|
||||
deleteProject_title: 'Изтриване на проект',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'Изтриване на списък със задачи',
|
||||
deleteTask_title: 'Изтриване на задача',
|
||||
deleteUser_title: 'Изтриване на потребител',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'Изтриване на webhook',
|
||||
deletedUser_title: 'Изтрит потребител',
|
||||
description: 'Описание',
|
||||
detectAutomatically: 'Aвтоматично откриване',
|
||||
display: null,
|
||||
display: 'Показване',
|
||||
dropFileToUpload: 'Пуснете файл за качване',
|
||||
dueDate_title: 'Краен срок',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'Динамично и неравномерно разположение.',
|
||||
editAttachment_title: 'Редактирай прикачения файл',
|
||||
editAvatar_title: 'Редактиране на аватар',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: 'Редактиране на цвят',
|
||||
editCustomFieldGroup_title: 'Редактиране на група персонализирани полета',
|
||||
editCustomField_title: 'Редактиране на персонализирано поле',
|
||||
editDueDate_title: 'Редактиране на дата на падеж',
|
||||
editEmail_title: 'Редактиране на имейл',
|
||||
editInformation_title: 'Редактиране на информация',
|
||||
editLabel_title: 'Редактиране на табло',
|
||||
editPassword_title: 'Редактиране на парола',
|
||||
editPermissions_title: 'Редактиране на права',
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Редактиране на Хронометър',
|
||||
editType_title: null,
|
||||
editRole_title: 'Редактиране на роля',
|
||||
editStopwatch_title: 'Редактиране на хронометър',
|
||||
editType_title: 'Редактиране на тип',
|
||||
editUsername_title: 'Редактиране на потребителско име',
|
||||
editor: 'Редактор',
|
||||
editors: null,
|
||||
editors: 'Редактори',
|
||||
email: 'Имейл',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Изпразване на кошчето',
|
||||
enterCardTitle: 'Въведете заглавие на картата...',
|
||||
enterDescription: 'Въведете описание...',
|
||||
enterFilename: 'Въведете име на файла',
|
||||
enterListTitle: 'Въведете заглавие на списък...',
|
||||
enterTaskDescription: 'Въведете описание на задачата...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Събития',
|
||||
excludedEvents: 'Изключени събития',
|
||||
expandTaskListsByDefault: 'Разширяване на списъците със задачи по подразбиране',
|
||||
filterByLabels_title: 'Филтриране по етикети',
|
||||
filterByMembers_title: 'Филтриране по членове',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'За лични проекти.',
|
||||
forTeamBasedProjects: 'За екипни проекти.',
|
||||
fromComputer_title: 'От компютър',
|
||||
fromTrello: 'От Trello',
|
||||
general: 'Общ',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Градиенти',
|
||||
grid: 'Мрежа',
|
||||
hideCompletedTasks: 'Скриване на завършени задачи',
|
||||
hideFromProjectListAndFavorites: 'Скриване от списъка с проекти и любими',
|
||||
host: 'Хост',
|
||||
hours: 'Часове',
|
||||
importBoard_title: 'Импортиране на табло',
|
||||
invalidCurrentPassword: 'Невалидна текуща парола',
|
||||
kanban: null,
|
||||
kanban: 'Канбан',
|
||||
labels: 'Етикети',
|
||||
language: 'Език',
|
||||
leaveBoard_title: 'Напуснете таблото',
|
||||
leaveProject_title: 'Напуснете проекта',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'Ограничаване на типовете карти до подразбиращия се',
|
||||
linkToCard: 'Връзка към карта',
|
||||
list: 'Списък',
|
||||
listActions_title: 'Списък с действия',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'Списъци',
|
||||
makeProjectPrivate_title: 'Направете проекта частен',
|
||||
makeProjectShared_title: 'Споделете проекта',
|
||||
managers: 'Мениджъри',
|
||||
memberActions_title: 'Действия с членове',
|
||||
members: 'Членове',
|
||||
minutes: 'Минути',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Още действия',
|
||||
moreActions_title: 'Още действия',
|
||||
moveCard_title: 'Преместване на карта',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'Преместване на списък',
|
||||
myOwn_title: 'Моите собствени',
|
||||
name: 'Име',
|
||||
newEmail: 'Нов имейл',
|
||||
newPassword: 'Нова парола',
|
||||
newUsername: 'Ново потребителско име',
|
||||
newVersionAvailable: null,
|
||||
newVersionAvailable: 'Налична е нова версия',
|
||||
newestFirst: 'Първо най-новите',
|
||||
noBoards: 'Няма табла',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Не са намерени карти.',
|
||||
noConnectionToServer: 'Няма връзка със сървъра',
|
||||
noLists: 'Няма списъци',
|
||||
noProjects: 'Няма проекти',
|
||||
noUnreadNotifications: 'Няма непрочетени известия.',
|
||||
notifications: 'Уведомления',
|
||||
oldestFirst: 'Първо най-старите',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Трябва да остане само един мениджър, за да направите този проект частен',
|
||||
openBoard_title: 'Отворете табло',
|
||||
optional_inline: 'по желание',
|
||||
organization: 'Организация',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Други',
|
||||
passwordIsSet: 'Паролата е зададена',
|
||||
phone: 'Телефон',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA използва <1><0>Apprise</0></1> за изпращане на уведомления до над 100 популярни услуги.',
|
||||
port: 'Порт',
|
||||
preferences: 'Предпочитания',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Съвет: натиснете Ctrl-V (Cmd-V на Mac), за да добавите прикачен файл от клипборда',
|
||||
private: null,
|
||||
private: 'Частен',
|
||||
project: 'Проект',
|
||||
projectNotFound_title: 'Проектът не е намерен',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'Собственик на проект',
|
||||
referenceDataAndKnowledgeStorage: 'Съхранение на референтни данни и знания.',
|
||||
rejectUnauthorizedTlsCertificates: 'Отхвърляне на неоторизирани TLS сертификати',
|
||||
removeManager_title: 'Премахване на мениджър',
|
||||
removeMember_title: 'Премахване на член',
|
||||
role: null,
|
||||
role: 'Роля',
|
||||
searchCards: 'Търсене на карти...',
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchCustomFieldGroups: 'Търсене на групи персонализирани полета...',
|
||||
searchCustomFields: 'Търсене на персонализирани полета...',
|
||||
searchLabels: 'Търсене на етикети...',
|
||||
searchLists: null,
|
||||
searchLists: 'Търсене на списъци...',
|
||||
searchMembers: 'Търсене на членове...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'Търсене на проекти...',
|
||||
searchUsers: 'Търсене на потребители...',
|
||||
seconds: 'секунди',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Избор на изпълнител',
|
||||
selectBoard: 'Изберете табло',
|
||||
selectList: 'Изберете списък',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: 'Изберете списък за възстановяване на тази карта',
|
||||
selectOrder_title: 'Избор на ред',
|
||||
selectPermissions_title: 'Изберете правата',
|
||||
selectProject: 'Изберете проект',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Избор на роля',
|
||||
selectType_title: 'Избор на тип',
|
||||
sequentialDisplayOfCards: 'Последователно показване на карти.',
|
||||
settings: 'Настройки',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
shared: 'Споделен',
|
||||
sharedWithMe_title: 'Споделени с мен',
|
||||
showOnFrontOfCard: 'Показване отпред на картата',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Сортиране на списък',
|
||||
stopwatch: 'Хронометър',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'История',
|
||||
subscribeToCardWhenCommenting: 'Абониране за карта при коментиране',
|
||||
subscribeToMyOwnCardsByDefault: 'Абонирайте се за собствените си карти по подразбиране',
|
||||
taskActions_title: 'Действия със задачи',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: 'Назначаване на задачи и завършване на проект.',
|
||||
taskListActions_title: 'Действия със списък задачи',
|
||||
taskList_title: 'Списък със задачи',
|
||||
team: 'Екип',
|
||||
terms: 'Условия',
|
||||
testLog_title: 'Тестов дневник',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Няма наличен преглед за този прикачен файл.',
|
||||
time: 'Време',
|
||||
title: 'Заглавие',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'Кошче',
|
||||
trashHasBeenSuccessfullyEmptied: 'Кошчето беше успешно изпразнено.',
|
||||
turnOffRecentCardHighlighting: 'Изключване на подчертаването на скорошни карти',
|
||||
typeNameToConfirm: 'Въведете име за потвърждение.',
|
||||
typeTitleToConfirm: 'Въведете заглавие за потвърждение.',
|
||||
unsavedChanges: 'Незапазени промени',
|
||||
uploadFailedFileIsTooBig: 'Качването неуспешно: файлът е твърде голям.',
|
||||
uploadFailedNotEnoughStorageSpace:
|
||||
'Качването неуспешно: няма достатъчно място за съхранение.',
|
||||
uploadedImages: 'Качени изображения',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Използване на сигурна връзка',
|
||||
userActions_title: 'Потребителски действия',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> добави <2>{{card}}</2> в {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> добави тази карта в {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> добави {{addedUser}} към <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> добави {{addedUser}} към тази карта',
|
||||
userAddedYouToCard: '<0>{{user}}</0> ви добави към <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> завърши {{task}} в <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> завърши {{task}} в тази карта',
|
||||
userJoinedCard: '<0>{{user}}</0> се присъедини към <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> се присъедини към тази карта',
|
||||
userLeftCard: '<0>{{user}}</0> напусна <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> остави нов коментар «{{comment}}» в <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> напусна тази карта',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> отбеляза {{task}} като незавършена в <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> отбеляза {{task}} като незавършена в тази карта',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> ви спомена в коментар «{{comment}}» в <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> премести <2>{{card}}</2> от {{fromList}} към {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> премести тази карта от {{fromList}} към {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> премахна {{removedUser}} от <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> премахна {{removedUser}} от тази карта',
|
||||
username: 'Потребителско име',
|
||||
users: 'Потребители',
|
||||
viewer: 'Зрител',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'Зрители',
|
||||
visualTaskManagementWithLists: 'Визуално управление на задачи със списъци.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Без основна група',
|
||||
writeComment: 'Напишете коментар...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Активиране на потребител',
|
||||
activateUser_title: 'Активиране на потребител',
|
||||
addAnotherCard: 'Добавяне на друга карта',
|
||||
addAnotherList: 'Добавяне на друг списък',
|
||||
addAnotherTask: 'Добавяне на друга задача',
|
||||
addCard: 'Добавяне на карта',
|
||||
addCard_title: 'Добавяне на карта',
|
||||
addComment: 'Добавяне на коментар',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Добавяне на персонализирано поле',
|
||||
addCustomFieldGroup: 'Добавяне на група персонализирани полета',
|
||||
addList: 'Добавяне на списък',
|
||||
addMember: 'Добавяне на член',
|
||||
addMoreDetailedDescription: 'Добавяне на по-подробно описание',
|
||||
addTask: 'Добавяне на задача',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Добавяне на списък със задачи',
|
||||
addToCard: 'Добавяне към карта',
|
||||
addUser: 'Добавяне на потребител',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Добавяне на webhook',
|
||||
archive: 'Архивиране',
|
||||
archiveCard: 'Архивиране на карта',
|
||||
archiveCard_title: 'Архивиране на карта',
|
||||
archiveCards: 'Архивиране на карти',
|
||||
archiveCards_title: 'Архивиране на карти',
|
||||
assignAsOwner: 'Назначаване като собственик',
|
||||
cancel: 'Отказ',
|
||||
createBoard: 'Създаване на табло',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Създаване на група персонализирани полета',
|
||||
createFile: 'Създаване на файл',
|
||||
createLabel: 'Създаване на етикет',
|
||||
createNewLabel: 'Създаване на нов етикет',
|
||||
createProject: 'Създаване на проект',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Деактивиране на потребител',
|
||||
deactivateUser_title: 'Деактивиране на потребител',
|
||||
delete: 'Изтриване',
|
||||
deleteAttachment: 'Изтриване на прикачения файл',
|
||||
deleteAvatar: 'Изтриване на аватар',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Изтриване на фоново изображение',
|
||||
deleteBoard: 'Изтриване на табло',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Изтриване на табло',
|
||||
deleteCard: 'Изтриване на карта',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'Изтриване на карта завинаги',
|
||||
deleteCard_title: 'Изтриване на карта',
|
||||
deleteComment: 'Изтриване на коментара',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Изтриване на персонализирано поле',
|
||||
deleteCustomFieldGroup: 'Изтриване на група персонализирани полета',
|
||||
deleteForever_title: 'Изтриване завинаги',
|
||||
deleteGroup: 'Изтриване на група',
|
||||
deleteLabel: 'Изтриване на етикета',
|
||||
deleteList: 'Изтриване на списък',
|
||||
deleteList_title: 'Изтриване на списък',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: 'Изтриване на услуга за известия',
|
||||
deleteProject: 'Изтриване на проект',
|
||||
deleteProject_title: 'Изтриване на проект',
|
||||
deleteTask: 'Изтриване на задача',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'Изтриване на списък със задачи',
|
||||
deleteTask_title: 'Изтриване на задача',
|
||||
deleteUser: 'Изтриване на потребител',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
deleteUser_title: 'Изтриване на потребител',
|
||||
deleteWebhook: 'Изтриване на webhook',
|
||||
dismissAll: 'Отхвърляне на всички',
|
||||
download: 'Изтегляне',
|
||||
duplicateCard_title: 'Дублирана карта',
|
||||
edit: 'Редактиране',
|
||||
editColor_title: null,
|
||||
editColor_title: 'Редактиране на цвят',
|
||||
editDescription_title: 'Редактиране на описание',
|
||||
editDueDate_title: 'Редактиране на краен срок',
|
||||
editEmail_title: 'Редактиране на имейл',
|
||||
editGroup: null,
|
||||
editGroup: 'Редактиране на група',
|
||||
editInformation_title: 'Редактиране на информация',
|
||||
editPassword_title: 'Редактиране на парола',
|
||||
editPermissions: 'Разрешения за редактиране',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Редактиране на роля',
|
||||
editStopwatch_title: 'Редактиране на хронометър',
|
||||
editTitle_title: 'Редактиране на заглавието',
|
||||
editType_title: null,
|
||||
editType_title: 'Редактиране на тип',
|
||||
editUsername_title: 'Редактиране на потребителско име',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: 'Изпразване на кошчето',
|
||||
emptyTrash_title: 'Изпразване на кошчето',
|
||||
import: 'Импортиране',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'Присъединяване',
|
||||
leave: 'Напускане',
|
||||
leaveBoard: 'Напускане на дъската',
|
||||
leaveProject: 'Напускане на проекта',
|
||||
logOut_title: 'Излезте',
|
||||
makeCover_title: 'Създаване на корица',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'Направете проекта частен',
|
||||
makeProjectPrivate_title: 'Направете проекта частен',
|
||||
makeProjectShared: 'Споделете проекта',
|
||||
makeProjectShared_title: 'Споделете проекта',
|
||||
move: 'Преместване',
|
||||
moveCard_title: 'Преместване на карта',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Преместване на списък',
|
||||
remove: 'Премахване',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'Премахване на изпълнител',
|
||||
removeColor: 'Премахване на цвят',
|
||||
removeCover_title: 'Премахване на корицата',
|
||||
removeFromBoard: 'Премахване от борда',
|
||||
removeFromProject: 'Премахване от проекта',
|
||||
removeManager: 'Премахване на мениджър',
|
||||
removeMember: 'Премахване на член',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Възстановяване в {{list}}',
|
||||
returnToBoard: 'Връщане към табло',
|
||||
save: 'Запазване',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Изпращане на тестов имейл',
|
||||
showActive: 'Показване на активни',
|
||||
showAllAttachments: 'Показване на всички прикачени файлове ({{hidden}} скрити)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Показване на карти с този потребител',
|
||||
showDeactivated: 'Показване на деактивирани',
|
||||
showFewerAttachments: 'Показване на по-малко прикачени файлове',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'Показване на по-малко',
|
||||
showMore: 'Показване на повече',
|
||||
sortList_title: 'Списък за сортиране',
|
||||
start: 'Старт',
|
||||
stop: 'Стоп',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Достигнат е лимитът на активни потребители',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Необходимо е влизане на администратор за инициализиране на инстанцията',
|
||||
emailAlreadyInUse: 'Имейлът вече се използва',
|
||||
emailOrUsername: 'Имейл или потребителско име',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Прочетох и се съгласявам с тези условия',
|
||||
invalidCredentials: 'Невалидни данни за вход',
|
||||
invalidEmailOrUsername: 'Невалиден имейл или потребителско име',
|
||||
invalidPassword: 'Невалидна парола',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Вход',
|
||||
noInternetConnection: 'Няма интернет връзка',
|
||||
or: null,
|
||||
or: 'Или',
|
||||
pageNotFound_title: 'Страницата не е намерена',
|
||||
password: 'Парола',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Задвижвано от <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Неуспешна връзка със сървъра',
|
||||
unknownError: 'Неизвестна грешка, опитайте отново по-късно',
|
||||
useSingleSignOn: 'Използване на single sign-on',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Отказ и затваряне',
|
||||
continue: 'Продължи',
|
||||
logIn: 'Вход',
|
||||
logInWithSso: 'Вход чрез SSO',
|
||||
},
|
||||
|
||||
@@ -60,7 +60,8 @@ export default {
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Opravdu chcete tuto skupinu vlastních polí odstranit?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Opravdu chcete smazat tento štítek?',
|
||||
areYouSureYouWantToDeleteThisList: 'Opravdu chcete smazat tento seznam?',
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Opravdu chcete smazat tento seznam? Všechny karty budou přesunuty do koše.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Opravdu chcete tuto oznamovací službu odstranit?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Opravdu chcete smazat tento projekt?',
|
||||
@@ -111,7 +112,7 @@ export default {
|
||||
'Karty na tomto seznamu jsou kompletní a připravené k archivaci.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Karty na tomto seznamu jsou připraveny k práci.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Klikněte sem</0> nebo aktualizujte stránku.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Hostname klienta v EHLO',
|
||||
closed: 'Uzavřeno',
|
||||
color: 'Barva',
|
||||
comments: 'Komentáře',
|
||||
@@ -134,7 +135,7 @@ export default {
|
||||
date: 'Datum',
|
||||
deactivateUser_title: 'Deaktivace uživatele',
|
||||
defaultCardType_title: 'Výchozí typ karty',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'Výchozí "od"',
|
||||
defaultView_title: 'Výchozí zobrazení',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Pro smazání tohoto projektu je třeba nejprve smazat všechny nástěnky',
|
||||
@@ -156,7 +157,6 @@ export default {
|
||||
deleteWebhook_title: 'Smazat webhook',
|
||||
deletedUser_title: 'Smazaný uživatel',
|
||||
description: 'Popis',
|
||||
detectAutomatically: 'Automatická detekce',
|
||||
display: 'Zobrazit',
|
||||
dropFileToUpload: 'Přetažením nahrát soubor',
|
||||
dueDate_title: 'Termín',
|
||||
@@ -199,7 +199,7 @@ export default {
|
||||
grid: 'Mřížka',
|
||||
hideCompletedTasks: 'Skrýt dokončené úkoly',
|
||||
hideFromProjectListAndFavorites: 'Skrýt ze seznamu projektů a oblíbených položek',
|
||||
host: null,
|
||||
host: 'Host',
|
||||
hours: 'Hodiny',
|
||||
importBoard_title: 'Importovat nástěnku',
|
||||
invalidCurrentPassword: 'Neplatné aktuální heslo',
|
||||
@@ -231,7 +231,7 @@ export default {
|
||||
newVersionAvailable: 'Nová verze je k dispozici',
|
||||
newestFirst: 'Nejnovější',
|
||||
noBoards: 'Žádné nástěnky',
|
||||
noCardsFound: 'Nebyly nalezeny žádné karty',
|
||||
noCardsFound: 'Nebyly nalezeny žádné karty.',
|
||||
noConnectionToServer: 'Není spojení k serveru',
|
||||
noLists: 'Žádné seznamy',
|
||||
noProjects: 'Žádné projekty',
|
||||
@@ -244,11 +244,11 @@ export default {
|
||||
optional_inline: 'volitelné',
|
||||
organization: 'Společnost',
|
||||
others: 'Jiné',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Heslo je nastaveno',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA používá <1><0>Apprise</0></1> k zasílání oznámení do více než 100 oblíbených služeb.',
|
||||
port: null,
|
||||
port: 'Port',
|
||||
preferences: 'Volby',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Tip: stisknutím Ctrl-V (Cmd-V na Macu) přidáte přílohu ze schránky.',
|
||||
@@ -257,7 +257,7 @@ export default {
|
||||
projectNotFound_title: 'Projekt nenalezen',
|
||||
projectOwner: 'Vlastník projektu',
|
||||
referenceDataAndKnowledgeStorage: 'Uchovávání referenčních údajů a znalostí.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
rejectUnauthorizedTlsCertificates: 'Odmítnout neautorizované TLS certifikáty',
|
||||
removeManager_title: 'Odstranit správce',
|
||||
removeMember_title: 'Odstranit člena',
|
||||
role: 'Role',
|
||||
@@ -284,7 +284,7 @@ export default {
|
||||
shared: 'Sdílené',
|
||||
sharedWithMe_title: 'Sdíleno se mnou',
|
||||
showOnFrontOfCard: 'Zobrazit na přední straně karty',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Řadit podle',
|
||||
stopwatch: 'Časovač',
|
||||
story: 'Příběh',
|
||||
@@ -296,7 +296,7 @@ export default {
|
||||
taskList_title: 'Seznam úkolů',
|
||||
team: 'Tým',
|
||||
terms: 'Podmínky',
|
||||
testLog_title: null,
|
||||
testLog_title: 'Testovací protokol',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Pro tuto přílohu není k dispozici žádný náhled.',
|
||||
time: 'Čas',
|
||||
title: 'Titulek',
|
||||
@@ -310,7 +310,7 @@ export default {
|
||||
uploadFailedNotEnoughStorageSpace: 'Nahrávání se nezdařilo: Nedostatek úložného prostoru.',
|
||||
uploadedImages: 'Nahrané obrázky',
|
||||
url: 'URL',
|
||||
useSecureConnection: null,
|
||||
useSecureConnection: 'Použít zabezpečené připojení',
|
||||
userActions_title: 'Akce uživatele',
|
||||
userAddedCardToList: '<0>{{user}}</0> přidal <2>{{card}}</2> do {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> přidal kartu do {{list}}',
|
||||
@@ -451,9 +451,9 @@ export default {
|
||||
restoreToList: 'Obnovit do {{list}}',
|
||||
returnToBoard: 'Návrat na nástěnku',
|
||||
save: 'Uložit',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Odeslat testovací e-mail',
|
||||
showActive: 'Zobrazit aktivní',
|
||||
showAllAttachments: 'Zozbrazit všechny přílohy ({{hidden}} skryté)',
|
||||
showAllAttachments: 'Zobrazit všechny přílohy ({{hidden}} skryté)',
|
||||
showCardsWithThisUser: 'Zobrazit karty tohoto uživatele',
|
||||
showDeactivated: 'Zobrazit deaktivované',
|
||||
showFewerAttachments: 'Zobrazit méně příloh',
|
||||
|
||||
@@ -21,7 +21,7 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Om PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Adgangstoken',
|
||||
account: 'Konto',
|
||||
actions: 'Handlinger',
|
||||
activateUser_title: 'Aktiv bruger',
|
||||
@@ -64,20 +64,20 @@ export default {
|
||||
'Er du sikker på at du vil slette denne brugerdefinerede feltgruppe?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Er du sikker på at du vil slette denne label?',
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Er du sikker på at du vil slette denne liste? Alle kort i listen vil også blive slettet.',
|
||||
'Er du sikker på at du vil slette denne liste? Alle kort vil blive flyttet til papirkurven.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Er du sikker på at du vil fjerne denne notifikationstjeneste?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Er du sikker på at du vil slette dette projekt?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Er du sikker på at du vil slette denne opgave?',
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Er du sikker på at du vil slette denne opgaveliste?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Er du sikker på at du vil slette denne bruger?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Er du sikker på at du vil slette denne webhook?',
|
||||
areYouSureYouWantToEmptyTrash: 'Er du sikker på at du vil tømme papirkurven?',
|
||||
areYouSureYouWantToLeaveBoard: 'Er du sikker på at du vil forlade denne tavle?',
|
||||
areYouSureYouWantToLeaveProject: 'Er du sikker på at du vil forlade dette projekt?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Are you sure you want to make this project shared?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Er du sikker på at du vil gøre dette projekt privat?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Er du sikker på at du vil dele dette projekt?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Er du sikker på at du vil fjerne denne projektleder fra projektet?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
@@ -98,7 +98,7 @@ export default {
|
||||
byCreationTime: 'Efter oprettelsestidspunkt',
|
||||
byDefault: 'Som standard',
|
||||
byDueDate: 'Efter frist',
|
||||
canBeInvitedToWorkInBoards: 'Kan inviteres til at arbejde i tavler',
|
||||
canBeInvitedToWorkInBoards: 'Kan inviteres til at arbejde i tavler.',
|
||||
canComment: 'Kan kommentere',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Kan oprette egne projekter og blive inviteret til at arbejde i andres.',
|
||||
@@ -115,7 +115,7 @@ export default {
|
||||
'Kort på denne liste er afsluttede og klar til at blive arkiveret.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Kort på denne liste er klar til at blive arbejdet på.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Klik her</0> eller opdater siden for at opdatere.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Klient hostname i EHLO',
|
||||
closed: 'Lukket',
|
||||
color: 'Farve',
|
||||
comments: 'Kommentarer',
|
||||
@@ -139,7 +139,7 @@ export default {
|
||||
date: 'Dato',
|
||||
deactivateUser_title: 'Deaktiver bruger',
|
||||
defaultCardType_title: 'Standard korttype',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'Standard "fra"',
|
||||
defaultView_title: 'Standard visning',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Slet alle tavler for at kunne slette dette projekt.',
|
||||
@@ -158,14 +158,13 @@ export default {
|
||||
deleteTaskList_title: 'Slet opgaveliste',
|
||||
deleteTask_title: 'Slet opgave',
|
||||
deleteUser_title: 'Slet bruger',
|
||||
deleteWebhook_title: null,
|
||||
deleteWebhook_title: 'Slet webhook',
|
||||
deletedUser_title: 'Slettet bruger',
|
||||
description: 'Beskrivelse',
|
||||
detectAutomatically: 'Registrer automatisk',
|
||||
display: 'Vis',
|
||||
dropFileToUpload: 'Slip fil for at uploade',
|
||||
dueDate_title: 'Frist',
|
||||
dynamicAndUnevenlySpacedLayout: 'Dynamisk og ujævnt fordelt layout',
|
||||
dynamicAndUnevenlySpacedLayout: 'Dynamisk og ujævnt fordelt layout.',
|
||||
editAttachment_title: 'Rediger vedhæftning',
|
||||
editAvatar_title: 'Rediger profilbillede',
|
||||
editColor_title: 'Rediger farve',
|
||||
@@ -190,9 +189,9 @@ export default {
|
||||
enterFilename: 'Angiv filnavn',
|
||||
enterListTitle: 'Angiv listens overskrift...',
|
||||
enterTaskDescription: 'Angiv opgavens beskrivelse...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Begivenheder',
|
||||
excludedEvents: 'Udelukkede begivenheder',
|
||||
expandTaskListsByDefault: 'Udvid opgavelister som standard',
|
||||
filterByLabels_title: 'Filtrer labels',
|
||||
filterByMembers_title: 'Filtrer medlemmer',
|
||||
forPersonalProjects: 'For personlige projekter.',
|
||||
@@ -202,9 +201,9 @@ export default {
|
||||
general: 'Generelt',
|
||||
gradients: 'Gradienter',
|
||||
grid: 'Gitter',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: 'Skjul fuldførte opgaver',
|
||||
hideFromProjectListAndFavorites: 'Skjul fra projektliste og favoritter',
|
||||
host: null,
|
||||
host: 'Vært',
|
||||
hours: 'Timer',
|
||||
importBoard_title: 'Importer tavle',
|
||||
invalidCurrentPassword: 'Nuværende adgangskode er ugyldig',
|
||||
@@ -214,20 +213,20 @@ export default {
|
||||
leaveBoard_title: 'Forlad tavle',
|
||||
leaveProject_title: 'Forlad projekt',
|
||||
limitCardTypesToDefaultOne: 'Begræns korttyper til standardtypen',
|
||||
linkToCard: null,
|
||||
linkToCard: 'Link til kort',
|
||||
list: 'Liste',
|
||||
listActions_title: 'Listehandlinger',
|
||||
lists: 'Lister',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate_title: 'Gør projekt privat',
|
||||
makeProjectShared_title: 'Del projekt',
|
||||
managers: 'Projektledere',
|
||||
memberActions_title: 'Medlemshandlinger',
|
||||
members: 'Medlemmer',
|
||||
minutes: 'Minutter',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Flere handlinger',
|
||||
moreActions_title: 'Flere handlinger',
|
||||
moveCard_title: 'Flyt kort',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Flyt liste',
|
||||
myOwn_title: 'Egne',
|
||||
name: 'Navn',
|
||||
newEmail: 'Ny e-mail',
|
||||
@@ -236,23 +235,24 @@ export default {
|
||||
newVersionAvailable: 'Ny version tilgængelig',
|
||||
newestFirst: 'Nyeste først',
|
||||
noBoards: 'Ingen tavler',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Ingen kort fundet.',
|
||||
noConnectionToServer: 'Ingen forbindelse til serveren',
|
||||
noLists: 'Ingen lister',
|
||||
noProjects: 'Ingen projekter',
|
||||
noUnreadNotifications: 'Ingen ulæste notifikationer.',
|
||||
notifications: 'Notifikationer',
|
||||
oldestFirst: 'Ældste først',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Kun én projektleder skal forblive for at gøre dette projekt privat',
|
||||
openBoard_title: 'Åbn tavle',
|
||||
optional_inline: 'valgfri',
|
||||
organization: 'Organisation',
|
||||
others: 'Andre',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Adgangskode er indstillet',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA bruger <1><0>Apprise</0></1> til at sende notifikationer til over 100 populære tjenester.',
|
||||
port: null,
|
||||
port: 'Port',
|
||||
preferences: 'Præferencer',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Tip: Tryk Ctrl-V (Cmd-V på Mac) for at vedhæfte direkte fra udklipsholder.',
|
||||
@@ -260,8 +260,8 @@ export default {
|
||||
project: 'Kanban',
|
||||
projectNotFound_title: 'Projekt ikke fundet',
|
||||
projectOwner: 'Projektejer',
|
||||
referenceDataAndKnowledgeStorage: 'Reference data og vidensopbevaring',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
referenceDataAndKnowledgeStorage: 'Reference data og vidensopbevaring.',
|
||||
rejectUnauthorizedTlsCertificates: 'Afvis uautoriserede TLS-certifikater',
|
||||
removeManager_title: 'Fjern projektleder',
|
||||
removeMember_title: 'Fjern medlem',
|
||||
role: 'Rolle',
|
||||
@@ -283,24 +283,24 @@ export default {
|
||||
selectProject: 'Vælg projekt',
|
||||
selectRole_title: 'Vælg rolle',
|
||||
selectType_title: 'Vælg type',
|
||||
sequentialDisplayOfCards: 'Sekventiel visning af kort',
|
||||
sequentialDisplayOfCards: 'Sekventiel visning af kort.',
|
||||
settings: 'Indstillinger',
|
||||
shared: 'Delt',
|
||||
sharedWithMe_title: 'Delt med mig',
|
||||
showOnFrontOfCard: 'Vis på forsiden af kortet',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Sortér liste',
|
||||
stopwatch: 'Stopur',
|
||||
story: 'Story',
|
||||
subscribeToCardWhenCommenting: 'Abonnér på kort ved kommentering',
|
||||
subscribeToMyOwnCardsByDefault: 'Abonnér på egne kort som standard',
|
||||
taskActions_title: 'Opgave handlinger',
|
||||
taskAssignmentAndProjectCompletion: 'Opgave tildeling og projekt færdiggørelse',
|
||||
taskAssignmentAndProjectCompletion: 'Opgave tildeling og projekt færdiggørelse.',
|
||||
taskListActions_title: 'Opgaveliste handlinger',
|
||||
taskList_title: 'Opgaveliste',
|
||||
team: 'Team',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Vilkår',
|
||||
testLog_title: 'Test log',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Der er ingen forhåndsvisning tilgængelig for denne vedhæftning.',
|
||||
time: 'Tid',
|
||||
@@ -311,11 +311,11 @@ export default {
|
||||
typeNameToConfirm: 'Skriv navnet for at bekræfte.',
|
||||
typeTitleToConfirm: 'Skriv overskriften for at bekræfte.',
|
||||
unsavedChanges: 'Ikke-gemte ændringer',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Upload mislykkedes: Filen er for stor.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Upload mislykkedes: Ikke nok lagerplads.',
|
||||
uploadedImages: 'Uploadede billeder',
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Brug sikker forbindelse',
|
||||
userActions_title: 'Brugerhandlinger',
|
||||
userAddedCardToList: '<0>{{user}}</0> tilføjede <2>{{card}}</2> til {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> tilføjede kortet til {{list}}',
|
||||
@@ -346,8 +346,8 @@ export default {
|
||||
users: 'Brugere',
|
||||
viewer: 'Læser',
|
||||
viewers: 'Læsere',
|
||||
visualTaskManagementWithLists: 'Visuel opgavestyring med lister',
|
||||
webhooks: null,
|
||||
visualTaskManagementWithLists: 'Visuel opgavestyring med lister.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Uden standardgruppe',
|
||||
writeComment: 'Skriv en kommentar...',
|
||||
},
|
||||
@@ -370,14 +370,14 @@ export default {
|
||||
addTaskList: 'Tilføj opgaveliste',
|
||||
addToCard: 'Tilføj til kort',
|
||||
addUser: 'Tilføj bruger',
|
||||
addWebhook: null,
|
||||
addWebhook: 'Tilføj webhook',
|
||||
archive: 'Arkivér',
|
||||
archiveCard: 'Arkivér kort',
|
||||
archiveCard_title: 'Arkivér kort',
|
||||
archiveCards: 'Arkivér kort',
|
||||
archiveCards_title: 'Arkivér kort',
|
||||
assignAsOwner: 'Sæt som ejer',
|
||||
cancel: 'Cancel',
|
||||
cancel: 'Annuller',
|
||||
createBoard: 'Opret tavle',
|
||||
createCustomFieldGroup: 'Opret brugerdefineret feltgruppe',
|
||||
createFile: 'Opret fil',
|
||||
@@ -411,9 +411,9 @@ export default {
|
||||
deleteTask_title: 'Slet opgave',
|
||||
deleteUser: 'Slet bruger',
|
||||
deleteUser_title: 'Slet bruger',
|
||||
deleteWebhook: null,
|
||||
deleteWebhook: 'Slet webhook',
|
||||
dismissAll: 'Afvis alle',
|
||||
download: null,
|
||||
download: 'Download',
|
||||
duplicateCard_title: 'Duplikér kort',
|
||||
edit: 'Rediger',
|
||||
editColor_title: 'Rediger farve',
|
||||
@@ -438,13 +438,13 @@ export default {
|
||||
leaveProject: 'Forlad projekt',
|
||||
logOut_title: 'Log ud',
|
||||
makeCover_title: 'Gør til coverbillede',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate: 'Gør projekt privat',
|
||||
makeProjectPrivate_title: 'Gør projekt privat',
|
||||
makeProjectShared: 'Del projekt',
|
||||
makeProjectShared_title: 'Del projekt',
|
||||
move: 'Flyt',
|
||||
moveCard_title: 'Flyt kort',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Flyt liste',
|
||||
remove: 'Fjern',
|
||||
removeAssignee: 'Fjern ansvarlig',
|
||||
removeColor: 'Fjern farve',
|
||||
@@ -456,14 +456,14 @@ export default {
|
||||
restoreToList: 'Gendan til {{list}}',
|
||||
returnToBoard: 'Tilbage til tavle',
|
||||
save: 'Gem ændringer',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Send test e-mail',
|
||||
showActive: 'Vis aktive',
|
||||
showAllAttachments: 'Vis alle vedhæftninger ({{hidden}} skjulte)',
|
||||
showCardsWithThisUser: 'Vis kort med denne bruger',
|
||||
showDeactivated: 'Vis deaktiverede',
|
||||
showFewerAttachments: 'Vis færre vedhæftninger',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'Vis mindre',
|
||||
showMore: 'Vis mere',
|
||||
sortList_title: 'Sortér liste',
|
||||
start: 'Start',
|
||||
stop: 'Stop',
|
||||
|
||||
@@ -2,10 +2,11 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Grænsen for aktive brugere er nået',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Administrator login påkrævet for at initialisere instans',
|
||||
emailAlreadyInUse: 'E-mail allerede i brug',
|
||||
emailOrUsername: 'E-mail eller brugernavn',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Jeg har læst og accepterer disse vilkår',
|
||||
invalidCredentials: 'Forkerte loginoplysninger',
|
||||
invalidEmailOrUsername: 'Ugyldig e-mail eller brugernavn',
|
||||
invalidPassword: 'Ugyldig adgangskode',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Annuller og luk',
|
||||
continue: 'Fortsæt',
|
||||
logIn: 'Log på',
|
||||
logInWithSso: 'Log på med SSO',
|
||||
},
|
||||
|
||||
@@ -21,7 +21,7 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Über PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Zugriffstoken',
|
||||
account: 'Konto',
|
||||
actions: 'Aktionen',
|
||||
activateUser_title: 'Benutzer aktivieren',
|
||||
@@ -69,7 +69,8 @@ export default {
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Sind Sie sicher, dass Sie diese Feldgruppe löschen möchten?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Sind Sie sicher, dass Sie dieses Label löschen möchten?',
|
||||
areYouSureYouWantToDeleteThisList: 'Sind Sie sicher, dass Sie diese Liste löschen möchten?',
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Sind Sie sicher, dass Sie diese Liste löschen möchten? Alle Karten werden in den Papierkorb verschoben.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Sind Sie sicher, dass Sie diesen Benachrichtigungsdienst löschen möchten?',
|
||||
areYouSureYouWantToDeleteThisProject:
|
||||
@@ -79,12 +80,14 @@ export default {
|
||||
'Sind Sie sicher, dass Sie diese Aufgaben löschen möchten?',
|
||||
areYouSureYouWantToDeleteThisUser:
|
||||
'Sind Sie sicher, dass Sie diesen Benutzer löschen möchten?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToDeleteThisWebhook:
|
||||
'Sind Sie sicher, dass Sie diesen Webhook löschen möchten?',
|
||||
areYouSureYouWantToEmptyTrash: 'Sind Sie sicher, dass Sie den Papierkorb leeren möchten?',
|
||||
areYouSureYouWantToLeaveBoard:
|
||||
'Sind Sie sicher, dass Sie den Arbeitsbereich verlassen möchten?',
|
||||
areYouSureYouWantToLeaveProject: 'Sind Sie sicher, dass Sie das Projekt verlassen möchten?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Sind Sie sicher, dass Sie dieses Projekt privat machen möchten?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Sind Sie sicher, dass Sie dieses Projekt freigeben möchten?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
@@ -107,35 +110,37 @@ export default {
|
||||
byCreationTime: 'Nach Erstellungszeit',
|
||||
byDefault: 'Standardmäßig',
|
||||
byDueDate: 'Nach Fälligkeitsdatum',
|
||||
canBeInvitedToWorkInBoards: 'Kann zu Projekten und Boards eingeladen werden.',
|
||||
canBeInvitedToWorkInBoards: 'Kann zu Projekten und Arbeitsbereichen eingeladen werden.',
|
||||
canComment: 'Kann kommentieren',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Kann eigene Projekte erstellen und in Andere eingeladen werden.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Kann den Arbeitsbereich layout bearbeiten und Benutzern Karten uiweisen.',
|
||||
'Kann das Arbeitsbereich-Layout bearbeiten und Mitgliedern Karten zuweisen.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Kann systemweite Einstellungen vornehmen und als Projektleiter arbeiten.',
|
||||
canOnlyViewBoard: 'Kann das Board nur ansehen.',
|
||||
cardActions_title: 'Kartenaktionen',
|
||||
cardNotFound_title: 'Karte nicht gefunden',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Cards on this list are available to all Arbeitsbereich members.',
|
||||
'Karten in dieser Liste sind für alle Arbeitsbereich-Mitglieder verfügbar.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Karten in dieser Liste sind abgeschlossen und können archiviert werden.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Karten in dieser Liste sind bereit zur Bearbeitung.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>Hier klicken</0> oder Seite aktualisieren, um zu aktualisieren.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Client-Hostname in EHLO',
|
||||
closed: 'Geschlossen',
|
||||
color: 'Farbe',
|
||||
comments: 'Kommentare',
|
||||
contentExceedsLimit: 'Inhalt überschreitet {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: 'kopieren',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Der Inhalt dieses Anhangs ist zu groß für die Anzeige.',
|
||||
copy_inline: 'Kopie',
|
||||
createBoard_title: 'Arbeitsbereich erstellen',
|
||||
createCustomFieldGroup_title: 'Feldgruppe erstellen',
|
||||
createLabel_title: 'Label erstellen',
|
||||
createNewOneOrSelectExistingOne: 'Create a new one or select<br />an existing one.',
|
||||
createNewOneOrSelectExistingOne:
|
||||
'Erstellen Sie eine neue oder wählen Sie<br />eine vorhandene aus.',
|
||||
createProject_title: 'Projekt erstellen',
|
||||
createTextFile_title: 'Textdatei erstellen',
|
||||
creator: 'Ersteller',
|
||||
@@ -148,7 +153,7 @@ export default {
|
||||
date: 'Datum',
|
||||
deactivateUser_title: 'Benutzer deaktivieren',
|
||||
defaultCardType_title: 'Standard-Kartentyp',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'Standard "Von"',
|
||||
defaultView_title: 'Standardansicht',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Löschen Sie alle Arbeitsbereiche, um dieses Projekt löschen zu können',
|
||||
@@ -167,10 +172,9 @@ export default {
|
||||
deleteTaskList_title: 'Aufgaben löschen',
|
||||
deleteTask_title: 'Aufgabe löschen',
|
||||
deleteUser_title: 'Benutzer löschen',
|
||||
deleteWebhook_title: null,
|
||||
deleteWebhook_title: 'Webhook löschen',
|
||||
deletedUser_title: 'Gelöschter Benutzer',
|
||||
description: 'Beschreibung',
|
||||
detectAutomatically: 'Automatisch erkennen',
|
||||
display: 'Anzeige',
|
||||
dropFileToUpload: 'Datei für Upload ablegen',
|
||||
dueDate_title: 'Fälligkeitsdatum',
|
||||
@@ -199,9 +203,9 @@ export default {
|
||||
enterFilename: 'Dateiname eingeben',
|
||||
enterListTitle: 'Listentitel eingeben...',
|
||||
enterTaskDescription: 'Aufgabenbeschreibung eingeben...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Ereignisse',
|
||||
excludedEvents: 'Ausgeschlossene Ereignisse',
|
||||
expandTaskListsByDefault: 'Aufgabenlisten standardmäßig erweitern',
|
||||
filterByLabels_title: 'Nach Label filtern',
|
||||
filterByMembers_title: 'Nach Mitgliedern filtern',
|
||||
forPersonalProjects: 'Für persönliche Projekte.',
|
||||
@@ -211,11 +215,11 @@ export default {
|
||||
general: 'Allgemein',
|
||||
gradients: 'Verläufe',
|
||||
grid: 'Raster',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: 'Erledigte Aufgaben ausblenden',
|
||||
hideFromProjectListAndFavorites: 'Aus Projektliste und Favoriten ausblenden',
|
||||
host: null,
|
||||
host: 'Host',
|
||||
hours: 'Stunden',
|
||||
importBoard_title: 'Board importieren',
|
||||
importBoard_title: 'Arbeitsbereich importieren',
|
||||
invalidCurrentPassword: 'Das aktuelle Passwort ist falsch',
|
||||
kanban: 'Kanban',
|
||||
labels: 'Labels',
|
||||
@@ -223,20 +227,20 @@ export default {
|
||||
leaveBoard_title: 'Arbeitsbereich verlassen',
|
||||
leaveProject_title: 'Projekt verlassen',
|
||||
limitCardTypesToDefaultOne: 'Kartentypen auf Standardtyp beschränken',
|
||||
linkToCard: null,
|
||||
linkToCard: 'Link zur Karte',
|
||||
list: 'Liste',
|
||||
listActions_title: 'Listenaktionen',
|
||||
lists: 'Listen',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate_title: 'Projekt privat machen',
|
||||
makeProjectShared_title: 'Projekt freigeben',
|
||||
managers: 'Projektleiter',
|
||||
memberActions_title: 'Mitglieder-Aktionen',
|
||||
members: 'Mitglieder',
|
||||
minutes: 'Minuten',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Weitere Aktionen',
|
||||
moreActions_title: 'Weitere Aktionen',
|
||||
moveCard_title: 'Karte verschieben',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Liste verschieben',
|
||||
myOwn_title: 'Meine eigenen',
|
||||
name: 'Name',
|
||||
newEmail: 'Neue E-Mail-Adresse',
|
||||
@@ -245,23 +249,24 @@ export default {
|
||||
newVersionAvailable: 'Neue Version verfügbar',
|
||||
newestFirst: 'Neueste zuerst',
|
||||
noBoards: 'Keine Arbeitsbereiche',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Keine Karten gefunden.',
|
||||
noConnectionToServer: 'Keine Verbindung zum Server',
|
||||
noLists: 'Keine Listen',
|
||||
noProjects: 'Keine Projekte',
|
||||
noUnreadNotifications: 'Keine ungelesenen Benachrichtigungen.',
|
||||
notifications: 'Benachrichtigungen',
|
||||
oldestFirst: 'Älteste zuerst',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Nur ein Manager sollte verbleiben, um dieses Projekt privat zu machen',
|
||||
openBoard_title: 'Arbeitsbereich öffnen',
|
||||
optional_inline: 'Optional',
|
||||
optional_inline: 'optional',
|
||||
organization: 'Organisation',
|
||||
others: 'Andere',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Passwort ist gesetzt',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA verwendet <1><0>Apprise</0></1>, um Benachrichtigungen an über 100 beliebte Dienste zu senden.',
|
||||
port: null,
|
||||
port: 'Port',
|
||||
preferences: 'Voreinstellungen',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Tipp: Drücken Sie STRG-V (Cmd-V auf Mac), um einen Anhang aus der Zwischenablage hinzuzufügen.',
|
||||
@@ -270,7 +275,7 @@ export default {
|
||||
projectNotFound_title: 'Projekt nicht gefunden',
|
||||
projectOwner: 'Projektleitung',
|
||||
referenceDataAndKnowledgeStorage: 'Speichern von Wissen und Referenzen.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
rejectUnauthorizedTlsCertificates: 'Nicht autorisierte TLS-Zertifikate ablehnen',
|
||||
removeManager_title: 'Projektleiter entfernen',
|
||||
removeMember_title: 'Mitglied entfernen',
|
||||
role: 'Rolle',
|
||||
@@ -297,7 +302,7 @@ export default {
|
||||
shared: 'Geteilt',
|
||||
sharedWithMe_title: 'Mit mir geteilt',
|
||||
showOnFrontOfCard: 'Auf der Vorderseite der Karte anzeigen',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Liste sortieren',
|
||||
stopwatch: 'Stoppuhr',
|
||||
story: 'Wissen',
|
||||
@@ -308,8 +313,8 @@ export default {
|
||||
taskListActions_title: 'Aufgaben-Aktionen',
|
||||
taskList_title: 'Aufgaben',
|
||||
team: 'Team',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Bedingungen',
|
||||
testLog_title: 'Test-Protokoll',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Für diesen Anhang ist keine Vorschau verfügbar.',
|
||||
time: 'Zeit',
|
||||
title: 'Titel',
|
||||
@@ -319,40 +324,45 @@ export default {
|
||||
typeNameToConfirm: 'Namen zur Bestätigung eingeben.',
|
||||
typeTitleToConfirm: 'Titel zur Bestätigung eingeben.',
|
||||
unsavedChanges: 'Ungespeicherte Änderungen',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Upload fehlgeschlagen: Datei ist zu groß.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Upload fehlgeschlagen: Nicht genügend Speicherplatz.',
|
||||
uploadedImages: 'Hochgeladene Bilder',
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Sichere Verbindung verwenden',
|
||||
userActions_title: 'Benutzeraktionen',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> hat <2>{{card}}</2> zu {{list}} hinzugefügt',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> hat diese Karte hinzugefügt zu {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> hat {{addedUser}} zu <4>{{card}}</4> hinzugefügt',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> hat {{addedUser}} zu dieser Karte hinzugefügt',
|
||||
userAddedYouToCard: '<0>{{user}}</0> hat Sie zu <2>{{card}}</2> hinzugefügt',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> hat {{task}} auf <4>{{card}}</4> abgeschlossen',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> hat {{task}} auf dieser Karte abgeschlossen',
|
||||
userJoinedCard: '<0>{{user}}</0> ist <2>{{card}}</2> beigetreten',
|
||||
userJoinedThisCard: '<0>{{user}}</0> ist dieser Karte beigetreten',
|
||||
userLeftCard: '<0>{{user}}</0> hat <2>{{card}}</2> verlassen',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> hat einen neuen Kommentar verfasst: «{{comment}}» in <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> hat diese Karte verlassen',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> hat {{task}} auf <4>{{card}}</4> als unvollständig markiert',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> hat {{task}} auf dieser Karte als unvollständig markiert',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> hat Sie in einem Kommentar «{{comment}}» auf <2>{{card}}</2> erwähnt',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> bewegte <2>{{card}}</2> von {{fromList}} nach {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> bewegte diese Karte von {{fromList}} nach {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard:
|
||||
'<0>{{actorUser}}</0> hat {{removedUser}} von <4>{{card}}</4> entfernt',
|
||||
userRemovedUserFromThisCard:
|
||||
'<0>{{actorUser}}</0> hat {{removedUser}} von dieser Karte entfernt',
|
||||
username: 'Benutzername',
|
||||
users: 'Benutzer',
|
||||
viewer: 'Betrachter',
|
||||
viewers: 'Betrachter',
|
||||
visualTaskManagementWithLists: 'Visuelle Aufgabenverwaltung mit Listen.',
|
||||
webhooks: null,
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Ohne Basisgruppe',
|
||||
writeComment: 'Kommentar verfassen...',
|
||||
},
|
||||
@@ -375,7 +385,7 @@ export default {
|
||||
addTaskList: 'Aufgaben hinzufügen',
|
||||
addToCard: 'Zu Karte hinzufügen',
|
||||
addUser: 'Benutzer hinzufügen',
|
||||
addWebhook: null,
|
||||
addWebhook: 'Webhook hinzufügen',
|
||||
archive: 'Archivieren',
|
||||
archiveCard: 'Karte archivieren',
|
||||
archiveCard_title: 'Karte archivieren',
|
||||
@@ -416,9 +426,9 @@ export default {
|
||||
deleteTask_title: 'Aufgabe löschen',
|
||||
deleteUser: 'Benutzer löschen',
|
||||
deleteUser_title: 'Benutzer löschen',
|
||||
deleteWebhook: null,
|
||||
deleteWebhook: 'Webhook löschen',
|
||||
dismissAll: 'Alle verwerfen',
|
||||
download: null,
|
||||
download: 'Herunterladen',
|
||||
duplicateCard_title: 'Karte duplizieren',
|
||||
edit: 'Bearbeiten',
|
||||
editColor_title: 'Farbe bearbeiten',
|
||||
@@ -443,13 +453,13 @@ export default {
|
||||
leaveProject: 'Projekt verlassen',
|
||||
logOut_title: 'Ausloggen',
|
||||
makeCover_title: 'Als Vorschau festlegen',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate: 'Projekt privat machen',
|
||||
makeProjectPrivate_title: 'Projekt privat machen',
|
||||
makeProjectShared: 'Projekt freigeben',
|
||||
makeProjectShared_title: 'Projekt freigeben',
|
||||
move: 'Verschieben',
|
||||
moveCard_title: 'Karte bewegen',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Liste verschieben',
|
||||
remove: 'Löschen',
|
||||
removeAssignee: 'Zuständigen entfernen',
|
||||
removeColor: 'Farbe löschen',
|
||||
@@ -461,7 +471,7 @@ export default {
|
||||
restoreToList: 'Wiederherstellen in {{list}}',
|
||||
returnToBoard: 'Zurück zum Arbeitsbereich',
|
||||
save: 'Speichern',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Test-E-Mail senden',
|
||||
showActive: 'Aktive anzeigen',
|
||||
showAllAttachments: 'Alle Anhänge anzeigen ({{hidden}} versteckt)',
|
||||
showCardsWithThisUser: 'Karten mit diesem Benutzer zeigen',
|
||||
|
||||
@@ -2,10 +2,11 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Maximale Anzahl aktiver Benutzer erreicht',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Admin-Anmeldung erforderlich zur Initialisierung der Instanz',
|
||||
emailAlreadyInUse: 'E-mail Adresse wird bereits benutzt',
|
||||
emailOrUsername: 'E-Mail-Adresse oder Benutzername',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Ich habe diese Bedingungen gelesen und stimme ihnen zu',
|
||||
invalidCredentials: 'Ungültige Anmeldeinformationen',
|
||||
invalidEmailOrUsername: 'Ungültige E-Mail-Adresse oder Benutzername',
|
||||
invalidPassword: 'Ungültiges Passwort',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Abbrechen und schließen',
|
||||
continue: 'Fortfahren',
|
||||
logIn: 'Einloggen',
|
||||
logInWithSso: 'Einloggen mit SSO',
|
||||
},
|
||||
|
||||
@@ -21,7 +21,7 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Σχετικά με το PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Διακριτικό πρόσβασης',
|
||||
account: 'Λογαριασμός',
|
||||
actions: 'Ενέργειες',
|
||||
activateUser_title: 'Ενεργοποίηση χρήστη',
|
||||
@@ -80,11 +80,13 @@ export default {
|
||||
'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν τη λίστα εργασιών;',
|
||||
areYouSureYouWantToDeleteThisUser:
|
||||
'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον χρήστη;',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToDeleteThisWebhook:
|
||||
'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το webhook;',
|
||||
areYouSureYouWantToEmptyTrash: 'Είστε σίγουροι ότι θέλετε να αδειάσετε τον κάδο;',
|
||||
areYouSureYouWantToLeaveBoard: 'Είστε σίγουροι ότι θέλετε να αποχωρήσετε από τον πίνακα;',
|
||||
areYouSureYouWantToLeaveProject: 'Είστε σίγουροι ότι θέλετε να αποχωρήσετε από το έργο;',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Είστε σίγουροι ότι θέλετε να κάνετε αυτό το έργο ιδιωτικό;',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Είστε σίγουροι ότι θέλετε να κάνετε αυτό το έργο κοινόχρηστο;',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
@@ -125,14 +127,14 @@ export default {
|
||||
cardsOnThisListAreReadyToBeWorkedOn:
|
||||
'Οι κάρτες σε αυτήν τη λίστα είναι έτοιμες για επεξεργασία.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Κάντε κλικ εδώ</0> ή ανανεώστε τη σελίδα για ενημέρωση.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Όνομα κεντρικού υπολογιστή πελάτη στο EHLO',
|
||||
closed: 'Κλειστό',
|
||||
color: 'Χρώμα',
|
||||
comments: 'Σχόλια',
|
||||
contentExceedsLimit: 'Το περιεχόμενο υπερβαίνει το όριο {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Το περιεχόμενο αυτού του συνημμένου είναι πολύ μεγάλο για εμφάνιση.',
|
||||
copy_inline: 'αντιγραφή',
|
||||
copy_inline: 'αντίγραφο',
|
||||
createBoard_title: 'Δημιουργία πίνακα',
|
||||
createCustomFieldGroup_title: 'Δημιουργία ομάδας προσαρμοσμένων πεδίων',
|
||||
createLabel_title: 'Δημιουργία ετικέτας',
|
||||
@@ -149,7 +151,7 @@ export default {
|
||||
date: 'Ημερομηνία',
|
||||
deactivateUser_title: 'Απενεργοποίηση χρήστη',
|
||||
defaultCardType_title: 'Προεπιλεγμένος τύπος κάρτας',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'Προεπιλεγμένο "από"',
|
||||
defaultView_title: 'Προεπιλεγμένη προβολή',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Διαγράψτε όλους τους πίνακες για να μπορέσετε να διαγράψετε αυτό το έργο',
|
||||
@@ -168,10 +170,9 @@ export default {
|
||||
deleteTaskList_title: 'Διαγραφή λίστας εργασιών',
|
||||
deleteTask_title: 'Διαγραφή εργασίας',
|
||||
deleteUser_title: 'Διαγραφή χρήστη',
|
||||
deleteWebhook_title: null,
|
||||
deleteWebhook_title: 'Διαγραφή webhook',
|
||||
deletedUser_title: 'Διαγραμμένος χρήστης',
|
||||
description: 'Περιγραφή',
|
||||
detectAutomatically: 'Αυτόματη ανίχνευση',
|
||||
display: 'Εμφάνιση',
|
||||
dropFileToUpload: 'Σύρετε το αρχείο για μεταφόρτωση',
|
||||
dueDate_title: 'Ημερομηνία λήξης',
|
||||
@@ -200,9 +201,9 @@ export default {
|
||||
enterFilename: 'Εισάγετε όνομα αρχείου',
|
||||
enterListTitle: 'Εισάγετε τίτλο λίστας...',
|
||||
enterTaskDescription: 'Εισάγετε περιγραφή εργασίας...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Γεγονότα',
|
||||
excludedEvents: 'Εξαιρούμενα γεγονότα',
|
||||
expandTaskListsByDefault: 'Επέκταση λιστών εργασιών από προεπιλογή',
|
||||
filterByLabels_title: 'Φιλτράρισμα κατά ετικέτες',
|
||||
filterByMembers_title: 'Φιλτράρισμα κατά μέλη',
|
||||
forPersonalProjects: 'Για προσωπικά έργα.',
|
||||
@@ -212,9 +213,9 @@ export default {
|
||||
general: 'Γενικά',
|
||||
gradients: 'Διαβαθμίσεις',
|
||||
grid: 'Πλέγμα',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: 'Απόκρυψη ολοκληρωμένων εργασιών',
|
||||
hideFromProjectListAndFavorites: 'Απόκρυψη από τη λίστα έργων και τα αγαπημένα',
|
||||
host: null,
|
||||
host: 'Κεντρικός υπολογιστής',
|
||||
hours: 'Ώρες',
|
||||
importBoard_title: 'Εισαγωγή πίνακα',
|
||||
invalidCurrentPassword: 'Μη έγκυρος τρέχων κωδικός',
|
||||
@@ -224,20 +225,20 @@ export default {
|
||||
leaveBoard_title: 'Αποχώρηση από τον πίνακα',
|
||||
leaveProject_title: 'Αποχώρηση από το έργο',
|
||||
limitCardTypesToDefaultOne: 'Περιορισμός τύπων καρτών στον προεπιλεγμένο',
|
||||
linkToCard: null,
|
||||
linkToCard: 'Σύνδεσμος στην κάρτα',
|
||||
list: 'Λίστα',
|
||||
listActions_title: 'Ενέργειες λίστας',
|
||||
lists: 'Λίστες',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate_title: 'Κάντε το έργο ιδιωτικό',
|
||||
makeProjectShared_title: 'Κάντε το έργο κοινόχρηστο',
|
||||
managers: 'Διαχειριστές',
|
||||
memberActions_title: 'Ενέργειες μέλους',
|
||||
members: 'Μέλη',
|
||||
minutes: 'Λεπτά',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Περισσότερες ενέργειες',
|
||||
moreActions_title: 'Περισσότερες ενέργειες',
|
||||
moveCard_title: 'Μετακίνηση κάρτας',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Μετακίνηση λίστας',
|
||||
myOwn_title: 'Δικά μου',
|
||||
name: 'Όνομα',
|
||||
newEmail: 'Νέο e-mail',
|
||||
@@ -246,23 +247,24 @@ export default {
|
||||
newVersionAvailable: 'Διαθέσιμη νέα έκδοση',
|
||||
newestFirst: 'Νεότερα πρώτα',
|
||||
noBoards: 'Δεν υπάρχουν πίνακες',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Δεν βρέθηκαν κάρτες.',
|
||||
noConnectionToServer: 'Δεν υπάρχει σύνδεση με τον διακομιστή',
|
||||
noLists: 'Δεν υπάρχουν λίστες',
|
||||
noProjects: 'Δεν υπάρχουν έργα',
|
||||
noUnreadNotifications: 'Δεν υπάρχουν μη αναγνωσμένες ειδοποιήσεις.',
|
||||
notifications: 'Ειδοποιήσεις',
|
||||
oldestFirst: 'Παλαιότερα πρώτα',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Μόνο ένας διαχειριστής πρέπει να παραμείνει για να γίνει αυτό το έργο ιδιωτικό',
|
||||
openBoard_title: 'Άνοιγμα πίνακα',
|
||||
optional_inline: 'προαιρετικό',
|
||||
organization: 'Οργάνωση',
|
||||
others: 'Άλλοι',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Ο κωδικός πρόσβασης έχει οριστεί',
|
||||
phone: 'Τηλέφωνο',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'Το PLANKA χρησιμοποιεί το <1><0>Apprise</0></1> για να στέλνει ειδοποιήσεις σε πάνω από 100 δημοφιλείς υπηρεσίες.',
|
||||
port: null,
|
||||
port: 'Θύρα',
|
||||
preferences: 'Προτιμήσεις',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Συμβουλή: πατήστε Ctrl-V (Cmd-V σε Mac) για να προσθέσετε συνημμένο από το πρόχειρο.',
|
||||
@@ -271,7 +273,7 @@ export default {
|
||||
projectNotFound_title: 'Το έργο δεν βρέθηκε',
|
||||
projectOwner: 'Ιδιοκτήτης έργου',
|
||||
referenceDataAndKnowledgeStorage: 'Αποθήκευση δεδομένων και γνώσης αναφοράς.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
rejectUnauthorizedTlsCertificates: 'Απόρριψη μη εξουσιοδοτημένων πιστοποιητικών TLS',
|
||||
removeManager_title: 'Αφαίρεση διαχειριστή',
|
||||
removeMember_title: 'Αφαίρεση μέλους',
|
||||
role: 'Ρόλος',
|
||||
@@ -298,7 +300,7 @@ export default {
|
||||
shared: 'Κοινόχρηστο',
|
||||
sharedWithMe_title: 'Κοινόχρηστο με εμένα',
|
||||
showOnFrontOfCard: 'Εμφάνιση στο μπροστινό μέρος της κάρτας',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Ταξινόμηση λίστας',
|
||||
stopwatch: 'Χρονόμετρο',
|
||||
story: 'Ιστορία',
|
||||
@@ -309,8 +311,8 @@ export default {
|
||||
taskListActions_title: 'Ενέργειες λίστας εργασιών',
|
||||
taskList_title: 'Λίστα εργασιών',
|
||||
team: 'Ομάδα',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Όροι',
|
||||
testLog_title: 'Αρχείο καταγραφής δοκιμών',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Δεν υπάρχει διαθέσιμη προεπισκόπηση για αυτό το συνημμένο.',
|
||||
time: 'Ώρα',
|
||||
@@ -321,11 +323,12 @@ export default {
|
||||
typeNameToConfirm: 'Πληκτρολογήστε το όνομα για επιβεβαίωση.',
|
||||
typeTitleToConfirm: 'Πληκτρολογήστε τον τίτλο για επιβεβαίωση.',
|
||||
unsavedChanges: 'Μη αποθηκευμένες αλλαγές',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Η μεταφόρτωση απέτυχε: το αρχείο είναι πολύ μεγάλο.',
|
||||
uploadFailedNotEnoughStorageSpace:
|
||||
'Η μεταφόρτωση απέτυχε: δεν υπάρχει αρκετός χώρος αποθήκευσης.',
|
||||
uploadedImages: 'Μεταφορτωμένες εικόνες',
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Χρήση ασφαλούς σύνδεσης',
|
||||
userActions_title: 'Ενέργειες χρήστη',
|
||||
userAddedCardToList: '<0>{{user}}</0> πρόσθεσε <2>{{card}}</2> στη λίστα {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> πρόσθεσε αυτήν την κάρτα στη λίστα {{list}}',
|
||||
@@ -363,7 +366,7 @@ export default {
|
||||
viewer: 'Θεατής',
|
||||
viewers: 'Θεατές',
|
||||
visualTaskManagementWithLists: 'Οπτική διαχείριση εργασιών με λίστες.',
|
||||
webhooks: null,
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Χωρίς βασική ομάδα',
|
||||
writeComment: 'Γράψτε ένα σχόλιο...',
|
||||
},
|
||||
@@ -386,7 +389,7 @@ export default {
|
||||
addTaskList: 'Προσθήκη λίστας εργασιών',
|
||||
addToCard: 'Προσθήκη στην κάρτα',
|
||||
addUser: 'Προσθήκη χρήστη',
|
||||
addWebhook: null,
|
||||
addWebhook: 'Προσθήκη webhook',
|
||||
archive: 'Αρχειοθέτηση',
|
||||
archiveCard: 'Αρχειοθέτηση κάρτας',
|
||||
archiveCard_title: 'Αρχειοθέτηση κάρτας',
|
||||
@@ -427,9 +430,9 @@ export default {
|
||||
deleteTask_title: 'Διαγραφή εργασίας',
|
||||
deleteUser: 'Διαγραφή χρήστη',
|
||||
deleteUser_title: 'Διαγραφή χρήστη',
|
||||
deleteWebhook: null,
|
||||
deleteWebhook: 'Διαγραφή webhook',
|
||||
dismissAll: 'Απόρριψη όλων',
|
||||
download: null,
|
||||
download: 'Λήψη',
|
||||
duplicateCard_title: 'Διπλασιασμός κάρτας',
|
||||
edit: 'Επεξεργασία',
|
||||
editColor_title: 'Επεξεργασία χρώματος',
|
||||
@@ -454,13 +457,13 @@ export default {
|
||||
leaveProject: 'Αποχώρηση από το έργο',
|
||||
logOut_title: 'Αποσύνδεση',
|
||||
makeCover_title: 'Ορισμός ως εξώφυλλο',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate: 'Κάντε το έργο ιδιωτικό',
|
||||
makeProjectPrivate_title: 'Κάντε το έργο ιδιωτικό',
|
||||
makeProjectShared: 'Κάντε το έργο κοινόχρηστο',
|
||||
makeProjectShared_title: 'Κάντε το έργο κοινόχρηστο',
|
||||
move: 'Μετακίνηση',
|
||||
moveCard_title: 'Μετακίνηση κάρτας',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Μετακίνηση λίστας',
|
||||
remove: 'Αφαίρεση',
|
||||
removeAssignee: 'Αφαίρεση υπευθύνου',
|
||||
removeColor: 'Αφαίρεση χρώματος',
|
||||
@@ -472,14 +475,14 @@ export default {
|
||||
restoreToList: 'Επαναφορά στη {{list}}',
|
||||
returnToBoard: 'Επιστροφή στον πίνακα',
|
||||
save: 'Αποθήκευση',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Αποστολή δοκιμαστικού email',
|
||||
showActive: 'Εμφάνιση ενεργών',
|
||||
showAllAttachments: 'Εμφάνιση όλων των συνημμένων ({{hidden}} κρυφά)',
|
||||
showCardsWithThisUser: 'Εμφάνιση καρτών με αυτόν τον χρήστη',
|
||||
showDeactivated: 'Εμφάνιση απενεργοποιημένων',
|
||||
showFewerAttachments: 'Εμφάνιση λιγότερων συνημμένων',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'Εμφάνιση λιγότερων',
|
||||
showMore: 'Εμφάνιση περισσότερων',
|
||||
sortList_title: 'Ταξινόμηση λίστας',
|
||||
start: 'Έναρξη',
|
||||
stop: 'Διακοπή',
|
||||
|
||||
@@ -2,10 +2,11 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Έχει επιτευχθεί το όριο ενεργών χρηστών',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Απαιτείται σύνδεση διαχειριστή για την αρχικοποίηση της εφαρμογής',
|
||||
emailAlreadyInUse: 'Το e-mail χρησιμοποιείται ήδη',
|
||||
emailOrUsername: 'E-mail ή όνομα χρήστη',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Έχω διαβάσει και συμφωνώ με αυτούς τους όρους',
|
||||
invalidCredentials: 'Μη έγκυρα στοιχεία σύνδεσης',
|
||||
invalidEmailOrUsername: 'Μη έγκυρο e-mail ή όνομα χρήστη',
|
||||
invalidPassword: 'Μη έγκυρος κωδικός',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Ακύρωση και κλείσιμο',
|
||||
continue: 'Συνέχεια',
|
||||
logIn: 'Σύνδεση',
|
||||
logInWithSso: 'Σύνδεση με SSO',
|
||||
},
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"bundle": {
|
||||
"error-title": "Σφάλμα στον επεξεργαστή markdown",
|
||||
"settings_wysiwyg": "Οπτικός επεξεργαστής (wysiwyg)",
|
||||
"settings_markup": "Σήμανση Markdown",
|
||||
"settings_markup": "Σήμανση markdown",
|
||||
"markup_placeholder": "Εισάγετε σήμανση markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
|
||||
@@ -160,7 +160,6 @@ export default {
|
||||
deleteWebhook_title: 'Delete Webhook',
|
||||
deletedUser_title: 'Deleted User',
|
||||
description: 'Description',
|
||||
detectAutomatically: 'Detect automatically',
|
||||
display: 'Display',
|
||||
dropFileToUpload: 'Drop file to upload',
|
||||
dueDate_title: 'Due Date',
|
||||
|
||||
@@ -155,7 +155,6 @@ export default {
|
||||
deleteWebhook_title: 'Delete Webhook',
|
||||
deletedUser_title: 'Deleted User',
|
||||
description: 'Description',
|
||||
detectAutomatically: 'Detect automatically',
|
||||
display: 'Display',
|
||||
dropFileToUpload: 'Drop file to upload',
|
||||
dueDate_title: 'Due Date',
|
||||
|
||||
@@ -127,7 +127,7 @@ export default {
|
||||
contentExceedsLimit: 'El contenido excede {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'El contenido de este archivo adjunto es demasiado grande para mostrarse.',
|
||||
copy_inline: 'copiar',
|
||||
copy_inline: 'copia',
|
||||
createBoard_title: 'Crear tablero',
|
||||
createCustomFieldGroup_title: 'Crear grupo de campos personalizados',
|
||||
createLabel_title: 'Crear etiqueta',
|
||||
@@ -166,7 +166,6 @@ export default {
|
||||
deleteWebhook_title: 'Eliminar webhook',
|
||||
deletedUser_title: 'Usuario eliminado',
|
||||
description: 'Descripción',
|
||||
detectAutomatically: 'Detectar automáticamente',
|
||||
display: 'Mostrar',
|
||||
dropFileToUpload: 'Arrastra archivo para subir',
|
||||
dueDate_title: 'Fecha de vencimiento',
|
||||
|
||||
@@ -20,8 +20,8 @@ export default {
|
||||
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Planka kohta',
|
||||
accessToken: null,
|
||||
aboutPlanka: 'PLANKA kohta',
|
||||
accessToken: 'Juurdepääsuluba',
|
||||
account: 'Konto',
|
||||
actions: 'Tegevused',
|
||||
activateUser_title: 'Aktiveeri kasutaja',
|
||||
@@ -37,7 +37,7 @@ export default {
|
||||
administration: 'Administreerimine',
|
||||
all: 'Kõik',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Kõik muudatused salvestatakse automaatselt pärast ühenduse taastamist.',
|
||||
'Kõik muudatused salvestatakse automaatselt<br />pärast ühenduse taastamist.',
|
||||
alphabetically: 'Tähestiku järgi',
|
||||
alwaysDisplayCardCreator: 'Näita alati kaardi loojat',
|
||||
archive: 'Arhiveeri',
|
||||
@@ -71,11 +71,12 @@ export default {
|
||||
areYouSureYouWantToDeleteThisTaskList:
|
||||
'Oled kindel, et soovid seda ülesannete nimekirja kustutada?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Oled kindel, et soovid seda kasutaja kustutada?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Oled kindel, et soovid seda webhookki kustutada?',
|
||||
areYouSureYouWantToEmptyTrash: 'Oled kindel, et soovid prügikasti tühjendada?',
|
||||
areYouSureYouWantToLeaveBoard: 'Oled kindel, et soovid lahku tahvlilt?',
|
||||
areYouSureYouWantToLeaveProject: 'Oled kindel, et soovid lahku projektist?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Oled kindel, et soovid seda projekti privaatseks muuta?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Oled kindel, et soovid seda projekti jagatavaks määrata?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
@@ -115,13 +116,13 @@ export default {
|
||||
'Kaardid sellel nimekirjal on täidetud ja valmis arhiveerimiseks.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Kaardid sellel nimekirjal on valmis tööle.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Klõpsa siia</0> või uuendage lehte.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Kliendi hostinimi EHLO-s',
|
||||
closed: 'Suletud',
|
||||
color: 'Värv',
|
||||
comments: 'Kommentaarid',
|
||||
contentExceedsLimit: 'Sisu ületab {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: 'Sisu seda manusi ei õnnestu kuvada.',
|
||||
copy_inline: 'kopeeri',
|
||||
copy_inline: 'koopia',
|
||||
createBoard_title: 'Loo tahvel',
|
||||
createCustomFieldGroup_title: 'Loo kohandatud väljade grupp',
|
||||
createLabel_title: 'Loo silt',
|
||||
@@ -138,7 +139,7 @@ export default {
|
||||
date: 'Kuupäev',
|
||||
deactivateUser_title: 'Deaktiveeri kasutaja',
|
||||
defaultCardType_title: 'Vaikimisi kaardi tüüp',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'Vaikimisi "saatja"',
|
||||
defaultView_title: 'Vaikimisi vaade',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Kustuta kõik tahvlid, et seda projekti kustutada',
|
||||
@@ -157,10 +158,9 @@ export default {
|
||||
deleteTaskList_title: 'Kustuta ülesannete nimekiri',
|
||||
deleteTask_title: 'Kustuta ülesanne',
|
||||
deleteUser_title: 'Kustuta kasutaja',
|
||||
deleteWebhook_title: null,
|
||||
deleteWebhook_title: 'Kustuta webhook',
|
||||
deletedUser_title: 'Kustutatud kasutaja',
|
||||
description: 'Kirjeldus',
|
||||
detectAutomatically: 'Tuletage automaatselt',
|
||||
display: 'Kuva',
|
||||
dropFileToUpload: 'Lase faili üleslaadida',
|
||||
dueDate_title: 'Tähtaeg',
|
||||
@@ -189,9 +189,9 @@ export default {
|
||||
enterFilename: 'Sisestage failinimi',
|
||||
enterListTitle: 'Sisestage nimekiri pealkiri...',
|
||||
enterTaskDescription: 'Sisestage ülesande kirjeldus...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Sündmused',
|
||||
excludedEvents: 'Välistatud sündmused',
|
||||
expandTaskListsByDefault: 'Laienda ülesannete nimekirjad vaikimisi',
|
||||
filterByLabels_title: 'Filtreeri siltide järgi',
|
||||
filterByMembers_title: 'Filtreeri liikmete järgi',
|
||||
forPersonalProjects: 'Inimlikuks projektideks.',
|
||||
@@ -201,9 +201,9 @@ export default {
|
||||
general: 'Üldine',
|
||||
gradients: 'Gradiendid',
|
||||
grid: 'Grill',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: 'Peida lõpetatud ülesanded',
|
||||
hideFromProjectListAndFavorites: 'Peida projektiloendist ja lemmikutest',
|
||||
host: null,
|
||||
host: 'Host',
|
||||
hours: 'Tunnid',
|
||||
importBoard_title: 'Impordi tahvel',
|
||||
invalidCurrentPassword: 'Vale praegune parool',
|
||||
@@ -213,20 +213,20 @@ export default {
|
||||
leaveBoard_title: 'Lahku tahvlilt',
|
||||
leaveProject_title: 'Lahku projektist',
|
||||
limitCardTypesToDefaultOne: 'Piirata kaardi tüüpe vaikimisi üheks',
|
||||
linkToCard: null,
|
||||
linkToCard: 'Link kaardile',
|
||||
list: 'Nimekiri',
|
||||
listActions_title: 'Nimekiri tegevused',
|
||||
lists: 'Nimekirjad',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate_title: 'Muuda projekt privaatseks',
|
||||
makeProjectShared_title: 'Muuda projekt jagatavaks',
|
||||
managers: 'Haldurid',
|
||||
memberActions_title: 'Liikme tegevused',
|
||||
members: 'Liikmed',
|
||||
minutes: 'Minutid',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Rohkem tegevusi',
|
||||
moreActions_title: 'Rohkem tegevusi',
|
||||
moveCard_title: 'Liiguta kaart',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Liiguta nimekiri',
|
||||
myOwn_title: 'Minu omanik',
|
||||
name: 'Nimi',
|
||||
newEmail: 'Uus e-post',
|
||||
@@ -235,23 +235,24 @@ export default {
|
||||
newVersionAvailable: 'Uus versioon saadaval',
|
||||
newestFirst: 'Kõige uuem',
|
||||
noBoards: 'Tahvleid pole',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Kaarte ei leitud.',
|
||||
noConnectionToServer: 'Ühendust serveriga ei leitud',
|
||||
noLists: 'Nimekirju pole',
|
||||
noProjects: 'Projekte pole',
|
||||
noUnreadNotifications: 'Lugemata teavitused.',
|
||||
notifications: 'Teavitused',
|
||||
oldestFirst: 'Kõige vanem',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Ainult üks haldur peaks jääma, et muuta see projekt privaatseks',
|
||||
openBoard_title: 'Ava tahvel',
|
||||
optional_inline: 'valikuline',
|
||||
organization: 'Organisatsioon',
|
||||
others: 'Teised',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Parool on määratud',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA kasutab <1><0>Apprise</0></1> teavitusteenuse, et teavitada üle 100 populaarset teenust.',
|
||||
port: null,
|
||||
port: 'Port',
|
||||
preferences: 'Eelistused',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
"Näpunäide: vajutage Ctrl-V (Cmd-V Mac'il) manuse lisamiseks kleebist.",
|
||||
@@ -260,7 +261,7 @@ export default {
|
||||
projectNotFound_title: 'Projekt ei leitud',
|
||||
projectOwner: 'Projekti omanik',
|
||||
referenceDataAndKnowledgeStorage: 'Viideandmete ja teadmise salvestamiseks.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
rejectUnauthorizedTlsCertificates: 'Lükka tagasi volitamata TLS-sertifikaadid',
|
||||
removeManager_title: 'Eemalda haldur',
|
||||
removeMember_title: 'Eemalda liige',
|
||||
role: 'Roll',
|
||||
@@ -287,7 +288,7 @@ export default {
|
||||
shared: 'Jagatud',
|
||||
sharedWithMe_title: 'Jagatud minuga',
|
||||
showOnFrontOfCard: 'Kuva kaardi ees',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Nimekiri sorteerimine',
|
||||
stopwatch: 'Stopper',
|
||||
story: 'Kirjeldus',
|
||||
@@ -298,8 +299,8 @@ export default {
|
||||
taskListActions_title: 'Ülesannete nimekiri tegevused',
|
||||
taskList_title: 'Ülesanne nimekiri',
|
||||
team: 'Töögrupp',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Tingimused',
|
||||
testLog_title: 'Testilogi',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Selle manusi eelvaadet pole saadaval.',
|
||||
time: 'Aeg',
|
||||
title: 'Pealkiri',
|
||||
@@ -309,11 +310,12 @@ export default {
|
||||
typeNameToConfirm: 'Sisestage nimi, et kinnitada.',
|
||||
typeTitleToConfirm: 'Sisestage pealkiri, et kinnitada.',
|
||||
unsavedChanges: 'Muudetud andmed',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Üleslaadimine ebaõnnestus: fail on liiga suur.',
|
||||
uploadFailedNotEnoughStorageSpace:
|
||||
'Üleslaadimine ebaõnnestus: pole piisavalt salvestusruumi.',
|
||||
uploadedImages: 'Laaditud pildid',
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Kasuta turvalist ühendust',
|
||||
userActions_title: 'Kasutaja tegevused',
|
||||
userAddedCardToList: '<0>{{user}}</0> lisas <2>{{card}}</2> nimekirjaan {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> lisas selle kaardi nimekirjaan {{list}}',
|
||||
@@ -345,7 +347,7 @@ export default {
|
||||
viewer: 'Vaataja',
|
||||
viewers: 'Vaatajad',
|
||||
visualTaskManagementWithLists: 'Visual tööülesande haldamine nimekirjade abil.',
|
||||
webhooks: null,
|
||||
webhooks: 'Webhookid',
|
||||
withoutBaseGroup: 'Ilma põhiklassita',
|
||||
writeComment: 'Kirjuta kommentaar...',
|
||||
},
|
||||
@@ -368,7 +370,7 @@ export default {
|
||||
addTaskList: 'Lisa ülesannete nimekiri',
|
||||
addToCard: 'Lisa kaardile',
|
||||
addUser: 'Lisa kasutaja',
|
||||
addWebhook: null,
|
||||
addWebhook: 'Lisa webhook',
|
||||
archive: 'Arhiveeri',
|
||||
archiveCard: 'Arhiveeri kaart',
|
||||
archiveCard_title: 'Arhiveeri kaart',
|
||||
@@ -409,9 +411,9 @@ export default {
|
||||
deleteTask_title: 'Kustuta ülesanne',
|
||||
deleteUser: 'Kustuta kasutaja',
|
||||
deleteUser_title: 'Kustuta kasutaja',
|
||||
deleteWebhook: null,
|
||||
deleteWebhook: 'Kustuta webhook',
|
||||
dismissAll: 'Eemalda kõik',
|
||||
download: null,
|
||||
download: 'Laadi alla',
|
||||
duplicateCard_title: 'Duplikaardi loomine',
|
||||
edit: 'Muuda',
|
||||
editColor_title: 'Muuda värvi',
|
||||
@@ -436,13 +438,13 @@ export default {
|
||||
leaveProject: 'Lahku projektist',
|
||||
logOut_title: 'Logi välja',
|
||||
makeCover_title: 'Määra kaaneks',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate: 'Muuda projekt privaatseks',
|
||||
makeProjectPrivate_title: 'Muuda projekt privaatseks',
|
||||
makeProjectShared: 'Muuda projekt jagatavaks',
|
||||
makeProjectShared_title: 'Muuda projekt jagatavaks',
|
||||
move: 'Liiguta',
|
||||
moveCard_title: 'Liiguta kaart',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Liiguta nimekiri',
|
||||
remove: 'Eemalda',
|
||||
removeAssignee: 'Eemalda vastutaja',
|
||||
removeColor: 'Eemalda värv',
|
||||
@@ -454,14 +456,14 @@ export default {
|
||||
restoreToList: 'Taasta nimekirja {{list}}',
|
||||
returnToBoard: 'Tagasi tahvlile',
|
||||
save: 'Salvesta',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Saada test e-kiri',
|
||||
showActive: 'Näita aktiivseid',
|
||||
showAllAttachments: 'Näita kõiki manuseid ({{hidden}} peidetud)',
|
||||
showCardsWithThisUser: 'Näita selle kasutajaga kaarte',
|
||||
showDeactivated: 'Näita deaktiveerituid',
|
||||
showFewerAttachments: 'Näita vähem manuseid',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'Näita vähem',
|
||||
showMore: 'Näita rohkem',
|
||||
sortList_title: 'Sorteeri nimekiri',
|
||||
start: 'Alusta',
|
||||
stop: 'Peata',
|
||||
|
||||
@@ -2,10 +2,11 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Aktiivsete kasutajate limiit on täis',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Administraatori sisselogimine on vajalik rakenduse käivitamiseks',
|
||||
emailAlreadyInUse: 'E-post on juba kasutusel',
|
||||
emailOrUsername: 'E-post või kasutajanimi',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Olen lugenud ja nõustun nende tingimustega',
|
||||
invalidCredentials: 'Vale kasutajanimi või parool',
|
||||
invalidEmailOrUsername: 'Vale e-post või kasutajanimi',
|
||||
invalidPassword: 'Vale parool',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Tühista ja sulge',
|
||||
continue: 'Jätka',
|
||||
logIn: 'Logi sisse',
|
||||
logInWithSso: 'Logi sisse SSO-ga',
|
||||
},
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import dateFns from 'date-fns/locale/fa-IR';
|
||||
import timeAgo from 'javascript-time-ago/locale/fa';
|
||||
|
||||
import markdownEditor from './markdown-editor.json';
|
||||
|
||||
export default {
|
||||
dateFns,
|
||||
timeAgo,
|
||||
markdownEditor,
|
||||
|
||||
format: {
|
||||
date: 'M/d/yyyy',
|
||||
@@ -18,429 +21,451 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'درباره PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'رمز دسترسی',
|
||||
account: 'حساب کاربری',
|
||||
actions: 'اقدامات',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'فعال کردن کاربر',
|
||||
active: 'فعال',
|
||||
addAttachment_title: 'اضافه کردن پیوست',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'اضافه کردن گروه فیلد سفارشی',
|
||||
addCustomField_title: 'اضافه کردن فیلد سفارشی',
|
||||
addManager_title: 'اضافه کردن مدیر',
|
||||
addMember_title: 'اضافه کردن عضو',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'اضافه کردن لیست وظایف',
|
||||
addUser_title: 'اضافه کردن کاربر',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'مدیر',
|
||||
administration: 'مدیریت',
|
||||
all: 'همه',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'تمام تغییرات به صورت خودکار ذخیره میشوند<br />بعد از بازیابی ارتباط.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'بر اساس حروف الفبا',
|
||||
alwaysDisplayCardCreator: 'همیشه سازنده کارت را نمایش بده',
|
||||
archive: 'آرشیو',
|
||||
archiveCard_title: 'آرشیو کارت',
|
||||
archiveCards_title: 'آرشیو کارتها',
|
||||
areYouSureYouWantToActivateThisUser: 'آیا مطمئن هستید که میخواهید این کاربر را فعال کنید؟',
|
||||
areYouSureYouWantToArchiveCards: 'آیا مطمئن هستید که میخواهید کارتها را آرشیو کنید؟',
|
||||
areYouSureYouWantToArchiveThisCard: 'آیا مطمئن هستید که میخواهید این کارت را آرشیو کنید؟',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'آیا مطمئن هستید که میخواهید این مدیر پروژه را به عنوان مالک تعیین کنید؟',
|
||||
areYouSureYouWantToDeactivateThisUser:
|
||||
'آیا مطمئن هستید که میخواهید این کاربر را غیرفعال کنید؟',
|
||||
areYouSureYouWantToDeleteThisAttachment:
|
||||
'آیا مطمئن هستید که میخواهید این پیوست را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'آیا مطمئن هستید که میخواهید این تصویر پسزمینه را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisBoard: 'آیا مطمئن هستید که میخواهید این برد را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisCard: 'آیا مطمئن هستید که میخواهید این کارت را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'آیا مطمئن هستید که میخواهید این کارت را برای همیشه حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisComment: 'آیا مطمئن هستید که میخواهید این نظر را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'آیا مطمئن هستید که میخواهید این فیلد سفارشی را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'آیا مطمئن هستید که میخواهید این گروه فیلد سفارشی را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisLabel: 'آیا مطمئن هستید که میخواهید این برچسب را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisList: 'آیا مطمئن هستید که میخواهید این لیست را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'آیا مطمئن هستید که میخواهید این لیست را حذف کنید؟ همه کارتها به سطل زباله منتقل خواهند شد.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'آیا مطمئن هستید که میخواهید این سرویس اعلان را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisProject: 'آیا مطمئن هستید که میخواهید این پروژه را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisTask: 'آیا مطمئن هستید که میخواهید این وظیفه را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList:
|
||||
'آیا مطمئن هستید که میخواهید این لیست وظایف را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisUser: 'آیا مطمئن هستید که میخواهید این کاربر را حذف کنید؟',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'آیا مطمئن هستید که میخواهید این وبهوک را حذف کنید؟',
|
||||
areYouSureYouWantToEmptyTrash: 'آیا مطمئن هستید که میخواهید سطل زباله را خالی کنید؟',
|
||||
areYouSureYouWantToLeaveBoard: 'آیا مطمئن هستید که میخواهید از برد خارج شوید؟',
|
||||
areYouSureYouWantToLeaveProject: 'آیا مطمئن هستید که میخواهید از پروژه خارج شوید؟',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'آیا مطمئن هستید که میخواهید این پروژه را خصوصی کنید؟',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'آیا مطمئن هستید که میخواهید این پروژه را به اشتراک بگذارید؟',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'آیا مطمئن هستید که میخواهید این مدیر را از پروژه حذف کنید؟',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'آیا مطمئن هستید که میخواهید این عضو را از برد حذف کنید؟',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'تعیین به عنوان مالک',
|
||||
atLeastOneListMustBePresent: 'حداقل یک لیست باید وجود داشته باشد',
|
||||
attachment: 'پیوست',
|
||||
attachments: 'پیوستها',
|
||||
authentication: 'احراز هویت',
|
||||
background: 'پسزمینه',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'فیلدهای سفارشی پایه',
|
||||
baseGroup: 'گروه پایه',
|
||||
board: 'برد',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'اقدامات برد',
|
||||
boardNotFound_title: 'برد یافت نشد',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'برد مشترک شد',
|
||||
boardUser: 'کاربر برد',
|
||||
byCreationTime: 'بر اساس زمان ایجاد',
|
||||
byDefault: 'به طور پیشفرض',
|
||||
byDueDate: 'بر اساس تاریخ سررسید',
|
||||
canBeInvitedToWorkInBoards: 'میتواند برای کار در بردها دعوت شود.',
|
||||
canComment: 'میتواند نظر بدهد',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'میتواند پروژههای خود را ایجاد کند و برای کار در پروژههای دیگران دعوت شود.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'میتواند طرحبندی برد را ویرایش کند و اعضا را به کارتها اختصاص دهد.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'میتواند تنظیمات سیستم را مدیریت کند و به عنوان مالک پروژه عمل کند.',
|
||||
canOnlyViewBoard: 'فقط میتواند برد را مشاهده کند.',
|
||||
cardActions_title: 'اقدامات کارت',
|
||||
cardNotFound_title: 'کارت یافت نشد',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'کارتهای این لیست برای همه اعضای برد در دسترس هستند.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'کارتهای این لیست کامل شدهاند و آماده آرشیو هستند.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'کارتهای این لیست آماده کار هستند.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>اینجا کلیک کنید</0> یا صفحه را تازه کنید تا بهروزرسانی شود.',
|
||||
clientHostnameInEhlo: 'نام میزبان کلاینت در EHLO',
|
||||
closed: 'بسته',
|
||||
color: 'رنگ',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
comments: 'نظرات',
|
||||
contentExceedsLimit: 'محتوا از {{limit}} تجاوز کرده است',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: 'محتوای این پیوست برای نمایش خیلی بزرگ است.',
|
||||
copy_inline: 'کپی',
|
||||
createBoard_title: 'ایجاد برد',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'ایجاد گروه فیلد سفارشی',
|
||||
createLabel_title: 'ایجاد برچسب',
|
||||
createNewOneOrSelectExistingOne: 'یک جدید ایجاد کنید یا<br />یکی موجود را انتخاب کنید.',
|
||||
createProject_title: 'ایجاد پروژه',
|
||||
createTextFile_title: 'ایجاد فایل متنی',
|
||||
creator: null,
|
||||
creator: 'سازنده',
|
||||
currentPassword: 'رمز عبور فعلی',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'گروه فیلد سفارشی',
|
||||
customFieldGroups_title: 'گروههای فیلد سفارشی',
|
||||
customField_title: 'فیلد سفارشی',
|
||||
customFields_title: 'فیلدهای سفارشی',
|
||||
dangerZone_title: 'منطقه خطر',
|
||||
date: 'تاریخ',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'غیرفعال کردن کاربر',
|
||||
defaultCardType_title: 'نوع کارت پیشفرض',
|
||||
defaultFrom: 'پیشفرض از',
|
||||
defaultView_title: 'نمای پیشفرض',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'همه بردها را حذف کنید تا بتوانید این پروژه را حذف کنید',
|
||||
deleteAttachment_title: 'حذف پیوست',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: 'حذف تصویر پسزمینه',
|
||||
deleteBoard_title: 'حذف برد',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'حذف کارت برای همیشه',
|
||||
deleteCard_title: 'حذف کارت',
|
||||
deleteComment_title: 'حذف نظر',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'حذف گروه فیلد سفارشی',
|
||||
deleteCustomField_title: 'حذف فیلد سفارشی',
|
||||
deleteLabel_title: 'حذف برچسب',
|
||||
deleteList_title: 'حذف لیست',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'حذف سرویس اعلان',
|
||||
deleteProject_title: 'حذف پروژه',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'حذف لیست وظایف',
|
||||
deleteTask_title: 'حذف وظیفه',
|
||||
deleteUser_title: 'حذف کاربر',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'حذف وبهوک',
|
||||
deletedUser_title: 'کاربر حذف شده',
|
||||
description: 'توضیحات',
|
||||
detectAutomatically: 'تشخیص خودکار',
|
||||
display: null,
|
||||
display: 'نمایش',
|
||||
dropFileToUpload: 'فایل را برای آپلود بکشید',
|
||||
dueDate_title: 'تاریخ سررسید',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'طرحبندی پویا و نامتقارن.',
|
||||
editAttachment_title: 'ویرایش پیوست',
|
||||
editAvatar_title: 'ویرایش آواتار',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: 'ویرایش رنگ',
|
||||
editCustomFieldGroup_title: 'ویرایش گروه فیلد سفارشی',
|
||||
editCustomField_title: 'ویرایش فیلد سفارشی',
|
||||
editDueDate_title: 'ویرایش تاریخ سررسید',
|
||||
editEmail_title: 'ویرایش ایمیل',
|
||||
editInformation_title: 'ویرایش اطلاعات',
|
||||
editLabel_title: 'ویرایش برچسب',
|
||||
editPassword_title: 'ویرایش رمز عبور',
|
||||
editPermissions_title: 'ویرایش دسترسیها',
|
||||
editRole_title: null,
|
||||
editRole_title: 'ویرایش نقش',
|
||||
editStopwatch_title: 'ویرایش کرنومتر',
|
||||
editType_title: null,
|
||||
editType_title: 'ویرایش نوع',
|
||||
editUsername_title: 'ویرایش نام کاربری',
|
||||
editor: 'ویرایشگر',
|
||||
editors: null,
|
||||
editors: 'ویرایشگران',
|
||||
email: 'ایمیل',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'خالی کردن سطل زباله',
|
||||
enterCardTitle: 'عنوان کارت را وارد کنید...',
|
||||
enterDescription: 'توضیحات را وارد کنید...',
|
||||
enterFilename: 'نام فایل را وارد کنید',
|
||||
enterListTitle: 'عنوان لیست را وارد کنید...',
|
||||
enterTaskDescription: 'توضیحات وظیفه را وارد کنید...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'رویدادها',
|
||||
excludedEvents: 'رویدادهای مستثنی',
|
||||
expandTaskListsByDefault: 'به طور پیشفرض لیست وظایف را باز کن',
|
||||
filterByLabels_title: 'فیلتر بر اساس برچسبها',
|
||||
filterByMembers_title: 'فیلتر بر اساس اعضا',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'برای پروژههای شخصی.',
|
||||
forTeamBasedProjects: 'برای پروژههای تیمی.',
|
||||
fromComputer_title: 'از کامپیوتر',
|
||||
fromTrello: 'از Trello',
|
||||
general: 'عمومی',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'گرادیانها',
|
||||
grid: 'شبکه',
|
||||
hideCompletedTasks: 'مخفی کردن وظایف تکمیل شده',
|
||||
hideFromProjectListAndFavorites: 'مخفی کردن از لیست پروژهها و علاقهمندیها',
|
||||
host: 'میزبان',
|
||||
hours: 'ساعتها',
|
||||
importBoard_title: 'وارد کردن برد',
|
||||
invalidCurrentPassword: 'رمز عبور فعلی نامعتبر است',
|
||||
kanban: null,
|
||||
kanban: 'کانبان',
|
||||
labels: 'برچسبها',
|
||||
language: 'زبان',
|
||||
leaveBoard_title: 'ترک برد',
|
||||
leaveProject_title: 'ترک پروژه',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'محدود کردن انواع کارت به نوع پیشفرض',
|
||||
linkToCard: 'لینک به کارت',
|
||||
list: 'لیست',
|
||||
listActions_title: 'اقدامات لیست',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'لیستها',
|
||||
makeProjectPrivate_title: 'خصوصی کردن پروژه',
|
||||
makeProjectShared_title: 'به اشتراک گذاشتن پروژه',
|
||||
managers: 'مدیران',
|
||||
memberActions_title: 'اقدامات عضو',
|
||||
members: 'اعضا',
|
||||
minutes: 'دقیقهها',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'اقدامات بیشتر',
|
||||
moreActions_title: 'اقدامات بیشتر',
|
||||
moveCard_title: 'انتقال کارت',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'انتقال لیست',
|
||||
myOwn_title: 'مال خودم',
|
||||
name: 'نام',
|
||||
newEmail: 'ایمیل جدید',
|
||||
newPassword: 'رمز عبور جدید',
|
||||
newUsername: 'نام کاربری جدید',
|
||||
newVersionAvailable: null,
|
||||
newVersionAvailable: 'نسخه جدید موجود است',
|
||||
newestFirst: 'جدیدترین اول',
|
||||
noBoards: 'بردی وجود ندارد',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'کارتی یافت نشد.',
|
||||
noConnectionToServer: 'ارتباط با سرور قطع است',
|
||||
noLists: 'لیستی وجود ندارد',
|
||||
noProjects: 'پروژهای وجود ندارد',
|
||||
noUnreadNotifications: 'اعلان خوانده نشدهای وجود ندارد.',
|
||||
notifications: 'اعلانها',
|
||||
oldestFirst: 'قدیمیترین اول',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'برای خصوصی کردن این پروژه باید فقط یک مدیر باقی بماند',
|
||||
openBoard_title: 'باز کردن برد',
|
||||
optional_inline: 'اختیاری',
|
||||
organization: 'سازمان',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'دیگران',
|
||||
passwordIsSet: 'رمز عبور تنظیم شده است',
|
||||
phone: 'تلفن',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'پلانکا از <1><0>Apprise</0></1> برای ارسال اعلان به بیش از ۱۰۰ سرویس محبوب استفاده میکند.',
|
||||
port: 'پورت',
|
||||
preferences: 'ترجیحات',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'نکته: با فشردن Ctrl-V (Cmd-V در مک) میتوانید پیوست را از کلیپ بورد اضافه کنید.',
|
||||
private: null,
|
||||
private: 'خصوصی',
|
||||
project: 'پروژه',
|
||||
projectNotFound_title: 'پروژه یافت نشد',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'مالک پروژه',
|
||||
referenceDataAndKnowledgeStorage: 'ذخیرهسازی دادههای مرجع و دانش.',
|
||||
rejectUnauthorizedTlsCertificates: 'رد کردن گواهینامههای TLS غیرمجاز',
|
||||
removeManager_title: 'حذف مدیر',
|
||||
removeMember_title: 'حذف عضو',
|
||||
role: null,
|
||||
role: 'نقش',
|
||||
searchCards: 'جستجوی کارتها...',
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchCustomFieldGroups: 'جستجوی گروههای فیلد سفارشی...',
|
||||
searchCustomFields: 'جستجوی فیلدهای سفارشی...',
|
||||
searchLabels: 'جستجوی برچسبها...',
|
||||
searchLists: null,
|
||||
searchLists: 'جستجوی لیستها...',
|
||||
searchMembers: 'جستجوی اعضا...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'جستجوی پروژهها...',
|
||||
searchUsers: 'جستجوی کاربران...',
|
||||
seconds: 'ثانیهها',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'انتخاب مسئول',
|
||||
selectBoard: 'انتخاب برد',
|
||||
selectList: 'انتخاب لیست',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: 'لیستی را برای بازگردانی این کارت انتخاب کنید',
|
||||
selectOrder_title: 'انتخاب ترتیب',
|
||||
selectPermissions_title: 'انتخاب دسترسیها',
|
||||
selectProject: 'انتخاب پروژه',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'انتخاب نقش',
|
||||
selectType_title: 'انتخاب نوع',
|
||||
sequentialDisplayOfCards: 'نمایش متوالی کارتها.',
|
||||
settings: 'تنظیمات',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
shared: 'به اشتراک گذاشته شده',
|
||||
sharedWithMe_title: 'با من به اشتراک گذاشته شده',
|
||||
showOnFrontOfCard: 'نمایش در جلوی کارت',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'مرتبسازی لیست',
|
||||
stopwatch: 'کرنومتر',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'داستان',
|
||||
subscribeToCardWhenCommenting: 'هنگام نظر دادن به کارت مشترک شو',
|
||||
subscribeToMyOwnCardsByDefault: 'به طور پیشفرض به کارتهای خودم مشترک شوم',
|
||||
taskActions_title: 'اقدامات وظیفه',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: 'تخصیص وظیفه و تکمیل پروژه.',
|
||||
taskListActions_title: 'اقدامات لیست وظایف',
|
||||
taskList_title: 'لیست وظایف',
|
||||
team: 'تیم',
|
||||
terms: 'شرایط',
|
||||
testLog_title: 'گزارش تست',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'پیش نمایشی برای این پیوست موجود نیست.',
|
||||
time: 'زمان',
|
||||
title: 'عنوان',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'سطل زباله',
|
||||
trashHasBeenSuccessfullyEmptied: 'سطل زباله با موفقیت خالی شد.',
|
||||
turnOffRecentCardHighlighting: 'خاموش کردن برجستهسازی کارتهای اخیر',
|
||||
typeNameToConfirm: 'نام را برای تأیید تایپ کنید.',
|
||||
typeTitleToConfirm: 'عنوان را برای تأیید تایپ کنید.',
|
||||
unsavedChanges: 'تغییرات ذخیره نشده',
|
||||
uploadFailedFileIsTooBig: 'آپلود ناموفق: فایل خیلی بزرگ است.',
|
||||
uploadFailedNotEnoughStorageSpace: 'آپلود ناموفق: فضای ذخیرهسازی کافی نیست.',
|
||||
uploadedImages: 'تصاویر آپلود شده',
|
||||
url: 'آدرس',
|
||||
useSecureConnection: 'استفاده از اتصال امن',
|
||||
userActions_title: 'اقدامات کاربر',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> <2>{{card}}</2> را به {{list}} اضافه کرد',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> این کارت را به {{list}} اضافه کرد',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> {{addedUser}} را به <4>{{card}}</4> اضافه کرد',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> {{addedUser}} را به این کارت اضافه کرد',
|
||||
userAddedYouToCard: '<0>{{user}}</0> شما را به <2>{{card}}</2> اضافه کرد',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> {{task}} را در <4>{{card}}</4> تکمیل کرد',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> {{task}} را در این کارت تکمیل کرد',
|
||||
userJoinedCard: '<0>{{user}}</0> به <2>{{card}}</2> پیوست',
|
||||
userJoinedThisCard: '<0>{{user}}</0> به این کارت پیوست',
|
||||
userLeftCard: '<0>{{user}}</0> <2>{{card}}</2> را ترک کرد',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> نظر جدید «{{comment}}» را به <2>{{card}}</2> اضافه کرد',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> این کارت را ترک کرد',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> {{task}} را در <4>{{card}}</4> ناتمام علامتگذاری کرد',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> {{task}} را در این کارت ناتمام علامتگذاری کرد',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> شما را در نظر «{{comment}}» در <2>{{card}}</2> ذکر کرد',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> <2>{{card}}</2> را از {{fromList}} به {{toList}} منتقل کرد',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> این کارت را از {{fromList}} به {{toList}} منتقل کرد',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> {{removedUser}} را از <4>{{card}}</4> حذف کرد',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> {{removedUser}} را از این کارت حذف کرد',
|
||||
username: 'نام کاربری',
|
||||
users: 'کاربران',
|
||||
viewer: 'بیننده',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'بینندگان',
|
||||
visualTaskManagementWithLists: 'مدیریت بصری وظایف با لیستها.',
|
||||
webhooks: 'وبهوکها',
|
||||
withoutBaseGroup: 'بدون گروه پایه',
|
||||
writeComment: 'نظر بنویسید...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'فعال کردن کاربر',
|
||||
activateUser_title: 'فعال کردن کاربر',
|
||||
addAnotherCard: 'اضافه کردن کارت دیگر',
|
||||
addAnotherList: 'اضافه کردن لیست دیگر',
|
||||
addAnotherTask: 'اضافه کردن وظیفه دیگر',
|
||||
addCard: 'اضافه کردن کارت',
|
||||
addCard_title: 'اضافه کردن کارت',
|
||||
addComment: 'اضافه کردن نظر',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'اضافه کردن فیلد سفارشی',
|
||||
addCustomFieldGroup: 'اضافه کردن گروه فیلد سفارشی',
|
||||
addList: 'اضافه کردن لیست',
|
||||
addMember: 'اضافه کردن عضو',
|
||||
addMoreDetailedDescription: 'اضافه کردن توضیحات بیشتر',
|
||||
addTask: 'اضافه کردن وظیفه',
|
||||
addTaskList: null,
|
||||
addTaskList: 'اضافه کردن لیست وظایف',
|
||||
addToCard: 'اضافه کردن به کارت',
|
||||
addUser: 'اضافه کردن کاربر',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'اضافه کردن وبهوک',
|
||||
archive: 'آرشیو',
|
||||
archiveCard: 'آرشیو کارت',
|
||||
archiveCard_title: 'آرشیو کارت',
|
||||
archiveCards: 'آرشیو کارتها',
|
||||
archiveCards_title: 'آرشیو کارتها',
|
||||
assignAsOwner: 'تعیین به عنوان مالک',
|
||||
cancel: 'لغو',
|
||||
createBoard: 'ایجاد برد',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'ایجاد گروه فیلد سفارشی',
|
||||
createFile: 'ایجاد فایل',
|
||||
createLabel: 'ایجاد برچسب',
|
||||
createNewLabel: 'ایجاد برچسب جدید',
|
||||
createProject: 'ایجاد پروژه',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'غیرفعال کردن کاربر',
|
||||
deactivateUser_title: 'غیرفعال کردن کاربر',
|
||||
delete: 'حذف',
|
||||
deleteAttachment: 'حذف پیوست',
|
||||
deleteAvatar: 'حذف آواتار',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'حذف تصویر پسزمینه',
|
||||
deleteBoard: 'حذف برد',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'حذف برد',
|
||||
deleteCard: 'حذف کارت',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'حذف کارت برای همیشه',
|
||||
deleteCard_title: 'حذف کارت',
|
||||
deleteComment: 'حذف نظر',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'حذف فیلد سفارشی',
|
||||
deleteCustomFieldGroup: 'حذف گروه فیلد سفارشی',
|
||||
deleteForever_title: 'حذف برای همیشه',
|
||||
deleteGroup: 'حذف گروه',
|
||||
deleteLabel: 'حذف برچسب',
|
||||
deleteList: 'حذف لیست',
|
||||
deleteList_title: 'حذف لیست',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: 'حذف سرویس اعلان',
|
||||
deleteProject: 'حذف پروژه',
|
||||
deleteProject_title: 'حذف پروژه',
|
||||
deleteTask: 'حذف وظیفه',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'حذف لیست وظایف',
|
||||
deleteTask_title: 'حذف وظیفه',
|
||||
deleteUser: 'حذف کاربر',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
deleteUser_title: 'حذف کاربر',
|
||||
deleteWebhook: 'حذف وبهوک',
|
||||
dismissAll: 'رد کردن همه',
|
||||
download: 'دانلود',
|
||||
duplicateCard_title: 'تکرار کارت',
|
||||
edit: 'ویرایش',
|
||||
editColor_title: null,
|
||||
editColor_title: 'ویرایش رنگ',
|
||||
editDescription_title: 'ویرایش توضیحات',
|
||||
editDueDate_title: 'ویرایش تاریخ سررسید',
|
||||
editEmail_title: 'ویرایش ایمیل',
|
||||
editGroup: null,
|
||||
editGroup: 'ویرایش گروه',
|
||||
editInformation_title: 'ویرایش اطلاعات',
|
||||
editPassword_title: 'ویرایش رمز عبور',
|
||||
editPermissions: 'ویرایش دسترسیها',
|
||||
editRole_title: null,
|
||||
editRole_title: 'ویرایش نقش',
|
||||
editStopwatch_title: 'ویرایش کرنومتر',
|
||||
editTitle_title: 'ویرایش عنوان',
|
||||
editType_title: null,
|
||||
editType_title: 'ویرایش نوع',
|
||||
editUsername_title: 'ویرایش نام کاربری',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: 'خالی کردن سطل زباله',
|
||||
emptyTrash_title: 'خالی کردن سطل زباله',
|
||||
import: 'وارد کردن',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'پیوستن',
|
||||
leave: 'ترک کردن',
|
||||
leaveBoard: 'ترک برد',
|
||||
leaveProject: 'ترک پروژه',
|
||||
logOut_title: 'خروج',
|
||||
makeCover_title: 'ایجاد کاور',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'خصوصی کردن پروژه',
|
||||
makeProjectPrivate_title: 'خصوصی کردن پروژه',
|
||||
makeProjectShared: 'به اشتراک گذاشتن پروژه',
|
||||
makeProjectShared_title: 'به اشتراک گذاشتن پروژه',
|
||||
move: 'انتقال',
|
||||
moveCard_title: 'انتقال کارت',
|
||||
moveList_title: null,
|
||||
moveList_title: 'انتقال لیست',
|
||||
remove: 'حذف',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'حذف مسئول',
|
||||
removeColor: 'حذف رنگ',
|
||||
removeCover_title: 'حذف کاور',
|
||||
removeFromBoard: 'حذف از برد',
|
||||
removeFromProject: 'حذف از پروژه',
|
||||
removeManager: 'حذف مدیر',
|
||||
removeMember: 'حذف عضو',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'بازگردانی به {{list}}',
|
||||
returnToBoard: 'بازگشت به برد',
|
||||
save: 'ذخیره',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'ارسال ایمیل تست',
|
||||
showActive: 'نمایش فعالها',
|
||||
showAllAttachments: 'نمایش همه پیوستها ({{hidden}} مخفی)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'نمایش کارتهای این کاربر',
|
||||
showDeactivated: 'نمایش غیرفعالها',
|
||||
showFewerAttachments: 'نمایش کمتر پیوستها',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'نمایش کمتر',
|
||||
showMore: 'نمایش بیشتر',
|
||||
sortList_title: 'مرتبسازی لیست',
|
||||
start: 'شروع',
|
||||
stop: 'توقف',
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'حد کاربران فعال به پایان رسیده است',
|
||||
adminLoginRequiredToInitializeInstance: 'ورود مدیر برای راهاندازی نمونه مورد نیاز است',
|
||||
emailAlreadyInUse: 'ایمیل قبلا استفاده شده است',
|
||||
emailOrUsername: 'ایمیل یا نام کاربری',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'این شرایط را خواندهام و با آن موافقم',
|
||||
invalidCredentials: 'اطلاعات ورود نامعتبر',
|
||||
invalidEmailOrUsername: 'ایمیل یا نام کاربری نامعتبر است',
|
||||
invalidPassword: 'رمز عبور نامعتبر است',
|
||||
logIn_title: null,
|
||||
logIn_title: 'ورود',
|
||||
noInternetConnection: 'بدون اتصال به اینترنت',
|
||||
or: null,
|
||||
or: 'یا',
|
||||
pageNotFound_title: 'صفحه یافت نشد',
|
||||
password: 'رمز عبور',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'قدرت گرفته از <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'اتصال به سرور ناموفق بود',
|
||||
unknownError: 'خطای ناشناخته، بعداً دوباره تلاش کنید',
|
||||
useSingleSignOn: 'استفاده از ورود یکپارچه',
|
||||
@@ -22,8 +22,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'لغو و بستن',
|
||||
continue: 'ادامه',
|
||||
logIn: 'ورود',
|
||||
logInWithSso: 'ورود با SSO',
|
||||
},
|
||||
|
||||
165
client/src/locales/fa-IR/markdown-editor.json
Normal file
165
client/src/locales/fa-IR/markdown-editor.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"action-previews": {
|
||||
"text": "این متنی بدون عنوان است.\nهم عنوان و هم متن\nمیتوانند با پررنگ، کج، رنگ،\nخط خورده و زیرخط برجسته شوند.",
|
||||
"text-with-head": "این متنی با عنوان است.\nهم عنوان و هم متن\nمیتوانند با پررنگ، کج، رنگ،\nخط خورده و زیرخط برجسته شوند.",
|
||||
"heading": "عنوان"
|
||||
},
|
||||
"bundle": {
|
||||
"error-title": "خطا در ویرایشگر markdown",
|
||||
"settings_wysiwyg": "ویرایشگر بصری (wysiwyg)",
|
||||
"settings_markup": "نشانهگذاری markdown",
|
||||
"markup_placeholder": "نشانهگذاری markdown را وارد کنید..."
|
||||
},
|
||||
"codeblock": {
|
||||
"remove": "حذف",
|
||||
"empty_option": "هیچ تطبیقی یافت نشد"
|
||||
},
|
||||
"common": {
|
||||
"delete": "حذف",
|
||||
"edit": "ویرایش",
|
||||
"toolbar_action_disabled": "عنصر نشانهگذاری ناسازگار"
|
||||
},
|
||||
"forms": {
|
||||
"common_action_cancel": "لغو",
|
||||
"common_action_submit": "ارسال",
|
||||
"common_action_upload": "انتخاب",
|
||||
"common_tab_attach": "افزودن از دستگاه",
|
||||
"common_tab_link": "افزودن با لینک",
|
||||
"common_link": "لینک",
|
||||
"common_sizes": "اندازه، px",
|
||||
"image_name": "عنوان",
|
||||
"image_link_href": "لینک تصویر",
|
||||
"image_link_href_help": "آدرسی که لینک تصویر به آن منتهی میشود.",
|
||||
"image_alt": "متن جایگزین",
|
||||
"image_alt_help": "متن جایگزین در صورت عدم بارگذاری تصویر نمایش داده میشود.",
|
||||
"image_upload_help": "تصویر JPEG، GIF یا PNG با حجم کمتر از 1 مگابایت.",
|
||||
"image_upload_failed": "افزودن تصویر ناموفق بود",
|
||||
"image_size_width": "عرض",
|
||||
"image_size_height": "ارتفاع",
|
||||
"link_url_help": "آدرسی که لینک به آن منتهی میشود.",
|
||||
"link_text": "متن لینک",
|
||||
"link_text_help": "متنی که به عنوان لینک نمایش داده میشود.",
|
||||
"link_open_help": "باز کردن لینک در تب جدید"
|
||||
},
|
||||
"md-hints": {
|
||||
"header_title": "سرتیتر",
|
||||
"header_hint": "# متن شما",
|
||||
"italic_title": "کج",
|
||||
"italic_hint": "_متن شما_",
|
||||
"bold_title": "پررنگ",
|
||||
"bold_hint": "**متن شما**",
|
||||
"strikethrough_title": "خط خورده",
|
||||
"strikethrough_hint": "~~متن شما~~",
|
||||
"blockquote_title": "نقل قول",
|
||||
"blockquote_hint": "> متن شما",
|
||||
"code_title": "کد",
|
||||
"code_hint": "```متن شما```",
|
||||
"link_title": "لینک",
|
||||
"link_hint": "[متن شما](url)",
|
||||
"image_title": "تصویر",
|
||||
"image_hint": "",
|
||||
"list_title": "آیتم فهرست",
|
||||
"list_hint": "- متن شما",
|
||||
"numbered-list_title": "فهرست شمارهدار",
|
||||
"numbered-list_hint": "1. متن شما",
|
||||
"documentation": "مستندات",
|
||||
"documentation_link": "https://diplodoc.com/docs/en/syntax/"
|
||||
},
|
||||
"menubar": {
|
||||
"bold": "پررنگ",
|
||||
"code": "کد",
|
||||
"code_inline": "کد درونخطی",
|
||||
"codeblock": "بلوک کد",
|
||||
"colorify": "رنگ متن",
|
||||
"colorify__color_blue": "آبی",
|
||||
"colorify__color_default": "پیشفرض",
|
||||
"colorify__color_gray": "خاکستری",
|
||||
"colorify__color_green": "سبز",
|
||||
"colorify__color_orange": "نارنجی",
|
||||
"colorify__color_red": "قرمز",
|
||||
"colorify__color_violet": "بنفش",
|
||||
"colorify__color_yellow": "زرد",
|
||||
"colorify__group_text": "متن",
|
||||
"cut": "برش",
|
||||
"emoji": "شکلک",
|
||||
"emoji__hint": "شکلکها را میتوان در WYSIWYG یا به صورت دستی با نشانهگذاری اضافه کرد",
|
||||
"heading": "عنوان",
|
||||
"heading1": "عنوان 1",
|
||||
"heading2": "عنوان 2",
|
||||
"heading3": "عنوان 3",
|
||||
"heading4": "عنوان 4",
|
||||
"heading5": "عنوان 5",
|
||||
"heading6": "عنوان 6",
|
||||
"hrule": "جداکننده",
|
||||
"image": "تصویر",
|
||||
"italic": "کج",
|
||||
"link": "لینک",
|
||||
"list": "فهرست",
|
||||
"list__action_lift": "بالا بردن آیتم",
|
||||
"list__action_sink": "پایین بردن آیتم",
|
||||
"list_action_disabled": "با منطق فهرست در تضاد است",
|
||||
"mark": "علامتگذاری شده",
|
||||
"mono": "تکفاصله",
|
||||
"more_action": "اقدام بیشتر",
|
||||
"note": "یادداشت",
|
||||
"olist": "فهرست مرتب",
|
||||
"quote": "نقل قول",
|
||||
"redo": "انجام مجدد",
|
||||
"strike": "خط خورده",
|
||||
"table": "جدول",
|
||||
"text": "متن",
|
||||
"ulist": "فهرست گلولهای",
|
||||
"underline": "زیرخط",
|
||||
"undo": "واگرد"
|
||||
},
|
||||
"placeholder": {
|
||||
"doc_empty": "/ را تایپ کنید تا از دستورات اسلش استفاده کنید...",
|
||||
"checkbox": "توضیح وظیفه را وارد کنید...",
|
||||
"deflist_term": "اصطلاح",
|
||||
"deflist_desc": "توضیح تعریف",
|
||||
"heading": "عنوان",
|
||||
"cut_title": "عنوان",
|
||||
"cut_content": "محتوایی که با کلیک نمایش داده میشود",
|
||||
"note_title": "عنوان",
|
||||
"note_content": "محتوای یادداشت",
|
||||
"table_cell": "محتوای سلول",
|
||||
"select_filter": "جستجوی زبانها..."
|
||||
},
|
||||
"search": {
|
||||
"label_case-sensitive": "حساس به حروف کوچک و بزرگ",
|
||||
"label_whole-word": "کلمه کامل",
|
||||
"title": "جستجو در کد"
|
||||
},
|
||||
"suggest": {
|
||||
"empty-msg": "یافت نشد"
|
||||
},
|
||||
"widgets": {
|
||||
"image": "افزودن تصویر",
|
||||
"link": "افزودن لینک"
|
||||
},
|
||||
"yfm-note": {
|
||||
"info": "یادداشت",
|
||||
"tip": "نکته",
|
||||
"warning": "هشدار",
|
||||
"alert": "اخطار",
|
||||
"remove": "حذف"
|
||||
},
|
||||
"yfm-table": {
|
||||
"column.add.before": "افزودن ستون قبل",
|
||||
"column.add.after": "افزودن ستون بعد",
|
||||
"column.remove": "حذف ستون",
|
||||
"row.add.before": "افزودن ردیف قبل",
|
||||
"row.add.after": "افزودن ردیف بعد",
|
||||
"row.remove": "حذف ردیف",
|
||||
"table.remove": "حذف جدول",
|
||||
"table.menu.cell.align.left": "تراز محتوای سلول به چپ",
|
||||
"table.menu.cell.align.right": "تراز محتوای سلول به راست",
|
||||
"table.menu.cell.align.center": "تراز محتوای سلول به مرکز",
|
||||
"table.menu.row.add": "افزودن ردیف بعد",
|
||||
"table.menu.row.remove": "حذف ردیف",
|
||||
"table.menu.column.add": "افزودن ستون بعد",
|
||||
"table.menu.column.remove": "حذف ستون",
|
||||
"table.menu.convert.yfm": "تبدیل به جدول YFM",
|
||||
"table.menu.table.remove": "حذف جدول"
|
||||
}
|
||||
}
|
||||
@@ -21,7 +21,7 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Tietoa PLANKAsta',
|
||||
accessToken: null,
|
||||
accessToken: 'Käyttöoikeustunnus',
|
||||
account: 'Tili',
|
||||
actions: 'Toiminnot',
|
||||
activateUser_title: 'Aktivoi käyttäjä',
|
||||
@@ -68,11 +68,12 @@ export default {
|
||||
areYouSureYouWantToDeleteThisTask: 'Haluatko varmasti poistaa tämän tehtävän?',
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Haluatko varmasti poistaa tämän tehtävälistan?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Haluatko varmasti poistaa tämän käyttäjän?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Haluatko varmasti poistaa tämän webhookin?',
|
||||
areYouSureYouWantToEmptyTrash: 'Haluatko varmasti tyhjentää roskakorin?',
|
||||
areYouSureYouWantToLeaveBoard: 'Haluatko varmasti poistua taululta?',
|
||||
areYouSureYouWantToLeaveProject: 'Haluatko varmasti poistua projektista?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Haluatko varmasti tehdä tästä projektista yksityisen?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Haluatko varmasti jakaa tämän projektin?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Haluatko varmasti poistaa tämän ylläpitäjän projektista?',
|
||||
@@ -111,13 +112,13 @@ export default {
|
||||
'Tämän listan kortit ovat valmiita ja voidaan arkistoida.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Tämän listan kortit ovat valmiita työstettäväksi.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Päivitä tästä</0> tai lataa sivu uudelleen.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Asiakkaan isäntänimi EHLO:ssa',
|
||||
closed: 'Suljettu',
|
||||
color: 'Väri',
|
||||
comments: 'Kommentit',
|
||||
contentExceedsLimit: 'Sisältö ylittää rajan {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: 'Liitteen sisältö on liian suuri näytettäväksi.',
|
||||
copy_inline: 'kopioi',
|
||||
copy_inline: 'kopio',
|
||||
createBoard_title: 'Luo taulu',
|
||||
createCustomFieldGroup_title: 'Luo mukautettujen kenttien ryhmä',
|
||||
createLabel_title: 'Luo tunniste',
|
||||
@@ -134,7 +135,7 @@ export default {
|
||||
date: 'Päivämäärä',
|
||||
deactivateUser_title: 'Poista käyttäjä käytöstä',
|
||||
defaultCardType_title: 'Oletuskorttityyppi',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'Oletus "lähettäjä"',
|
||||
defaultView_title: 'Oletusnäkymä',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Poista kaikki taulut, jotta voit poistaa tämän projektin',
|
||||
@@ -153,10 +154,9 @@ export default {
|
||||
deleteTaskList_title: 'Poista tehtävälista',
|
||||
deleteTask_title: 'Poista tehtävä',
|
||||
deleteUser_title: 'Poista käyttäjä',
|
||||
deleteWebhook_title: null,
|
||||
deleteWebhook_title: 'Poista webhook',
|
||||
deletedUser_title: 'Poistettu käyttäjä',
|
||||
description: 'Kuvaus',
|
||||
detectAutomatically: 'Tunnista automaattisesti',
|
||||
display: 'Näyttö',
|
||||
dropFileToUpload: 'Pudota tiedosto ladattavaksi',
|
||||
dueDate_title: 'Määräpäivä',
|
||||
@@ -185,9 +185,9 @@ export default {
|
||||
enterFilename: 'Syötä tiedostonimi',
|
||||
enterListTitle: 'Syötä listan otsikko...',
|
||||
enterTaskDescription: 'Syötä tehtävän kuvaus...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Tapahtumat',
|
||||
excludedEvents: 'Poissuljetut tapahtumat',
|
||||
expandTaskListsByDefault: 'Laajenna tehtävälistat oletuksena',
|
||||
filterByLabels_title: 'Suodata tunnisteiden mukaan',
|
||||
filterByMembers_title: 'Suodata jäsenten mukaan',
|
||||
forPersonalProjects: 'Henkilökohtaisiin projekteihin.',
|
||||
@@ -197,9 +197,9 @@ export default {
|
||||
general: 'Yleinen',
|
||||
gradients: 'Liukuvärit',
|
||||
grid: 'Ruudukko',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: 'Piilota valmiit tehtävät',
|
||||
hideFromProjectListAndFavorites: 'Piilota projektilistasta ja suosikeista',
|
||||
host: null,
|
||||
host: 'Isäntä',
|
||||
hours: 'Tunnit',
|
||||
importBoard_title: 'Tuo taulu',
|
||||
invalidCurrentPassword: 'Virheellinen nykyinen salasana',
|
||||
@@ -209,20 +209,20 @@ export default {
|
||||
leaveBoard_title: 'Poistu taululta',
|
||||
leaveProject_title: 'Poistu projektista',
|
||||
limitCardTypesToDefaultOne: 'Rajoita korttityypit oletukseen',
|
||||
linkToCard: null,
|
||||
linkToCard: 'Linkki korttiin',
|
||||
list: 'Lista',
|
||||
listActions_title: 'Listan toiminnot',
|
||||
lists: 'Listat',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate_title: 'Tee projektista yksityinen',
|
||||
makeProjectShared_title: 'Jaa projekti',
|
||||
managers: 'Ylläpitäjät',
|
||||
memberActions_title: 'Jäsenen toiminnot',
|
||||
members: 'Jäsenet',
|
||||
minutes: 'Minuutit',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Lisää toimintoja',
|
||||
moreActions_title: 'Lisää toimintoja',
|
||||
moveCard_title: 'Siirrä kortti',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Siirrä lista',
|
||||
myOwn_title: 'Omat',
|
||||
name: 'Nimi',
|
||||
newEmail: 'Uusi sähköposti',
|
||||
@@ -231,23 +231,24 @@ export default {
|
||||
newVersionAvailable: 'Uusi versio saatavilla',
|
||||
newestFirst: 'Uusimmat ensin',
|
||||
noBoards: 'Ei tauluja',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Kortteja ei löytynyt.',
|
||||
noConnectionToServer: 'Ei yhteyttä palvelimeen',
|
||||
noLists: 'Ei listoja',
|
||||
noProjects: 'Ei projekteja',
|
||||
noUnreadNotifications: 'Ei lukemattomia ilmoituksia.',
|
||||
notifications: 'Ilmoitukset',
|
||||
oldestFirst: 'Vanhimmat ensin',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Vain yhden ylläpitäjän tulisi jäädä tehdäkseen tästä projektista yksityisen',
|
||||
openBoard_title: 'Avaa taulu',
|
||||
optional_inline: 'valinnainen',
|
||||
organization: 'Organisaatio',
|
||||
others: 'Muut',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Salasana on asetettu',
|
||||
phone: 'Puhelin',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA käyttää <1><0>Apprise</0></1> lähettääkseen ilmoituksia yli 100 suosittuun palveluun.',
|
||||
port: null,
|
||||
port: 'Portti',
|
||||
preferences: 'Asetukset',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Vinkki: paina Ctrl-V (tai Cmd-V Macilla) lisätäksesi liitteen leikepöydältä.',
|
||||
@@ -256,7 +257,7 @@ export default {
|
||||
projectNotFound_title: 'Projektia ei löytynyt',
|
||||
projectOwner: 'Projektin omistaja',
|
||||
referenceDataAndKnowledgeStorage: 'Viitetiedot ja tietovarasto.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
rejectUnauthorizedTlsCertificates: 'Hylkää valtuuttamattomat TLS-varmenteet',
|
||||
removeManager_title: 'Poista ylläpitäjä',
|
||||
removeMember_title: 'Poista jäsen',
|
||||
role: 'Rooli',
|
||||
@@ -283,7 +284,7 @@ export default {
|
||||
shared: 'Jaettu',
|
||||
sharedWithMe_title: 'Jaettu kanssani',
|
||||
showOnFrontOfCard: 'Näytä kortin etupuolella',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Lajittele lista',
|
||||
stopwatch: 'Ajastin',
|
||||
story: 'Tarina',
|
||||
@@ -294,8 +295,8 @@ export default {
|
||||
taskListActions_title: 'Tehtävälistan toiminnot',
|
||||
taskList_title: 'Tehtävälista',
|
||||
team: 'Tiimi',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Ehdot',
|
||||
testLog_title: 'Testiloki',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Tälle liitteelle ei ole esikatselua saatavilla.',
|
||||
time: 'Aika',
|
||||
title: 'Otsikko',
|
||||
@@ -305,11 +306,11 @@ export default {
|
||||
typeNameToConfirm: 'Kirjoita nimi vahvistaaksesi.',
|
||||
typeTitleToConfirm: 'Kirjoita otsikko vahvistaaksesi.',
|
||||
unsavedChanges: 'Tallentamattomat muutokset',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Lataus epäonnistui: tiedosto on liian suuri.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Lataus epäonnistui: tallennustilaa ei ole tarpeeksi.',
|
||||
uploadedImages: 'Ladatut kuvat',
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Käytä turvallista yhteyttä',
|
||||
userActions_title: 'Käyttäjän toiminnot',
|
||||
userAddedCardToList: '<0>{{user}}</0> lisäsi <2>{{card}}</2> listaan {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> lisäsi tämän kortin listaan {{list}}',
|
||||
@@ -345,7 +346,7 @@ export default {
|
||||
viewer: 'Katselija',
|
||||
viewers: 'Katselijat',
|
||||
visualTaskManagementWithLists: 'Visuaalinen tehtävien hallinta listoilla.',
|
||||
webhooks: null,
|
||||
webhooks: 'Webhookit',
|
||||
withoutBaseGroup: 'Ilman perusryhmää',
|
||||
writeComment: 'Kirjoita kommentti...',
|
||||
},
|
||||
@@ -368,7 +369,7 @@ export default {
|
||||
addTaskList: 'Lisää tehtävälista',
|
||||
addToCard: 'Lisää korttiin',
|
||||
addUser: 'Lisää käyttäjä',
|
||||
addWebhook: null,
|
||||
addWebhook: 'Lisää webhook',
|
||||
archive: 'Arkistoi',
|
||||
archiveCard: 'Arkistoi kortti',
|
||||
archiveCard_title: 'Arkistoi kortti',
|
||||
@@ -409,9 +410,9 @@ export default {
|
||||
deleteTask_title: 'Poista tehtävä',
|
||||
deleteUser: 'Poista käyttäjä',
|
||||
deleteUser_title: 'Poista käyttäjä',
|
||||
deleteWebhook: null,
|
||||
deleteWebhook: 'Poista webhook',
|
||||
dismissAll: 'Sulje kaikki',
|
||||
download: null,
|
||||
download: 'Lataa',
|
||||
duplicateCard_title: 'Monista kortti',
|
||||
edit: 'Muokkaa',
|
||||
editColor_title: 'Muokkaa väriä',
|
||||
@@ -436,13 +437,13 @@ export default {
|
||||
leaveProject: 'Poistu projektista',
|
||||
logOut_title: 'Kirjaudu ulos',
|
||||
makeCover_title: 'Aseta kansikuvaksi',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate: 'Tee projektista yksityinen',
|
||||
makeProjectPrivate_title: 'Tee projektista yksityinen',
|
||||
makeProjectShared: 'Jaa projekti',
|
||||
makeProjectShared_title: 'Jaa projekti',
|
||||
move: 'Siirrä',
|
||||
moveCard_title: 'Siirrä kortti',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Siirrä lista',
|
||||
remove: 'Poista',
|
||||
removeAssignee: 'Poista vastuuhenkilö',
|
||||
removeColor: 'Poista väri',
|
||||
@@ -454,14 +455,14 @@ export default {
|
||||
restoreToList: 'Palauta listaan {{list}}',
|
||||
returnToBoard: 'Palaa tauluun',
|
||||
save: 'Tallenna',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Lähetä testisähköposti',
|
||||
showActive: 'Näytä aktiiviset',
|
||||
showAllAttachments: 'Näytä kaikki liitteet ({{hidden}} piilotettu)',
|
||||
showCardsWithThisUser: 'Näytä kortit, joissa tämä käyttäjä',
|
||||
showDeactivated: 'Näytä poistetut käytöstä',
|
||||
showFewerAttachments: 'Näytä vähemmän liitteitä',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'Näytä vähemmän',
|
||||
showMore: 'Näytä enemmän',
|
||||
sortList_title: 'Lajittele lista',
|
||||
start: 'Aloita',
|
||||
stop: 'Lopeta',
|
||||
|
||||
@@ -2,10 +2,11 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Aktiivisten käyttäjien raja saavutettu',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Järjestelmänvalvojan kirjautuminen vaaditaan instanssin alustamiseksi',
|
||||
emailAlreadyInUse: 'Sähköposti on jo käytössä',
|
||||
emailOrUsername: 'Sähköposti tai käyttäjänimi',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Olen lukenut ja hyväksyn nämä ehdot',
|
||||
invalidCredentials: 'Virheelliset tunnistetiedot',
|
||||
invalidEmailOrUsername: 'Virheellinen sähköposti tai käyttäjänimi',
|
||||
invalidPassword: 'Virheellinen salasana',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Peruuta ja sulje',
|
||||
continue: 'Jatka',
|
||||
logIn: 'Kirjaudu sisään',
|
||||
logInWithSso: 'Kirjaudu SSO:lla',
|
||||
},
|
||||
|
||||
@@ -65,7 +65,7 @@ export default {
|
||||
'Êtes-vous sûr de vouloir supprimer ce groupe de champs personnalisés ?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Êtes-vous sûr de vouloir supprimer cette étiquette ?',
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Êtes-vous sûr de vouloir supprimer cette liste ? Toutes les cartes seront supprimées.',
|
||||
'Êtes-vous sûr de vouloir supprimer cette liste ? Toutes les cartes seront déplacées vers la corbeille.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Êtes-vous sûr de vouloir supprimer ce service de notification ?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Êtes-vous sûr de vouloir supprimer ce projet ?',
|
||||
@@ -77,7 +77,8 @@ export default {
|
||||
areYouSureYouWantToEmptyTrash: 'Etes-vous sûr de vouloir vider la corbeille ?',
|
||||
areYouSureYouWantToLeaveBoard: 'Etes-vous sûr de vouloir quitter ce tableau ?',
|
||||
areYouSureYouWantToLeaveProject: 'Êtes-vous sûr de vouloir quitter ce projet ?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Êtes-vous sûr de vouloir rendre ce projet privé ?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
"Etes-vous sûr de vouloir transformer ce projet en projet d'équipe ?",
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
@@ -118,7 +119,7 @@ export default {
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Les cartes de cette liste sont prêtes à être traitées.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>Cliquez ici</0> ou rafraîchissez la page pour mettre à jour.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: "Nom d'hôte du client dans EHLO",
|
||||
closed: 'Fermé',
|
||||
color: 'Couleur',
|
||||
comments: 'Commentaires',
|
||||
@@ -142,7 +143,7 @@ export default {
|
||||
date: 'Date',
|
||||
deactivateUser_title: 'Désactiver l’utilisateur',
|
||||
defaultCardType_title: 'Type de carte par défaut',
|
||||
defaultFrom: null,
|
||||
defaultFrom: '"De" par défaut',
|
||||
defaultView_title: 'Vue par défaut',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Supprimer tous les tableaux pour pouvoir supprimer ce projet.',
|
||||
@@ -164,7 +165,6 @@ export default {
|
||||
deleteWebhook_title: 'Supprimer le webhook',
|
||||
deletedUser_title: 'Utilisateur supprimé',
|
||||
description: 'Description',
|
||||
detectAutomatically: 'Détecter automatiquement',
|
||||
display: 'Affichage',
|
||||
dropFileToUpload: 'Déposer le fichier à télécharger',
|
||||
dueDate_title: "Date d'échéance",
|
||||
@@ -195,19 +195,19 @@ export default {
|
||||
enterTaskDescription: 'Saisir la description de la tâche...',
|
||||
events: 'Événements',
|
||||
excludedEvents: 'Événements exclus',
|
||||
expandTaskListsByDefault: null,
|
||||
expandTaskListsByDefault: 'Développer les listes de tâches par défaut',
|
||||
filterByLabels_title: 'Filtrer par étiquettes',
|
||||
filterByMembers_title: 'Filtrer par membres',
|
||||
forPersonalProjects: 'Pour les projets personnels',
|
||||
forTeamBasedProjects: 'Pour les projets basés sur une équipe',
|
||||
forPersonalProjects: 'Pour les projets personnels.',
|
||||
forTeamBasedProjects: 'Pour les projets basés sur une équipe.',
|
||||
fromComputer_title: "Depuis l'ordinateur",
|
||||
fromTrello: 'Depuis Trello',
|
||||
general: 'Général',
|
||||
gradients: 'Dégradés',
|
||||
grid: 'Grille',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: 'Masquer les tâches terminées',
|
||||
hideFromProjectListAndFavorites: 'Masquer de la liste des projets et des favoris',
|
||||
host: null,
|
||||
host: 'Hôte',
|
||||
hours: 'Heures',
|
||||
importBoard_title: 'Importer un tableau',
|
||||
invalidCurrentPassword: 'Mot de passe actuel invalide',
|
||||
@@ -217,20 +217,20 @@ export default {
|
||||
leaveBoard_title: 'Quitter le tableau',
|
||||
leaveProject_title: 'Quitter le projet',
|
||||
limitCardTypesToDefaultOne: 'Restreindre les types de cartes au type par défaut',
|
||||
linkToCard: null,
|
||||
linkToCard: 'Lien vers la carte',
|
||||
list: 'Lister',
|
||||
listActions_title: 'Liste des actions',
|
||||
lists: 'Listes',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate_title: 'Rendre le projet privé',
|
||||
makeProjectShared_title: 'Transformer le projet en projet partagé',
|
||||
managers: 'Responsables',
|
||||
memberActions_title: 'Actions des membres',
|
||||
members: 'Membres',
|
||||
minutes: 'Minutes',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: "Plus d'actions",
|
||||
moreActions_title: "Plus d'actions",
|
||||
moveCard_title: 'Déplacer la carte',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Déplacer la liste',
|
||||
myOwn_title: 'Mes projets privés',
|
||||
name: 'Nom',
|
||||
newEmail: 'Nouvel e-mail',
|
||||
@@ -239,23 +239,24 @@ export default {
|
||||
newVersionAvailable: 'Une nouvelle version est disponible',
|
||||
newestFirst: 'Le plus récent en premier',
|
||||
noBoards: 'Pas de tableau',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Aucune carte trouvée.',
|
||||
noConnectionToServer: 'Pas de connexion au serveur',
|
||||
noLists: 'Pas de liste',
|
||||
noProjects: 'Pas de projet',
|
||||
noUnreadNotifications: 'Aucune notification non lue.',
|
||||
notifications: 'Notifications',
|
||||
oldestFirst: 'Le plus ancien en premier',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Un seul responsable doit rester pour rendre ce projet privé',
|
||||
openBoard_title: 'Ouvrir le tableau',
|
||||
optional_inline: 'optionnel',
|
||||
organization: 'Organisation',
|
||||
others: 'Autres',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Mot de passe défini',
|
||||
phone: 'Téléphone',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA utilise <1><0>Apprise</0></1> pour envoyer des notifications vers plus de 100 services populaires.',
|
||||
port: null,
|
||||
port: 'Port',
|
||||
preferences: 'Préférences',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Conseil: appuyer sur Ctrl-V (Cmd-V sur Mac) pour ajouter une pièce jointe depuis le presse-papiers',
|
||||
@@ -264,7 +265,7 @@ export default {
|
||||
projectNotFound_title: 'Projet introuvable',
|
||||
projectOwner: 'Propriétaire de projet',
|
||||
referenceDataAndKnowledgeStorage: 'Stockage de données de référence et de connaissances.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
rejectUnauthorizedTlsCertificates: 'Rejeter les certificats TLS non autorisés',
|
||||
removeManager_title: 'Supprimer le responsable',
|
||||
removeMember_title: 'Supprimer le membre',
|
||||
role: 'Rôle',
|
||||
@@ -291,7 +292,7 @@ export default {
|
||||
shared: 'Partagé',
|
||||
sharedWithMe_title: 'Partagé avec moi',
|
||||
showOnFrontOfCard: 'Afficher sur le devant de la carte',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Trier la liste',
|
||||
stopwatch: 'Minuteur',
|
||||
story: 'Story',
|
||||
@@ -302,8 +303,8 @@ export default {
|
||||
taskListActions_title: 'Actions de la liste de tâches',
|
||||
taskList_title: 'Liste de tâches',
|
||||
team: "Mes projets d'équipe",
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Conditions',
|
||||
testLog_title: 'Journal de test',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
"Il n'y a pas d'aperçu disponible pour cette pièce jointe.",
|
||||
time: 'Temps',
|
||||
@@ -314,11 +315,12 @@ export default {
|
||||
typeNameToConfirm: 'Saissir le nom pour confirmer.',
|
||||
typeTitleToConfirm: 'Saisir le titre pour confirmer.',
|
||||
unsavedChanges: 'Modifications non enregistrées',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Échec du téléchargement : fichier trop volumineux.',
|
||||
uploadFailedNotEnoughStorageSpace:
|
||||
'Échec du téléchargement : espace de stockage insuffisant.',
|
||||
uploadedImages: 'Images téléchargées',
|
||||
url: 'URL',
|
||||
useSecureConnection: null,
|
||||
useSecureConnection: 'Utiliser une connexion sécurisée',
|
||||
userActions_title: "Actions de l'utilisateur",
|
||||
userAddedCardToList: '<0>{{user}}</0> a ajouté <2>{{card}}</2> à {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> a ajouté cette carte à {{list}}',
|
||||
@@ -331,7 +333,7 @@ export default {
|
||||
userJoinedThisCard: '<0>{{user}}</0> a rejoint cette carte',
|
||||
userLeftCard: '<0>{{user}}</0> a quitté <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> a laissé un nouveau commentaire {{comment}} à <2>{{card}}</2>',
|
||||
'<0>{{user}}</0> a laissé un nouveau commentaire «{{comment}}» à <2>{{card}}</2>',
|
||||
userLeftThisCard: '<0>{{user}}</0> a quitté cette carte',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> a marqué {{task}} comme incomplete dans <4>{{card}}</4>',
|
||||
@@ -415,7 +417,7 @@ export default {
|
||||
deleteUser_title: 'Supprimer l’utilisateur',
|
||||
deleteWebhook: 'Supprimer le webhook',
|
||||
dismissAll: 'Tout rejeter',
|
||||
download: null,
|
||||
download: 'Télécharger',
|
||||
duplicateCard_title: 'Dupliquer la carte',
|
||||
edit: 'Modifier',
|
||||
editColor_title: 'Modifier la couleur',
|
||||
@@ -440,13 +442,13 @@ export default {
|
||||
leaveProject: 'Quitter le projet',
|
||||
logOut_title: 'Se déconnecter',
|
||||
makeCover_title: 'Faire la couverture',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate: 'Rendre le projet privé',
|
||||
makeProjectPrivate_title: 'Rendre le projet privé',
|
||||
makeProjectShared: "Transformer le projet en projet d'équipe",
|
||||
makeProjectShared_title: "Transformer le projet en projet d'équipe",
|
||||
move: 'Déplacer',
|
||||
moveCard_title: 'Déplacer la carte',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Déplacer la liste',
|
||||
remove: 'Supprimer',
|
||||
removeAssignee: 'Retirer le responsable',
|
||||
removeColor: 'Supprimer la couleur',
|
||||
@@ -455,10 +457,10 @@ export default {
|
||||
removeFromProject: 'Supprimer du projet',
|
||||
removeManager: 'Supprimer le responsable',
|
||||
removeMember: 'Supprimer le membre',
|
||||
restoreToList: 'Restauré dans {{list}}',
|
||||
restoreToList: 'Restaurer dans {{list}}',
|
||||
returnToBoard: 'Retourner au tableau',
|
||||
save: 'Sauvegarder',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Envoyer un e-mail de test',
|
||||
showActive: 'Voir les actifs',
|
||||
showAllAttachments: 'Afficher toutes les pièces jointes ({{hidden}} masquées)',
|
||||
showCardsWithThisUser: 'Voir les cartes avec cet utilisateur',
|
||||
|
||||
@@ -2,15 +2,16 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'La limite d’utilisateurs actifs a été atteinte',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
"Connexion administrateur requise pour initialiser l'instance",
|
||||
emailAlreadyInUse: 'E-mail déjà utilisé',
|
||||
emailOrUsername: "E-mail ou nom d'utilisateur",
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: "J'ai lu et j'accepte ces conditions",
|
||||
invalidCredentials: 'Identifiants invalides',
|
||||
invalidEmailOrUsername: "E-mail ou nom d'utilisateur invalide",
|
||||
invalidPassword: 'Mot de passe invalide',
|
||||
logIn_title: 'Se connecter',
|
||||
noInternetConnection: 'Aucune connexion Internet',
|
||||
noInternetConnection: 'Aucune connexion internet',
|
||||
or: 'Ou',
|
||||
pageNotFound_title: 'Page non trouvée',
|
||||
password: 'Mot de passe',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Annuler et fermer',
|
||||
continue: 'Continuer',
|
||||
logIn: 'Se connecter',
|
||||
logInWithSso: "Se connecter avec l'authentification unique",
|
||||
},
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"bundle": {
|
||||
"error-title": "Erreur dans l'éditeur markdown",
|
||||
"settings_wysiwyg": "Éditeur visuel (wysiwyg)",
|
||||
"settings_markup": "Syntaxe Markdown",
|
||||
"settings_markup": "Syntaxe markdown",
|
||||
"markup_placeholder": "Entrez la syntaxe markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
|
||||
@@ -37,7 +37,7 @@ export default {
|
||||
administration: 'Adminisztráció',
|
||||
all: 'Összes',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Az összes változás automatikusan mentésre kerül a kapcsolat helyreállása után.',
|
||||
'Az összes változás automatikusan mentésre kerül<br />a kapcsolat helyreállása után.',
|
||||
alphabetically: 'ABC sorrendben',
|
||||
alwaysDisplayCardCreator: 'Mindig jelenjen meg a kártya készítője',
|
||||
archive: 'Archív',
|
||||
@@ -58,7 +58,8 @@ export default {
|
||||
areYouSureYouWantToDeleteThisCustomField: 'Biztosan törli ezt az egyedi mezőt?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: 'Biztosan törli ezt az egyedi mezőcsoportot?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Biztosan törölni szeretné ezt a címkét?',
|
||||
areYouSureYouWantToDeleteThisList: 'Biztosan törölni szeretné ezt a listát?',
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Biztosan törölni szeretné ezt a listát? Minden kártya a lomtárba kerül.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Biztosan törli ezt az értesítési szolgáltatást?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Biztosan törölni szeretné ezt a projektet?',
|
||||
@@ -108,17 +109,18 @@ export default {
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'A listán lévő kártyák készen állnak a munkára.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>Kattintson ide</0> vagy frissítse az oldalt a frissítéshez.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Kliens hostname az EHLO-ban',
|
||||
closed: 'Lezárt',
|
||||
color: 'Szín',
|
||||
comments: 'Megjegyzések',
|
||||
contentExceedsLimit: 'A tartalom meghaladja a(z) {{limit}} korlátot.',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: 'A melléklet tartalma túl nagy a megjelenítéshez.',
|
||||
copy_inline: 'másolás',
|
||||
copy_inline: 'másolat',
|
||||
createBoard_title: 'Tábla létrehozása',
|
||||
createCustomFieldGroup_title: 'Egyedi mezőcsoport létrehozása',
|
||||
createLabel_title: 'Címke létrehozása',
|
||||
createNewOneOrSelectExistingOne: 'Hozzon létre egy újat, vagy válasszon ki egy meglévőt.',
|
||||
createNewOneOrSelectExistingOne:
|
||||
'Hozzon létre egy újat, vagy válasszon ki<br />egy meglévőt.',
|
||||
createProject_title: 'Projekt létrehozása',
|
||||
createTextFile_title: 'Szövegfájl létrehozása',
|
||||
creator: 'Létrehozta',
|
||||
@@ -131,7 +133,7 @@ export default {
|
||||
date: 'Dátum',
|
||||
deactivateUser_title: 'Felhasználó inaktiválása',
|
||||
defaultCardType_title: 'Alapértelmezett kártyatípus',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'Alapértelmezett "feladó"',
|
||||
defaultView_title: 'Alapértelmezett nézet',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'A projekt törléséhez törölni kell az összes táblát.',
|
||||
@@ -153,7 +155,6 @@ export default {
|
||||
deleteWebhook_title: 'Webhook törlése',
|
||||
deletedUser_title: 'Törölt felhasználó',
|
||||
description: 'Leírás',
|
||||
detectAutomatically: 'Automatikus érzékelés',
|
||||
display: 'Megjelenítés',
|
||||
dropFileToUpload: 'Dobja ide a fájlt a feltöltéshez',
|
||||
dueDate_title: 'Esedékesség dátuma',
|
||||
@@ -184,7 +185,7 @@ export default {
|
||||
enterTaskDescription: 'Adja meg a feladat leírását...',
|
||||
events: 'Események',
|
||||
excludedEvents: 'Kizárt események',
|
||||
expandTaskListsByDefault: null,
|
||||
expandTaskListsByDefault: 'Feladatlisták alapértelmezett kibontása',
|
||||
filterByLabels_title: 'Szűrés címkék alapján',
|
||||
filterByMembers_title: 'Szűrés tagok alapján',
|
||||
forPersonalProjects: 'Személyes projektekhez.',
|
||||
@@ -196,7 +197,7 @@ export default {
|
||||
grid: 'Rács',
|
||||
hideCompletedTasks: 'Befejezett feladatok elrejtése',
|
||||
hideFromProjectListAndFavorites: 'Elrejtés a projektlistából és a kedvencekből',
|
||||
host: null,
|
||||
host: 'Host',
|
||||
hours: 'Órák',
|
||||
importBoard_title: 'Tábla importálása',
|
||||
invalidCurrentPassword: 'Érvénytelen jelenlegi jelszó',
|
||||
@@ -219,7 +220,7 @@ export default {
|
||||
moreActions: 'További műveletek',
|
||||
moreActions_title: 'További műveletek',
|
||||
moveCard_title: 'Kártya áthelyezése',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Lista áthelyezése',
|
||||
myOwn_title: 'Saját',
|
||||
name: 'Név',
|
||||
newEmail: 'Új e-mail',
|
||||
@@ -241,11 +242,11 @@ export default {
|
||||
optional_inline: 'opcionális',
|
||||
organization: 'Szervezet',
|
||||
others: 'Egyebek',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Jelszó beállítva',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'A PLANKA az Apprise szolgáltatást használja több mint 100 népszerű szolgáltatás értesítéseinek küldésére.',
|
||||
port: null,
|
||||
'A PLANKA az <1><0>Apprise</0></1> szolgáltatást használja több mint 100 népszerű szolgáltatás értesítéseinek küldésére.',
|
||||
port: 'Port',
|
||||
preferences: 'Beállítások',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Tipp: nyomja meg a Ctrl-V (Cmd-V a Mac-en) billentyűkombinációt a vágólapról történő melléklet hozzáadásához.',
|
||||
@@ -254,7 +255,7 @@ export default {
|
||||
projectNotFound_title: 'Projekt nem található',
|
||||
projectOwner: 'Projekt tulajdonos',
|
||||
referenceDataAndKnowledgeStorage: 'Referenciaadatok és tudástár.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
rejectUnauthorizedTlsCertificates: 'Jogosulatlan TLS tanúsítványok elutasítása',
|
||||
removeManager_title: 'Menedzser eltávolítása',
|
||||
removeMember_title: 'Tag eltávolítása',
|
||||
role: 'Szerepkör',
|
||||
@@ -281,7 +282,7 @@ export default {
|
||||
shared: 'Megosztott',
|
||||
sharedWithMe_title: 'Velem megosztva',
|
||||
showOnFrontOfCard: 'Megjelenítés a kártya borítóján',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Rendezés listában',
|
||||
stopwatch: 'Stopper',
|
||||
story: 'Story',
|
||||
@@ -293,7 +294,7 @@ export default {
|
||||
taskList_title: 'Feladatlista',
|
||||
team: 'Csapat',
|
||||
terms: 'Felhasználási feltételek',
|
||||
testLog_title: null,
|
||||
testLog_title: 'Teszt napló',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Nincs elérhető előnézet ehhez a melléklethez.',
|
||||
time: 'Idő',
|
||||
title: 'Cím',
|
||||
@@ -303,11 +304,11 @@ export default {
|
||||
typeNameToConfirm: 'Írja be a nevet a megerősítéshez.',
|
||||
typeTitleToConfirm: 'Írja be a címet a megerősítéshez.',
|
||||
unsavedChanges: 'Mentetlen változtatások',
|
||||
uploadFailedFileIsTooBig: 'Feltöltési hiba: a fájl túl nagy',
|
||||
uploadFailedNotEnoughStorageSpace: 'Feltöltési hiba: nincs elég szabad tárhely',
|
||||
uploadFailedFileIsTooBig: 'Feltöltési hiba: a fájl túl nagy.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Feltöltési hiba: nincs elég szabad tárhely.',
|
||||
uploadedImages: 'Feltöltött képek',
|
||||
url: 'URL',
|
||||
useSecureConnection: null,
|
||||
useSecureConnection: 'Biztonságos kapcsolat használata',
|
||||
userActions_title: 'Felhasználói műveletek',
|
||||
userAddedCardToList:
|
||||
'<0>{{user}}</0> hozzáadta a(z) <2>{{card}}</2> kártyát ehhez a listához: {{list}}',
|
||||
@@ -334,7 +335,7 @@ export default {
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> megemlítette Önt a(z) «{{comment}}» megjegyzésben a(z) <2>{{card}}</2> kártyán',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> áthelyezte ezt a kártyát innen: {{fromList}} ide: {{toList}}',
|
||||
'<0>{{user}}</0> áthelyezte <2>{{card}}</2> kártyát innen: {{fromList}} ide: {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> áthelyezte ezt a kártyát innen: {{fromList}} ide: {{toList}}',
|
||||
userRemovedUserFromCard:
|
||||
@@ -443,7 +444,7 @@ export default {
|
||||
makeProjectShared_title: 'Projekt megosztása',
|
||||
move: 'Áthelyezés',
|
||||
moveCard_title: 'Kártya áthelyezése',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Lista áthelyezése',
|
||||
remove: 'Eltávolítás',
|
||||
removeAssignee: 'Felelős eltávolítása',
|
||||
removeColor: 'Szín eltávolítása',
|
||||
@@ -455,7 +456,7 @@ export default {
|
||||
restoreToList: 'Visszaállítás ide: {{list}}',
|
||||
returnToBoard: 'Vissza a táblához',
|
||||
save: 'Mentés',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Teszt e-mail küldése',
|
||||
showActive: 'Aktívak megjelenítése',
|
||||
showAllAttachments: 'Összes melléklet megjelenítése ({{hidden}} rejtve)',
|
||||
showCardsWithThisUser: 'Kártyák megjelenítése ezzel a felhasználóval',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Aktív felhasználók korlátja elérve',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Rendszergazdai bejelentkezés szükséges a példány inicializálásához',
|
||||
emailAlreadyInUse: 'Az e-mail cím már használatban van',
|
||||
emailOrUsername: 'E-mail vagy felhasználó',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Elolvastam és elfogadom ezeket a feltételeket',
|
||||
invalidCredentials: 'Érvénytelen hitelesítő adatok',
|
||||
invalidEmailOrUsername: 'Érvénytelen e-mail vagy felhasználó',
|
||||
invalidPassword: 'Érvénytelen jelszó',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Bejelentkezés',
|
||||
noInternetConnection: 'Nincs internet kapcsolat',
|
||||
or: null,
|
||||
or: 'Vagy',
|
||||
pageNotFound_title: 'Az oldal nem található',
|
||||
password: 'Jelszó',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Működteti a <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'A szerverkapcsolat sikertelen',
|
||||
unknownError: 'Ismeretlen hiba, próbáld meg később újra',
|
||||
useSingleSignOn: 'Egyszeri bejelentkezés használata',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Mégse és bezárás',
|
||||
continue: 'Folytatás',
|
||||
logIn: 'Belépés',
|
||||
logInWithSso: 'Belépés SSO-val',
|
||||
},
|
||||
|
||||
@@ -21,429 +21,451 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Tentang PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Token akses',
|
||||
account: 'Akun',
|
||||
actions: 'Tindakan',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
addAttachment_title: 'Tambah Lampiran',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addManager_title: 'Tambahkan Manager',
|
||||
addMember_title: 'Tambahkan Anggota',
|
||||
addTaskList_title: null,
|
||||
addUser_title: 'Tambahkan Pengguna',
|
||||
admin: null,
|
||||
administration: null,
|
||||
activateUser_title: 'Aktifkan pengguna',
|
||||
active: 'Aktif',
|
||||
addAttachment_title: 'Tambah lampiran',
|
||||
addCustomFieldGroup_title: 'Tambah grup bidang kustom',
|
||||
addCustomField_title: 'Tambah bidang kustom',
|
||||
addManager_title: 'Tambahkan manager',
|
||||
addMember_title: 'Tambahkan anggota',
|
||||
addTaskList_title: 'Tambah daftar tugas',
|
||||
addUser_title: 'Tambahkan pengguna',
|
||||
admin: 'Admin',
|
||||
administration: 'Administrasi',
|
||||
all: 'Semua',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Semua perubahan akan disimpan<br />setelah koneksi pulih.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Berdasarkan abjad',
|
||||
alwaysDisplayCardCreator: 'Selalu tampilkan pembuat kartu',
|
||||
archive: 'Arsip',
|
||||
archiveCard_title: 'Arsipkan kartu',
|
||||
archiveCards_title: 'Arsipkan kartu',
|
||||
areYouSureYouWantToActivateThisUser: 'Apakah Anda yakin ingin mengaktifkan pengguna ini?',
|
||||
areYouSureYouWantToArchiveCards: 'Apakah Anda yakin ingin mengarsipkan kartu-kartu ini?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Apakah Anda yakin ingin mengarsipkan kartu ini?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Apakah Anda yakin ingin menetapkan manajer proyek ini sebagai pemilik?',
|
||||
areYouSureYouWantToDeactivateThisUser: 'Apakah Anda yakin ingin menonaktifkan pengguna ini?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Apakah anda ingin menghapus lampiran ini?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Apakah Anda yakin ingin menghapus gambar latar belakang ini?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Apakah anda ingin menghapus papan ini?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Apakah anda ingin menghapus kartu ini?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Apakah Anda yakin ingin menghapus kartu ini selamanya?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Apakah anda ingin menghapus komentar ini?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'Apakah Anda yakin ingin menghapus bidang kustom ini?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Apakah Anda yakin ingin menghapus grup bidang kustom ini?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Apakah anda ingin menghapus label ini?',
|
||||
areYouSureYouWantToDeleteThisList: 'Apakah anda ingin menghapus daftar ini?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Apakah anda ingin menghapus daftar ini? Semua kartu akan dipindahkan ke sampah.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Apakah Anda yakin ingin menghapus layanan notifikasi ini?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Apakah anda ingin menghapus proyek ini?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Apakah anda ingin menghapus tugas ini?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Apakah Anda yakin ingin menghapus daftar tugas ini?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Apakah anda ingin menghapus pengguna ini?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Apakah Anda yakin ingin menghapus webhook ini?',
|
||||
areYouSureYouWantToEmptyTrash: 'Apakah Anda yakin ingin mengosongkan sampah?',
|
||||
areYouSureYouWantToLeaveBoard: 'Apakah anda ingin keluar dari papan ini?',
|
||||
areYouSureYouWantToLeaveProject: 'Apakah anda ingin keluar dari proyek ini?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Apakah Anda yakin ingin menjadikan proyek ini pribadi?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Apakah Anda yakin ingin menjadikan proyek ini bersama?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Apakah anda ingin menghapus manajer ini dari papan ini?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Apakah anda ingin menghapus anggota ini dari papan ini?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Tetapkan sebagai pemilik',
|
||||
atLeastOneListMustBePresent: 'Setidaknya satu daftar harus ada',
|
||||
attachment: 'Lampiran',
|
||||
attachments: 'Lampiran-lampiran',
|
||||
authentication: 'Autentikasi',
|
||||
background: 'Latar belakang',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Bidang kustom dasar',
|
||||
baseGroup: 'Grup dasar',
|
||||
board: 'Papan',
|
||||
boardActions_title: null,
|
||||
boardNotFound_title: 'Papan Tidak Ditemukan',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardActions_title: 'Aksi papan',
|
||||
boardNotFound_title: 'Papan tidak ditemukan',
|
||||
boardSubscribed: 'Papan berlangganan',
|
||||
boardUser: 'Pengguna papan',
|
||||
byCreationTime: 'Berdasarkan waktu pembuatan',
|
||||
byDefault: 'Secara default',
|
||||
byDueDate: 'Berdasarkan tanggal jatuh tempo',
|
||||
canBeInvitedToWorkInBoards: 'Dapat diundang untuk bekerja di papan.',
|
||||
canComment: 'Bisa berkomentar',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Dapat membuat proyek sendiri dan diundang untuk bekerja di proyek lain.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Dapat mengedit tata letak papan dan menetapkan anggota ke kartu.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Dapat mengelola pengaturan sistem dan bertindak sebagai pemilik proyek.',
|
||||
canOnlyViewBoard: 'Hanya dapat menglihat isi papan.',
|
||||
cardActions_title: 'Aksi Kartu',
|
||||
cardNotFound_title: 'Kartu Tidak Ditemukan',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardActions_title: 'Aksi kartu',
|
||||
cardNotFound_title: 'Kartu tidak ditemukan',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Kartu di daftar ini tersedia untuk semua anggota papan.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Kartu di daftar ini sudah selesai dan siap diarsipkan.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Kartu di daftar ini siap untuk dikerjakan.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>Klik di sini</0> atau segarkan halaman untuk memperbarui.',
|
||||
clientHostnameInEhlo: 'Nama host klien di EHLO',
|
||||
closed: 'Ditutup',
|
||||
color: 'Warna',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
createBoard_title: 'Buat Papan',
|
||||
createCustomFieldGroup_title: null,
|
||||
createLabel_title: 'Buat Label',
|
||||
createNewOneOrSelectExistingOne: 'Create a new one or select<br />an existing one.',
|
||||
createProject_title: 'Buat Proyek',
|
||||
createTextFile_title: 'Buat Berkas Teks',
|
||||
creator: null,
|
||||
comments: 'Komentar',
|
||||
contentExceedsLimit: 'Konten melebihi {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Konten lampiran ini terlalu besar untuk ditampilkan.',
|
||||
copy_inline: 'salinan',
|
||||
createBoard_title: 'Buat papan',
|
||||
createCustomFieldGroup_title: 'Buat grup bidang kustom',
|
||||
createLabel_title: 'Buat label',
|
||||
createNewOneOrSelectExistingOne: 'Buat yang baru atau pilih<br />yang sudah ada.',
|
||||
createProject_title: 'Buat proyek',
|
||||
createTextFile_title: 'Buat berkas teks',
|
||||
creator: 'Pembuat',
|
||||
currentPassword: 'Kata sandi sekarang',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
dangerZone_title: 'Zona Berbahaya',
|
||||
customFieldGroup_title: 'Grup bidang kustom',
|
||||
customFieldGroups_title: 'Grup bidang kustom',
|
||||
customField_title: 'Bidang kustom',
|
||||
customFields_title: 'Bidang kustom',
|
||||
dangerZone_title: 'Zona berbahaya',
|
||||
date: 'Tanggal',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deleteAttachment_title: 'Hapus Lampiran',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBoard_title: 'Hapus Papan',
|
||||
deleteCardForever_title: null,
|
||||
deleteCard_title: 'Hapus Kartu',
|
||||
deleteComment_title: 'Hapus Komentar',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteLabel_title: 'Hapus Label',
|
||||
deleteList_title: 'Hapus Daftar',
|
||||
deleteNotificationService_title: null,
|
||||
deleteProject_title: 'Hapus Proyek',
|
||||
deleteTaskList_title: null,
|
||||
deleteTask_title: 'Hapus Tugas',
|
||||
deleteUser_title: 'Hapus Pengguna',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deactivateUser_title: 'Nonaktifkan pengguna',
|
||||
defaultCardType_title: 'Tipe kartu default',
|
||||
defaultFrom: 'Default dari',
|
||||
defaultView_title: 'Tampilan default',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Hapus semua papan untuk dapat menghapus proyek ini',
|
||||
deleteAttachment_title: 'Hapus lampiran',
|
||||
deleteBackgroundImage_title: 'Hapus gambar latar belakang',
|
||||
deleteBoard_title: 'Hapus papan',
|
||||
deleteCardForever_title: 'Hapus kartu selamanya',
|
||||
deleteCard_title: 'Hapus kartu',
|
||||
deleteComment_title: 'Hapus komentar',
|
||||
deleteCustomFieldGroup_title: 'Hapus grup bidang kustom',
|
||||
deleteCustomField_title: 'Hapus bidang kustom',
|
||||
deleteLabel_title: 'Hapus label',
|
||||
deleteList_title: 'Hapus daftar',
|
||||
deleteNotificationService_title: 'Hapus layanan notifikasi',
|
||||
deleteProject_title: 'Hapus proyek',
|
||||
deleteTaskList_title: 'Hapus daftar tugas',
|
||||
deleteTask_title: 'Hapus tugas',
|
||||
deleteUser_title: 'Hapus pengguna',
|
||||
deleteWebhook_title: 'Hapus webhook',
|
||||
deletedUser_title: 'Pengguna yang dihapus',
|
||||
description: 'Deskripsi',
|
||||
detectAutomatically: 'Deteksi otomatis',
|
||||
display: null,
|
||||
display: 'Tampilan',
|
||||
dropFileToUpload: 'Tarik berkas untuk menggungah',
|
||||
dueDate_title: 'Tenggat Waktu',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
editAttachment_title: 'Ubah Lampiran',
|
||||
editAvatar_title: 'Ubah Avatar',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editDueDate_title: 'Ubah Tenggat Waktu',
|
||||
editEmail_title: 'Ubah E-mail',
|
||||
editInformation_title: 'Ubah Informasi',
|
||||
editLabel_title: 'Ubah Label',
|
||||
editPassword_title: 'Ubah Kata Sandi',
|
||||
editPermissions_title: 'Ubah Izin',
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Ubah Stopwatch',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Ubah Username',
|
||||
dueDate_title: 'Tenggat waktu',
|
||||
dynamicAndUnevenlySpacedLayout: 'Tata letak dinamis dan tidak merata.',
|
||||
editAttachment_title: 'Ubah lampiran',
|
||||
editAvatar_title: 'Ubah avatar',
|
||||
editColor_title: 'Ubah warna',
|
||||
editCustomFieldGroup_title: 'Ubah grup bidang kustom',
|
||||
editCustomField_title: 'Ubah bidang kustom',
|
||||
editDueDate_title: 'Ubah tenggat waktu',
|
||||
editEmail_title: 'Ubah e-mail',
|
||||
editInformation_title: 'Ubah informasi',
|
||||
editLabel_title: 'Ubah label',
|
||||
editPassword_title: 'Ubah kata sandi',
|
||||
editPermissions_title: 'Ubah izin',
|
||||
editRole_title: 'Ubah peran',
|
||||
editStopwatch_title: 'Ubah stopwatch',
|
||||
editType_title: 'Ubah tipe',
|
||||
editUsername_title: 'Ubah username',
|
||||
editor: 'Pengubah',
|
||||
editors: null,
|
||||
editors: 'Editor',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Kosongkan sampah',
|
||||
enterCardTitle: 'Masukkan judul kartu...',
|
||||
enterDescription: 'Masukkan deskripsi...',
|
||||
enterFilename: 'Masukkan nama berkas...',
|
||||
enterListTitle: 'Masukkan judul daftar...',
|
||||
enterTaskDescription: 'Masukkan deskripsi tugas...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
filterByLabels_title: 'Saring berdasarkan Label',
|
||||
filterByMembers_title: 'Saring berdasarkan Anggota',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
fromComputer_title: 'Dari Komputer',
|
||||
events: 'Peristiwa',
|
||||
excludedEvents: 'Peristiwa yang dikecualikan',
|
||||
expandTaskListsByDefault: 'Perluas daftar tugas secara default',
|
||||
filterByLabels_title: 'Saring berdasarkan label',
|
||||
filterByMembers_title: 'Saring berdasarkan anggota',
|
||||
forPersonalProjects: 'Untuk proyek pribadi.',
|
||||
forTeamBasedProjects: 'Untuk proyek berbasis tim.',
|
||||
fromComputer_title: 'Dari komputer',
|
||||
fromTrello: 'Dari Trello',
|
||||
general: 'Umum',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Gradien',
|
||||
grid: 'Kisi',
|
||||
hideCompletedTasks: 'Sembunyikan tugas yang selesai',
|
||||
hideFromProjectListAndFavorites: 'Sembunyikan dari daftar proyek dan favorit',
|
||||
host: 'Host',
|
||||
hours: 'Jam',
|
||||
importBoard_title: 'Impor Papan',
|
||||
importBoard_title: 'Impor papan',
|
||||
invalidCurrentPassword: 'Kata sandi saat ini tidak valid',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'Label',
|
||||
language: 'Bahasa',
|
||||
leaveBoard_title: 'Keluar dari Papan',
|
||||
leaveProject_title: 'Keluar dari Proyek',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
leaveBoard_title: 'Keluar dari papan',
|
||||
leaveProject_title: 'Keluar dari proyek',
|
||||
limitCardTypesToDefaultOne: 'Batasi tipe kartu ke default',
|
||||
linkToCard: 'Tautan ke kartu',
|
||||
list: 'Daftar',
|
||||
listActions_title: 'Aksi Daftar',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
listActions_title: 'Aksi daftar',
|
||||
lists: 'Daftar',
|
||||
makeProjectPrivate_title: 'Jadikan proyek pribadi',
|
||||
makeProjectShared_title: 'Jadikan proyek bersama',
|
||||
managers: 'Manager',
|
||||
memberActions_title: null,
|
||||
memberActions_title: 'Aksi anggota',
|
||||
members: 'Anggota',
|
||||
minutes: 'Menit',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moveCard_title: 'Pindahkan Kartu',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moreActions: 'Aksi lainnya',
|
||||
moreActions_title: 'Aksi lainnya',
|
||||
moveCard_title: 'Pindahkan kartu',
|
||||
moveList_title: 'Pindahkan daftar',
|
||||
myOwn_title: 'Milik saya',
|
||||
name: 'Nama',
|
||||
newEmail: 'E-mail baru',
|
||||
newPassword: 'Kata sandi baru',
|
||||
newUsername: 'Username baru',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: 'Versi baru tersedia',
|
||||
newestFirst: 'Terbaru dulu',
|
||||
noBoards: 'Tidak ada papan',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Tidak ada kartu ditemukan.',
|
||||
noConnectionToServer: 'Tidak ada koneksi ke server',
|
||||
noLists: 'Tidak ada daftar',
|
||||
noProjects: 'Tidak ada projek',
|
||||
noUnreadNotifications: 'Tiada notifikasi yang belum dibaca.',
|
||||
notifications: 'Notifikasi',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
openBoard_title: 'Buka Papan',
|
||||
oldestFirst: 'Terlama dulu',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Hanya satu manajer yang harus tersisa untuk menjadikan proyek ini pribadi',
|
||||
openBoard_title: 'Buka papan',
|
||||
optional_inline: 'opsional',
|
||||
organization: 'Organisasi',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Lainnya',
|
||||
passwordIsSet: 'Kata sandi telah diatur',
|
||||
phone: 'Ponsel',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA menggunakan <1><0>Apprise</0></1> untuk mengirim notifikasi ke lebih dari 100 layanan populer.',
|
||||
port: 'Port',
|
||||
preferences: 'Preferensi',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Tip: tekan Ctrl-V (Cmd-V di Mac) untuk menambahkan lampiran dari papan klip.',
|
||||
private: null,
|
||||
private: 'Pribadi',
|
||||
project: 'Proyek',
|
||||
projectNotFound_title: 'Proyek Tidak Ditemukan',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
removeManager_title: 'Hapus Manager',
|
||||
removeMember_title: 'Hapus Anggota',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
projectNotFound_title: 'Proyek tidak ditemukan',
|
||||
projectOwner: 'Pemilik proyek',
|
||||
referenceDataAndKnowledgeStorage: 'Penyimpanan data referensi dan pengetahuan.',
|
||||
rejectUnauthorizedTlsCertificates: 'Tolak sertifikat TLS yang tidak sah',
|
||||
removeManager_title: 'Hapus manager',
|
||||
removeMember_title: 'Hapus anggota',
|
||||
role: 'Peran',
|
||||
searchCards: 'Cari kartu...',
|
||||
searchCustomFieldGroups: 'Cari grup bidang kustom...',
|
||||
searchCustomFields: 'Cari bidang kustom...',
|
||||
searchLabels: 'Cari label...',
|
||||
searchLists: null,
|
||||
searchLists: 'Cari daftar...',
|
||||
searchMembers: 'Cari anggota...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'Cari proyek...',
|
||||
searchUsers: 'Cari pengguna...',
|
||||
seconds: 'Detik',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Pilih penerima tugas',
|
||||
selectBoard: 'Pilih papan',
|
||||
selectList: 'Pilih daftar',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectPermissions_title: 'Pilih Izin',
|
||||
selectListToRestoreThisCard: 'Pilih daftar untuk memulihkan kartu ini',
|
||||
selectOrder_title: 'Pilih urutan',
|
||||
selectPermissions_title: 'Pilih izin',
|
||||
selectProject: 'Pilih proyek',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Pilih peran',
|
||||
selectType_title: 'Pilih tipe',
|
||||
sequentialDisplayOfCards: 'Tampilan kartu berurutan.',
|
||||
settings: 'Setelan',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: 'Bersama',
|
||||
sharedWithMe_title: 'Dibagikan dengan saya',
|
||||
showOnFrontOfCard: 'Tampilkan di depan kartu',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Urutkan daftar',
|
||||
stopwatch: 'Stopwatch',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Cerita',
|
||||
subscribeToCardWhenCommenting: 'Berlangganan kartu saat berkomentar',
|
||||
subscribeToMyOwnCardsByDefault: 'Berlangganan kartu saya sendiri secara default',
|
||||
taskActions_title: 'Aksi Tugas',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskActions_title: 'Aksi tugas',
|
||||
taskAssignmentAndProjectCompletion: 'Penugasan tugas dan penyelesaian proyek.',
|
||||
taskListActions_title: 'Aksi daftar tugas',
|
||||
taskList_title: 'Daftar tugas',
|
||||
team: 'Tim',
|
||||
terms: 'Ketentuan',
|
||||
testLog_title: 'Log uji',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Tidak ada pratinjau yang tersedia untuk lampiran ini.',
|
||||
time: 'Waktu',
|
||||
title: 'Judul',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
userActions_title: 'Aksi Pengguna',
|
||||
userAddedCardToList: null,
|
||||
trash: 'Sampah',
|
||||
trashHasBeenSuccessfullyEmptied: 'Sampah telah berhasil dikosongkan.',
|
||||
turnOffRecentCardHighlighting: 'Matikan penyorotan kartu terbaru',
|
||||
typeNameToConfirm: 'Ketik nama untuk mengonfirmasi.',
|
||||
typeTitleToConfirm: 'Ketik judul untuk mengonfirmasi.',
|
||||
unsavedChanges: 'Perubahan yang belum disimpan',
|
||||
uploadFailedFileIsTooBig: 'Unggahan gagal - file terlalu besar.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Unggahan gagal - ruang penyimpanan tidak cukup.',
|
||||
uploadedImages: 'Gambar yang diunggah',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Gunakan koneksi aman',
|
||||
userActions_title: 'Aksi pengguna',
|
||||
userAddedCardToList: '<0>{{user}}</0> menambahkan <2>{{card}}</2> ke {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> menambahkan kartu ini ke {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> menambahkan {{addedUser}} ke <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> menambahkan {{addedUser}} ke kartu ini',
|
||||
userAddedYouToCard: '<0>{{user}}</0> menambahkan Anda ke <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> menyelesaikan {{task}} di <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> menyelesaikan {{task}} di kartu ini',
|
||||
userJoinedCard: '<0>{{user}}</0> bergabung dengan <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> bergabung dengan kartu ini',
|
||||
userLeftCard: '<0>{{user}}</0> meninggalkan <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard: '<0>{{user}}</0> mengomentari «{{comment}}» di <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> meninggalkan kartu ini',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> menandai {{task}} sebagai belum selesai di <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> menandai {{task}} sebagai belum selesai di kartu ini',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> menyebut Anda dalam komentar «{{comment}}» di <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> memindahkan <2>{{card}}</2> dari {{fromList}} ke {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> memindahkan kartu ini dari {{fromList}} ke {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard:
|
||||
'<0>{{actorUser}}</0> menghapus {{removedUser}} dari <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> menghapus {{removedUser}} dari kartu ini',
|
||||
username: 'Username',
|
||||
users: 'Pengguna',
|
||||
viewer: 'Penglihat',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'Penglihat',
|
||||
visualTaskManagementWithLists: 'Manajemen tugas visual dengan daftar.',
|
||||
webhooks: 'Webhook',
|
||||
withoutBaseGroup: 'Tanpa grup dasar',
|
||||
writeComment: 'Tuliskan komentar...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Aktifkan pengguna',
|
||||
activateUser_title: 'Aktifkan pengguna',
|
||||
addAnotherCard: 'Tambahkan kartu lain',
|
||||
addAnotherList: 'Tambahkan daftar lain',
|
||||
addAnotherTask: 'Tambahkan aksi lain',
|
||||
addCard: 'Tambah kartu',
|
||||
addCard_title: 'Tambah Kartu',
|
||||
addCard_title: 'Tambah kartu',
|
||||
addComment: 'Tambah komentar',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Tambah bidang kustom',
|
||||
addCustomFieldGroup: 'Tambah grup bidang kustom',
|
||||
addList: 'Tambah daftar',
|
||||
addMember: 'Tambah anggota',
|
||||
addMoreDetailedDescription: 'Tambahkan deskripsi yang lebih detail',
|
||||
addTask: 'Tambah tugas',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Tambah daftar tugas',
|
||||
addToCard: 'Tambahkan ke kartu',
|
||||
addUser: 'Tambah pengguna',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Tambah webhook',
|
||||
archive: 'Arsip',
|
||||
archiveCard: 'Arsipkan kartu',
|
||||
archiveCard_title: 'Arsipkan kartu',
|
||||
archiveCards: 'Arsipkan kartu',
|
||||
archiveCards_title: 'Arsipkan kartu',
|
||||
assignAsOwner: 'Tetapkan sebagai pemilik',
|
||||
cancel: 'Batal',
|
||||
createBoard: 'Tambah papan',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Buat grup bidang kustom',
|
||||
createFile: 'Tambah berkas',
|
||||
createLabel: 'Tambah label',
|
||||
createNewLabel: 'Tambah label baru',
|
||||
createProject: 'Tambah proyek',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Nonaktifkan pengguna',
|
||||
deactivateUser_title: 'Nonaktifkan pengguna',
|
||||
delete: 'Hapus',
|
||||
deleteAttachment: 'Hapus lampiran',
|
||||
deleteAvatar: 'Hapus avatar',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Hapus gambar latar belakang',
|
||||
deleteBoard: 'Hapus papan',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Hapus papan',
|
||||
deleteCard: 'Hapus kartu',
|
||||
deleteCardForever: null,
|
||||
deleteCard_title: 'Hapus Kartu',
|
||||
deleteCardForever: 'Hapus kartu selamanya',
|
||||
deleteCard_title: 'Hapus kartu',
|
||||
deleteComment: 'Hapus komentar',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Hapus bidang kustom',
|
||||
deleteCustomFieldGroup: 'Hapus grup bidang kustom',
|
||||
deleteForever_title: 'Hapus selamanya',
|
||||
deleteGroup: 'Hapus grup',
|
||||
deleteLabel: 'Hapus labek',
|
||||
deleteList: 'Hapus daftar',
|
||||
deleteList_title: 'Hapus Daftar',
|
||||
deleteNotificationService: null,
|
||||
deleteList_title: 'Hapus daftar',
|
||||
deleteNotificationService: 'Hapus layanan notifikasi',
|
||||
deleteProject: 'Hapus proyek',
|
||||
deleteProject_title: 'Hapus Proyek',
|
||||
deleteProject_title: 'Hapus proyek',
|
||||
deleteTask: 'Hapus tugas',
|
||||
deleteTaskList: null,
|
||||
deleteTask_title: 'Hapus Tugas',
|
||||
deleteTaskList: 'Hapus daftar tugas',
|
||||
deleteTask_title: 'Hapus tugas',
|
||||
deleteUser: 'Hapus pengguna',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: 'Hapus pengguna',
|
||||
deleteWebhook: 'Hapus webhook',
|
||||
dismissAll: 'Tutup semua',
|
||||
download: 'Unduh',
|
||||
duplicateCard_title: 'Duplikat kartu',
|
||||
edit: 'Ubah',
|
||||
editColor_title: null,
|
||||
editDescription_title: 'Ubdah Deskripsi',
|
||||
editDueDate_title: 'Ubah Tenggat Waktu',
|
||||
editEmail_title: 'Ubah E-mail',
|
||||
editGroup: null,
|
||||
editInformation_title: 'Ubah Informasi',
|
||||
editPassword_title: 'Ubah Kata Sandi',
|
||||
editColor_title: 'Ubah warna',
|
||||
editDescription_title: 'Ubah deskripsi',
|
||||
editDueDate_title: 'Ubah tenggat waktu',
|
||||
editEmail_title: 'Ubah e-mail',
|
||||
editGroup: 'Ubah grup',
|
||||
editInformation_title: 'Ubah informasi',
|
||||
editPassword_title: 'Ubah kata sandi',
|
||||
editPermissions: 'Ubah izin',
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Ubah Stopwatch',
|
||||
editTitle_title: 'Ubah Judul',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Ubah Username',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
editRole_title: 'Ubah peran',
|
||||
editStopwatch_title: 'Ubah stopwatch',
|
||||
editTitle_title: 'Ubah judul',
|
||||
editType_title: 'Ubah tipe',
|
||||
editUsername_title: 'Ubah username',
|
||||
emptyTrash: 'Kosongkan sampah',
|
||||
emptyTrash_title: 'Kosongkan sampah',
|
||||
import: 'Impor',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'Bergabung',
|
||||
leave: 'Keluar',
|
||||
leaveBoard: 'Keluar dari papan',
|
||||
leaveProject: 'Keluar dari proyek',
|
||||
logOut_title: 'Keluar',
|
||||
makeCover_title: 'Buat Cover',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeCover_title: 'Buat cover',
|
||||
makeProjectPrivate: 'Jadikan proyek pribadi',
|
||||
makeProjectPrivate_title: 'Jadikan proyek pribadi',
|
||||
makeProjectShared: 'Jadikan proyek bersama',
|
||||
makeProjectShared_title: 'Jadikan proyek bersama',
|
||||
move: 'Pindah',
|
||||
moveCard_title: 'Pindahkan Kartu',
|
||||
moveList_title: null,
|
||||
moveCard_title: 'Pindahkan kartu',
|
||||
moveList_title: 'Pindahkan daftar',
|
||||
remove: 'Hapus',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeCover_title: 'Hapus Cover',
|
||||
removeAssignee: 'Hapus penerima tugas',
|
||||
removeColor: 'Hapus warna',
|
||||
removeCover_title: 'Hapus cover',
|
||||
removeFromBoard: 'Hapus dari papan',
|
||||
removeFromProject: 'Hapus dari proyek',
|
||||
removeManager: 'Hapus manager',
|
||||
removeMember: 'Hapus papan',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Pulihkan ke {{list}}',
|
||||
returnToBoard: 'Kembali ke papan',
|
||||
save: 'Simpan',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Kirim email uji',
|
||||
showActive: 'Tampilkan aktif',
|
||||
showAllAttachments: 'Tampilkan semua lampiran ({{hidden}} tersembunyi)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Tampilkan kartu dengan pengguna ini',
|
||||
showDeactivated: 'Tampilkan dinonaktifkan',
|
||||
showFewerAttachments: 'Tampilkan lampiran lebih sedikit',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: 'Tampilkan lebih sedikit',
|
||||
showMore: 'Tampilkan lebih banyak',
|
||||
sortList_title: 'Urutkan daftar',
|
||||
start: 'Mulai',
|
||||
stop: 'Berhenti',
|
||||
subscribe: 'Berlanggan',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Batas pengguna aktif tercapai',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Login admin diperlukan untuk menginisialisasi instance',
|
||||
emailAlreadyInUse: 'E-mail telah digunakan',
|
||||
emailOrUsername: 'E-mail atau username',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Saya telah membaca dan menyetujui syarat-syarat ini',
|
||||
invalidCredentials: 'Kredensial tidak valid',
|
||||
invalidEmailOrUsername: 'E-mail atau username salah',
|
||||
invalidPassword: 'Kata sandi salah',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Masuk',
|
||||
noInternetConnection: 'Tidak ada koneksi internet',
|
||||
or: null,
|
||||
pageNotFound_title: 'Halaman Tidak Ditemukan',
|
||||
or: 'Atau',
|
||||
pageNotFound_title: 'Halaman tidak ditemukan',
|
||||
password: 'Kata sandi',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Didukung oleh <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Koneksi server gagal',
|
||||
unknownError: 'Kesalahan tidak diketahui, coba lagi nanti.',
|
||||
useSingleSignOn: 'Gunakan single sign-on',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Batal dan tutup',
|
||||
continue: 'Lanjutkan',
|
||||
logIn: 'Masuk',
|
||||
logInWithSso: 'Masuk dengan SSO',
|
||||
},
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"bundle": {
|
||||
"error-title": "Kesalahan di editor markdown",
|
||||
"settings_wysiwyg": "Editor visual (wysiwyg)",
|
||||
"settings_markup": "Markup Markdown",
|
||||
"settings_markup": "Markup markdown",
|
||||
"markup_placeholder": "Masukkan markup markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
|
||||
@@ -35,7 +35,7 @@ export default {
|
||||
addUser_title: 'Aggiungi utente',
|
||||
admin: 'Amministratore',
|
||||
administration: 'Amministrazione',
|
||||
all: 'tutto',
|
||||
all: 'Tutto',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Tutte le modifiche verranno salvate<br />al ripristino della connessione.',
|
||||
alphabetically: 'In ordine alfabetico',
|
||||
@@ -116,7 +116,7 @@ export default {
|
||||
cardsOnThisListAreReadyToBeWorkedOn:
|
||||
'Le schede in questa lista sono pronte per essere lavorate.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Clicca qui</0> o ricarica la pagina per aggiornare.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Hostname del client in EHLO',
|
||||
closed: 'Chiuso',
|
||||
color: 'Colore',
|
||||
comments: 'Commenti',
|
||||
@@ -132,7 +132,7 @@ export default {
|
||||
createTextFile_title: 'Crea file di testo',
|
||||
creator: 'Creatore',
|
||||
currentPassword: 'Password attuale',
|
||||
customFieldGroup_title: 'campi personalizzati',
|
||||
customFieldGroup_title: 'Campi personalizzati',
|
||||
customFieldGroups_title: 'Campi personalizzati',
|
||||
customField_title: 'Campo personalizzato',
|
||||
customFields_title: 'Campi personalizzati',
|
||||
@@ -140,7 +140,7 @@ export default {
|
||||
date: 'Data',
|
||||
deactivateUser_title: 'Disattiva utente',
|
||||
defaultCardType_title: 'Tipo di scheda predefinito',
|
||||
defaultFrom: null,
|
||||
defaultFrom: '"Da" predefinito',
|
||||
defaultView_title: 'Vista predefinita',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Elimina tutte le bacheche per poter eliminare questo progetto.',
|
||||
@@ -162,11 +162,10 @@ export default {
|
||||
deleteWebhook_title: 'Elimina webhook',
|
||||
deletedUser_title: 'Utente eliminato',
|
||||
description: 'Descrizione',
|
||||
detectAutomatically: 'Rileva automaticamente',
|
||||
display: 'Mostra',
|
||||
dropFileToUpload: 'Trascina il file da caricare',
|
||||
dueDate_title: 'Data di scadenza',
|
||||
dynamicAndUnevenlySpacedLayout: 'Layout dinamico e irregolarmente distribuito',
|
||||
dynamicAndUnevenlySpacedLayout: 'Layout dinamico e irregolarmente distribuito.',
|
||||
editAttachment_title: 'Modifica allegato',
|
||||
editAvatar_title: 'Modifica avatar',
|
||||
editColor_title: 'Modifica colore',
|
||||
@@ -193,19 +192,19 @@ export default {
|
||||
enterTaskDescription: 'Inserire descrizione della task...',
|
||||
events: 'Eventi',
|
||||
excludedEvents: 'Eventi esclusi',
|
||||
expandTaskListsByDefault: null,
|
||||
expandTaskListsByDefault: 'Espandi le liste delle attività per impostazione predefinita',
|
||||
filterByLabels_title: 'Filtra per etichetta',
|
||||
filterByMembers_title: 'Filtra per membro',
|
||||
forPersonalProjects: 'Per progetti personali',
|
||||
forTeamBasedProjects: 'Per progetti di gruppo',
|
||||
fromComputer_title: 'Dal Computer',
|
||||
forPersonalProjects: 'Per progetti personali.',
|
||||
forTeamBasedProjects: 'Per progetti di gruppo.',
|
||||
fromComputer_title: 'Dal computer',
|
||||
fromTrello: 'Da Trello',
|
||||
general: 'Generale',
|
||||
gradients: 'Gradiente',
|
||||
grid: 'Griglia',
|
||||
hideCompletedTasks: 'Nascondi task completate',
|
||||
hideFromProjectListAndFavorites: 'Nascondi dalla lista dei progetti e dai preferiti',
|
||||
host: null,
|
||||
host: 'Host',
|
||||
hours: 'Ore',
|
||||
importBoard_title: 'Importa board',
|
||||
invalidCurrentPassword: 'Password corrente non valida',
|
||||
@@ -228,7 +227,7 @@ export default {
|
||||
moreActions: 'Altre azioni',
|
||||
moreActions_title: 'Altre azioni',
|
||||
moveCard_title: 'Sposta scheda',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Sposta lista',
|
||||
myOwn_title: 'Personali',
|
||||
name: 'Nome',
|
||||
newEmail: 'Nuova e-mail',
|
||||
@@ -237,7 +236,7 @@ export default {
|
||||
newVersionAvailable: 'Nuova versione disponibile',
|
||||
newestFirst: 'Dal più recente',
|
||||
noBoards: 'Nessuna bacheca',
|
||||
noCardsFound: 'Nessuna scheda trovata',
|
||||
noCardsFound: 'Nessuna scheda trovata.',
|
||||
noConnectionToServer: 'Nessuna connessione al server',
|
||||
noLists: 'Nessuna lista',
|
||||
noProjects: 'Nessun progetto',
|
||||
@@ -250,11 +249,11 @@ export default {
|
||||
optional_inline: 'opzionale',
|
||||
organization: 'Organizazzione',
|
||||
others: 'Altri',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Password impostata',
|
||||
phone: 'Telefono',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA utilizza <1><0>Apprise</0></1> per inviare notifiche a oltre 100 servizi popolari.',
|
||||
port: null,
|
||||
port: 'Porta',
|
||||
preferences: 'Preferenze',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Consiglio: premi Ctrl-V (Cmd-V on Mac) per aggiungere un allegato dalla clipboard.',
|
||||
@@ -262,8 +261,8 @@ export default {
|
||||
project: 'Progetto',
|
||||
projectNotFound_title: 'Progetto non trovato',
|
||||
projectOwner: 'Proprietario del progetto',
|
||||
referenceDataAndKnowledgeStorage: 'Dati di riferimento e di archiviazione',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
referenceDataAndKnowledgeStorage: 'Dati di riferimento e di archiviazione.',
|
||||
rejectUnauthorizedTlsCertificates: 'Rifiuta certificati TLS non autorizzati',
|
||||
removeManager_title: 'Rimuovi manager',
|
||||
removeMember_title: 'Rimuovi membro',
|
||||
role: 'Ruolo',
|
||||
@@ -285,24 +284,24 @@ export default {
|
||||
selectProject: 'Seleziona progetto',
|
||||
selectRole_title: 'Seleziona ruolo',
|
||||
selectType_title: 'Seleziona tipo',
|
||||
sequentialDisplayOfCards: 'Visualizzazione sequenziale delle schede',
|
||||
sequentialDisplayOfCards: 'Visualizzazione sequenziale delle schede.',
|
||||
settings: 'Impostazioni',
|
||||
shared: 'Condiviso',
|
||||
sharedWithMe_title: 'Condiviso con me',
|
||||
showOnFrontOfCard: 'Mostra davanti alla scheda',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Ordina',
|
||||
stopwatch: 'Timer',
|
||||
story: 'Storia',
|
||||
subscribeToCardWhenCommenting: 'Iscrivimi alla scheda quando commento',
|
||||
subscribeToMyOwnCardsByDefault: 'Abbonati alle mie scheda per impostazione predefinita',
|
||||
taskActions_title: 'Azioni task',
|
||||
taskAssignmentAndProjectCompletion: 'Assegnazione di task e completamento del progetto',
|
||||
taskAssignmentAndProjectCompletion: 'Assegnazione di task e completamento del progetto.',
|
||||
taskListActions_title: 'Azioni lista di task',
|
||||
taskList_title: 'Lista di task',
|
||||
team: 'Team',
|
||||
terms: 'Ho letto e accetto i termini e condizioni.',
|
||||
testLog_title: null,
|
||||
testLog_title: 'Log di test',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Non è disponibile alcuna anteprima per questo allegato.',
|
||||
time: 'Tempo',
|
||||
@@ -310,15 +309,15 @@ export default {
|
||||
trash: 'Cestino',
|
||||
trashHasBeenSuccessfullyEmptied: 'Il cestino è stato svuotato con successo.',
|
||||
turnOffRecentCardHighlighting: "Disattiva l'evidenziazione delle scheda recenti",
|
||||
typeNameToConfirm: 'Digita il nome per confermare',
|
||||
typeTitleToConfirm: 'Digita il titolo per confermare',
|
||||
typeNameToConfirm: 'Digita il nome per confermare.',
|
||||
typeTitleToConfirm: 'Digita il titolo per confermare.',
|
||||
unsavedChanges: 'Modifiche non salvate',
|
||||
uploadFailedFileIsTooBig: 'Caricamento fallito: il file è troppo grande.',
|
||||
uploadFailedNotEnoughStorageSpace:
|
||||
'Caricamento fallito: spazio di archiviazione insufficiente.',
|
||||
uploadedImages: 'Immagini caricate',
|
||||
url: 'URL',
|
||||
useSecureConnection: null,
|
||||
useSecureConnection: 'Usa connessione sicura',
|
||||
userActions_title: 'Azioni utente',
|
||||
userAddedCardToList: '<0>{{user}}</0> ha aggiunto <2>{{card}}</2> a {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> ha aggiunto questa task a {{list}}',
|
||||
@@ -349,7 +348,7 @@ export default {
|
||||
users: 'Utenti',
|
||||
viewer: 'Visualizzatore',
|
||||
viewers: 'Visualizzatori',
|
||||
visualTaskManagementWithLists: 'Gestione visiva dei task con liste',
|
||||
visualTaskManagementWithLists: 'Gestione visiva dei task con liste.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Senza gruppo base',
|
||||
writeComment: 'Scrivi un commento...',
|
||||
@@ -447,10 +446,10 @@ export default {
|
||||
makeProjectShared_title: 'Rendi progetto condiviso',
|
||||
move: 'Muovi',
|
||||
moveCard_title: 'Muovi scheda',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Muovi lista',
|
||||
remove: 'Rimuovi',
|
||||
removeAssignee: 'Rimuovi assegnatario',
|
||||
removeColor: 'Remove colore',
|
||||
removeColor: 'Rimuovi colore',
|
||||
removeCover_title: 'Rimuovi copertina',
|
||||
removeFromBoard: 'Rimuovi dalla bacheca',
|
||||
removeFromProject: 'Rimuovi dal progetto',
|
||||
@@ -459,7 +458,7 @@ export default {
|
||||
restoreToList: 'Ripristina a {{list}}',
|
||||
returnToBoard: 'Torna alla bacheca',
|
||||
save: 'Salva',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Invia email di test',
|
||||
showActive: 'Mostra attivi',
|
||||
showAllAttachments: 'Mostra tutti gli allegati ({{hidden}} nascosti)',
|
||||
showCardsWithThisUser: 'Mostra schede con questo utente',
|
||||
|
||||
@@ -2,10 +2,11 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Limite utenti attivi raggiunto',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
"Login amministratore richiesto per inizializzare l'istanza",
|
||||
emailAlreadyInUse: 'E-mail già in uso',
|
||||
emailOrUsername: 'E-mail o username',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Ho letto e accetto questi termini',
|
||||
invalidCredentials: 'Credenziali non valide',
|
||||
invalidEmailOrUsername: 'E-mail o username non valido',
|
||||
invalidPassword: 'Password non valida',
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"bundle": {
|
||||
"error-title": "Errore nell'editor markdown",
|
||||
"settings_wysiwyg": "Editor visuale (wysiwyg)",
|
||||
"settings_markup": "Markup Markdown",
|
||||
"settings_markup": "Markup markdown",
|
||||
"markup_placeholder": "Inserisci il markup markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
|
||||
@@ -21,429 +21,448 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'PLANKAについて',
|
||||
accessToken: null,
|
||||
accessToken: 'アクセストークン',
|
||||
account: 'アカウント',
|
||||
actions: 'アクション',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'ユーザーをアクティブにする',
|
||||
active: 'アクティブ',
|
||||
addAttachment_title: '添付ファイルを追加',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'カスタムフィールドグループを追加',
|
||||
addCustomField_title: 'カスタムフィールドを追加',
|
||||
addManager_title: 'マネージャーを追加',
|
||||
addMember_title: 'メンバーを追加',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'タスクリストを追加',
|
||||
addUser_title: 'ユーザーを追加',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: '管理者',
|
||||
administration: '管理',
|
||||
all: 'すべて',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'全ての変更は接続回復後自動的に保存されます。',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
'全ての変更は接続回復後<br />自動的に保存されます。',
|
||||
alphabetically: 'アルファベット順',
|
||||
alwaysDisplayCardCreator: 'カード作成者を常に表示',
|
||||
archive: 'アーカイブ',
|
||||
archiveCard_title: 'カードをアーカイブ',
|
||||
archiveCards_title: 'カードをアーカイブ',
|
||||
areYouSureYouWantToActivateThisUser: 'このユーザーをアクティブにしてもよろしいですか?',
|
||||
areYouSureYouWantToArchiveCards: 'これらのカードをアーカイブしてもよろしいですか?',
|
||||
areYouSureYouWantToArchiveThisCard: 'このカードをアーカイブしてもよろしいですか?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'このプロジェクトマネージャーをオーナーに割り当ててもよろしいですか?',
|
||||
areYouSureYouWantToDeactivateThisUser: 'このユーザーを非アクティブにしてもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'この添付ファイルを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: 'この背景画像を削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'このボードを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisCard: 'このカードを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever: 'このカードを完全に削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisComment: 'このコメントを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'このカスタムフィールドを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'このカスタムフィールドグループを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'このラベルを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisList: 'このリストを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'このリストを削除してもよろしいですか?すべてのカードがゴミ箱に移動されます。',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'この通知サービスを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisProject: 'このプロジェクトを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisTask: 'このタスクを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'このタスクリストを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisUser: 'このユーザーを削除してもよろしいですか?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'このWebhookを削除してもよろしいですか?',
|
||||
areYouSureYouWantToEmptyTrash: 'ゴミ箱を空にしてもよろしいですか?',
|
||||
areYouSureYouWantToLeaveBoard: 'ボードから退出してもよろしいですか?',
|
||||
areYouSureYouWantToLeaveProject: 'プロジェクトから退出してもよろしいですか?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'このプロジェクトをプライベートにしてもよろしいですか?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'このプロジェクトを共有にしてもよろしいですか?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'このマネージャーをプロジェクトから外してもよろしいですか?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'このメンバーをボードから外してもよろしいですか?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'オーナーとして割り当て',
|
||||
atLeastOneListMustBePresent: '少なくとも1つのリストが必要です',
|
||||
attachment: '添付ファイル',
|
||||
attachments: '添付ファイル',
|
||||
authentication: '認証',
|
||||
background: '背景',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'ベースカスタムフィールド',
|
||||
baseGroup: 'ベースグループ',
|
||||
board: 'ボード',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'ボードアクション',
|
||||
boardNotFound_title: 'ボードが見つかりません',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'ボード購読済み',
|
||||
boardUser: 'ボードユーザー',
|
||||
byCreationTime: '作成時間順',
|
||||
byDefault: 'デフォルト',
|
||||
byDueDate: '期限日順',
|
||||
canBeInvitedToWorkInBoards: 'ボードでの作業に招待されることができます。',
|
||||
canComment: 'コメントを作成することができます',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'自分のプロジェクトを作成し、他のプロジェクトに招待されることができます。',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'ボードレイアウトを編集し、カードにメンバーを割り当てることができます。',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'システム全体の設定を管理し、プロジェクトオーナーとして行動できます。',
|
||||
canOnlyViewBoard: 'ボードの読み取りのみ可能です。',
|
||||
cardActions_title: 'カードのアクション',
|
||||
cardNotFound_title: 'カードが見つかりません',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'このリストのカードはすべてのボードメンバーが利用できます。',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'このリストのカードは完了しており、アーカイブの準備ができています。',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'このリストのカードは作業準備ができています。',
|
||||
clickHereOrRefreshPageToUpdate: '<0>ここをクリック</0>するかページを更新してください',
|
||||
clientHostnameInEhlo: 'EHLOでのクライアントホスト名',
|
||||
closed: '閉じる',
|
||||
color: '色',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
comments: 'コメント',
|
||||
contentExceedsLimit: 'コンテンツが{{limit}}を超えています',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'この添付ファイルのコンテンツは表示するには大きすぎます。',
|
||||
copy_inline: 'コピー',
|
||||
createBoard_title: 'ボードを作成',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'カスタムフィールドグループを作成',
|
||||
createLabel_title: 'ラベルを作成',
|
||||
createNewOneOrSelectExistingOne: '新規作成もしくは<br />既存のものから選択。',
|
||||
createProject_title: 'プロジェクトを作成',
|
||||
createTextFile_title: 'テキストファイルを作成',
|
||||
creator: null,
|
||||
creator: '作成者',
|
||||
currentPassword: '現在のパスワード',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'カスタムフィールドグループ',
|
||||
customFieldGroups_title: 'カスタムフィールドグループ',
|
||||
customField_title: 'カスタムフィールド',
|
||||
customFields_title: 'カスタムフィールド',
|
||||
dangerZone_title: '危険ゾーン',
|
||||
date: '日付',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'ユーザーを非アクティブにする',
|
||||
defaultCardType_title: 'デフォルトカードタイプ',
|
||||
defaultFrom: 'デフォルト送信者',
|
||||
defaultView_title: 'デフォルトビュー',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'このプロジェクトを削除するには、すべてのボードを削除してください',
|
||||
deleteAttachment_title: '添付ファイルを削除',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: '背景画像を削除',
|
||||
deleteBoard_title: 'ボードを削除',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'カードを完全に削除',
|
||||
deleteCard_title: 'カードを削除',
|
||||
deleteComment_title: 'コメントを削除',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'カスタムフィールドグループを削除',
|
||||
deleteCustomField_title: 'カスタムフィールドを削除',
|
||||
deleteLabel_title: 'ラベルを削除',
|
||||
deleteList_title: 'リストを削除',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: '通知サービスを削除',
|
||||
deleteProject_title: 'プロジェクトを削除',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'タスクリストを削除',
|
||||
deleteTask_title: 'タスクを削除',
|
||||
deleteUser_title: 'ユーザーを削除',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'Webhookを削除',
|
||||
deletedUser_title: '削除されたユーザー',
|
||||
description: '説明',
|
||||
detectAutomatically: '自動的に検知',
|
||||
display: null,
|
||||
display: '表示',
|
||||
dropFileToUpload: 'ファイルをドロップしてアップロード',
|
||||
dueDate_title: '期限',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: '動的で不均等な間隔のレイアウト。',
|
||||
editAttachment_title: '添付ファイルを編集',
|
||||
editAvatar_title: 'アバターを編集',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: '色を編集',
|
||||
editCustomFieldGroup_title: 'カスタムフィールドグループを編集',
|
||||
editCustomField_title: 'カスタムフィールドを編集',
|
||||
editDueDate_title: '期限を編集',
|
||||
editEmail_title: 'Eメールを編集',
|
||||
editInformation_title: '情報を編集',
|
||||
editLabel_title: 'ラベルを編集',
|
||||
editPassword_title: 'パスワードを編集',
|
||||
editPermissions_title: '権限を編集',
|
||||
editRole_title: null,
|
||||
editRole_title: '役割を編集',
|
||||
editStopwatch_title: 'タイマーを編集',
|
||||
editType_title: null,
|
||||
editType_title: 'タイプを編集',
|
||||
editUsername_title: 'ユーザー名を編集',
|
||||
editor: 'エディター',
|
||||
editors: null,
|
||||
editors: 'エディター',
|
||||
email: 'Eメール',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'ゴミ箱を空にする',
|
||||
enterCardTitle: 'カードのタイトルを入力…',
|
||||
enterDescription: '説明を入力…',
|
||||
enterFilename: 'ファイル名を入力',
|
||||
enterListTitle: 'リストのタイトルを入力…',
|
||||
enterTaskDescription: 'タスクの説明を入力…',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'イベント',
|
||||
excludedEvents: '除外されたイベント',
|
||||
expandTaskListsByDefault: 'デフォルトでタスクリストを展開',
|
||||
filterByLabels_title: 'ラベルで絞り込む',
|
||||
filterByMembers_title: 'メンバーで絞り込む',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: '個人プロジェクト用。',
|
||||
forTeamBasedProjects: 'チームベースプロジェクト用。',
|
||||
fromComputer_title: 'コンピューターから',
|
||||
fromTrello: 'Trelloから',
|
||||
general: '一般',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'グラデーション',
|
||||
grid: 'グリッド',
|
||||
hideCompletedTasks: '完了したタスクを非表示',
|
||||
hideFromProjectListAndFavorites: 'プロジェクトリストとお気に入りから非表示',
|
||||
host: 'ホスト',
|
||||
hours: '時間',
|
||||
importBoard_title: 'インポートボード',
|
||||
invalidCurrentPassword: '現在のパスワードが無効',
|
||||
kanban: null,
|
||||
kanban: 'カンバン',
|
||||
labels: 'ラベル',
|
||||
language: '使用言語',
|
||||
leaveBoard_title: 'ボードから退出',
|
||||
leaveProject_title: 'プロジェクトから退出',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'カードタイプをデフォルトに制限',
|
||||
linkToCard: 'カードへのリンク',
|
||||
list: 'リスト',
|
||||
listActions_title: 'アクションのリスト',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'リスト',
|
||||
makeProjectPrivate_title: 'プロジェクトをプライベートにする',
|
||||
makeProjectShared_title: 'プロジェクトを共有にする',
|
||||
managers: 'マネージャー',
|
||||
memberActions_title: null,
|
||||
memberActions_title: 'メンバーアクション',
|
||||
members: 'メンバー',
|
||||
minutes: '分',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'その他のアクション',
|
||||
moreActions_title: 'その他のアクション',
|
||||
moveCard_title: 'カードを移動',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'リストを移動',
|
||||
myOwn_title: '自分の',
|
||||
name: '名前',
|
||||
newEmail: '新しいEメール',
|
||||
newPassword: '新しいパスワード',
|
||||
newUsername: '新しいユーザー名',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: '新しいバージョンが利用可能',
|
||||
newestFirst: '新しい順',
|
||||
noBoards: 'ボードがありません',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'カードが見つかりません。',
|
||||
noConnectionToServer: 'サーバーへ接続されていません',
|
||||
noLists: 'リストがありません',
|
||||
noProjects: 'プロジェクトがありません',
|
||||
noUnreadNotifications: '未読の通知はありません。',
|
||||
notifications: '通知',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
oldestFirst: '古い順',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'このプロジェクトをプライベートにするには、マネージャーを1人だけ残す必要があります',
|
||||
openBoard_title: 'ボードを開く',
|
||||
optional_inline: '任意',
|
||||
organization: '組織',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'その他',
|
||||
passwordIsSet: 'パスワードが設定されています',
|
||||
phone: '電話番号',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKAは<1><0>Apprise</0></1>を使用して100以上の人気サービスに通知を送信します。',
|
||||
port: 'ポート',
|
||||
preferences: '環境設定',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'ヒント: Ctrl-V(MacではCmd-V)を押して、クリップボードから添付ファイルを追加します。',
|
||||
private: null,
|
||||
private: 'プライベート',
|
||||
project: 'プロジェクト',
|
||||
projectNotFound_title: 'プロジェクトがありません',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'プロジェクトオーナー',
|
||||
referenceDataAndKnowledgeStorage: '参照データと知識の保存。',
|
||||
rejectUnauthorizedTlsCertificates: '未承認のTLS証明書を拒否',
|
||||
removeManager_title: 'マネージャーを削除',
|
||||
removeMember_title: 'メンバーを削除',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
role: '役割',
|
||||
searchCards: 'カードを検索...',
|
||||
searchCustomFieldGroups: 'カスタムフィールドグループを検索...',
|
||||
searchCustomFields: 'カスタムフィールドを検索...',
|
||||
searchLabels: 'ラベルから探す…',
|
||||
searchLists: null,
|
||||
searchLists: 'リストを検索...',
|
||||
searchMembers: 'メンバーから探す…',
|
||||
searchProjects: null,
|
||||
searchProjects: 'プロジェクトを検索...',
|
||||
searchUsers: 'ユーザーから探す…',
|
||||
seconds: '秒',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: '担当者を選択',
|
||||
selectBoard: 'ボードを選択',
|
||||
selectList: 'リストを選択',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: 'このカードを復元するリストを選択',
|
||||
selectOrder_title: '順序を選択',
|
||||
selectPermissions_title: '権限を選択',
|
||||
selectProject: 'プロジェクトを選択',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: '役割を選択',
|
||||
selectType_title: 'タイプを選択',
|
||||
sequentialDisplayOfCards: 'カードの順次表示。',
|
||||
settings: '設定',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: '共有',
|
||||
sharedWithMe_title: '共有されたもの',
|
||||
showOnFrontOfCard: 'カードの前面に表示',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'リストを並び替え',
|
||||
stopwatch: 'タイマー',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'ストーリー',
|
||||
subscribeToCardWhenCommenting: 'コメント時にカードを購読',
|
||||
subscribeToMyOwnCardsByDefault: '自分のカードをデフォルトで購読する',
|
||||
taskActions_title: 'タスクのアクション',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: 'タスクの割り当てとプロジェクトの完了。',
|
||||
taskListActions_title: 'タスクリストアクション',
|
||||
taskList_title: 'タスクリスト',
|
||||
team: 'チーム',
|
||||
terms: '利用規約',
|
||||
testLog_title: 'テストログ',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'この添付ファイルにはプレビューがありません。',
|
||||
time: '時間',
|
||||
title: 'タイトル',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'ゴミ箱',
|
||||
trashHasBeenSuccessfullyEmptied: 'ゴミ箱が正常に空になりました。',
|
||||
turnOffRecentCardHighlighting: '最近のカードのハイライトをオフにする',
|
||||
typeNameToConfirm: '確認のため名前を入力してください。',
|
||||
typeTitleToConfirm: '確認のためタイトルを入力してください。',
|
||||
unsavedChanges: '未保存の変更',
|
||||
uploadFailedFileIsTooBig: 'アップロード失敗 - ファイルが大きすぎます。',
|
||||
uploadFailedNotEnoughStorageSpace: 'アップロード失敗 - ストレージ容量が不足しています。',
|
||||
uploadedImages: 'アップロードされた画像',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'セキュア接続を使用',
|
||||
userActions_title: 'ユーザーのアクション',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0>様が<2>{{card}}</2>を{{list}}に追加しました',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> 様が {{list}} をこのカードに追加しました',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0>様が{{addedUser}}を<4>{{card}}</4>に追加しました',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0>様が{{addedUser}}をこのカードに追加しました',
|
||||
userAddedYouToCard: '<0>{{user}}</0>様があなたを<2>{{card}}</2>に追加しました',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0>様が<4>{{card}}</4>の{{task}}を完了しました',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0>様がこのカードの{{task}}を完了しました',
|
||||
userJoinedCard: '<0>{{user}}</0>様が<2>{{card}}</2>に参加しました',
|
||||
userJoinedThisCard: '<0>{{user}}</0>様がこのカードに参加しました',
|
||||
userLeftCard: '<0>{{user}}</0>様が<2>{{card}}</2>から退出しました',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> 様が <2>{{card}}</2> に新しいコメント «{{comment}}» を残しました',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0>様がこのカードから退出しました',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0>様が<4>{{card}}</4>の{{task}}を未完了にマークしました',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0>様がこのカードの{{task}}を未完了にマークしました',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0>様が<2>{{card}}</2>のコメント«{{comment}}»であなたをメンションしました',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> 様が <2>{{card}}</2> を {{fromList}} から {{toList}} に移動しました',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> 様がこのカードを {{fromList}} から {{toList}} に移動しました',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard:
|
||||
'<0>{{actorUser}}</0>様が{{removedUser}}を<4>{{card}}</4>から削除しました',
|
||||
userRemovedUserFromThisCard:
|
||||
'<0>{{actorUser}}</0>様が{{removedUser}}をこのカードから削除しました',
|
||||
username: 'ユーザー名',
|
||||
users: 'ユーザー',
|
||||
viewer: 'ビューア',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'ビューア',
|
||||
visualTaskManagementWithLists: 'リストによる視覚的タスク管理。',
|
||||
webhooks: 'Webhook',
|
||||
withoutBaseGroup: 'ベースグループなし',
|
||||
writeComment: 'コメントを書く…',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'ユーザーをアクティブにする',
|
||||
activateUser_title: 'ユーザーをアクティブにする',
|
||||
addAnotherCard: '別のカードを追加',
|
||||
addAnotherList: '別のリストを追加',
|
||||
addAnotherTask: '別のタスクを追加',
|
||||
addCard: 'カードを追加',
|
||||
addCard_title: 'カードを追加',
|
||||
addComment: 'コメントを追加',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'カスタムフィールドを追加',
|
||||
addCustomFieldGroup: 'カスタムフィールドグループを追加',
|
||||
addList: 'リストを追加',
|
||||
addMember: 'メンバーを追加',
|
||||
addMoreDetailedDescription: 'より詳細な説明を追加',
|
||||
addTask: 'タスクを追加',
|
||||
addTaskList: null,
|
||||
addTaskList: 'タスクリストを追加',
|
||||
addToCard: 'カードに追加',
|
||||
addUser: 'ユーザーを追加',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Webhookを追加',
|
||||
archive: 'アーカイブ',
|
||||
archiveCard: 'カードをアーカイブ',
|
||||
archiveCard_title: 'カードをアーカイブ',
|
||||
archiveCards: 'カードをアーカイブ',
|
||||
archiveCards_title: 'カードをアーカイブ',
|
||||
assignAsOwner: 'オーナーとして割り当て',
|
||||
cancel: 'キャンセル',
|
||||
createBoard: 'ボードを作成',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'カスタムフィールドグループを作成',
|
||||
createFile: 'ファイルを作成',
|
||||
createLabel: 'ラベルを作成',
|
||||
createNewLabel: '新しいラベルを作成',
|
||||
createProject: 'プロジェクトを作成',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'ユーザーを非アクティブにする',
|
||||
deactivateUser_title: 'ユーザーを非アクティブにする',
|
||||
delete: '削除',
|
||||
deleteAttachment: '添付ファイルを削除',
|
||||
deleteAvatar: 'アバターを削除',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: '背景画像を削除',
|
||||
deleteBoard: 'ボードを削除',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'ボードを削除',
|
||||
deleteCard: 'カードを削除',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'カードを完全に削除',
|
||||
deleteCard_title: 'カードを削除',
|
||||
deleteComment: 'コメントを削除',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'カスタムフィールドを削除',
|
||||
deleteCustomFieldGroup: 'カスタムフィールドグループを削除',
|
||||
deleteForever_title: '完全に削除',
|
||||
deleteGroup: 'グループを削除',
|
||||
deleteLabel: 'ラベルを削除',
|
||||
deleteList: 'リストを削除',
|
||||
deleteList_title: 'リストを削除',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: '通知サービスを削除',
|
||||
deleteProject: 'プロジェクトを削除',
|
||||
deleteProject_title: 'プロジェクトを削除',
|
||||
deleteTask: 'タスクを削除',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'タスクリストを削除',
|
||||
deleteTask_title: 'タスクを削除',
|
||||
deleteUser: 'ユーザーを削除',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: 'ユーザーを削除',
|
||||
deleteWebhook: 'Webhookを削除',
|
||||
dismissAll: 'すべて閉じる',
|
||||
download: 'ダウンロード',
|
||||
duplicateCard_title: 'カードを複製',
|
||||
edit: '編集',
|
||||
editColor_title: null,
|
||||
editColor_title: '色を編集',
|
||||
editDescription_title: '説明を編集',
|
||||
editDueDate_title: '期限を編集',
|
||||
editEmail_title: 'Eメールを編集',
|
||||
editGroup: null,
|
||||
editGroup: 'グループを編集',
|
||||
editInformation_title: '情報を編集',
|
||||
editPassword_title: 'パスワードの編集',
|
||||
editPermissions: '権限を編集',
|
||||
editRole_title: null,
|
||||
editRole_title: '役割を編集',
|
||||
editStopwatch_title: 'タイマーの編集',
|
||||
editTitle_title: 'タイトルの編集',
|
||||
editType_title: null,
|
||||
editType_title: 'タイプを編集',
|
||||
editUsername_title: 'ユーザー名の編集',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: 'ゴミ箱を空にする',
|
||||
emptyTrash_title: 'ゴミ箱を空にする',
|
||||
import: 'インポート',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: '参加',
|
||||
leave: '退出',
|
||||
leaveBoard: 'ボードから退出',
|
||||
leaveProject: 'プロジェクトから退出',
|
||||
logOut_title: 'ログアウト',
|
||||
makeCover_title: 'カバーを作る',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'プロジェクトをプライベートにする',
|
||||
makeProjectPrivate_title: 'プロジェクトをプライベートにする',
|
||||
makeProjectShared: 'プロジェクトを共有にする',
|
||||
makeProjectShared_title: 'プロジェクトを共有にする',
|
||||
move: '移動',
|
||||
moveCard_title: 'カードを移動',
|
||||
moveList_title: null,
|
||||
moveList_title: 'リストを移動',
|
||||
remove: '削除',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: '担当者を削除',
|
||||
removeColor: '色を削除',
|
||||
removeCover_title: 'カバーを削除',
|
||||
removeFromBoard: 'ボードから削除',
|
||||
removeFromProject: 'プロジェクトから削除',
|
||||
removeManager: 'マネージャーを削除',
|
||||
removeMember: 'メンバーを削除',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: '{{list}}に復元',
|
||||
returnToBoard: 'ボードに戻る',
|
||||
save: '保存',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'テストメールを送信',
|
||||
showActive: 'アクティブを表示',
|
||||
showAllAttachments: '全ての添付ファイルを表示する({{hidden}} 非表示)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'このユーザーのカードを表示',
|
||||
showDeactivated: '非アクティブを表示',
|
||||
showFewerAttachments: 'テンプファイルの表示数を減らす',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: '表示を減らす',
|
||||
showMore: 'もっと表示',
|
||||
sortList_title: 'リストを並び替え',
|
||||
start: 'スタート',
|
||||
stop: 'ストップ',
|
||||
subscribe: '購読',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'アクティブユーザーの上限に達しました',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'インスタンスを初期化するには管理者ログインが必要です',
|
||||
emailAlreadyInUse: 'Eメールは既に使われています',
|
||||
emailOrUsername: 'Eメールまたはユーザー名',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'これらの利用規約を読み、同意します',
|
||||
invalidCredentials: '認証情報が無効です',
|
||||
invalidEmailOrUsername: 'Eメールまたはユーザー名が無効',
|
||||
invalidPassword: 'パスワードが無効',
|
||||
logIn_title: null,
|
||||
logIn_title: 'ログイン',
|
||||
noInternetConnection: 'インターネットに接続されていません',
|
||||
or: null,
|
||||
or: 'または',
|
||||
pageNotFound_title: 'ページが見つかりません',
|
||||
password: 'パスワード',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: '<1>PLANKA</1>で動作',
|
||||
serverConnectionFailed: 'サーバーの接続に失敗',
|
||||
unknownError: '不明なエラーです。後でもう一度試してください。',
|
||||
useSingleSignOn: 'SSOを使用',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'キャンセルして閉じる',
|
||||
continue: '続行',
|
||||
logIn: 'ログイン',
|
||||
logInWithSso: 'SSOでログイン',
|
||||
},
|
||||
|
||||
@@ -21,428 +21,445 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'PLANKA 소개',
|
||||
accessToken: null,
|
||||
accessToken: '액세스 토큰',
|
||||
account: '계정',
|
||||
actions: '작업',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: '사용자 활성화',
|
||||
active: '활성',
|
||||
addAttachment_title: '첨부 파일 추가',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: '사용자 정의 필드 그룹 추가',
|
||||
addCustomField_title: '사용자 정의 필드 추가',
|
||||
addManager_title: '관리자 추가',
|
||||
addMember_title: '멤버 추가',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: '작업 목록 추가',
|
||||
addUser_title: '사용자 추가',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: '관리자',
|
||||
administration: '관리',
|
||||
all: '전체',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'연결이 복구되면 모든 변경 사항이 자동으로 저장됩니다.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
'연결이 복구되면 모든 변경 사항이<br />자동으로 저장됩니다.',
|
||||
alphabetically: '알파벳순',
|
||||
alwaysDisplayCardCreator: '항상 카드 생성자 표시',
|
||||
archive: '보관',
|
||||
archiveCard_title: '카드 보관',
|
||||
archiveCards_title: '카드들 보관',
|
||||
areYouSureYouWantToActivateThisUser: '이 사용자를 활성화하시겠습니까?',
|
||||
areYouSureYouWantToArchiveCards: '카드들을 보관하시겠습니까?',
|
||||
areYouSureYouWantToArchiveThisCard: '이 카드를 보관하시겠습니까?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'이 프로젝트 관리자를 소유자로 지정하시겠습니까?',
|
||||
areYouSureYouWantToDeactivateThisUser: '이 사용자를 비활성화하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisAttachment: '이 첨부 파일을 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: '이 배경 이미지를 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisBoard: '이 보드를 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisCard: '이 카드를 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever: '이 카드를 영구적으로 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisComment: '이 댓글을 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField: '이 사용자 정의 필드를 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: '이 사용자 정의 필드 그룹을 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisLabel: '이 라벨을 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisList: '이 목록을 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'이 목록을 삭제하시겠습니까? 모든 카드가 휴지통으로 이동됩니다.',
|
||||
areYouSureYouWantToDeleteThisNotificationService: '이 알림 서비스를 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisProject: '이 프로젝트를 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisTask: '이 작업을 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: '이 작업 목록을 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisUser: '이 사용자를 삭제하시겠습니까?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: '이 웹훅을 삭제하시겠습니까?',
|
||||
areYouSureYouWantToEmptyTrash: '휴지통을 비우시겠습니까?',
|
||||
areYouSureYouWantToLeaveBoard: '이 보드를 떠나시겠습니까?',
|
||||
areYouSureYouWantToLeaveProject: '이 프로젝트를 떠나시겠습니까?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate: '이 프로젝트를 비공개로 만드시겠습니까?',
|
||||
areYouSureYouWantToMakeThisProjectShared: '이 프로젝트를 공유하시겠습니까?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject: '이 관리자를 프로젝트에서 제거하시겠습니까?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard: '이 멤버를 보드에서 제거하시겠습니까?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: '소유자로 지정',
|
||||
atLeastOneListMustBePresent: '최소 하나의 목록이 있어야 합니다',
|
||||
attachment: '첨부 파일',
|
||||
attachments: '첨부 파일들',
|
||||
authentication: '인증',
|
||||
background: '배경',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: '기본 사용자 정의 필드',
|
||||
baseGroup: '기본 그룹',
|
||||
board: '보드',
|
||||
boardActions_title: null,
|
||||
boardActions_title: '보드 작업',
|
||||
boardNotFound_title: '보드를 찾을 수 없음',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: '보드 구독됨',
|
||||
boardUser: '보드 사용자',
|
||||
byCreationTime: '생성 시간순',
|
||||
byDefault: '기본값',
|
||||
byDueDate: '마감일순',
|
||||
canBeInvitedToWorkInBoards: '보드에서 작업하도록 초대받을 수 있음.',
|
||||
canComment: '댓글 작성 가능',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'자신의 프로젝트를 만들고 다른 프로젝트에 초대받을 수 있음.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'보드 레이아웃을 편집하고 카드에 멤버를 할당할 수 있음.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'시스템 전체 설정을 관리하고 프로젝트 소유자 역할을 할 수 있음.',
|
||||
canOnlyViewBoard: '보드를 보기만 할 수 있습니다.',
|
||||
cardActions_title: '카드 작업',
|
||||
cardNotFound_title: '카드를 찾을 수 없음',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'이 목록의 카드들은 모든 보드 멤버가 사용할 수 있습니다.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'이 목록의 카드들은 완료되어 보관할 준비가 되었습니다.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: '이 목록의 카드들은 작업할 준비가 되었습니다.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>여기를 클릭</0>하거나 페이지를 새로고침하여 업데이트하세요',
|
||||
clientHostnameInEhlo: 'EHLO의 클라이언트 호스트명',
|
||||
closed: '닫힘',
|
||||
color: '색상',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
comments: '댓글',
|
||||
contentExceedsLimit: '내용이 {{limit}}을 초과했습니다',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'이 첨부 파일의 내용이 너무 커서 표시할 수 없습니다.',
|
||||
copy_inline: '복사',
|
||||
createBoard_title: '보드 생성',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: '사용자 정의 필드 그룹 생성',
|
||||
createLabel_title: '라벨 생성',
|
||||
createNewOneOrSelectExistingOne: '새로 만들거나 기존 것을 선택하세요.',
|
||||
createNewOneOrSelectExistingOne: '새로 만들거나<br />기존 것을 선택하세요.',
|
||||
createProject_title: '프로젝트 생성',
|
||||
createTextFile_title: '텍스트 파일 생성',
|
||||
creator: null,
|
||||
creator: '생성자',
|
||||
currentPassword: '현재 비밀번호',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: '사용자 정의 필드 그룹',
|
||||
customFieldGroups_title: '사용자 정의 필드 그룹들',
|
||||
customField_title: '사용자 정의 필드',
|
||||
customFields_title: '사용자 정의 필드들',
|
||||
dangerZone_title: '위험 구역',
|
||||
date: '날짜',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: '사용자 비활성화',
|
||||
defaultCardType_title: '기본 카드 유형',
|
||||
defaultFrom: '기본 발신자',
|
||||
defaultView_title: '기본 보기',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: '이 프로젝트를 삭제하려면 모든 보드를 삭제하세요',
|
||||
deleteAttachment_title: '첨부 파일 삭제',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: '배경 이미지 삭제',
|
||||
deleteBoard_title: '보드 삭제',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: '카드 영구 삭제',
|
||||
deleteCard_title: '카드 삭제',
|
||||
deleteComment_title: '댓글 삭제',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: '사용자 정의 필드 그룹 삭제',
|
||||
deleteCustomField_title: '사용자 정의 필드 삭제',
|
||||
deleteLabel_title: '라벨 삭제',
|
||||
deleteList_title: '목록 삭제',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: '알림 서비스 삭제',
|
||||
deleteProject_title: '프로젝트 삭제',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: '작업 목록 삭제',
|
||||
deleteTask_title: '작업 삭제',
|
||||
deleteUser_title: '사용자 삭제',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: '웹훅 삭제',
|
||||
deletedUser_title: '삭제된 사용자',
|
||||
description: '설명',
|
||||
detectAutomatically: '자동 감지',
|
||||
display: null,
|
||||
display: '표시',
|
||||
dropFileToUpload: '업로드할 파일을 드롭하세요',
|
||||
dueDate_title: '마감일',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: '동적이고 불균등한 간격의 레이아웃.',
|
||||
editAttachment_title: '첨부 파일 편집',
|
||||
editAvatar_title: '아바타 편집',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: '색상 편집',
|
||||
editCustomFieldGroup_title: '사용자 정의 필드 그룹 편집',
|
||||
editCustomField_title: '사용자 정의 필드 편집',
|
||||
editDueDate_title: '마감일 편집',
|
||||
editEmail_title: '이메일 편집',
|
||||
editInformation_title: '정보 편집',
|
||||
editLabel_title: '라벨 편집',
|
||||
editPassword_title: '비밀번호 편집',
|
||||
editPermissions_title: '권한 편집',
|
||||
editRole_title: null,
|
||||
editRole_title: '역할 편집',
|
||||
editStopwatch_title: '스톱워치 편집',
|
||||
editType_title: null,
|
||||
editType_title: '유형 편집',
|
||||
editUsername_title: '사용자 이름 편집',
|
||||
editor: '편집기',
|
||||
editors: null,
|
||||
editors: '편집자들',
|
||||
email: '이메일',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: '휴지통 비우기',
|
||||
enterCardTitle: '카드 제목 입력...',
|
||||
enterDescription: '설명 입력...',
|
||||
enterFilename: '파일 이름 입력',
|
||||
enterListTitle: '목록 제목 입력...',
|
||||
enterTaskDescription: '작업 설명 입력...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: '이벤트',
|
||||
excludedEvents: '제외된 이벤트',
|
||||
expandTaskListsByDefault: '기본적으로 작업 목록 확장',
|
||||
filterByLabels_title: '라벨별 필터링',
|
||||
filterByMembers_title: '멤버별 필터링',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: '개인 프로젝트용.',
|
||||
forTeamBasedProjects: '팀 기반 프로젝트용.',
|
||||
fromComputer_title: '컴퓨터에서',
|
||||
fromTrello: 'Trello에서',
|
||||
general: '일반',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: '그라데이션',
|
||||
grid: '격자',
|
||||
hideCompletedTasks: '완료된 작업 숨기기',
|
||||
hideFromProjectListAndFavorites: '프로젝트 목록과 즐겨찾기에서 숨기기',
|
||||
host: '호스트',
|
||||
hours: '시간',
|
||||
importBoard_title: '보드 가져오기',
|
||||
invalidCurrentPassword: '잘못된 현재 비밀번호',
|
||||
kanban: null,
|
||||
kanban: '칸반',
|
||||
labels: '라벨',
|
||||
language: '언어',
|
||||
leaveBoard_title: '보드 떠나기',
|
||||
leaveProject_title: '프로젝트 떠나기',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: '카드 유형을 기본값으로 제한',
|
||||
linkToCard: '카드 링크',
|
||||
list: '목록',
|
||||
listActions_title: '목록 작업',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: '목록들',
|
||||
makeProjectPrivate_title: '프로젝트 비공개로 만들기',
|
||||
makeProjectShared_title: '프로젝트 공유하기',
|
||||
managers: '관리자',
|
||||
memberActions_title: '멤버 작업',
|
||||
members: '멤버',
|
||||
minutes: '분',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: '더 많은 작업',
|
||||
moreActions_title: '더 많은 작업',
|
||||
moveCard_title: '카드 이동',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: '목록 이동',
|
||||
myOwn_title: '내 소유',
|
||||
name: '이름',
|
||||
newEmail: '새 이메일',
|
||||
newPassword: '새 비밀번호',
|
||||
newUsername: '새 사용자 이름',
|
||||
newVersionAvailable: null,
|
||||
newVersionAvailable: '새 버전 사용 가능',
|
||||
newestFirst: '최신순',
|
||||
noBoards: '보드 없음',
|
||||
noCardsFound: null,
|
||||
noCardsFound: '카드를 찾을 수 없음.',
|
||||
noConnectionToServer: '서버에 연결되지 않음',
|
||||
noLists: '목록 없음',
|
||||
noProjects: '프로젝트 없음',
|
||||
noUnreadNotifications: '읽지 않은 알림 없음.',
|
||||
notifications: '알림',
|
||||
oldestFirst: '오래된 순',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'이 프로젝트를 비공개로 만들려면 관리자가 한 명만 남아있어야 합니다',
|
||||
openBoard_title: '보드 열기',
|
||||
optional_inline: '선택 사항',
|
||||
organization: '조직',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: '기타',
|
||||
passwordIsSet: '비밀번호가 설정됨',
|
||||
phone: '전화',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA는 <1><0>Apprise</0></1>를 사용하여 100개 이상의 인기 서비스에 알림을 보냅니다.',
|
||||
port: '포트',
|
||||
preferences: '환경 설정',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'팁: Ctrl-V (Mac에서는 Cmd-V)를 눌러 클립보드에서 첨부 파일을 추가하세요.',
|
||||
private: null,
|
||||
private: '비공개',
|
||||
project: '프로젝트',
|
||||
projectNotFound_title: '프로젝트를 찾을 수 없음',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: '프로젝트 소유자',
|
||||
referenceDataAndKnowledgeStorage: '참조 데이터 및 지식 저장소.',
|
||||
rejectUnauthorizedTlsCertificates: '승인되지 않은 TLS 인증서 거부',
|
||||
removeManager_title: '관리자 제거',
|
||||
removeMember_title: '멤버 제거',
|
||||
role: null,
|
||||
role: '역할',
|
||||
searchCards: '카드 검색...',
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchCustomFieldGroups: '사용자 정의 필드 그룹 검색...',
|
||||
searchCustomFields: '사용자 정의 필드 검색...',
|
||||
searchLabels: '라벨 검색...',
|
||||
searchLists: null,
|
||||
searchLists: '목록 검색...',
|
||||
searchMembers: '멤버 검색...',
|
||||
searchProjects: null,
|
||||
searchProjects: '프로젝트 검색...',
|
||||
searchUsers: '사용자 검색...',
|
||||
seconds: '초',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: '담당자 선택',
|
||||
selectBoard: '보드 선택',
|
||||
selectList: '목록 선택',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: '이 카드를 복원할 목록을 선택하세요',
|
||||
selectOrder_title: '순서 선택',
|
||||
selectPermissions_title: '권한 선택',
|
||||
selectProject: '프로젝트 선택',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: '역할 선택',
|
||||
selectType_title: '유형 선택',
|
||||
sequentialDisplayOfCards: '카드의 순차적 표시.',
|
||||
settings: '설정',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
shared: '공유됨',
|
||||
sharedWithMe_title: '나와 공유됨',
|
||||
showOnFrontOfCard: '카드 앞면에 표시',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: '목록 정렬',
|
||||
stopwatch: '스톱워치',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: '스토리',
|
||||
subscribeToCardWhenCommenting: '댓글 작성 시 카드 구독',
|
||||
subscribeToMyOwnCardsByDefault: '기본적으로 내 카드 구독',
|
||||
taskActions_title: '작업 작업',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: '작업 할당 및 프로젝트 완료.',
|
||||
taskListActions_title: '작업 목록 작업',
|
||||
taskList_title: '작업 목록',
|
||||
team: '팀',
|
||||
terms: '약관',
|
||||
testLog_title: '테스트 로그',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'이 첨부 파일에 대한 미리보기를 사용할 수 없습니다.',
|
||||
time: '시간',
|
||||
title: '제목',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: '휴지통',
|
||||
trashHasBeenSuccessfullyEmptied: '휴지통이 성공적으로 비워졌습니다.',
|
||||
turnOffRecentCardHighlighting: '최근 카드 강조 표시 끄기',
|
||||
typeNameToConfirm: '확인하려면 이름을 입력하세요.',
|
||||
typeTitleToConfirm: '확인하려면 제목을 입력하세요.',
|
||||
unsavedChanges: '저장되지 않은 변경사항',
|
||||
uploadFailedFileIsTooBig: '업로드 실패: 파일이 너무 큽니다.',
|
||||
uploadFailedNotEnoughStorageSpace: '업로드 실패: 저장 공간이 부족합니다.',
|
||||
uploadedImages: '업로드된 이미지',
|
||||
url: 'URL',
|
||||
useSecureConnection: '보안 연결 사용',
|
||||
userActions_title: '사용자 작업',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0>님이 <2>{{card}}</2>를 {{list}}에 추가했습니다',
|
||||
userAddedThisCardToList: '<0>{{user}}</0>님이 이 카드를 {{list}}에 추가했습니다',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard:
|
||||
'<0>{{actorUser}}</0>님이 {{addedUser}}님을 <4>{{card}}</4>에 추가했습니다',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0>님이 {{addedUser}}님을 이 카드에 추가했습니다',
|
||||
userAddedYouToCard: '<0>{{user}}</0>님이 당신을 <2>{{card}}</2>에 추가했습니다',
|
||||
userCompletedTaskOnCard:
|
||||
'<0>{{user}}</0>님이 <4>{{card}}</4>에서 {{task}} 작업을 완료했습니다',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0>님이 이 카드에서 {{task}} 작업을 완료했습니다',
|
||||
userJoinedCard: '<0>{{user}}</0>님이 <2>{{card}}</2>에 참여했습니다',
|
||||
userJoinedThisCard: '<0>{{user}}</0>님이 이 카드에 참여했습니다',
|
||||
userLeftCard: '<0>{{user}}</0>님이 <2>{{card}}</2>를 떠났습니다',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0>님이 <2>{{card}}</2>에 새 댓글 «{{comment}}»을 남겼습니다',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0>님이 이 카드를 떠났습니다',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0>님이 <4>{{card}}</4>에서 {{task}} 작업을 미완료로 표시했습니다',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0>님이 이 카드에서 {{task}} 작업을 미완료로 표시했습니다',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0>님이 <2>{{card}}</2>의 댓글 «{{comment}}»에서 당신을 언급했습니다',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0>님이 <2>{{card}}</2>를 {{fromList}}에서 {{toList}}로 이동했습니다',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> 님이 {{fromList}}에서 {{toList}}로 이 카드를 옮겼습니다',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
'<0>{{user}}</0>님이 {{fromList}}에서 {{toList}}로 이 카드를 옮겼습니다',
|
||||
userRemovedUserFromCard:
|
||||
'<0>{{actorUser}}</0>님이 {{removedUser}}님을 <4>{{card}}</4>에서 제거했습니다',
|
||||
userRemovedUserFromThisCard:
|
||||
'<0>{{actorUser}}</0>님이 {{removedUser}}님을 이 카드에서 제거했습니다',
|
||||
username: '사용자 이름',
|
||||
users: '사용자들',
|
||||
viewer: '뷰어',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: '뷰어들',
|
||||
visualTaskManagementWithLists: '목록을 통한 시각적 작업 관리.',
|
||||
webhooks: '웹훅',
|
||||
withoutBaseGroup: '기본 그룹 없음',
|
||||
writeComment: '댓글 작성...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: '사용자 활성화',
|
||||
activateUser_title: '사용자 활성화',
|
||||
addAnotherCard: '카드 추가',
|
||||
addAnotherList: '목록 추가',
|
||||
addAnotherTask: '작업 추가',
|
||||
addCard: '카드 추가',
|
||||
addCard_title: '카드 추가',
|
||||
addComment: '댓글 추가',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: '사용자 정의 필드 추가',
|
||||
addCustomFieldGroup: '사용자 정의 필드 그룹 추가',
|
||||
addList: '목록 추가',
|
||||
addMember: '멤버 추가',
|
||||
addMoreDetailedDescription: '더 자세한 설명 추가',
|
||||
addTask: '작업 추가',
|
||||
addTaskList: null,
|
||||
addTaskList: '작업 목록 추가',
|
||||
addToCard: '카드에 추가',
|
||||
addUser: '사용자 추가',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: '웹훅 추가',
|
||||
archive: '보관',
|
||||
archiveCard: '카드 보관',
|
||||
archiveCard_title: '카드 보관',
|
||||
archiveCards: '카드들 보관',
|
||||
archiveCards_title: '카드들 보관',
|
||||
assignAsOwner: '소유자로 지정',
|
||||
cancel: '취소',
|
||||
createBoard: '보드 생성',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: '사용자 정의 필드 그룹 생성',
|
||||
createFile: '파일 생성',
|
||||
createLabel: '라벨 생성',
|
||||
createNewLabel: '새 라벨 생성',
|
||||
createProject: '프로젝트 생성',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: '사용자 비활성화',
|
||||
deactivateUser_title: '사용자 비활성화',
|
||||
delete: '삭제',
|
||||
deleteAttachment: '첨부 파일 삭제',
|
||||
deleteAvatar: '아바타 삭제',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: '배경 이미지 삭제',
|
||||
deleteBoard: '보드 삭제',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: '보드 삭제',
|
||||
deleteCard: '카드 삭제',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: '카드 영구 삭제',
|
||||
deleteCard_title: '카드 삭제',
|
||||
deleteComment: '댓글 삭제',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: '사용자 정의 필드 삭제',
|
||||
deleteCustomFieldGroup: '사용자 정의 필드 그룹 삭제',
|
||||
deleteForever_title: '영구 삭제',
|
||||
deleteGroup: '그룹 삭제',
|
||||
deleteLabel: '라벨 삭제',
|
||||
deleteList: '목록 삭제',
|
||||
deleteList_title: '목록 삭제',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: '알림 서비스 삭제',
|
||||
deleteProject: '프로젝트 삭제',
|
||||
deleteProject_title: '프로젝트 삭제',
|
||||
deleteTask: '작업 삭제',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: '작업 목록 삭제',
|
||||
deleteTask_title: '작업 삭제',
|
||||
deleteUser: '사용자 삭제',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
deleteUser_title: '사용자 삭제',
|
||||
deleteWebhook: '웹훅 삭제',
|
||||
dismissAll: '모두 해제',
|
||||
download: null,
|
||||
download: '다운로드',
|
||||
duplicateCard_title: '카드 복제',
|
||||
edit: '편집',
|
||||
editColor_title: '색상 편집',
|
||||
editDescription_title: '설명 편집',
|
||||
editDueDate_title: '마감일 편집',
|
||||
editEmail_title: '이메일 편집',
|
||||
editGroup: null,
|
||||
editGroup: '그룹 편집',
|
||||
editInformation_title: '정보 편집',
|
||||
editPassword_title: '비밀번호 편집',
|
||||
editPermissions: '권한 편집',
|
||||
editRole_title: null,
|
||||
editRole_title: '역할 편집',
|
||||
editStopwatch_title: '스톱워치 편집',
|
||||
editTitle_title: '제목 편집',
|
||||
editType_title: null,
|
||||
editType_title: '유형 편집',
|
||||
editUsername_title: '사용자 이름 편집',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: '휴지통 비우기',
|
||||
emptyTrash_title: '휴지통 비우기',
|
||||
import: '가져오기',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: '참여',
|
||||
leave: '떠나기',
|
||||
leaveBoard: '보드 떠나기',
|
||||
leaveProject: '프로젝트 떠나기',
|
||||
logOut_title: '로그아웃',
|
||||
makeCover_title: '커버 만들기',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: '프로젝트 비공개로 만들기',
|
||||
makeProjectPrivate_title: '프로젝트 비공개로 만들기',
|
||||
makeProjectShared: '프로젝트 공유하기',
|
||||
makeProjectShared_title: '프로젝트 공유하기',
|
||||
move: '이동',
|
||||
moveCard_title: '카드 이동',
|
||||
moveList_title: null,
|
||||
moveList_title: '목록 이동',
|
||||
remove: '제거',
|
||||
removeAssignee: null,
|
||||
removeAssignee: '담당자 제거',
|
||||
removeColor: '색상 제거',
|
||||
removeCover_title: '커버 제거',
|
||||
removeFromBoard: '보드에서 제거',
|
||||
removeFromProject: '프로젝트에서 제거',
|
||||
removeManager: '관리자 제거',
|
||||
removeMember: '멤버 제거',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: '{{list}}로 복원',
|
||||
returnToBoard: '보드로 돌아가기',
|
||||
save: '저장',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: '테스트 이메일 보내기',
|
||||
showActive: '활성 표시',
|
||||
showAllAttachments: '모든 첨부 파일 보기 ({{hidden}} 숨김)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: '이 사용자의 카드 표시',
|
||||
showDeactivated: '비활성화된 항목 표시',
|
||||
showFewerAttachments: '첨부 파일 적게 보기',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: '적게 표시',
|
||||
showMore: '더 표시',
|
||||
sortList_title: '목록 정렬',
|
||||
start: '시작',
|
||||
stop: '중지',
|
||||
subscribe: '구독',
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: '활성 사용자 한도에 도달했습니다',
|
||||
adminLoginRequiredToInitializeInstance: '인스턴스 초기화를 위해 관리자 로그인이 필요합니다',
|
||||
emailAlreadyInUse: '이미 사용 중인 이메일',
|
||||
emailOrUsername: '이메일 또는 사용자 이름',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: '이 약관을 읽고 동의합니다',
|
||||
invalidCredentials: '잘못된 자격 증명',
|
||||
invalidEmailOrUsername: '잘못된 이메일 또는 사용자 이름',
|
||||
invalidPassword: '잘못된 비밀번호',
|
||||
logIn_title: null,
|
||||
logIn_title: '로그인',
|
||||
noInternetConnection: '인터넷 연결 없음',
|
||||
or: null,
|
||||
or: '또는',
|
||||
pageNotFound_title: '페이지를 찾을 수 없음',
|
||||
password: '비밀번호',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: '<1>PLANKA</1>로 구동됨',
|
||||
serverConnectionFailed: '서버 연결 실패',
|
||||
unknownError: '알 수 없는 오류, 나중에 다시 시도하세요',
|
||||
useSingleSignOn: 'Single Sign-On(SSO) 사용',
|
||||
@@ -22,8 +22,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: '취소 후 닫기',
|
||||
continue: '계속',
|
||||
logIn: '로그인',
|
||||
logInWithSso: 'SSO로 로그인',
|
||||
},
|
||||
|
||||
@@ -21,430 +21,452 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Over PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Toegangstoken',
|
||||
account: 'Account',
|
||||
actions: 'Acties',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'Gebruiker activeren',
|
||||
active: 'Actief',
|
||||
addAttachment_title: 'Bijlage toevoegen',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'Aangepaste veldgroep toevoegen',
|
||||
addCustomField_title: 'Aangepast veld toevoegen',
|
||||
addManager_title: 'Manager toevoegen',
|
||||
addMember_title: 'Lid toevoegen',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'Takenlijst toevoegen',
|
||||
addUser_title: 'Gebruiker toevoegen',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'Beheerder',
|
||||
administration: 'Beheer',
|
||||
all: 'Alle',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Alle wijzigingen worden automatisch opgeslagen<br />nadat de verbinding is hersteld.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Alfabetisch',
|
||||
alwaysDisplayCardCreator: 'Kaartmaker altijd weergeven',
|
||||
archive: 'Archief',
|
||||
archiveCard_title: 'Kaart archiveren',
|
||||
archiveCards_title: 'Kaarten archiveren',
|
||||
areYouSureYouWantToActivateThisUser: 'Weet u zeker dat u deze gebruiker wilt activeren?',
|
||||
areYouSureYouWantToArchiveCards: 'Weet u zeker dat u deze kaarten wilt archiveren?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Weet u zeker dat u deze kaart wilt archiveren?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Weet u zeker dat u deze projectmanager als eigenaar wilt toewijzen?',
|
||||
areYouSureYouWantToDeactivateThisUser: 'Weet u zeker dat u deze gebruiker wilt deactiveren?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Weet u zeker dat u deze bijlage wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Weet u zeker dat u deze achtergrondafbeelding wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Weet u zeker dat u dit bord wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Weet u zeker dat u deze kaart wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Weet u zeker dat u deze kaart permanent wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Weet u zeker dat u deze opmerking wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'Weet u zeker dat u dit aangepaste veld wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Weet u zeker dat u deze aangepaste veldgroep wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Weet u zeker dat u dit label wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisList: 'Weet u zeker dat u deze lijst wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Weet u zeker dat u deze lijst wilt verwijderen? Alle kaarten worden naar de prullenbak verplaatst.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Weet u zeker dat u deze meldingsservice wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Weet u zeker dat u dit project wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Weet u zeker dat u deze taak wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Weet u zeker dat u deze takenlijst wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Weet u zeker dat u deze gebruiker wilt verwijderen?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Weet u zeker dat u deze webhook wilt verwijderen?',
|
||||
areYouSureYouWantToEmptyTrash: 'Weet u zeker dat u de prullenbak wilt legen?',
|
||||
areYouSureYouWantToLeaveBoard: 'Weet u zeker dat u het bord wilt verlaten?',
|
||||
areYouSureYouWantToLeaveProject: 'Weet u zeker dat u het project wilt verlaten?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate: 'Weet u zeker dat u dit project privé wilt maken?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Weet u zeker dat u dit project gedeeld wilt maken?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Weet u zeker dat u deze manager uit het project wilt verwijderen?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Weet u zeker dat u dit lid uit het bord wilt verwijderen?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Toewijzen als eigenaar',
|
||||
atLeastOneListMustBePresent: 'Er moet ten minste één lijst aanwezig zijn',
|
||||
attachment: 'Bijlage',
|
||||
attachments: 'Bijlagen',
|
||||
authentication: 'Authenticatie',
|
||||
background: 'Achtergrond',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Basis aangepaste velden',
|
||||
baseGroup: 'Basisgroep',
|
||||
board: 'Bord',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Bordacties',
|
||||
boardNotFound_title: 'Bord niet gevonden',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'Geabonneerd op bord',
|
||||
boardUser: 'Bordgebruiker',
|
||||
byCreationTime: 'Op aanmaaktijd',
|
||||
byDefault: 'Standaard',
|
||||
byDueDate: 'Op vervaldatum',
|
||||
canBeInvitedToWorkInBoards: 'Kan worden uitgenodigd om aan borden te werken.',
|
||||
canComment: 'Kan opmerking plaatsen',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Kan eigen projecten maken en worden uitgenodigd om aan anderen te werken.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Kan bordindeling bewerken en leden toewijzen aan kaarten.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Kan systeembrede instellingen beheren en optreden als projecteigenaar.',
|
||||
canOnlyViewBoard: 'Kan alleen het bord bekijken.',
|
||||
cardActions_title: 'Kaartacties',
|
||||
cardNotFound_title: 'Kaart niet gevonden',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Kaarten op deze lijst zijn beschikbaar voor alle bordleden.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Kaarten op deze lijst zijn voltooid en klaar om te worden gearchiveerd.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Kaarten op deze lijst zijn klaar om aan te werken.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Klik hier</0> of ververs de pagina om bij te werken.',
|
||||
clientHostnameInEhlo: 'Client hostnaam in EHLO',
|
||||
closed: 'Gesloten',
|
||||
color: 'Kleur',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
comments: 'Opmerkingen',
|
||||
contentExceedsLimit: 'Inhoud overschrijdt {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'De inhoud van deze bijlage is te groot om weer te geven.',
|
||||
copy_inline: 'kopie',
|
||||
createBoard_title: 'Bord aanmaken',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'Aangepaste veldgroep maken',
|
||||
createLabel_title: 'Label aanmaken',
|
||||
createNewOneOrSelectExistingOne: 'Maak een nieuwe of selecteer een bestaande.',
|
||||
createProject_title: 'Project aanmaken',
|
||||
createTextFile_title: 'Tekstbestand aanmaken',
|
||||
creator: null,
|
||||
creator: 'Maker',
|
||||
currentPassword: 'Huidig wachtwoord',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'Aangepaste veldgroep',
|
||||
customFieldGroups_title: 'Aangepaste veldgroepen',
|
||||
customField_title: 'Aangepast veld',
|
||||
customFields_title: 'Aangepaste velden',
|
||||
dangerZone_title: 'Gevaarlijke zone',
|
||||
date: 'Datum',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'Gebruiker deactiveren',
|
||||
defaultCardType_title: 'Standaard kaarttype',
|
||||
defaultFrom: 'Standaard "van"',
|
||||
defaultView_title: 'Standaardweergave',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Verwijder alle borden om dit project te kunnen verwijderen',
|
||||
deleteAttachment_title: 'Bijlage verwijderen',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: 'Achtergrondafbeelding verwijderen',
|
||||
deleteBoard_title: 'Bord verwijderen',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'Kaart permanent verwijderen',
|
||||
deleteCard_title: 'Kaart verwijderen',
|
||||
deleteComment_title: 'Opmerking verwijderen',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'Aangepaste veldgroep verwijderen',
|
||||
deleteCustomField_title: 'Aangepast veld verwijderen',
|
||||
deleteLabel_title: 'Label verwijderen',
|
||||
deleteList_title: 'Lijst verwijderen',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'Meldingsservice verwijderen',
|
||||
deleteProject_title: 'Project verwijderen',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'Takenlijst verwijderen',
|
||||
deleteTask_title: 'Taak verwijderen',
|
||||
deleteUser_title: 'Gebruiker verwijderen',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'Webhook verwijderen',
|
||||
deletedUser_title: 'Verwijderde gebruiker',
|
||||
description: 'Beschrijving',
|
||||
detectAutomatically: 'Automatisch detecteren',
|
||||
display: null,
|
||||
display: 'Weergave',
|
||||
dropFileToUpload: 'Sleep bestand om te uploaden',
|
||||
dueDate_title: 'Vervaldatum',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'Dynamische en ongelijk verdeelde indeling.',
|
||||
editAttachment_title: 'Bijlage bewerken',
|
||||
editAvatar_title: 'Avatar bewerken',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: 'Kleur bewerken',
|
||||
editCustomFieldGroup_title: 'Aangepaste veldgroep bewerken',
|
||||
editCustomField_title: 'Aangepast veld bewerken',
|
||||
editDueDate_title: 'Vervaldatum bewerken',
|
||||
editEmail_title: 'E-mail bewerken',
|
||||
editInformation_title: 'Informatie bewerken',
|
||||
editLabel_title: 'Label bewerken',
|
||||
editPassword_title: 'Wachtwoord bewerken',
|
||||
editPermissions_title: 'Machtigingen bewerken',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Rol bewerken',
|
||||
editStopwatch_title: 'Stopwatch bewerken',
|
||||
editType_title: null,
|
||||
editType_title: 'Type bewerken',
|
||||
editUsername_title: 'Gebruikersnaam bewerken',
|
||||
editor: 'Editor',
|
||||
editors: null,
|
||||
editors: 'Editors',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Prullenbak legen',
|
||||
enterCardTitle: 'Voer kaarttitel in...',
|
||||
enterDescription: 'Beschrijving invoeren...',
|
||||
enterFilename: 'Bestandsnaam invoeren',
|
||||
enterListTitle: 'Voer lijsttitel in...',
|
||||
enterTaskDescription: 'Taakbeschrijving invoeren...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Gebeurtenissen',
|
||||
excludedEvents: 'Uitgesloten gebeurtenissen',
|
||||
expandTaskListsByDefault: 'Takenlijsten standaard uitklappen',
|
||||
filterByLabels_title: 'Filteren op labels',
|
||||
filterByMembers_title: 'Filteren op leden',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'Voor persoonlijke projecten.',
|
||||
forTeamBasedProjects: 'Voor teamgebaseerde projecten.',
|
||||
fromComputer_title: 'Van computer',
|
||||
fromTrello: 'Van Trello',
|
||||
general: 'Algemeen',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Verlopen',
|
||||
grid: 'Raster',
|
||||
hideCompletedTasks: 'Voltooide taken verbergen',
|
||||
hideFromProjectListAndFavorites: 'Verbergen uit projectlijst en favorieten',
|
||||
host: 'Host',
|
||||
hours: 'Uren',
|
||||
importBoard_title: 'Bord importeren',
|
||||
invalidCurrentPassword: 'Ongeldig huidig wachtwoord',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'Labels',
|
||||
language: 'Taal',
|
||||
leaveBoard_title: 'Bord verlaten',
|
||||
leaveProject_title: 'Project verlaten',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'Kaarttypes beperken tot standaardtype',
|
||||
linkToCard: 'Link naar kaart',
|
||||
list: 'Lijst',
|
||||
listActions_title: 'Lijstacties',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'Lijsten',
|
||||
makeProjectPrivate_title: 'Project privé maken',
|
||||
makeProjectShared_title: 'Project gedeeld maken',
|
||||
managers: 'Managers',
|
||||
memberActions_title: null,
|
||||
memberActions_title: 'Lidacties',
|
||||
members: 'Leden',
|
||||
minutes: 'Minuten',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Meer acties',
|
||||
moreActions_title: 'Meer acties',
|
||||
moveCard_title: 'Kaart verplaatsen',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'Lijst verplaatsen',
|
||||
myOwn_title: 'Mijn eigen',
|
||||
name: 'Naam',
|
||||
newEmail: 'Nieuwe e-mail',
|
||||
newPassword: 'Nieuw wachtwoord',
|
||||
newUsername: 'Nieuwe gebruikersnaam',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: 'Nieuwe versie beschikbaar',
|
||||
newestFirst: 'Nieuwste eerst',
|
||||
noBoards: 'Geen borden',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Geen kaarten gevonden.',
|
||||
noConnectionToServer: 'Geen verbinding met server',
|
||||
noLists: 'Geen lijsten',
|
||||
noProjects: 'Geen projecten',
|
||||
noUnreadNotifications: 'Geen ongelezen meldingen.',
|
||||
notifications: 'Meldingen',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
oldestFirst: 'Oudste eerst',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Slechts één manager moet overblijven om dit project privé te maken',
|
||||
openBoard_title: 'Bord openen',
|
||||
optional_inline: 'optioneel',
|
||||
organization: 'Organisatie',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Anderen',
|
||||
passwordIsSet: 'Wachtwoord is ingesteld',
|
||||
phone: 'Telefoon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA gebruikt <1><0>Apprise</0></1> om meldingen naar meer dan 100 populaire services te sturen.',
|
||||
port: 'Poort',
|
||||
preferences: 'Voorkeuren',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Tip: druk op Ctrl-V (Cmd-V op Mac) om een bijlage van het klembord toe te voegen.',
|
||||
private: null,
|
||||
private: 'Privé',
|
||||
project: 'Project',
|
||||
projectNotFound_title: 'Project niet gevonden',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'Projecteigenaar',
|
||||
referenceDataAndKnowledgeStorage: 'Referentiegegevens en kennisopslag.',
|
||||
rejectUnauthorizedTlsCertificates: 'Niet-geautoriseerde TLS-certificaten weigeren',
|
||||
removeManager_title: 'Manager verwijderen',
|
||||
removeMember_title: 'Lid verwijderen',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
role: 'Rol',
|
||||
searchCards: 'Kaarten zoeken...',
|
||||
searchCustomFieldGroups: 'Aangepaste veldgroepen zoeken...',
|
||||
searchCustomFields: 'Aangepaste velden zoeken...',
|
||||
searchLabels: 'Labels zoeken...',
|
||||
searchLists: null,
|
||||
searchLists: 'Lijsten zoeken...',
|
||||
searchMembers: 'Leden zoeken...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'Projecten zoeken...',
|
||||
searchUsers: 'Gebruikers zoeken...',
|
||||
seconds: 'Seconden',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Toegewezene selecteren',
|
||||
selectBoard: 'Bord selecteren',
|
||||
selectList: 'Lijst selecteren',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: 'Selecteer een lijst om deze kaart te herstellen',
|
||||
selectOrder_title: 'Volgorde selecteren',
|
||||
selectPermissions_title: 'Machtigingen selecteren',
|
||||
selectProject: 'Project selecteren',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Rol selecteren',
|
||||
selectType_title: 'Type selecteren',
|
||||
sequentialDisplayOfCards: 'Opeenvolgende weergave van kaarten.',
|
||||
settings: 'Instellingen',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: 'Gedeeld',
|
||||
sharedWithMe_title: 'Met mij gedeeld',
|
||||
showOnFrontOfCard: 'Tonen op voorkant van kaart',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Lijst sorteren',
|
||||
stopwatch: 'Stopwatch',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Verhaal',
|
||||
subscribeToCardWhenCommenting: 'Abonneren op kaart bij het plaatsen van commentaar',
|
||||
subscribeToMyOwnCardsByDefault: 'Standaard abonneren op mijn eigen kaarten',
|
||||
taskActions_title: 'Takenacties',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: 'Taaktoewijzing en projectvoltooiing.',
|
||||
taskListActions_title: 'Takenlijstacties',
|
||||
taskList_title: 'Takenlijst',
|
||||
team: 'Team',
|
||||
terms: 'Voorwaarden',
|
||||
testLog_title: 'Testlog',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Er is geen voorbeeld beschikbaar voor deze bijlage.',
|
||||
time: 'Tijd',
|
||||
title: 'Titel',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'Prullenbak',
|
||||
trashHasBeenSuccessfullyEmptied: 'Prullenbak is succesvol geleegd.',
|
||||
turnOffRecentCardHighlighting: 'Recente kaartmarkering uitschakelen',
|
||||
typeNameToConfirm: 'Typ naam om te bevestigen.',
|
||||
typeTitleToConfirm: 'Typ titel om te bevestigen.',
|
||||
unsavedChanges: 'Niet-opgeslagen wijzigingen',
|
||||
uploadFailedFileIsTooBig: 'Upload mislukt: bestand is te groot.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Upload mislukt: niet genoeg opslagruimte.',
|
||||
uploadedImages: 'Geüploade afbeeldingen',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Beveiligde verbinding gebruiken',
|
||||
userActions_title: 'Gebruikersacties',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> heeft <2>{{card}}</2> toegevoegd aan {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> heeft deze kaart toegevoegd aan {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard:
|
||||
'<0>{{actorUser}}</0> heeft {{addedUser}} toegevoegd aan <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> heeft {{addedUser}} toegevoegd aan deze kaart',
|
||||
userAddedYouToCard: '<0>{{user}}</0> heeft jou toegevoegd aan <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> heeft {{task}} voltooid op <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> heeft {{task}} voltooid op deze kaart',
|
||||
userJoinedCard: '<0>{{user}}</0> is toegetreden tot <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> is toegetreden tot deze kaart',
|
||||
userLeftCard: '<0>{{user}}</0> heeft <2>{{card}}</2> verlaten',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> heeft een nieuwe opmerking achtergelaten «{{comment}}» bij <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> heeft deze kaart verlaten',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> heeft {{task}} als onvolledig gemarkeerd op <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> heeft {{task}} als onvolledig gemarkeerd op deze kaart',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> heeft jou genoemd in een opmerking «{{comment}}» op <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> heeft <2>{{card}}</2> verplaatst van {{fromList}} naar {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> heeft deze kaart verplaatst van {{fromList}} naar {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard:
|
||||
'<0>{{actorUser}}</0> heeft {{removedUser}} verwijderd van <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard:
|
||||
'<0>{{actorUser}}</0> heeft {{removedUser}} verwijderd van deze kaart',
|
||||
username: 'Gebruikersnaam',
|
||||
users: 'Gebruikers',
|
||||
viewer: 'Kijker',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'Kijkers',
|
||||
visualTaskManagementWithLists: 'Visueel takenbeheer met lijsten.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Zonder basisgroep',
|
||||
writeComment: 'Schrijf een opmerking...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Gebruiker activeren',
|
||||
activateUser_title: 'Gebruiker activeren',
|
||||
addAnotherCard: 'Voeg nog een kaart toe',
|
||||
addAnotherList: 'Voeg nog een lijst toe',
|
||||
addAnotherTask: 'Voeg nog een taak toe',
|
||||
addCard: 'Kaart toevoegen',
|
||||
addCard_title: 'Kaart toevoegen',
|
||||
addComment: 'Opmerking toevoegen',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Aangepast veld toevoegen',
|
||||
addCustomFieldGroup: 'Aangepaste veldgroep toevoegen',
|
||||
addList: 'Lijst toevoegen',
|
||||
addMember: 'Lid toevoegen',
|
||||
addMoreDetailedDescription: 'Meer gedetailleerde beschrijving toevoegen',
|
||||
addTask: 'Taak toevoegen',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Takenlijst toevoegen',
|
||||
addToCard: 'Toevoegen aan kaart',
|
||||
addUser: 'Gebruiker toevoegen',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Webhook toevoegen',
|
||||
archive: 'Archiveren',
|
||||
archiveCard: 'Kaart archiveren',
|
||||
archiveCard_title: 'Kaart archiveren',
|
||||
archiveCards: 'Kaarten archiveren',
|
||||
archiveCards_title: 'Kaarten archiveren',
|
||||
assignAsOwner: 'Toewijzen als eigenaar',
|
||||
cancel: 'Annuleren',
|
||||
createBoard: 'Bord aanmaken',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Aangepaste veldgroep aanmaken',
|
||||
createFile: 'Bestand aanmaken',
|
||||
createLabel: 'Label aanmaken',
|
||||
createNewLabel: 'Nieuw label aanmaken',
|
||||
createProject: 'Project aanmaken',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Gebruiker deactiveren',
|
||||
deactivateUser_title: 'Gebruiker deactiveren',
|
||||
delete: 'Verwijderen',
|
||||
deleteAttachment: 'Bijlage verwijderen',
|
||||
deleteAvatar: 'Avatar verwijderen',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Achtergrondafbeelding verwijderen',
|
||||
deleteBoard: 'Bord verwijderen',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Bord verwijderen',
|
||||
deleteCard: 'Kaart verwijderen',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'Kaart definitief verwijderen',
|
||||
deleteCard_title: 'Kaart verwijderen',
|
||||
deleteComment: 'Opmerking verwijderen',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Aangepast veld verwijderen',
|
||||
deleteCustomFieldGroup: 'Aangepaste veldgroep verwijderen',
|
||||
deleteForever_title: 'Definitief verwijderen',
|
||||
deleteGroup: 'Groep verwijderen',
|
||||
deleteLabel: 'Label verwijderen',
|
||||
deleteList: 'Lijst verwijderen',
|
||||
deleteList_title: 'Lijst verwijderen',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: 'Meldingsservice verwijderen',
|
||||
deleteProject: 'Project verwijderen',
|
||||
deleteProject_title: 'Project verwijderen',
|
||||
deleteTask: 'Taak verwijderen',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'Takenlijst verwijderen',
|
||||
deleteTask_title: 'Taak verwijderen',
|
||||
deleteUser: 'Gebruiker verwijderen',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: 'Gebruiker verwijderen',
|
||||
deleteWebhook: 'Webhook verwijderen',
|
||||
dismissAll: 'Alles afwijzen',
|
||||
download: 'Downloaden',
|
||||
duplicateCard_title: 'Kaart dupliceren',
|
||||
edit: 'Bewerken',
|
||||
editColor_title: null,
|
||||
editColor_title: 'Kleur bewerken',
|
||||
editDescription_title: 'Beschrijving bewerken',
|
||||
editDueDate_title: 'Vervaldatum bewerken',
|
||||
editEmail_title: 'E-mail bewerken',
|
||||
editGroup: null,
|
||||
editGroup: 'Groep bewerken',
|
||||
editInformation_title: 'Informatie bewerken',
|
||||
editPassword_title: 'Wachtwoord bewerken',
|
||||
editPermissions: 'Machtigingen bewerken',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Rol bewerken',
|
||||
editStopwatch_title: 'Stopwatch bewerken',
|
||||
editTitle_title: 'Titel bewerken',
|
||||
editType_title: null,
|
||||
editType_title: 'Type bewerken',
|
||||
editUsername_title: 'Gebruikersnaam bewerken',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: 'Prullenbak legen',
|
||||
emptyTrash_title: 'Prullenbak legen',
|
||||
import: 'Importeren',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'Deelnemen',
|
||||
leave: 'Verlaten',
|
||||
leaveBoard: 'Bord verlaten',
|
||||
leaveProject: 'Project verlaten',
|
||||
logOut_title: 'Uitloggen',
|
||||
makeCover_title: 'Omslag maken',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'Project privé maken',
|
||||
makeProjectPrivate_title: 'Project privé maken',
|
||||
makeProjectShared: 'Project delen',
|
||||
makeProjectShared_title: 'Project delen',
|
||||
move: 'Verplaatsen',
|
||||
moveCard_title: 'Kaart verplaatsen',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Lijst verplaatsen',
|
||||
remove: 'Verwijderen',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'Toegewezene verwijderen',
|
||||
removeColor: 'Kleur verwijderen',
|
||||
removeCover_title: 'Omslag verwijderen',
|
||||
removeFromBoard: 'Verwijderen van bord',
|
||||
removeFromProject: 'Verwijderen van project',
|
||||
removeManager: 'Manager verwijderen',
|
||||
removeMember: 'Lid verwijderen',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Herstellen naar {{list}}',
|
||||
returnToBoard: 'Terug naar bord',
|
||||
save: 'Opslaan',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Test e-mail verzenden',
|
||||
showActive: 'Actieve tonen',
|
||||
showAllAttachments: 'Alle bijlagen weergeven ({{hidden}} verbergen)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Kaarten met deze gebruiker tonen',
|
||||
showDeactivated: 'Gedeactiveerde tonen',
|
||||
showFewerAttachments: 'Minder bijlagen weergeven',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: 'Minder tonen',
|
||||
showMore: 'Meer tonen',
|
||||
sortList_title: 'Lijst sorteren',
|
||||
start: 'Start',
|
||||
stop: 'Stop',
|
||||
subscribe: 'Abonneren',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Limiet voor actieve gebruikers bereikt',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Beheerder login vereist om instantie te initialiseren',
|
||||
emailAlreadyInUse: 'E-mail is al in gebruik',
|
||||
emailOrUsername: 'E-mail of gebruikersnaam',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Ik heb deze voorwaarden gelezen en ga ermee akkoord',
|
||||
invalidCredentials: 'Ongeldige inloggegevens',
|
||||
invalidEmailOrUsername: 'Ongeldig e-mailadres of gebruikersnaam',
|
||||
invalidPassword: 'Ongeldig wachtwoord',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Inloggen',
|
||||
noInternetConnection: 'Geen internetverbinding',
|
||||
or: null,
|
||||
or: 'Of',
|
||||
pageNotFound_title: 'Pagina niet gevonden',
|
||||
password: 'Wachtwoord',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Mogelijk gemaakt door <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Verbinding met de server mislukt',
|
||||
unknownError: 'Onbekende fout, probeer het later opnieuw',
|
||||
useSingleSignOn: 'Gebruik single sign-on',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Annuleren en sluiten',
|
||||
continue: 'Doorgaan',
|
||||
logIn: 'Inloggen',
|
||||
logInWithSso: 'Inloggen met SSO',
|
||||
},
|
||||
|
||||
@@ -21,18 +21,18 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'O PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Token dostępu',
|
||||
account: 'Konto',
|
||||
actions: 'Akcje',
|
||||
activateUser_title: 'Aktywuj Użytkownika',
|
||||
activateUser_title: 'Aktywuj użytkownika',
|
||||
active: 'Aktywny',
|
||||
addAttachment_title: 'Dodaj Załącznik',
|
||||
addCustomFieldGroup_title: 'Dodaj Grupę Własnych Pól',
|
||||
addCustomField_title: 'Dodaj Własne Pole',
|
||||
addManager_title: 'Dodaj Zarządcę',
|
||||
addMember_title: 'Dodaj Członka',
|
||||
addTaskList_title: 'Dodaj Listę Zadań',
|
||||
addUser_title: 'Dodaj Użytkownika',
|
||||
addAttachment_title: 'Dodaj załącznik',
|
||||
addCustomFieldGroup_title: 'Dodaj grupę własnych pól',
|
||||
addCustomField_title: 'Dodaj własne pole',
|
||||
addManager_title: 'Dodaj zarządcę',
|
||||
addMember_title: 'Dodaj członka',
|
||||
addTaskList_title: 'Dodaj listę zadań',
|
||||
addUser_title: 'Dodaj użytkownika',
|
||||
admin: 'Administrator',
|
||||
administration: 'Administracja',
|
||||
all: 'Wszystko',
|
||||
@@ -41,8 +41,8 @@ export default {
|
||||
alphabetically: 'Alfabetycznie',
|
||||
alwaysDisplayCardCreator: 'Zawsze pokazuj twórcę karty',
|
||||
archive: 'Archiwum',
|
||||
archiveCard_title: 'Archiwizuj Kartę',
|
||||
archiveCards_title: 'Archiwizuj Karty',
|
||||
archiveCard_title: 'Archiwizuj kartę',
|
||||
archiveCards_title: 'Archiwizuj karty',
|
||||
areYouSureYouWantToActivateThisUser: 'Jesteś pewien że chcesz aktywować tego użytkownika?',
|
||||
areYouSureYouWantToArchiveCards: 'Jesteś pewien że chcesz archiwizować karty?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Jesteś pewien że chcesz archiwizować tę kartę?',
|
||||
@@ -51,43 +51,49 @@ export default {
|
||||
areYouSureYouWantToDeactivateThisUser:
|
||||
'Jesteś pewien że chcesz dezaktywować tego użytkownika?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Jesteś pewien że chcesz usunąć ten załącznik?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: 'Jesteś pewien że chcesz usunąć to tło?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Jesteś pewien że chcesz usunąć tę tablicę?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Jesteś pewien że chcesz usunąć tę kartę?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Jesteś pewien że chcesz usunąć tę kartę na zawsze?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Jesteś pewien że chcesz usunąć ten komentarz?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'Jesteś pewien że chcesz usunąć to pole niestandardowe?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Jesteś pewien że chcesz usunąć tę grupę pól niestandardowych?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Jesteś pewien że chcesz usunąć to oznaczenie?',
|
||||
areYouSureYouWantToDeleteThisList: 'Jesteś pewien że chcesz usunąć tę listę?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Jesteś pewien że chcesz usunąć tę listę? Wszystkie karty zostaną przeniesione do kosza.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Jesteś pewien że chcesz usunąć tę usługę powiadomień?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Jesteś pewien że chcesz usunąć ten projekt?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Jesteś pewien że chcesz usunąć to zadanie?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Jesteś pewien że chcesz usunąć tę listę zadań?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Jesteś pewien że chcesz usunąć tego użytkownika?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Jesteś pewien że chcesz usunąć ten webhook?',
|
||||
areYouSureYouWantToEmptyTrash: 'Jesteś pewien że chcesz opróżnić kosz?',
|
||||
areYouSureYouWantToLeaveBoard: 'Jesteś pewien że chcesz opuścić tablicę?',
|
||||
areYouSureYouWantToLeaveProject: 'Jesteś pewien że chcesz opuścić projekt?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Jesteś pewien że chcesz uczynić ten projekt prywatnym?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Jesteś pewien że chcesz udostępnić ten projekt?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Jesteś pewien że chcesz usunąć tego zarządcę z projektu?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Jesteś pewien że chcesz usunąć tego członka z tablicy?',
|
||||
assignAsOwner_title: 'Przypisz Jako Właściciela',
|
||||
assignAsOwner_title: 'Przypisz jako właściciela',
|
||||
atLeastOneListMustBePresent: 'Przynajmniej jedna lista musi istnieć',
|
||||
attachment: 'Załącznik',
|
||||
attachments: 'Załączniki',
|
||||
authentication: 'Uwierzytelnianie',
|
||||
background: 'Tło',
|
||||
baseCustomFields_title: 'Bazowe Pola Własne',
|
||||
baseCustomFields_title: 'Bazowe pola własne',
|
||||
baseGroup: 'Grupa bazowa',
|
||||
board: 'Tablica',
|
||||
boardActions_title: 'Akcje Tablicy',
|
||||
boardNotFound_title: 'Tablica Nie Znaleziona',
|
||||
boardSubscribed: 'Zasubskrybowano Tablicę',
|
||||
boardUser: 'Użytkownik Tablicy',
|
||||
boardActions_title: 'Akcje tablicy',
|
||||
boardNotFound_title: 'Tablica nie znaleziona',
|
||||
boardSubscribed: 'Zasubskrybowano tablicę',
|
||||
boardUser: 'Użytkownik tablicy',
|
||||
byCreationTime: 'Po dacie utworzenia',
|
||||
byDefault: 'Domyślnie',
|
||||
byDueDate: 'Po dacie wykonania',
|
||||
@@ -100,125 +106,126 @@ export default {
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Może zarządzać ustawieniami systemowymi i działać jako właściciel projektu.',
|
||||
canOnlyViewBoard: 'Może tylko wyświetlać tablicę.',
|
||||
cardActions_title: 'Akcje Karty',
|
||||
cardNotFound_title: 'Karta Nie Znaleziona',
|
||||
cardActions_title: 'Akcje karty',
|
||||
cardNotFound_title: 'Karta nie znaleziona',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Karty na tej liście są dostępne dla wszystkich członków tablicy.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Karty na tej liście są ukończone i gotowe do zarchiwizowania.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Karty na tej liście są gotowe do pracy nad nimi.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Naciśnij tutaj</0> lub odśwież stronę, by zaktualizować.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Nazwa hosta klienta w EHLO',
|
||||
closed: 'Zamknięte',
|
||||
color: 'Kolor',
|
||||
comments: 'Komentarze',
|
||||
contentExceedsLimit: 'Zawartość przekracza {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: 'kopiuj',
|
||||
createBoard_title: 'Utwórz Tablicę',
|
||||
createCustomFieldGroup_title: 'Utwórz Grupę Pól Własnych',
|
||||
createLabel_title: 'Utwórz Oznaczenie',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Zawartość tego załącznika jest zbyt duża do wyświetlenia.',
|
||||
copy_inline: 'kopia',
|
||||
createBoard_title: 'Utwórz tablicę',
|
||||
createCustomFieldGroup_title: 'Utwórz grupę pól własnych',
|
||||
createLabel_title: 'Utwórz oznaczenie',
|
||||
createNewOneOrSelectExistingOne: 'Stwórz nowe lub wybierz<br />istniejące.',
|
||||
createProject_title: 'Utwórz Projekt',
|
||||
createTextFile_title: 'Utwórz Plik Tekstowy',
|
||||
createProject_title: 'Utwórz projekt',
|
||||
createTextFile_title: 'Utwórz plik tekstowy',
|
||||
creator: 'Twórca',
|
||||
currentPassword: 'Obecne Hasło',
|
||||
customFieldGroup_title: 'Grupa Pól Własnych',
|
||||
customFieldGroups_title: 'Grupy Pól Własnych',
|
||||
customField_title: 'Własne Pole',
|
||||
customFields_title: 'Własne Pola',
|
||||
dangerZone_title: 'Strefa Niebezpieczeństwa',
|
||||
currentPassword: 'Obecne hasło',
|
||||
customFieldGroup_title: 'Grupa pól własnych',
|
||||
customFieldGroups_title: 'Grupy pól własnych',
|
||||
customField_title: 'Własne pole',
|
||||
customFields_title: 'Własne pola',
|
||||
dangerZone_title: 'Strefa niebezpieczeństwa',
|
||||
date: 'Data',
|
||||
deactivateUser_title: 'Dezaktywuj Użytkownika',
|
||||
defaultCardType_title: 'Domyślny Typ Karty',
|
||||
defaultFrom: null,
|
||||
defaultView_title: 'Domyślny Widok',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deleteAttachment_title: 'Usuń Załącznik',
|
||||
deleteBackgroundImage_title: 'Usuń Tło',
|
||||
deleteBoard_title: 'Usuń Tablicę',
|
||||
deleteCardForever_title: 'Usuń Kartę Permamentnie',
|
||||
deleteCard_title: 'Usuń Kartę',
|
||||
deleteComment_title: 'Usuń Komentarz',
|
||||
deleteCustomFieldGroup_title: 'Usuń Grupę Pól Własnych',
|
||||
deleteCustomField_title: 'Usuń Pole Własne',
|
||||
deleteLabel_title: 'Usuń Oznaczenie',
|
||||
deleteList_title: 'Usuń Listę',
|
||||
deleteNotificationService_title: 'Usuń Serwis Powiadomień',
|
||||
deleteProject_title: 'Usuń Projekt',
|
||||
deleteTaskList_title: 'Usuń Listę Zadań',
|
||||
deleteTask_title: 'Usuń Zadanie',
|
||||
deleteUser_title: 'Usuń Użytkownika',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: 'Usunięty Użytkownik',
|
||||
deactivateUser_title: 'Dezaktywuj użytkownika',
|
||||
defaultCardType_title: 'Domyślny typ karty',
|
||||
defaultFrom: 'Domyślne "od"',
|
||||
defaultView_title: 'Domyślny widok',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Usuń wszystkie tablice, aby móc usunąć ten projekt',
|
||||
deleteAttachment_title: 'Usuń załącznik',
|
||||
deleteBackgroundImage_title: 'Usuń tło',
|
||||
deleteBoard_title: 'Usuń tablicę',
|
||||
deleteCardForever_title: 'Usuń kartę permanentnie',
|
||||
deleteCard_title: 'Usuń kartę',
|
||||
deleteComment_title: 'Usuń komentarz',
|
||||
deleteCustomFieldGroup_title: 'Usuń grupę pól własnych',
|
||||
deleteCustomField_title: 'Usuń pole własne',
|
||||
deleteLabel_title: 'Usuń oznaczenie',
|
||||
deleteList_title: 'Usuń listę',
|
||||
deleteNotificationService_title: 'Usuń serwis powiadomień',
|
||||
deleteProject_title: 'Usuń projekt',
|
||||
deleteTaskList_title: 'Usuń listę zadań',
|
||||
deleteTask_title: 'Usuń zadanie',
|
||||
deleteUser_title: 'Usuń użytkownika',
|
||||
deleteWebhook_title: 'Usuń webhook',
|
||||
deletedUser_title: 'Usunięty użytkownik',
|
||||
description: 'Opis',
|
||||
detectAutomatically: 'Wykryj automatycznie',
|
||||
display: 'Wyświetlanie',
|
||||
dropFileToUpload: 'Upuść plik aby wgrać',
|
||||
dueDate_title: 'Termin',
|
||||
dynamicAndUnevenlySpacedLayout: 'Dynamiczny i nierówny układ.',
|
||||
editAttachment_title: 'Edytuj Załącznik',
|
||||
editAvatar_title: 'Edytuj Awatar',
|
||||
editColor_title: 'Edytuj Kolor',
|
||||
editCustomFieldGroup_title: 'Edytuj Grupę Pól Własnych',
|
||||
editCustomField_title: 'Edytuj Pole Własne',
|
||||
editDueDate_title: 'Edytuj Termin',
|
||||
editEmail_title: 'Edytuj E-mail',
|
||||
editInformation_title: 'Edytuj Informacje',
|
||||
editLabel_title: 'Edytuj Oznaczenie',
|
||||
editPassword_title: 'Edytuj Hasło',
|
||||
editPermissions_title: 'Edytuj Uprawnienia',
|
||||
editRole_title: 'Edytuj Rolę',
|
||||
editStopwatch_title: 'Edytuj Stoper',
|
||||
editType_title: 'Edytuj Typ',
|
||||
editUsername_title: 'Edytuj Nazwę Użytkownika',
|
||||
editAttachment_title: 'Edytuj załącznik',
|
||||
editAvatar_title: 'Edytuj awatar',
|
||||
editColor_title: 'Edytuj kolor',
|
||||
editCustomFieldGroup_title: 'Edytuj grupę pól własnych',
|
||||
editCustomField_title: 'Edytuj pole własne',
|
||||
editDueDate_title: 'Edytuj termin',
|
||||
editEmail_title: 'Edytuj e-mail',
|
||||
editInformation_title: 'Edytuj informacje',
|
||||
editLabel_title: 'Edytuj oznaczenie',
|
||||
editPassword_title: 'Edytuj hasło',
|
||||
editPermissions_title: 'Edytuj uprawnienia',
|
||||
editRole_title: 'Edytuj rolę',
|
||||
editStopwatch_title: 'Edytuj stoper',
|
||||
editType_title: 'Edytuj typ',
|
||||
editUsername_title: 'Edytuj nazwę użytkownika',
|
||||
editor: 'Edytor',
|
||||
editors: 'Edytorzy',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: 'Opróżnij Kosz',
|
||||
emptyTrash_title: 'Opróżnij kosz',
|
||||
enterCardTitle: 'Podaj tytuł karty...',
|
||||
enterDescription: 'Podaj opis...',
|
||||
enterFilename: 'Podaj nazwę pliku',
|
||||
enterListTitle: 'Podaj tytuł listy...',
|
||||
enterTaskDescription: 'Podaj opis zadania...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
filterByLabels_title: 'Filtruj Po Oznaczeniach',
|
||||
filterByMembers_title: 'Filtruj Po Członkach',
|
||||
events: 'Wydarzenia',
|
||||
excludedEvents: 'Wykluczone wydarzenia',
|
||||
expandTaskListsByDefault: 'Rozwiń listy zadań domyślnie',
|
||||
filterByLabels_title: 'Filtruj po oznaczeniach',
|
||||
filterByMembers_title: 'Filtruj po członkach',
|
||||
forPersonalProjects: 'Dla projektów osobistych.',
|
||||
forTeamBasedProjects: 'Dla projektów zespołowych.',
|
||||
fromComputer_title: 'Z Komputera',
|
||||
fromComputer_title: 'Z komputera',
|
||||
fromTrello: 'Z Trello',
|
||||
general: 'Ogólne',
|
||||
gradients: 'Gradienty',
|
||||
grid: 'Siatka',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: 'Ukryj ukończone zadania',
|
||||
hideFromProjectListAndFavorites: 'Ukryj z listy projektów i ulubionych',
|
||||
host: null,
|
||||
host: 'Host',
|
||||
hours: 'Godzin',
|
||||
importBoard_title: 'Importuj Tablicę',
|
||||
importBoard_title: 'Importuj tablicę',
|
||||
invalidCurrentPassword: 'Błędne obecne hasło',
|
||||
kanban: 'Kanban',
|
||||
labels: 'Oznaczenia',
|
||||
language: 'Język',
|
||||
leaveBoard_title: 'Opuść Tablicę',
|
||||
leaveProject_title: 'Opuść Projekt',
|
||||
leaveBoard_title: 'Opuść tablicę',
|
||||
leaveProject_title: 'Opuść projekt',
|
||||
limitCardTypesToDefaultOne: 'Ogranicz typy kart do domyślnego',
|
||||
linkToCard: null,
|
||||
linkToCard: 'Link do karty',
|
||||
list: 'Lista',
|
||||
listActions_title: 'Akcje Listy',
|
||||
listActions_title: 'Akcje listy',
|
||||
lists: 'Listy',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: 'Udostępnij Projekt',
|
||||
makeProjectPrivate_title: 'Uczyń projekt prywatnym',
|
||||
makeProjectShared_title: 'Udostępnij projekt',
|
||||
managers: 'Zarządcy',
|
||||
memberActions_title: 'Akcje Członków',
|
||||
memberActions_title: 'Akcje członków',
|
||||
members: 'Członkowie',
|
||||
minutes: 'Minut',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moveCard_title: 'Przenoszenie Karty',
|
||||
moveList_title: null,
|
||||
moreActions: 'Więcej akcji',
|
||||
moreActions_title: 'Więcej akcji',
|
||||
moveCard_title: 'Przenoszenie karty',
|
||||
moveList_title: 'Przenieś listę',
|
||||
myOwn_title: 'Moje',
|
||||
name: 'Nazwa',
|
||||
newEmail: 'Nowy e-mail',
|
||||
@@ -227,34 +234,35 @@ export default {
|
||||
newVersionAvailable: 'Nowa wersja dostępna',
|
||||
newestFirst: 'Najpierw najnowsze',
|
||||
noBoards: 'Brak tablic',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Nie znaleziono kart.',
|
||||
noConnectionToServer: 'Brak połączenia z serwerem',
|
||||
noLists: 'Brak list',
|
||||
noProjects: 'Brak projektów',
|
||||
noUnreadNotifications: 'Brak nieprzeczytanych powiadomień.',
|
||||
notifications: 'Powiadomienia',
|
||||
oldestFirst: 'Najpierw najstarsze',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
openBoard_title: 'Otwórz Tablicę',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Tylko jeden zarządca powinien pozostać, aby uczynić ten projekt prywatnym',
|
||||
openBoard_title: 'Otwórz tablicę',
|
||||
optional_inline: 'opcjonalny',
|
||||
organization: 'Organizacja',
|
||||
others: 'Inne',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Hasło jest ustawione',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA używa <1><0>Apprise</0></1> do wysyłania powiadomień do ponad 100 popularnych serwisów.',
|
||||
port: null,
|
||||
port: 'Port',
|
||||
preferences: 'Preferencje',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Podpowiedź: naciśnij Ctrl-V (Cmd-V na Macu) aby dodać załącznik ze schowka.',
|
||||
private: 'Prywatne',
|
||||
project: 'Projekt',
|
||||
projectNotFound_title: 'Projektu Nie Znaleziono',
|
||||
projectNotFound_title: 'Projektu nie znaleziono',
|
||||
projectOwner: 'Właściciel projektu',
|
||||
referenceDataAndKnowledgeStorage: 'Odnoś się do danych i przechowuj wiedzę',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
removeManager_title: 'Usuń Zarządcę',
|
||||
removeMember_title: 'Usuń Członka',
|
||||
referenceDataAndKnowledgeStorage: 'Odnoś się do danych i przechowuj wiedzę.',
|
||||
rejectUnauthorizedTlsCertificates: 'Odrzuć nieautoryzowane certyfikaty TLS',
|
||||
removeManager_title: 'Usuń zarządcę',
|
||||
removeMember_title: 'Usuń członka',
|
||||
role: 'Rola',
|
||||
searchCards: 'Szukaj kart...',
|
||||
searchCustomFieldGroups: 'Szukaj grup pól własnych...',
|
||||
@@ -265,33 +273,33 @@ export default {
|
||||
searchProjects: 'Szukaj projektów...',
|
||||
searchUsers: 'Szukaj użytkowników...',
|
||||
seconds: 'Sekund',
|
||||
selectAssignee_title: 'Wybierz Osobę Przypisaną',
|
||||
selectAssignee_title: 'Wybierz osobę przypisaną',
|
||||
selectBoard: 'Wybierz tablicę',
|
||||
selectList: 'Wybierz listę',
|
||||
selectListToRestoreThisCard: 'Wybierz listę, na którą ma być przywrócona ta karta',
|
||||
selectOrder_title: 'Wybierz Kolejność',
|
||||
selectPermissions_title: 'Wybierz Uprawnienia',
|
||||
selectOrder_title: 'Wybierz kolejność',
|
||||
selectPermissions_title: 'Wybierz uprawnienia',
|
||||
selectProject: 'Wybierz projekt',
|
||||
selectRole_title: 'Wybierz Rolę',
|
||||
selectType_title: 'Wybierz Typ',
|
||||
selectRole_title: 'Wybierz rolę',
|
||||
selectType_title: 'Wybierz typ',
|
||||
sequentialDisplayOfCards: 'Sekwencyjne wyświetlania kart.',
|
||||
settings: 'Ustawienia',
|
||||
shared: 'Udostępniane',
|
||||
sharedWithMe_title: 'Udostępniane Dla Mnie',
|
||||
sharedWithMe_title: 'Udostępniane dla mnie',
|
||||
showOnFrontOfCard: 'Pokazuj na przodzie karty',
|
||||
smtp: null,
|
||||
sortList_title: 'Sortowanie Listy',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Sortowanie listy',
|
||||
stopwatch: 'Stoper',
|
||||
story: 'Scenorys',
|
||||
subscribeToCardWhenCommenting: 'Subskrybuj kartę przy komentowaniu',
|
||||
subscribeToMyOwnCardsByDefault: 'Subskrybuj moje karty automatycznie',
|
||||
taskActions_title: 'Akcje Zadań',
|
||||
taskActions_title: 'Akcje zadań',
|
||||
taskAssignmentAndProjectCompletion: 'Przypisanie zadań i stopień ukończenia projektów.',
|
||||
taskListActions_title: 'Akcje Listy Zadań',
|
||||
taskList_title: 'Lista Zadań',
|
||||
taskListActions_title: 'Akcje listy zadań',
|
||||
taskList_title: 'Lista zadań',
|
||||
team: 'Zespół',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Warunki',
|
||||
testLog_title: 'Dziennik testów',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Brak podglądu dostępnego dla tego załącznika.',
|
||||
time: 'Czas',
|
||||
title: 'Tytuł',
|
||||
@@ -301,12 +309,12 @@ export default {
|
||||
typeNameToConfirm: 'Wpisz nazwę aby potwierdzić.',
|
||||
typeTitleToConfirm: 'Wpisz tytuł aby potwierdzić.',
|
||||
unsavedChanges: 'Niezapisane zmiany',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Przesyłanie nie powiodło się: plik jest za duży.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Przesyłanie nie powiodło się: za mało miejsca na dysku.',
|
||||
uploadedImages: 'Wgrane obrazy',
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
userActions_title: 'Akcje Użytkownika',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Użyj bezpiecznego połączenia',
|
||||
userActions_title: 'Akcje użytkownika',
|
||||
userAddedCardToList: '<0>{{user}}</0> dodał <2>{{card}}</2> do {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> dodał tę kartę do {{list}}',
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> dodał {{addedUser}} do <4>{{card}}</4>',
|
||||
@@ -325,31 +333,32 @@ export default {
|
||||
'<0>{{user}}</0> oznaczył {{task}} jako nieukończone na <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> oznaczył {{task}} jako nieukończone na tej karcie',
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> wspomniał o tobie w komentarzu «{{comment}}» do <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> przeniósł <2>{{card}}</2> z {{fromList}} do {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> przeniósł tę kartę z {{fromList}} do {{toList}}',
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> usunął {{removedUser}} z <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> usunął {{removedUser}} z tej karty',
|
||||
username: 'Nazwa Użytkownika',
|
||||
username: 'Nazwa użytkownika',
|
||||
users: 'Użytkownicy',
|
||||
viewer: 'Wyświetlający',
|
||||
viewers: 'Wyświetlający',
|
||||
visualTaskManagementWithLists: 'Wizualne zarządzanie zadaniami z listami.',
|
||||
webhooks: null,
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Bez grupy bazowej',
|
||||
writeComment: 'Napisz komentarz...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: 'Aktywuj użytkownika',
|
||||
activateUser_title: 'Aktywuj Użytkownika',
|
||||
activateUser_title: 'Aktywuj użytkownika',
|
||||
addAnotherCard: 'Dodaj kolejną kartę',
|
||||
addAnotherList: 'Dodaj kolejną listę',
|
||||
addAnotherTask: 'Dodaj kolejne zadanie',
|
||||
addCard: 'Dodaj kartę',
|
||||
addCard_title: 'Dodaj Kartę',
|
||||
addCard_title: 'Dodaj kartę',
|
||||
addComment: 'Dodaj komentarz',
|
||||
addCustomField: 'Dodaj własne pole',
|
||||
addCustomFieldGroup: 'Dodaj grupę własnych pól',
|
||||
@@ -360,12 +369,12 @@ export default {
|
||||
addTaskList: 'Dodaj listę zadań',
|
||||
addToCard: 'Dodaj do karty',
|
||||
addUser: 'Dodaj użytkownika',
|
||||
addWebhook: null,
|
||||
addWebhook: 'Dodaj webhook',
|
||||
archive: 'Archiwizuj',
|
||||
archiveCard: 'Archiwizuj kartę',
|
||||
archiveCard_title: 'Archiwizuj Kartę',
|
||||
archiveCard_title: 'Archiwizuj kartę',
|
||||
archiveCards: 'Archiwizuj karty',
|
||||
archiveCards_title: 'Archiwizuj Karty',
|
||||
archiveCards_title: 'Archiwizuj karty',
|
||||
assignAsOwner: 'Przypisz jako właściciela',
|
||||
cancel: 'Anuluj',
|
||||
createBoard: 'Utwórz tablicę',
|
||||
@@ -375,70 +384,70 @@ export default {
|
||||
createNewLabel: 'Utwórz nowe oznaczenie',
|
||||
createProject: 'Utwórz projekt',
|
||||
deactivateUser: 'Dezaktywuj użytkownika',
|
||||
deactivateUser_title: 'Dezaktywuj Użytkownika',
|
||||
deactivateUser_title: 'Dezaktywuj użytkownika',
|
||||
delete: 'Usuń',
|
||||
deleteAttachment: 'Usuń attachment',
|
||||
deleteAvatar: 'Usuń awatar',
|
||||
deleteBackgroundImage: 'Usuń tło',
|
||||
deleteBoard: 'Usuń tablicę',
|
||||
deleteBoard_title: 'Usuń Tablicę',
|
||||
deleteBoard_title: 'Usuń tablicę',
|
||||
deleteCard: 'Usuń kartę',
|
||||
deleteCardForever: 'Usuń kartę permanetnie',
|
||||
deleteCard_title: 'Usuń Kartę',
|
||||
deleteCard_title: 'Usuń kartę',
|
||||
deleteComment: 'Usuń komentarz',
|
||||
deleteCustomField: 'Usuń pole własne',
|
||||
deleteCustomFieldGroup: 'Usuń grupę pól własnych',
|
||||
deleteForever_title: 'Usuń Permanentnie',
|
||||
deleteForever_title: 'Usuń permanentnie',
|
||||
deleteGroup: 'Usuń groupę',
|
||||
deleteLabel: 'Usuń oznaczenie',
|
||||
deleteList: 'Usuń listę',
|
||||
deleteList_title: 'Usuń Listę',
|
||||
deleteList_title: 'Usuń listę',
|
||||
deleteNotificationService: 'Usuń serwis powiadomień',
|
||||
deleteProject: 'Usuń projekt',
|
||||
deleteProject_title: 'Usuń Projekt',
|
||||
deleteProject_title: 'Usuń projekt',
|
||||
deleteTask: 'Usuń zadanie',
|
||||
deleteTaskList: 'Usuń listę zadań',
|
||||
deleteTask_title: 'Usuń Zadanie',
|
||||
deleteTask_title: 'Usuń zadanie',
|
||||
deleteUser: 'Usuń użytkownika',
|
||||
deleteUser_title: 'Usuń Użytkownika',
|
||||
deleteWebhook: null,
|
||||
deleteUser_title: 'Usuń użytkownika',
|
||||
deleteWebhook: 'Usuń webhook',
|
||||
dismissAll: 'Odrzuć wszystkie',
|
||||
download: null,
|
||||
duplicateCard_title: 'Duplikuj Kartę',
|
||||
download: 'Pobierz',
|
||||
duplicateCard_title: 'Duplikuj kartę',
|
||||
edit: 'Edytuj',
|
||||
editColor_title: 'Edytuj Kolor',
|
||||
editDescription_title: 'Edytuj Opis',
|
||||
editDueDate_title: 'Edytuj Termin',
|
||||
editEmail_title: 'Edytuj E-mail',
|
||||
editColor_title: 'Edytuj kolor',
|
||||
editDescription_title: 'Edytuj opis',
|
||||
editDueDate_title: 'Edytuj termin',
|
||||
editEmail_title: 'Edytuj e-mail',
|
||||
editGroup: 'Edytuj groupę',
|
||||
editInformation_title: 'Edytuj Informacje',
|
||||
editPassword_title: 'Edytuj Hasło',
|
||||
editInformation_title: 'Edytuj informacje',
|
||||
editPassword_title: 'Edytuj hasło',
|
||||
editPermissions: 'Edytuj uprawnienia',
|
||||
editRole_title: 'Edytuj Rolę',
|
||||
editStopwatch_title: 'Edytuj Stoper',
|
||||
editTitle_title: 'Edytuj Tytuł',
|
||||
editType_title: 'Edytuj Typ',
|
||||
editUsername_title: 'Edytuj Nazwę Użytkownika',
|
||||
editRole_title: 'Edytuj rolę',
|
||||
editStopwatch_title: 'Edytuj stoper',
|
||||
editTitle_title: 'Edytuj tytuł',
|
||||
editType_title: 'Edytuj typ',
|
||||
editUsername_title: 'Edytuj nazwę użytkownika',
|
||||
emptyTrash: 'Opróżnij kosz',
|
||||
emptyTrash_title: 'Opróżnij Kosz',
|
||||
emptyTrash_title: 'Opróżnij kosz',
|
||||
import: 'Importuj',
|
||||
join: 'Dołącz',
|
||||
leave: 'Opuść',
|
||||
leaveBoard: 'Opuść tablicę',
|
||||
leaveProject: 'Opuść projekt',
|
||||
logOut_title: 'Wyloguj',
|
||||
makeCover_title: 'Stwórz Okładkę',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeCover_title: 'Stwórz okładkę',
|
||||
makeProjectPrivate: 'Uczyń projekt prywatnym',
|
||||
makeProjectPrivate_title: 'Uczyń projekt prywatnym',
|
||||
makeProjectShared: 'Udostępnij projekt',
|
||||
makeProjectShared_title: 'Udostępnij Projekt',
|
||||
makeProjectShared_title: 'Udostępnij projekt',
|
||||
move: 'Przenieś',
|
||||
moveCard_title: 'Przenieś Kartę',
|
||||
moveList_title: null,
|
||||
moveCard_title: 'Przenieś kartę',
|
||||
moveList_title: 'Przenieś listę',
|
||||
remove: 'Usuń',
|
||||
removeAssignee: 'Usuń osobę przypisaną',
|
||||
removeColor: 'Usuń kolor',
|
||||
removeCover_title: 'Usuń Okładkę',
|
||||
removeCover_title: 'Usuń okładkę',
|
||||
removeFromBoard: 'Usuń z tablicy',
|
||||
removeFromProject: 'Usuń z projektu',
|
||||
removeManager: 'Usuń zarządcę',
|
||||
@@ -446,15 +455,15 @@ export default {
|
||||
restoreToList: 'Przywróć na {{list}}',
|
||||
returnToBoard: 'Przywróć do tablicy',
|
||||
save: 'Zapisz',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Wyślij testowy e-mail',
|
||||
showActive: 'Pokaż aktywne',
|
||||
showAllAttachments: 'Pokaż wszystkie załączniki ({{hidden}} są ukryte)',
|
||||
showCardsWithThisUser: 'Pokaż karty z tym użytkownikiem',
|
||||
showDeactivated: 'Pokaż dezaktywowane',
|
||||
showFewerAttachments: 'Pokaż mniej załączników',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: 'Sortuj Listę',
|
||||
showLess: 'Pokaż mniej',
|
||||
showMore: 'Pokaż więcej',
|
||||
sortList_title: 'Sortuj listę',
|
||||
start: 'Start',
|
||||
stop: 'Stop',
|
||||
subscribe: 'Subskrybuj',
|
||||
|
||||
@@ -2,10 +2,11 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Osiągnięto limit aktywnych użytkowników',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Wymagane logowanie administratora do inicjalizacji instancji',
|
||||
emailAlreadyInUse: 'E-mail jest już używany',
|
||||
emailOrUsername: 'E-mail lub nazwa użytkownika',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Przeczytałem i zgadzam się z tymi warunkami',
|
||||
invalidCredentials: 'Błędne dane logowania',
|
||||
invalidEmailOrUsername: 'Błędny e-mail lub nazwa użytkownika',
|
||||
invalidPassword: 'Błędne hasło',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Anuluj i zamknij',
|
||||
continue: 'Kontynuuj',
|
||||
logIn: 'Zaloguj',
|
||||
logInWithSso: 'Zaloguj z SSO',
|
||||
},
|
||||
|
||||
@@ -21,18 +21,18 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Sobre o PLANKA',
|
||||
accessToken: 'Token de Acesso',
|
||||
accessToken: 'Token de acesso',
|
||||
account: 'Conta',
|
||||
actions: 'Ações',
|
||||
activateUser_title: 'Ativar Usuário',
|
||||
activateUser_title: 'Ativar usuário',
|
||||
active: 'Ativo',
|
||||
addAttachment_title: 'Adicionar Anexo',
|
||||
addCustomFieldGroup_title: 'Adicionar Grupo de Campo Personalizado',
|
||||
addCustomField_title: 'Adicionar Campo Personalizado',
|
||||
addManager_title: 'Adicionar Gerente',
|
||||
addMember_title: 'Adicionar Membro',
|
||||
addTaskList_title: 'Adicionar Lista de Tarefas',
|
||||
addUser_title: 'Adicionar Usuário',
|
||||
addAttachment_title: 'Adicionar anexo',
|
||||
addCustomFieldGroup_title: 'Adicionar grupo de campo personalizado',
|
||||
addCustomField_title: 'Adicionar campo personalizado',
|
||||
addManager_title: 'Adicionar gerente',
|
||||
addMember_title: 'Adicionar membro',
|
||||
addTaskList_title: 'Adicionar lista de tarefas',
|
||||
addUser_title: 'Adicionar usuário',
|
||||
admin: 'Admin',
|
||||
administration: 'Administração',
|
||||
all: 'Todos',
|
||||
@@ -41,8 +41,8 @@ export default {
|
||||
alphabetically: 'Em ordem alfabética',
|
||||
alwaysDisplayCardCreator: 'Sempre exibir criador do cartão',
|
||||
archive: 'Arquivar',
|
||||
archiveCard_title: 'Arquivar Cartão',
|
||||
archiveCards_title: 'Arquivar Cartões',
|
||||
archiveCard_title: 'Arquivar cartão',
|
||||
archiveCards_title: 'Arquivar cartões',
|
||||
areYouSureYouWantToActivateThisUser: 'Tem certeza de que deseja ativar este usuário?',
|
||||
areYouSureYouWantToArchiveCards: 'Tem certeza de que deseja arquivar estes cartões?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Tem certeza de que deseja arquivar este cartão?',
|
||||
@@ -62,7 +62,8 @@ export default {
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Tem certeza de que deseja excluir este grupo de campo personalizado?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Tem certeza de que deseja excluir este rótulo?',
|
||||
areYouSureYouWantToDeleteThisList: 'Tem certeza de que deseja excluir esta lista?',
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Tem certeza de que deseja excluir esta lista? Todos os cartões serão movidos para a lixeira.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Tem certeza de que deseja excluir este serviço de notificação?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Tem certeza de que deseja excluir este projeto?',
|
||||
@@ -82,8 +83,8 @@ export default {
|
||||
'Tem certeza de que deseja remover este gerente do projeto?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Tem certeza de que deseja remover este membro do quadro?',
|
||||
assignAsOwner_title: 'Atribuir como Proprietário',
|
||||
atLeastOneListMustBePresent: 'Pelo menos uma lista deve estar presente.',
|
||||
assignAsOwner_title: 'Atribuir como proprietário',
|
||||
atLeastOneListMustBePresent: 'Pelo menos uma lista deve estar presente',
|
||||
attachment: 'Anexo',
|
||||
attachments: 'Anexos',
|
||||
authentication: 'Autenticação',
|
||||
@@ -91,23 +92,23 @@ export default {
|
||||
baseCustomFields_title: 'Campos personalizados básicos',
|
||||
baseGroup: 'Grupo básico',
|
||||
board: 'Quadro',
|
||||
boardActions_title: 'Ações do Quadro',
|
||||
boardActions_title: 'Ações do quadro',
|
||||
boardNotFound_title: 'Quadro não encontrado',
|
||||
boardSubscribed: 'Inscrito no quadro',
|
||||
boardUser: 'Usuário do quadro',
|
||||
byCreationTime: 'Por ordem de criação',
|
||||
byDefault: 'Por padrão',
|
||||
byDueDate: 'Por data de vencimento',
|
||||
canBeInvitedToWorkInBoards: 'Pode ser convidado para trabalhar em quadros',
|
||||
canBeInvitedToWorkInBoards: 'Pode ser convidado para trabalhar em quadros.',
|
||||
canComment: 'Pode comentar',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Pode criar seus próprios projetos e ser convidado para trabalhar em outros',
|
||||
'Pode criar seus próprios projetos e ser convidado para trabalhar em outros.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Pode editar o layout do quadro e atribuir membros aos cartões',
|
||||
'Pode editar o layout do quadro e atribuir membros aos cartões.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Pode gerenciar configurações de sistema e atuar como proprietário do projeto',
|
||||
'Pode gerenciar configurações de sistema e atuar como proprietário do projeto.',
|
||||
canOnlyViewBoard: 'Só pode visualizar o quadro.',
|
||||
cardActions_title: 'Ações do Cartão',
|
||||
cardActions_title: 'Ações do cartão',
|
||||
cardNotFound_title: 'Cartão não encontrado',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Os cartões nesta lista estão disponíveis para todos os membros do quadro.',
|
||||
@@ -116,119 +117,118 @@ export default {
|
||||
cardsOnThisListAreReadyToBeWorkedOn:
|
||||
'Os cartões nesta lista estão prontos para serem trabalhados.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Clique aqui</0> ou atualize a página para atualizar.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Nome do host do cliente no EHLO',
|
||||
closed: 'Fechado',
|
||||
color: 'Cor',
|
||||
comments: 'Comentários',
|
||||
contentExceedsLimit: 'O conteúdo excede o {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'O conteúdo deste anexo é muito grande para ser exibido.',
|
||||
copy_inline: 'copiar',
|
||||
createBoard_title: 'Criar Quadro',
|
||||
createCustomFieldGroup_title: 'Criar Grupo de Campo Personalizado',
|
||||
createLabel_title: 'Criar Rótulo',
|
||||
copy_inline: 'cópia',
|
||||
createBoard_title: 'Criar quadro',
|
||||
createCustomFieldGroup_title: 'Criar grupo de campo personalizado',
|
||||
createLabel_title: 'Criar rótulo',
|
||||
createNewOneOrSelectExistingOne: 'Criar um novo ou selecionar<br />um existente.',
|
||||
createProject_title: 'Criar Projeto',
|
||||
createTextFile_title: 'Criar Arquivo de Texto',
|
||||
createProject_title: 'Criar projeto',
|
||||
createTextFile_title: 'Criar arquivo de texto',
|
||||
creator: 'Criador',
|
||||
currentPassword: 'Senha atual',
|
||||
customFieldGroup_title: 'Grupo de Campo Personalizado',
|
||||
customFieldGroups_title: 'Grupos de Campo Personalizado',
|
||||
customField_title: 'Campo Personalizado',
|
||||
customFields_title: 'Campos Personalizados',
|
||||
dangerZone_title: 'Zona de Perigo',
|
||||
customFieldGroup_title: 'Grupo de campo personalizado',
|
||||
customFieldGroups_title: 'Grupos de campo personalizado',
|
||||
customField_title: 'Campo personalizado',
|
||||
customFields_title: 'Campos personalizados',
|
||||
dangerZone_title: 'Zona de perigo',
|
||||
date: 'Data',
|
||||
deactivateUser_title: 'Desativar Usuário',
|
||||
defaultCardType_title: 'Tipo de Cartão Padrão',
|
||||
defaultFrom: null,
|
||||
defaultView_title: 'Visualização Padrão',
|
||||
deactivateUser_title: 'Desativar usuário',
|
||||
defaultCardType_title: 'Tipo de cartão padrão',
|
||||
defaultFrom: '"De" padrão',
|
||||
defaultView_title: 'Visualização padrão',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Excluir todos os quadros para poder excluir este projeto',
|
||||
deleteAttachment_title: 'Excluir Anexo',
|
||||
deleteBackgroundImage_title: 'Excluir Imagem de Fundo',
|
||||
deleteBoard_title: 'Excluir Quadro',
|
||||
deleteCardForever_title: 'Excluir Cartão Para Sempre',
|
||||
deleteCard_title: 'Excluir Cartão',
|
||||
deleteComment_title: 'Excluir Comentário',
|
||||
deleteCustomFieldGroup_title: 'Excluir Grupo de Campo Personalizado',
|
||||
deleteCustomField_title: 'Excluir Campo Personalizado',
|
||||
deleteLabel_title: 'Excluir Rótulo',
|
||||
deleteList_title: 'Excluir Lista',
|
||||
deleteNotificationService_title: 'Excluir Serviço de Notificação',
|
||||
deleteProject_title: 'Excluir Projeto',
|
||||
deleteTaskList_title: 'Excluir Lista de Tarefas',
|
||||
deleteTask_title: 'Excluir Tarefa',
|
||||
deleteUser_title: 'Excluir Usuário',
|
||||
deleteWebhook_title: 'Excluir Webhook',
|
||||
deletedUser_title: 'Usuário Excluído',
|
||||
deleteAttachment_title: 'Excluir anexo',
|
||||
deleteBackgroundImage_title: 'Excluir imagem de fundo',
|
||||
deleteBoard_title: 'Excluir quadro',
|
||||
deleteCardForever_title: 'Excluir cartão para sempre',
|
||||
deleteCard_title: 'Excluir cartão',
|
||||
deleteComment_title: 'Excluir comentário',
|
||||
deleteCustomFieldGroup_title: 'Excluir grupo de campo personalizado',
|
||||
deleteCustomField_title: 'Excluir campo personalizado',
|
||||
deleteLabel_title: 'Excluir rótulo',
|
||||
deleteList_title: 'Excluir lista',
|
||||
deleteNotificationService_title: 'Excluir serviço de notificação',
|
||||
deleteProject_title: 'Excluir projeto',
|
||||
deleteTaskList_title: 'Excluir lista de tarefas',
|
||||
deleteTask_title: 'Excluir tarefa',
|
||||
deleteUser_title: 'Excluir usuário',
|
||||
deleteWebhook_title: 'Excluir webhook',
|
||||
deletedUser_title: 'Usuário excluído',
|
||||
description: 'Descrição',
|
||||
detectAutomatically: 'Detectar automaticamente',
|
||||
display: 'Exibir',
|
||||
dropFileToUpload: 'Solte o arquivo para enviar',
|
||||
dueDate_title: 'Data de Vencimento',
|
||||
dynamicAndUnevenlySpacedLayout: 'Layout dinâmico e desigualmente espaçado',
|
||||
editAttachment_title: 'Editar Anexo',
|
||||
editAvatar_title: 'Editar Avatar',
|
||||
editColor_title: 'Editar Cor',
|
||||
editCustomFieldGroup_title: 'Editar Grupo de Campo Personalizado',
|
||||
editCustomField_title: 'Editar Campo Personalizado',
|
||||
editDueDate_title: 'Editar Data de Vencimento',
|
||||
editEmail_title: 'Editar E-mail',
|
||||
editInformation_title: 'Editar Informações',
|
||||
editLabel_title: 'Editar Rótulo',
|
||||
editPassword_title: 'Editar Senha',
|
||||
editPermissions_title: 'Editar Permissões',
|
||||
editRole_title: 'Alterar Função',
|
||||
editStopwatch_title: 'Editar Cronômetro',
|
||||
dueDate_title: 'Data de vencimento',
|
||||
dynamicAndUnevenlySpacedLayout: 'Layout dinâmico e desigualmente espaçado.',
|
||||
editAttachment_title: 'Editar anexo',
|
||||
editAvatar_title: 'Editar avatar',
|
||||
editColor_title: 'Editar cor',
|
||||
editCustomFieldGroup_title: 'Editar grupo de campo personalizado',
|
||||
editCustomField_title: 'Editar campo personalizado',
|
||||
editDueDate_title: 'Editar data de vencimento',
|
||||
editEmail_title: 'Editar e-mail',
|
||||
editInformation_title: 'Editar informações',
|
||||
editLabel_title: 'Editar rótulo',
|
||||
editPassword_title: 'Editar senha',
|
||||
editPermissions_title: 'Editar permissões',
|
||||
editRole_title: 'Alterar função',
|
||||
editStopwatch_title: 'Editar cronômetro',
|
||||
editType_title: 'Alterar tipo',
|
||||
editUsername_title: 'Editar Nome de Usuário',
|
||||
editUsername_title: 'Editar nome de usuário',
|
||||
editor: 'Editor',
|
||||
editors: 'Editores',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: 'Esvaziar Lixeira',
|
||||
emptyTrash_title: 'Esvaziar lixeira',
|
||||
enterCardTitle: 'Digite o título do cartão...',
|
||||
enterDescription: 'Digite a descrição...',
|
||||
enterFilename: 'Digite o nome do arquivo',
|
||||
enterListTitle: 'Digite o título da lista...',
|
||||
enterTaskDescription: 'Digite a descrição da tarefa...',
|
||||
events: 'Eventos',
|
||||
excludedEvents: 'Eventos Excluídos',
|
||||
expandTaskListsByDefault: null,
|
||||
filterByLabels_title: 'Filtrar por Rótulos',
|
||||
filterByMembers_title: 'Filtrar por Membros',
|
||||
excludedEvents: 'Eventos excluídos',
|
||||
expandTaskListsByDefault: 'Expandir listas de tarefas por padrão',
|
||||
filterByLabels_title: 'Filtrar por rótulos',
|
||||
filterByMembers_title: 'Filtrar por membros',
|
||||
forPersonalProjects: 'Para projetos pessoais.',
|
||||
forTeamBasedProjects: 'Para projetos em equipe.',
|
||||
fromComputer_title: 'Do Computador',
|
||||
fromComputer_title: 'Do computador',
|
||||
fromTrello: 'Do Trello',
|
||||
general: 'Geral',
|
||||
gradients: 'Gradientes',
|
||||
grid: 'Grade',
|
||||
hideCompletedTasks: 'Ocultar tarefas concluídas',
|
||||
hideFromProjectListAndFavorites: 'Ocultar da lista de projetos e favoritos',
|
||||
host: null,
|
||||
host: 'Host',
|
||||
hours: 'Horas',
|
||||
importBoard_title: 'Importar Quadro',
|
||||
importBoard_title: 'Importar quadro',
|
||||
invalidCurrentPassword: 'Senha atual inválida',
|
||||
kanban: 'Kanban',
|
||||
labels: 'Rótulos',
|
||||
language: 'Idioma',
|
||||
leaveBoard_title: 'Sair do Quadro',
|
||||
leaveProject_title: 'Sair do Projeto',
|
||||
leaveBoard_title: 'Sair do quadro',
|
||||
leaveProject_title: 'Sair do projeto',
|
||||
limitCardTypesToDefaultOne: 'Limitar tipos de cartão ao padrão',
|
||||
linkToCard: 'Link para o cartão',
|
||||
list: 'Lista',
|
||||
listActions_title: 'Ações da Lista',
|
||||
listActions_title: 'Ações da lista',
|
||||
lists: 'Listas',
|
||||
makeProjectPrivate_title: 'Tornar Projeto Privado',
|
||||
makeProjectShared_title: 'Tornar Projeto Compartilhado',
|
||||
makeProjectPrivate_title: 'Tornar projeto privado',
|
||||
makeProjectShared_title: 'Tornar projeto compartilhado',
|
||||
managers: 'Gerentes',
|
||||
memberActions_title: 'Ações do Membro',
|
||||
memberActions_title: 'Ações do membro',
|
||||
members: 'Membros',
|
||||
minutes: 'Minutos',
|
||||
moreActions: 'Mais ações',
|
||||
moreActions_title: 'Mais Ações',
|
||||
moveCard_title: 'Mover Cartão',
|
||||
moveList_title: null,
|
||||
moreActions_title: 'Mais ações',
|
||||
moveCard_title: 'Mover cartão',
|
||||
moveList_title: 'Mover lista',
|
||||
myOwn_title: 'Meus',
|
||||
name: 'Nome',
|
||||
newEmail: 'Novo e-mail',
|
||||
@@ -246,15 +246,15 @@ export default {
|
||||
oldestFirst: 'Mais antigos primeiro',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Apenas um gerente deve permanecer para tornar este projeto privado',
|
||||
openBoard_title: 'Abrir Quadro',
|
||||
openBoard_title: 'Abrir quadro',
|
||||
optional_inline: 'opcional',
|
||||
organization: 'Organização',
|
||||
others: 'Outros',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Senha definida',
|
||||
phone: 'Telefone',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA usa <1><0>Apprise</0></1> para enviar notificações para mais de 100 serviços populares.',
|
||||
port: null,
|
||||
port: 'Porta',
|
||||
preferences: 'Preferências',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Dica: pressione Ctrl-V (Cmd-V no Mac) para adicionar um anexo da área de transferência.',
|
||||
@@ -263,9 +263,9 @@ export default {
|
||||
projectNotFound_title: 'Projeto não encontrado',
|
||||
projectOwner: 'Proprietário do projeto',
|
||||
referenceDataAndKnowledgeStorage: 'Armazenamento de dados de referência e conhecimento.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
removeManager_title: 'Remover Gerente',
|
||||
removeMember_title: 'Remover Membro',
|
||||
rejectUnauthorizedTlsCertificates: 'Rejeitar certificados TLS não autorizados',
|
||||
removeManager_title: 'Remover gerente',
|
||||
removeMember_title: 'Remover membro',
|
||||
role: 'Função',
|
||||
searchCards: 'Pesquisar cartões...',
|
||||
searchCustomFieldGroups: 'Pesquisar grupos de campos personalizados...',
|
||||
@@ -276,33 +276,33 @@ export default {
|
||||
searchProjects: 'Pesquisar projetos...',
|
||||
searchUsers: 'Pesquisar usuários...',
|
||||
seconds: 'Segundos',
|
||||
selectAssignee_title: 'Selecionar Responsável',
|
||||
selectAssignee_title: 'Selecionar responsável',
|
||||
selectBoard: 'Selecionar quadro',
|
||||
selectList: 'Selecionar lista',
|
||||
selectListToRestoreThisCard: 'Selecionar lista para restaurar este cartão',
|
||||
selectOrder_title: 'Selecionar Ordem',
|
||||
selectPermissions_title: 'Selecionar Permissões',
|
||||
selectOrder_title: 'Selecionar ordem',
|
||||
selectPermissions_title: 'Selecionar permissões',
|
||||
selectProject: 'Selecionar projeto',
|
||||
selectRole_title: 'Selecionar Função',
|
||||
selectType_title: 'Selecionar Tipo',
|
||||
selectRole_title: 'Selecionar função',
|
||||
selectType_title: 'Selecionar tipo',
|
||||
sequentialDisplayOfCards: 'Exibição sequencial de cartões.',
|
||||
settings: 'Configurações',
|
||||
shared: 'Compartilhado',
|
||||
sharedWithMe_title: 'Compartilhado Comigo',
|
||||
sharedWithMe_title: 'Compartilhado comigo',
|
||||
showOnFrontOfCard: 'Mostrar na frente do cartão',
|
||||
smtp: null,
|
||||
sortList_title: 'Ordenar Lista',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Ordenar lista',
|
||||
stopwatch: 'Cronômetro',
|
||||
story: 'História',
|
||||
subscribeToCardWhenCommenting: 'Inscrever-se no cartão ao comentar',
|
||||
subscribeToMyOwnCardsByDefault: 'Inscrever-se automaticamente em meus próprios cartões',
|
||||
taskActions_title: 'Ações da Tarefa',
|
||||
taskActions_title: 'Ações da tarefa',
|
||||
taskAssignmentAndProjectCompletion: 'Atribuição de tarefas e conclusão do projeto.',
|
||||
taskListActions_title: 'Ações da Lista de Tarefas',
|
||||
taskList_title: 'Lista de Tarefas',
|
||||
taskListActions_title: 'Ações da lista de tarefas',
|
||||
taskList_title: 'Lista de tarefas',
|
||||
team: 'Equipe',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Termos',
|
||||
testLog_title: 'Log de teste',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Não há pré-visualização disponível para este anexo.',
|
||||
time: 'Tempo',
|
||||
@@ -313,12 +313,12 @@ export default {
|
||||
typeNameToConfirm: 'Digite o nome para confirmar.',
|
||||
typeTitleToConfirm: 'Digite o título para confirmar.',
|
||||
unsavedChanges: 'Alterações não salvas',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Falha no upload: arquivo muito grande.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Falha no upload: espaço de armazenamento insuficiente.',
|
||||
uploadedImages: 'Imagens enviadas',
|
||||
url: 'URL',
|
||||
useSecureConnection: null,
|
||||
userActions_title: 'Ações do Usuário',
|
||||
useSecureConnection: 'Usar conexão segura',
|
||||
userActions_title: 'Ações do usuário',
|
||||
userAddedCardToList: '<0>{{user}}</0> adicionou <2>{{card}}</2> à {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> adicionou este cartão a {{list}}',
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> adicionou {{addedUser}} a <4>{{card}}</4>',
|
||||
@@ -356,12 +356,12 @@ export default {
|
||||
|
||||
action: {
|
||||
activateUser: 'Ativar usuário',
|
||||
activateUser_title: 'Ativar Usuário',
|
||||
activateUser_title: 'Ativar usuário',
|
||||
addAnotherCard: 'Adicionar outro cartão',
|
||||
addAnotherList: 'Adicionar outra lista',
|
||||
addAnotherTask: 'Adicionar outra tarefa',
|
||||
addCard: 'Adicionar cartão',
|
||||
addCard_title: 'Adicionar Cartão',
|
||||
addCard_title: 'Adicionar cartão',
|
||||
addComment: 'Adicionar comentário',
|
||||
addCustomField: 'Adicionar campo personalizado',
|
||||
addCustomFieldGroup: 'Adicionar grupo de campos personalizados',
|
||||
@@ -375,9 +375,9 @@ export default {
|
||||
addWebhook: 'Adicionar webhook',
|
||||
archive: 'Arquivar',
|
||||
archiveCard: 'Arquivar cartão',
|
||||
archiveCard_title: 'Arquivar Cartão',
|
||||
archiveCard_title: 'Arquivar cartão',
|
||||
archiveCards: 'Arquivar cartões',
|
||||
archiveCards_title: 'Arquivar Cartões',
|
||||
archiveCards_title: 'Arquivar cartões',
|
||||
assignAsOwner: 'Atribuir como proprietário',
|
||||
cancel: 'Cancelar',
|
||||
createBoard: 'Criar quadro',
|
||||
@@ -387,70 +387,70 @@ export default {
|
||||
createNewLabel: 'Criar novo rótulo',
|
||||
createProject: 'Criar projeto',
|
||||
deactivateUser: 'Desativar usuário',
|
||||
deactivateUser_title: 'Desativar Usuário',
|
||||
deactivateUser_title: 'Desativar usuário',
|
||||
delete: 'Excluir',
|
||||
deleteAttachment: 'Excluir anexo',
|
||||
deleteAvatar: 'Excluir avatar',
|
||||
deleteBackgroundImage: 'Excluir imagem de fundo',
|
||||
deleteBoard: 'Excluir quadro',
|
||||
deleteBoard_title: 'Excluir Quadro',
|
||||
deleteBoard_title: 'Excluir quadro',
|
||||
deleteCard: 'Excluir cartão',
|
||||
deleteCardForever: 'Excluir cartão para sempre',
|
||||
deleteCard_title: 'Excluir Cartão',
|
||||
deleteCard_title: 'Excluir cartão',
|
||||
deleteComment: 'Excluir comentário',
|
||||
deleteCustomField: 'Excluir campo personalizado',
|
||||
deleteCustomFieldGroup: 'Excluir grupo de campos personalizados',
|
||||
deleteForever_title: 'Excluir Para Sempre',
|
||||
deleteForever_title: 'Excluir para sempre',
|
||||
deleteGroup: 'Excluir grupo',
|
||||
deleteLabel: 'Excluir rótulo',
|
||||
deleteList: 'Excluir lista',
|
||||
deleteList_title: 'Excluir Lista',
|
||||
deleteList_title: 'Excluir lista',
|
||||
deleteNotificationService: 'Excluir serviço de notificação',
|
||||
deleteProject: 'Excluir projeto',
|
||||
deleteProject_title: 'Excluir Projeto',
|
||||
deleteProject_title: 'Excluir projeto',
|
||||
deleteTask: 'Excluir tarefa',
|
||||
deleteTaskList: 'Excluir lista de tarefas',
|
||||
deleteTask_title: 'Excluir Tarefa',
|
||||
deleteTask_title: 'Excluir tarefa',
|
||||
deleteUser: 'Excluir usuário',
|
||||
deleteUser_title: 'Excluir Usuário',
|
||||
deleteUser_title: 'Excluir usuário',
|
||||
deleteWebhook: 'Excluir webhook',
|
||||
dismissAll: 'Dispensar todos',
|
||||
download: null,
|
||||
duplicateCard_title: 'Duplicar Cartão',
|
||||
download: 'Baixar',
|
||||
duplicateCard_title: 'Duplicar cartão',
|
||||
edit: 'Editar',
|
||||
editColor_title: 'Editar Cor',
|
||||
editDescription_title: 'Editar Descrição',
|
||||
editDueDate_title: 'Editar Data de Vencimento',
|
||||
editEmail_title: 'Editar E-mail',
|
||||
editColor_title: 'Editar cor',
|
||||
editDescription_title: 'Editar descrição',
|
||||
editDueDate_title: 'Editar data de vencimento',
|
||||
editEmail_title: 'Editar e-mail',
|
||||
editGroup: 'Editar grupo',
|
||||
editInformation_title: 'Editar Informações',
|
||||
editPassword_title: 'Editar Senha',
|
||||
editInformation_title: 'Editar informações',
|
||||
editPassword_title: 'Editar senha',
|
||||
editPermissions: 'Editar permissões',
|
||||
editRole_title: 'Editar Função',
|
||||
editStopwatch_title: 'Editar Cronômetro',
|
||||
editTitle_title: 'Editar Título',
|
||||
editType_title: 'Editar Tipo',
|
||||
editUsername_title: 'Editar Nome de Usuário',
|
||||
editRole_title: 'Editar função',
|
||||
editStopwatch_title: 'Editar cronômetro',
|
||||
editTitle_title: 'Editar título',
|
||||
editType_title: 'Editar tipo',
|
||||
editUsername_title: 'Editar nome de usuário',
|
||||
emptyTrash: 'Esvaziar lixeira',
|
||||
emptyTrash_title: 'Esvaziar Lixeira',
|
||||
emptyTrash_title: 'Esvaziar lixeira',
|
||||
import: 'Importar',
|
||||
join: 'Participar',
|
||||
leave: 'Sair',
|
||||
leaveBoard: 'Sair do quadro',
|
||||
leaveProject: 'Sair do projeto',
|
||||
logOut_title: 'Sair',
|
||||
makeCover_title: 'Tornar Capa',
|
||||
makeCover_title: 'Tornar capa',
|
||||
makeProjectPrivate: 'Tornar projeto privado',
|
||||
makeProjectPrivate_title: 'Tornar Projeto Privado',
|
||||
makeProjectPrivate_title: 'Tornar projeto privado',
|
||||
makeProjectShared: 'Tornar projeto compartilhado',
|
||||
makeProjectShared_title: 'Tornar Projeto Compartilhado',
|
||||
makeProjectShared_title: 'Tornar projeto compartilhado',
|
||||
move: 'Mover',
|
||||
moveCard_title: 'Mover Cartão',
|
||||
moveList_title: null,
|
||||
moveCard_title: 'Mover cartão',
|
||||
moveList_title: 'Mover lista',
|
||||
remove: 'Remover',
|
||||
removeAssignee: 'Remover responsável',
|
||||
removeColor: 'Remover cor',
|
||||
removeCover_title: 'Remover Capa',
|
||||
removeCover_title: 'Remover capa',
|
||||
removeFromBoard: 'Remover do quadro',
|
||||
removeFromProject: 'Remover do projeto',
|
||||
removeManager: 'Remover gerente',
|
||||
@@ -458,7 +458,7 @@ export default {
|
||||
restoreToList: 'Restaurar para {{list}}',
|
||||
returnToBoard: 'Voltar ao quadro',
|
||||
save: 'Salvar',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Enviar email de teste',
|
||||
showActive: 'Mostrar ativos',
|
||||
showAllAttachments: 'Mostrar todos os anexos ({{hidden}} ocultos)',
|
||||
showCardsWithThisUser: 'Mostrar cartões com este usuário',
|
||||
@@ -466,7 +466,7 @@ export default {
|
||||
showFewerAttachments: 'Mostrar menos anexos',
|
||||
showLess: 'Mostrar menos',
|
||||
showMore: 'Mostrar mais',
|
||||
sortList_title: 'Ordenar Lista',
|
||||
sortList_title: 'Ordenar lista',
|
||||
start: 'Iniciar',
|
||||
stop: 'Parar',
|
||||
subscribe: 'Inscrever-se',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Limite de usuários ativos atingido',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Login de administrador necessário para inicializar a instância',
|
||||
emailAlreadyInUse: 'E-mail já está em uso',
|
||||
emailOrUsername: 'E-mail ou nome de usuário',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Li e concordo com estes termos',
|
||||
invalidCredentials: 'Credenciais inválidas',
|
||||
invalidEmailOrUsername: 'E-mail ou nome de usuário inválido',
|
||||
invalidPassword: 'Senha inválida',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Entrar',
|
||||
noInternetConnection: 'Sem conexão com a internet',
|
||||
or: null,
|
||||
or: 'Ou',
|
||||
pageNotFound_title: 'Página não encontrada',
|
||||
password: 'Senha',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Desenvolvido por <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Falha na conexão com o servidor',
|
||||
unknownError: 'Erro desconhecido, tente novamente mais tarde',
|
||||
useSingleSignOn: 'Usar login único',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Cancelar e fechar',
|
||||
continue: 'Continuar',
|
||||
logIn: 'Entrar',
|
||||
logInWithSso: 'Entrar com SSO',
|
||||
},
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"bundle": {
|
||||
"error-title": "Erro no editor markdown",
|
||||
"settings_wysiwyg": "Editor visual (wysiwyg)",
|
||||
"settings_markup": "Marcação Markdown",
|
||||
"settings_markup": "Marcação markdown",
|
||||
"markup_placeholder": "Digite a marcação markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
|
||||
@@ -21,431 +21,455 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Sobre o PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Token de acesso',
|
||||
account: 'Conta',
|
||||
actions: 'Ações',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
addAttachment_title: 'Anexar Ficheiro',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addManager_title: 'Adicionar Gestor',
|
||||
addMember_title: 'Adicionar Membro',
|
||||
addTaskList_title: null,
|
||||
addUser_title: 'Adicionar Utilizador',
|
||||
admin: null,
|
||||
administration: null,
|
||||
activateUser_title: 'Ativar utilizador',
|
||||
active: 'Ativo',
|
||||
addAttachment_title: 'Anexar ficheiro',
|
||||
addCustomFieldGroup_title: 'Adicionar grupo de campos personalizados',
|
||||
addCustomField_title: 'Adicionar campo personalizado',
|
||||
addManager_title: 'Adicionar gestor',
|
||||
addMember_title: 'Adicionar membro',
|
||||
addTaskList_title: 'Adicionar lista de tarefas',
|
||||
addUser_title: 'Adicionar utilizador',
|
||||
admin: 'Administrador',
|
||||
administration: 'Administração',
|
||||
all: 'Todos',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Todas as alterações serão automaticamente guardadas<br />após a ligação ser restabelecida.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Alfabeticamente',
|
||||
alwaysDisplayCardCreator: 'Mostrar sempre o criador do cartão',
|
||||
archive: 'Arquivo',
|
||||
archiveCard_title: 'Arquivar cartão',
|
||||
archiveCards_title: 'Arquivar cartões',
|
||||
areYouSureYouWantToActivateThisUser: 'Tem a certeza de que pretende ativar este utilizador?',
|
||||
areYouSureYouWantToArchiveCards: 'Tem a certeza de que pretende arquivar estes cartões?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Tem a certeza de que pretende arquivar este cartão?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Tem a certeza de que pretende atribuir este gestor de projeto como proprietário?',
|
||||
areYouSureYouWantToDeactivateThisUser:
|
||||
'Tem a certeza de que pretende desativar este utilizador?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Tem a certeza de que pretende eliminar este anexo?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Tem a certeza de que pretende eliminar esta imagem de fundo?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Tem a certeza de que pretende eliminar este quadro?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Tem a certeza de que pretende eliminar este cartão?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Tem a certeza de que pretende eliminar este cartão para sempre?',
|
||||
areYouSureYouWantToDeleteThisComment:
|
||||
'Tem a certeza de que pretende eliminar este comentário?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'Tem a certeza de que pretende eliminar este campo personalizado?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Tem a certeza de que pretende eliminar este grupo de campos personalizados?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Tem a certeza de que pretende eliminar esta etiqueta?',
|
||||
areYouSureYouWantToDeleteThisList: 'Tem a certeza de que pretende eliminar esta lista?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Tem a certeza de que pretende eliminar esta lista? Todos os cartões serão movidos para o lixo.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Tem a certeza de que pretende eliminar este serviço de notificação?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Tem a certeza de que pretende eliminar este projeto?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Tem a certeza de que pretende eliminar esta tarefa?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList:
|
||||
'Tem a certeza de que pretende eliminar esta lista de tarefas?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Tem a certeza de que pretende eliminar este utilizador?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Tem a certeza de que pretende eliminar este webhook?',
|
||||
areYouSureYouWantToEmptyTrash: 'Tem a certeza de que pretende esvaziar o lixo?',
|
||||
areYouSureYouWantToLeaveBoard: 'Tem a certeza de que pretende sair do quadro?',
|
||||
areYouSureYouWantToLeaveProject: 'Tem a certeza de que pretende sair do projeto?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Tem a certeza de que pretende tornar este projeto privado?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Tem a certeza de que pretende tornar este projeto partilhado?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Tem a certeza de que pretende remover este gestor do projeto?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Tem a certeza de que pretende remover este membro do quadro?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Atribuir como proprietário',
|
||||
atLeastOneListMustBePresent: 'Pelo menos uma lista deve estar presente',
|
||||
attachment: 'Anexo',
|
||||
attachments: 'Anexos',
|
||||
authentication: 'Autenticação',
|
||||
background: 'Fundo',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Campos personalizados base',
|
||||
baseGroup: 'Grupo base',
|
||||
board: 'Quadro',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Ações do quadro',
|
||||
boardNotFound_title: 'Quadro não encontrado',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'Quadro subscrito',
|
||||
boardUser: 'Utilizador do quadro',
|
||||
byCreationTime: 'Por hora de criação',
|
||||
byDefault: 'Por defeito',
|
||||
byDueDate: 'Por data de vencimento',
|
||||
canBeInvitedToWorkInBoards: 'Pode ser convidado para trabalhar em quadros.',
|
||||
canComment: 'Pode comentar',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Pode criar os seus próprios projetos e ser convidado para trabalhar noutros.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Pode editar o layout do quadro e atribuir membros aos cartões.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Pode gerir configurações do sistema e atuar como proprietário do projeto.',
|
||||
canOnlyViewBoard: 'Só pode visualizar o quadro.',
|
||||
cardActions_title: 'Ações do Cartão',
|
||||
cardActions_title: 'Ações do cartão',
|
||||
cardNotFound_title: 'Cartão não encontrado',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Os cartões desta lista estão disponíveis para todos os membros do quadro.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Os cartões desta lista estão completos e prontos para serem arquivados.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn:
|
||||
'Os cartões desta lista estão prontos para serem trabalhados.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Clique aqui</0> ou atualize a página para atualizar.',
|
||||
clientHostnameInEhlo: 'Nome do host do cliente no EHLO',
|
||||
closed: 'Fechado',
|
||||
color: 'Cor',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
createBoard_title: 'Criar Quadro',
|
||||
createCustomFieldGroup_title: null,
|
||||
createLabel_title: 'Criar Etiqueta',
|
||||
comments: 'Comentários',
|
||||
contentExceedsLimit: 'O conteúdo excede {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'O conteúdo deste anexo é demasiado grande para ser exibido.',
|
||||
copy_inline: 'cópia',
|
||||
createBoard_title: 'Criar quadro',
|
||||
createCustomFieldGroup_title: 'Criar grupo de campos personalizados',
|
||||
createLabel_title: 'Criar etiqueta',
|
||||
createNewOneOrSelectExistingOne: 'Crie um novo ou selecione<br />um existente.',
|
||||
createProject_title: 'Criar Projeto',
|
||||
createTextFile_title: 'Criar Ficheiro de Texto',
|
||||
creator: null,
|
||||
createProject_title: 'Criar projeto',
|
||||
createTextFile_title: 'Criar ficheiro de texto',
|
||||
creator: 'Criador',
|
||||
currentPassword: 'Palavra-passe atual',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
dangerZone_title: 'Zona Perigosa',
|
||||
customFieldGroup_title: 'Grupo de campos personalizados',
|
||||
customFieldGroups_title: 'Grupos de campos personalizados',
|
||||
customField_title: 'Campo personalizado',
|
||||
customFields_title: 'Campos personalizados',
|
||||
dangerZone_title: 'Zona perigosa',
|
||||
date: 'Data',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deleteAttachment_title: 'Eliminar Anexo',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBoard_title: 'Eliminar Quadro',
|
||||
deleteCardForever_title: null,
|
||||
deleteCard_title: 'Eliminar Cartão',
|
||||
deleteComment_title: 'Eliminar Comentário',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteLabel_title: 'Eliminar Etiqueta',
|
||||
deleteList_title: 'Eliminar Lista',
|
||||
deleteNotificationService_title: null,
|
||||
deleteProject_title: 'Eliminar Projeto',
|
||||
deleteTaskList_title: null,
|
||||
deleteTask_title: 'Eliminar Tarefa',
|
||||
deleteUser_title: 'Eliminar Utilizador',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deactivateUser_title: 'Desativar utilizador',
|
||||
defaultCardType_title: 'Tipo de cartão padrão',
|
||||
defaultFrom: 'Padrão de',
|
||||
defaultView_title: 'Vista padrão',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Elimine todos os quadros para poder eliminar este projeto',
|
||||
deleteAttachment_title: 'Eliminar anexo',
|
||||
deleteBackgroundImage_title: 'Eliminar imagem de fundo',
|
||||
deleteBoard_title: 'Eliminar quadro',
|
||||
deleteCardForever_title: 'Eliminar cartão para sempre',
|
||||
deleteCard_title: 'Eliminar cartão',
|
||||
deleteComment_title: 'Eliminar comentário',
|
||||
deleteCustomFieldGroup_title: 'Eliminar grupo de campos personalizados',
|
||||
deleteCustomField_title: 'Eliminar campo personalizado',
|
||||
deleteLabel_title: 'Eliminar etiqueta',
|
||||
deleteList_title: 'Eliminar lista',
|
||||
deleteNotificationService_title: 'Eliminar serviço de notificação',
|
||||
deleteProject_title: 'Eliminar projeto',
|
||||
deleteTaskList_title: 'Eliminar lista de tarefas',
|
||||
deleteTask_title: 'Eliminar tarefa',
|
||||
deleteUser_title: 'Eliminar utilizador',
|
||||
deleteWebhook_title: 'Eliminar webhook',
|
||||
deletedUser_title: 'Utilizador eliminado',
|
||||
description: 'Descrição',
|
||||
detectAutomatically: 'Detetar automaticamente',
|
||||
display: null,
|
||||
display: 'Exibir',
|
||||
dropFileToUpload: 'Largue o ficheiro para carregar',
|
||||
dueDate_title: 'Data de Vencimento',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
editAttachment_title: 'Editar Anexo',
|
||||
editAvatar_title: 'Editar Avatar',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editDueDate_title: 'Editar Data de Vencimento',
|
||||
editEmail_title: 'Editar E-mail',
|
||||
editInformation_title: 'Editar Informações',
|
||||
editLabel_title: 'Editar Etiqueta',
|
||||
editPassword_title: 'Editar Palavra-passe',
|
||||
editPermissions_title: 'Editar Permissões',
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Editar Cronómetro',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Editar Nome de Utilizador',
|
||||
dueDate_title: 'Data de vencimento',
|
||||
dynamicAndUnevenlySpacedLayout: 'Layout dinâmico e espaçamento irregular.',
|
||||
editAttachment_title: 'Editar anexo',
|
||||
editAvatar_title: 'Editar avatar',
|
||||
editColor_title: 'Editar cor',
|
||||
editCustomFieldGroup_title: 'Editar grupo de campos personalizados',
|
||||
editCustomField_title: 'Editar campo personalizado',
|
||||
editDueDate_title: 'Editar data de vencimento',
|
||||
editEmail_title: 'Editar e-mail',
|
||||
editInformation_title: 'Editar informações',
|
||||
editLabel_title: 'Editar etiqueta',
|
||||
editPassword_title: 'Editar palavra-passe',
|
||||
editPermissions_title: 'Editar permissões',
|
||||
editRole_title: 'Editar função',
|
||||
editStopwatch_title: 'Editar cronómetro',
|
||||
editType_title: 'Editar tipo',
|
||||
editUsername_title: 'Editar nome de utilizador',
|
||||
editor: 'Editor',
|
||||
editors: null,
|
||||
editors: 'Editores',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Esvaziar lixo',
|
||||
enterCardTitle: 'Introduza o título do cartão...',
|
||||
enterDescription: 'Introduza a descrição...',
|
||||
enterFilename: 'Introduza o nome do ficheiro',
|
||||
enterListTitle: 'Introduza o título da lista...',
|
||||
enterTaskDescription: 'Introduza a descrição da tarefa...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
filterByLabels_title: 'Filtrar por Etiquetas',
|
||||
filterByMembers_title: 'Filtrar por Membros',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
fromComputer_title: 'Do Computador',
|
||||
events: 'Eventos',
|
||||
excludedEvents: 'Eventos excluídos',
|
||||
expandTaskListsByDefault: 'Expandir listas de tarefas por defeito',
|
||||
filterByLabels_title: 'Filtrar por etiquetas',
|
||||
filterByMembers_title: 'Filtrar por membros',
|
||||
forPersonalProjects: 'Para projetos pessoais.',
|
||||
forTeamBasedProjects: 'Para projetos baseados em equipa.',
|
||||
fromComputer_title: 'Do computador',
|
||||
fromTrello: 'Do Trello',
|
||||
general: 'Geral',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Gradientes',
|
||||
grid: 'Grelha',
|
||||
hideCompletedTasks: 'Ocultar tarefas concluídas',
|
||||
hideFromProjectListAndFavorites: 'Ocultar da lista de projetos e favoritos',
|
||||
host: 'Anfitrião',
|
||||
hours: 'Horas',
|
||||
importBoard_title: 'Importar Quadro',
|
||||
importBoard_title: 'Importar quadro',
|
||||
invalidCurrentPassword: 'Palavra-passe atual inválida',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'Etiquetas',
|
||||
language: 'Idioma',
|
||||
leaveBoard_title: 'Sair do Quadro',
|
||||
leaveProject_title: 'Sair do Projeto',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
leaveBoard_title: 'Sair do quadro',
|
||||
leaveProject_title: 'Sair do projeto',
|
||||
limitCardTypesToDefaultOne: 'Limitar tipos de cartão ao padrão',
|
||||
linkToCard: 'Ligação para cartão',
|
||||
list: 'Lista',
|
||||
listActions_title: 'Ações da Lista',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
listActions_title: 'Ações da lista',
|
||||
lists: 'Listas',
|
||||
makeProjectPrivate_title: 'Tornar projeto privado',
|
||||
makeProjectShared_title: 'Tornar projeto partilhado',
|
||||
managers: 'Gestores',
|
||||
memberActions_title: null,
|
||||
memberActions_title: 'Ações do membro',
|
||||
members: 'Membros',
|
||||
minutes: 'Minutos',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moveCard_title: 'Mover Cartão',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moreActions: 'Mais ações',
|
||||
moreActions_title: 'Mais ações',
|
||||
moveCard_title: 'Mover cartão',
|
||||
moveList_title: 'Mover lista',
|
||||
myOwn_title: 'Os meus',
|
||||
name: 'Nome',
|
||||
newEmail: 'Novo e-mail',
|
||||
newPassword: 'Nova palavra-passe',
|
||||
newUsername: 'Novo nome de utilizador',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: 'Nova versão disponível',
|
||||
newestFirst: 'Mais recentes primeiro',
|
||||
noBoards: 'Sem quadros',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Nenhum cartão encontrado.',
|
||||
noConnectionToServer: 'Sem ligação ao servidor',
|
||||
noLists: 'Sem listas',
|
||||
noProjects: 'Sem projetos',
|
||||
noUnreadNotifications: 'Nenhuma notificação por ler.',
|
||||
notifications: 'Notificações',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
openBoard_title: 'Abrir Quadro',
|
||||
oldestFirst: 'Mais antigos primeiro',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Apenas um gestor deve permanecer para tornar este projeto privado',
|
||||
openBoard_title: 'Abrir quadro',
|
||||
optional_inline: 'opcional',
|
||||
organization: 'Organização',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Outros',
|
||||
passwordIsSet: 'Palavra-passe definida',
|
||||
phone: 'Telefone',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'O PLANKA usa o <1><0>Apprise</0></1> para enviar notificações para mais de 100 serviços populares.',
|
||||
port: 'Porta',
|
||||
preferences: 'Preferências',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Dica: prima Ctrl-V (Cmd-V no Mac) para adicionar um anexo da área de transferência.',
|
||||
private: null,
|
||||
private: 'Privado',
|
||||
project: 'Projeto',
|
||||
projectNotFound_title: 'Projeto não encontrado',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
removeManager_title: 'Remover Gestor',
|
||||
removeMember_title: 'Remover Membro',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
projectOwner: 'Proprietário do projeto',
|
||||
referenceDataAndKnowledgeStorage: 'Armazenamento de dados de referência e conhecimento.',
|
||||
rejectUnauthorizedTlsCertificates: 'Rejeitar certificados TLS não autorizados',
|
||||
removeManager_title: 'Remover gestor',
|
||||
removeMember_title: 'Remover membro',
|
||||
role: 'Função',
|
||||
searchCards: 'Pesquisar cartões...',
|
||||
searchCustomFieldGroups: 'Pesquisar grupos de campos personalizados...',
|
||||
searchCustomFields: 'Pesquisar campos personalizados...',
|
||||
searchLabels: 'Pesquisar etiquetas...',
|
||||
searchLists: null,
|
||||
searchLists: 'Pesquisar listas...',
|
||||
searchMembers: 'Pesquisar membros...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'Pesquisar projetos...',
|
||||
searchUsers: 'Pesquisar utilizadores...',
|
||||
seconds: 'Segundos',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Selecionar responsável',
|
||||
selectBoard: 'Selecionar quadro',
|
||||
selectList: 'Selecionar lista',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectPermissions_title: 'Selecionar Permissões',
|
||||
selectListToRestoreThisCard: 'Selecionar lista para restaurar este cartão',
|
||||
selectOrder_title: 'Selecionar ordem',
|
||||
selectPermissions_title: 'Selecionar permissões',
|
||||
selectProject: 'Selecionar projeto',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Selecionar função',
|
||||
selectType_title: 'Selecionar tipo',
|
||||
sequentialDisplayOfCards: 'Exibição sequencial de cartões.',
|
||||
settings: 'Configurações',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: 'Partilhado',
|
||||
sharedWithMe_title: 'Partilhados comigo',
|
||||
showOnFrontOfCard: 'Mostrar na frente do cartão',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Ordenar lista',
|
||||
stopwatch: 'Cronómetro',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'História',
|
||||
subscribeToCardWhenCommenting: 'Subscrever cartão ao comentar',
|
||||
subscribeToMyOwnCardsByDefault: 'Subscrever automaticamente os meus cartões',
|
||||
taskActions_title: 'Ações da Tarefa',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskActions_title: 'Ações da tarefa',
|
||||
taskAssignmentAndProjectCompletion: 'Atribuição de tarefas e conclusão de projeto.',
|
||||
taskListActions_title: 'Ações da lista de tarefas',
|
||||
taskList_title: 'Lista de tarefas',
|
||||
team: 'Equipa',
|
||||
terms: 'Termos',
|
||||
testLog_title: 'Registo de teste',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Não há pré-visualização disponível para este anexo.',
|
||||
time: 'Tempo',
|
||||
title: 'Título',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
userActions_title: 'Ações do Utilizador',
|
||||
userAddedCardToList: null,
|
||||
trash: 'Lixo',
|
||||
trashHasBeenSuccessfullyEmptied: 'O lixo foi esvaziado com sucesso.',
|
||||
turnOffRecentCardHighlighting: 'Desativar destaque de cartões recentes',
|
||||
typeNameToConfirm: 'Digite o nome para confirmar.',
|
||||
typeTitleToConfirm: 'Digite o título para confirmar.',
|
||||
unsavedChanges: 'Alterações não guardadas',
|
||||
uploadFailedFileIsTooBig: 'Carregamento falhado - ficheiro demasiado grande.',
|
||||
uploadFailedNotEnoughStorageSpace:
|
||||
'Carregamento falhado - espaço de armazenamento insuficiente.',
|
||||
uploadedImages: 'Imagens carregadas',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Usar ligação segura',
|
||||
userActions_title: 'Ações do utilizador',
|
||||
userAddedCardToList: '<0>{{user}}</0> adicionou <2>{{card}}</2> à {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> adicionou este cartão à {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> adicionou {{addedUser}} a <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> adicionou {{addedUser}} a este cartão',
|
||||
userAddedYouToCard: '<0>{{user}}</0> adicionou-o a <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> completou {{task}} em <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> completou {{task}} neste cartão',
|
||||
userJoinedCard: '<0>{{user}}</0> juntou-se a <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> juntou-se a este cartão',
|
||||
userLeftCard: '<0>{{user}}</0> saiu de <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> deixou um novo comentário «{{comment}}» em <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> saiu deste cartão',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> marcou {{task}} como incompleta em <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> marcou {{task}} como incompleta neste cartão',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> mencionou-o num comentário «{{comment}}» em <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> moveu <2>{{card}}</2> de {{fromList}} para {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> moveu este cartão de {{fromList}} para {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> removeu {{removedUser}} de <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> removeu {{removedUser}} deste cartão',
|
||||
username: 'Nome de utilizador',
|
||||
users: 'Utilizadores',
|
||||
viewer: 'Visualizador',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'Visualizadores',
|
||||
visualTaskManagementWithLists: 'Gestão visual de tarefas com listas.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Sem grupo base',
|
||||
writeComment: 'Escreva um comentário...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Ativar utilizador',
|
||||
activateUser_title: 'Ativar utilizador',
|
||||
addAnotherCard: 'Adicionar outro cartão',
|
||||
addAnotherList: 'Adicionar outra lista',
|
||||
addAnotherTask: 'Adicionar outra tarefa',
|
||||
addCard: 'Adicionar cartão',
|
||||
addCard_title: 'Adicionar Cartão',
|
||||
addCard_title: 'Adicionar cartão',
|
||||
addComment: 'Adicionar comentário',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Adicionar campo personalizado',
|
||||
addCustomFieldGroup: 'Adicionar grupo de campos personalizados',
|
||||
addList: 'Adicionar lista',
|
||||
addMember: 'Adicionar membro',
|
||||
addMoreDetailedDescription: 'Adicionar descrição mais detalhada',
|
||||
addTask: 'Adicionar tarefa',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Adicionar lista de tarefas',
|
||||
addToCard: 'Adicionar ao cartão',
|
||||
addUser: 'Adicionar utilizador',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Adicionar webhook',
|
||||
archive: 'Arquivo',
|
||||
archiveCard: 'Arquivar cartão',
|
||||
archiveCard_title: 'Arquivar cartão',
|
||||
archiveCards: 'Arquivar cartões',
|
||||
archiveCards_title: 'Arquivar cartões',
|
||||
assignAsOwner: 'Atribuir como proprietário',
|
||||
cancel: 'Cancelar',
|
||||
createBoard: 'Criar quadro',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Criar grupo de campos personalizados',
|
||||
createFile: 'Criar ficheiro',
|
||||
createLabel: 'Criar etiqueta',
|
||||
createNewLabel: 'Criar nova etiqueta',
|
||||
createProject: 'Criar projeto',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Desativar utilizador',
|
||||
deactivateUser_title: 'Desativar utilizador',
|
||||
delete: 'Eliminar',
|
||||
deleteAttachment: 'Eliminar anexo',
|
||||
deleteAvatar: 'Eliminar avatar',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Eliminar imagem de fundo',
|
||||
deleteBoard: 'Eliminar quadro',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Eliminar quadro',
|
||||
deleteCard: 'Eliminar cartão',
|
||||
deleteCardForever: null,
|
||||
deleteCard_title: 'Eliminar Cartão',
|
||||
deleteCardForever: 'Eliminar cartão para sempre',
|
||||
deleteCard_title: 'Eliminar cartão',
|
||||
deleteComment: 'Eliminar comentário',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Eliminar campo personalizado',
|
||||
deleteCustomFieldGroup: 'Eliminar grupo de campos personalizados',
|
||||
deleteForever_title: 'Eliminar para sempre',
|
||||
deleteGroup: 'Eliminar grupo',
|
||||
deleteLabel: 'Eliminar etiqueta',
|
||||
deleteList: 'Eliminar lista',
|
||||
deleteList_title: 'Eliminar Lista',
|
||||
deleteNotificationService: null,
|
||||
deleteList_title: 'Eliminar lista',
|
||||
deleteNotificationService: 'Eliminar serviço de notificação',
|
||||
deleteProject: 'Eliminar projeto',
|
||||
deleteProject_title: 'Eliminar Projeto',
|
||||
deleteProject_title: 'Eliminar projeto',
|
||||
deleteTask: 'Eliminar tarefa',
|
||||
deleteTaskList: null,
|
||||
deleteTask_title: 'Eliminar Tarefa',
|
||||
deleteTaskList: 'Eliminar lista de tarefas',
|
||||
deleteTask_title: 'Eliminar tarefa',
|
||||
deleteUser: 'Eliminar utilizador',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: 'Eliminar utilizador',
|
||||
deleteWebhook: 'Eliminar webhook',
|
||||
dismissAll: 'Dispensar tudo',
|
||||
download: 'Transferir',
|
||||
duplicateCard_title: 'Duplicar cartão',
|
||||
edit: 'Editar',
|
||||
editColor_title: null,
|
||||
editDescription_title: 'Editar Descrição',
|
||||
editDueDate_title: 'Editar Data de Vencimento',
|
||||
editEmail_title: 'Editar E-mail',
|
||||
editGroup: null,
|
||||
editInformation_title: 'Editar Informações',
|
||||
editPassword_title: 'Editar Palavra-passe',
|
||||
editColor_title: 'Editar cor',
|
||||
editDescription_title: 'Editar descrição',
|
||||
editDueDate_title: 'Editar data de vencimento',
|
||||
editEmail_title: 'Editar e-mail',
|
||||
editGroup: 'Editar grupo',
|
||||
editInformation_title: 'Editar informações',
|
||||
editPassword_title: 'Editar palavra-passe',
|
||||
editPermissions: 'Editar permissões',
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Editar Cronómetro',
|
||||
editTitle_title: 'Editar Título',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Editar Nome de Utilizador',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
editRole_title: 'Editar função',
|
||||
editStopwatch_title: 'Editar cronómetro',
|
||||
editTitle_title: 'Editar título',
|
||||
editType_title: 'Editar tipo',
|
||||
editUsername_title: 'Editar nome de utilizador',
|
||||
emptyTrash: 'Esvaziar lixo',
|
||||
emptyTrash_title: 'Esvaziar lixo',
|
||||
import: 'Importar',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'Aderir',
|
||||
leave: 'Sair',
|
||||
leaveBoard: 'Sair do quadro',
|
||||
leaveProject: 'Sair do projeto',
|
||||
logOut_title: 'Terminar Sessão',
|
||||
makeCover_title: 'Definir como Capa',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
logOut_title: 'Terminar sessão',
|
||||
makeCover_title: 'Definir como capa',
|
||||
makeProjectPrivate: 'Tornar projeto privado',
|
||||
makeProjectPrivate_title: 'Tornar projeto privado',
|
||||
makeProjectShared: 'Tornar projeto partilhado',
|
||||
makeProjectShared_title: 'Tornar projeto partilhado',
|
||||
move: 'Mover',
|
||||
moveCard_title: 'Mover Cartão',
|
||||
moveList_title: null,
|
||||
moveCard_title: 'Mover cartão',
|
||||
moveList_title: 'Mover lista',
|
||||
remove: 'Remover',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeCover_title: 'Remover Capa',
|
||||
removeAssignee: 'Remover responsável',
|
||||
removeColor: 'Remover cor',
|
||||
removeCover_title: 'Remover capa',
|
||||
removeFromBoard: 'Remover do quadro',
|
||||
removeFromProject: 'Remover do projeto',
|
||||
removeManager: 'Remover gestor',
|
||||
removeMember: 'Remover membro',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Restaurar para {{list}}',
|
||||
returnToBoard: 'Voltar ao quadro',
|
||||
save: 'Guardar',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Enviar e-mail de teste',
|
||||
showActive: 'Mostrar ativo',
|
||||
showAllAttachments: 'Mostrar todos os anexos ({{hidden}} ocultos)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Mostrar cartões com este utilizador',
|
||||
showDeactivated: 'Mostrar desativados',
|
||||
showFewerAttachments: 'Mostrar menos anexos',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: 'Mostrar menos',
|
||||
showMore: 'Mostrar mais',
|
||||
sortList_title: 'Ordenar lista',
|
||||
start: 'Iniciar',
|
||||
stop: 'Parar',
|
||||
subscribe: 'Subscrever',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Limite de utilizadores activos atingido',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Início de sessão de administrador necessário para inicializar a instância',
|
||||
emailAlreadyInUse: 'E-mail já está em uso',
|
||||
emailOrUsername: 'E-mail ou nome de utilizador',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Li e concordo com estes termos',
|
||||
invalidCredentials: 'Credenciais inválidas',
|
||||
invalidEmailOrUsername: 'E-mail ou nome de utilizador inválido',
|
||||
invalidPassword: 'Palavra-passe inválida',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Iniciar sessão',
|
||||
noInternetConnection: 'Sem ligação à internet',
|
||||
or: null,
|
||||
or: 'Ou',
|
||||
pageNotFound_title: 'Página não encontrada',
|
||||
password: 'Palavra-passe',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Desenvolvido por <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Falha na ligação ao servidor',
|
||||
unknownError: 'Erro desconhecido, tente novamente mais tarde',
|
||||
useSingleSignOn: 'Utilizar início de sessão único',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Cancelar e fechar',
|
||||
continue: 'Continuar',
|
||||
logIn: 'Iniciar sessão',
|
||||
logInWithSso: 'Iniciar sessão com SSO',
|
||||
},
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"bundle": {
|
||||
"error-title": "Erro no editor markdown",
|
||||
"settings_wysiwyg": "Editor visual (wysiwyg)",
|
||||
"settings_markup": "Marcação Markdown",
|
||||
"settings_markup": "Marcação markdown",
|
||||
"markup_placeholder": "Introduza a marcação markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
|
||||
@@ -21,430 +21,450 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'Despre PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Token de acces',
|
||||
account: 'Cont',
|
||||
actions: 'Acțiuni',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
addAttachment_title: 'Adauga atasament',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addManager_title: 'Adaugă Manager',
|
||||
addMember_title: 'Adaugă Membru',
|
||||
addTaskList_title: null,
|
||||
addUser_title: 'Adaugă Utilizator',
|
||||
admin: null,
|
||||
administration: null,
|
||||
activateUser_title: 'Activează utilizatorul',
|
||||
active: 'Activ',
|
||||
addAttachment_title: 'Adaugă atașament',
|
||||
addCustomFieldGroup_title: 'Adaugă grup de câmpuri personalizate',
|
||||
addCustomField_title: 'Adaugă câmp personalizat',
|
||||
addManager_title: 'Adaugă manager',
|
||||
addMember_title: 'Adaugă membru',
|
||||
addTaskList_title: 'Adaugă listă de sarcini',
|
||||
addUser_title: 'Adaugă utilizator',
|
||||
admin: 'Administrator',
|
||||
administration: 'Administrare',
|
||||
all: 'Toate',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Toate modificarile vor fi salvate automat<br />dupa restabilirea conexiunii.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Alfabetic',
|
||||
alwaysDisplayCardCreator: 'Afișează întotdeauna creatorul cardului',
|
||||
archive: 'Arhivă',
|
||||
archiveCard_title: 'Arhivează cardul',
|
||||
archiveCards_title: 'Arhivează cardurile',
|
||||
areYouSureYouWantToActivateThisUser: 'Sigur doriți să activați acest utilizator?',
|
||||
areYouSureYouWantToArchiveCards: 'Sigur doriți să arhivați cardurile?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Sigur doriți să arhivați acest card?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Sigur doriți să atribuiți acest manager de proiect ca proprietar?',
|
||||
areYouSureYouWantToDeactivateThisUser: 'Sigur doriți să dezactivați acest utilizator?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Sigur doriți să ștergeți acest atașament?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Sigur doriți să ștergeți această imagine de fundal?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Sigur doriți să ștergeți acest panou?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Sigur doriți să ștergeți acest card?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Sigur doriți să ștergeți acest card pentru totdeauna?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Sigur doriți să ștergeți acest comentariu?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField: 'Sigur doriți să ștergeți acest câmp personalizat?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Sigur doriți să ștergeți acest grup de câmpuri personalizate?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Sigur doriți să ștergeți această etichetă?',
|
||||
areYouSureYouWantToDeleteThisList: 'Sigur doriți să ștergeți această listă?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Sigur doriți să ștergeți această listă? Toate cardurile vor fi mutate în coșul de gunoi.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Sigur doriți să ștergeți acest serviciu de notificare?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Sigur doriți să ștergeți acest proiect?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Sigur doriți să ștergeți această sarcină?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Sigur doriți să ștergeți această listă de sarcini?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Sigur doriți să ștergeți acest utilizator?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Sigur doriți să ștergeți acest webhook?',
|
||||
areYouSureYouWantToEmptyTrash: 'Sigur doriți să goliți coșul de gunoi?',
|
||||
areYouSureYouWantToLeaveBoard: 'Ești sigur că vrei să părăsești tabla?',
|
||||
areYouSureYouWantToLeaveProject: 'Ești sigur că vrei să părăsești proiectul?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate: 'Sigur doriți să faceți acest proiect privat?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Sigur doriți să faceți acest proiect partajat?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Sigur doriți să eliminați acest manager din proiect?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Sigur doriți să eliminați acest membru din consiliu?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Atribuie ca proprietar',
|
||||
atLeastOneListMustBePresent: 'Cel puțin o listă trebuie să fie prezentă',
|
||||
attachment: 'Atașament',
|
||||
attachments: 'Atasamente',
|
||||
authentication: 'Autentificare',
|
||||
background: 'Fundal',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Câmpuri personalizate de bază',
|
||||
baseGroup: 'Grup de bază',
|
||||
board: 'Tabla',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Acțiuni tablă',
|
||||
boardNotFound_title: 'Tabla nu a fost găsită',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'Tablă abonată',
|
||||
boardUser: 'Utilizator tablă',
|
||||
byCreationTime: 'După timpul creării',
|
||||
byDefault: 'Implicit',
|
||||
byDueDate: 'După data scadentă',
|
||||
canBeInvitedToWorkInBoards: 'Poate fi invitat să lucreze în table.',
|
||||
canComment: 'Poate comenta',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Poate crea propriile proiecte și poate fi invitat să lucreze în altele.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Poate edita aspectul tablei și poate atribui membri la carduri.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Poate gestiona setările la nivel de sistem și poate acționa ca proprietar de proiect.',
|
||||
canOnlyViewBoard: 'Poate doar vizualiza tabla.',
|
||||
cardActions_title: 'Acțiuni cu carduri',
|
||||
cardNotFound_title: 'Cardul nu a fost găsit',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Cardurile din această listă sunt disponibile pentru toți membrii tablei.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Cardurile din această listă sunt complete și gata să fie arhivate.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Cardurile din această listă sunt gata să fie lucrate.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>Faceți clic aici</0> sau reîmprospătați pagina pentru a actualiza.',
|
||||
clientHostnameInEhlo: 'Numele de gazdă al clientului în EHLO',
|
||||
closed: 'Închis',
|
||||
color: 'Culoarea',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
createBoard_title: 'Creare Tabla',
|
||||
createCustomFieldGroup_title: null,
|
||||
comments: 'Comentarii',
|
||||
contentExceedsLimit: 'Conținutul depășește {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Conținutul acestui atașament este prea mare pentru a fi afișat.',
|
||||
copy_inline: 'copie',
|
||||
createBoard_title: 'Creare tablă',
|
||||
createCustomFieldGroup_title: 'Creează grup de câmpuri personalizate',
|
||||
createLabel_title: 'Creați etichetă',
|
||||
createNewOneOrSelectExistingOne: 'Crează unu nou sau selectează<br />unu deja existent.',
|
||||
createProject_title: 'Crează Proiect',
|
||||
createTextFile_title: 'Crează un Fișier Text',
|
||||
creator: null,
|
||||
currentPassword: 'Parola Curentă',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
createProject_title: 'Crează proiect',
|
||||
createTextFile_title: 'Crează un fișier text',
|
||||
creator: 'Creator',
|
||||
currentPassword: 'Parola curentă',
|
||||
customFieldGroup_title: 'Grup de câmpuri personalizate',
|
||||
customFieldGroups_title: 'Grupuri de câmpuri personalizate',
|
||||
customField_title: 'Câmp personalizat',
|
||||
customFields_title: 'Câmpuri personalizate',
|
||||
dangerZone_title: 'Zona periculoasă',
|
||||
date: 'Data',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'Dezactivează utilizatorul',
|
||||
defaultCardType_title: 'Tipul implicit al cardului',
|
||||
defaultFrom: 'Implicit de la',
|
||||
defaultView_title: 'Vizualizarea implicită',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Ștergeți toate tablele pentru a putea șterge acest proiect',
|
||||
deleteAttachment_title: 'Ștergeți atașamentul',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBoard_title: 'Ștergeți Tabla',
|
||||
deleteCardForever_title: null,
|
||||
deleteBackgroundImage_title: 'Șterge imaginea de fundal',
|
||||
deleteBoard_title: 'Ștergeți tabla',
|
||||
deleteCardForever_title: 'Șterge cardul pentru totdeauna',
|
||||
deleteCard_title: 'Ștergeți cardul',
|
||||
deleteComment_title: 'Șterge comentariul',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'Șterge grupul de câmpuri personalizate',
|
||||
deleteCustomField_title: 'Șterge câmpul personalizat',
|
||||
deleteLabel_title: 'Ștergeți eticheta',
|
||||
deleteList_title: 'Șterge lista',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'Șterge serviciul de notificare',
|
||||
deleteProject_title: 'Șterge proiectul',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'Șterge lista de sarcini',
|
||||
deleteTask_title: 'Ștergeți sarcina',
|
||||
deleteUser_title: 'Șterge utilizator',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'Șterge webhook-ul',
|
||||
deletedUser_title: 'Utilizator șters',
|
||||
description: 'Descriere',
|
||||
detectAutomatically: 'Detectează automat',
|
||||
display: null,
|
||||
display: 'Afișare',
|
||||
dropFileToUpload: 'Aruncă fișierul pentru a încărca',
|
||||
dueDate_title: 'Data scadentă',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'Aspect dinamic și spațiat neuniform.',
|
||||
editAttachment_title: 'Editați atașamentul',
|
||||
editAvatar_title: 'Editați avatarul',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: 'Editează culoarea',
|
||||
editCustomFieldGroup_title: 'Editează grupul de câmpuri personalizate',
|
||||
editCustomField_title: 'Editează câmpul personalizat',
|
||||
editDueDate_title: 'Editați data scadentă',
|
||||
editEmail_title: 'Editați E-mail',
|
||||
editEmail_title: 'Editați e-mail',
|
||||
editInformation_title: 'Editați informații',
|
||||
editLabel_title: 'Editați eticheta',
|
||||
editPassword_title: 'Editați parola',
|
||||
editPermissions_title: 'Editați permisiunile',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Editează rolul',
|
||||
editStopwatch_title: 'Editați cronometrul',
|
||||
editType_title: null,
|
||||
editType_title: 'Editează tipul',
|
||||
editUsername_title: 'Editați numele de utilizator',
|
||||
editor: 'Editor',
|
||||
editors: null,
|
||||
editors: 'Editori',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Golește coșul de gunoi',
|
||||
enterCardTitle: 'Introduceți titlul cardului...',
|
||||
enterDescription: 'Introduceți descrierea...',
|
||||
enterFilename: 'Introduceți numele fișierului',
|
||||
enterListTitle: 'Introduceți titlul listei...',
|
||||
enterTaskDescription: 'Introduceți descrierea sarcinii...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Evenimente',
|
||||
excludedEvents: 'Evenimente excluse',
|
||||
expandTaskListsByDefault: 'Extinde listele de sarcini implicit',
|
||||
filterByLabels_title: 'Filtrați după etichete',
|
||||
filterByMembers_title: 'Filtrați după membri',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'Pentru proiecte personale.',
|
||||
forTeamBasedProjects: 'Pentru proiecte bazate pe echipă.',
|
||||
fromComputer_title: 'De pe computer',
|
||||
fromTrello: 'De pe Trello',
|
||||
general: 'General',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Gradiente',
|
||||
grid: 'Grilă',
|
||||
hideCompletedTasks: 'Ascunde sarcinile completate',
|
||||
hideFromProjectListAndFavorites: 'Ascunde din lista de proiecte și favorite',
|
||||
host: 'Gazdă',
|
||||
hours: 'Ore',
|
||||
importBoard_title: 'Import Tabla',
|
||||
importBoard_title: 'Import tablă',
|
||||
invalidCurrentPassword: 'Parolă actuală nevalidă',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'Etichete',
|
||||
language: 'Limba',
|
||||
leaveBoard_title: 'Părăsiți Tabla',
|
||||
leaveBoard_title: 'Părăsiți tabla',
|
||||
leaveProject_title: 'Părăsiți proiectul',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'Limitează tipurile de carduri la cel implicit',
|
||||
linkToCard: 'Link către card',
|
||||
list: 'Lista',
|
||||
listActions_title: 'Listează acțiuni',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'Liste',
|
||||
makeProjectPrivate_title: 'Fă proiectul privat',
|
||||
makeProjectShared_title: 'Fă proiectul partajat',
|
||||
managers: 'Managerii',
|
||||
memberActions_title: null,
|
||||
memberActions_title: 'Acțiuni membri',
|
||||
members: 'Membri',
|
||||
minutes: 'Minute',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Mai multe acțiuni',
|
||||
moreActions_title: 'Mai multe acțiuni',
|
||||
moveCard_title: 'Mutați cardul',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'Mută lista',
|
||||
myOwn_title: 'Ale mele',
|
||||
name: 'Nume',
|
||||
newEmail: 'Email nou',
|
||||
newPassword: 'Parolă Nouă',
|
||||
newPassword: 'Parolă nouă',
|
||||
newUsername: 'Nume de utilizator nou',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
noBoards: 'Fără Table',
|
||||
noCardsFound: null,
|
||||
newVersionAvailable: 'Versiune nouă disponibilă',
|
||||
newestFirst: 'Cele mai noi primul',
|
||||
noBoards: 'Fără table',
|
||||
noCardsFound: 'Nu s-au găsit carduri.',
|
||||
noConnectionToServer: 'Nicio conexiune la server',
|
||||
noLists: 'Fără Liste',
|
||||
noLists: 'Fără liste',
|
||||
noProjects: 'Fără proiecte',
|
||||
noUnreadNotifications: 'Fără notificări necitite.',
|
||||
notifications: 'Notificări',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
oldestFirst: 'Cele mai vechi primul',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Doar un manager ar trebui să rămână pentru a face acest proiect privat',
|
||||
openBoard_title: 'Tablă deschisă',
|
||||
optional_inline: 'optional',
|
||||
organization: 'Organizatia',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Alții',
|
||||
passwordIsSet: 'Parola este setată',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA folosește <1><0>Apprise</0></1> pentru a trimite notificări către peste 100 de servicii populare.',
|
||||
port: 'Port',
|
||||
preferences: 'Preferințe',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Sfat: apăsați Ctrl-V (Cmd-V pe Mac) pentru a adăuga un atașament din clipboard.',
|
||||
private: null,
|
||||
private: 'Privat',
|
||||
project: 'Proiect',
|
||||
projectNotFound_title: 'Proiectul nu a fost găsit',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
removeManager_title: 'Eliminați Manager',
|
||||
projectOwner: 'Proprietar proiect',
|
||||
referenceDataAndKnowledgeStorage: 'Stocare de date de referință și cunoștințe.',
|
||||
rejectUnauthorizedTlsCertificates: 'Respinge certificatele TLS neautorizate',
|
||||
removeManager_title: 'Eliminați manager',
|
||||
removeMember_title: 'Eliminați membru',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
role: 'Rol',
|
||||
searchCards: 'Caută carduri...',
|
||||
searchCustomFieldGroups: 'Caută grupuri de câmpuri personalizate...',
|
||||
searchCustomFields: 'Caută câmpuri personalizate...',
|
||||
searchLabels: 'Căutați etichete...',
|
||||
searchLists: null,
|
||||
searchLists: 'Caută liste...',
|
||||
searchMembers: 'Căutați membri...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'Caută proiecte...',
|
||||
searchUsers: 'Căutați utilizatori...',
|
||||
seconds: 'Secunde',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Selectează persoana atribuită',
|
||||
selectBoard: 'Selectați tabla',
|
||||
selectList: 'Selectați lista',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectPermissions_title: 'Selectați Permisiuni',
|
||||
selectListToRestoreThisCard: 'Selectați lista pentru a restaura acest card',
|
||||
selectOrder_title: 'Selectează ordinea',
|
||||
selectPermissions_title: 'Selectați permisiuni',
|
||||
selectProject: 'Selectați proiectul',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Selectează rolul',
|
||||
selectType_title: 'Selectează tipul',
|
||||
sequentialDisplayOfCards: 'Afișare secvențială a cardurilor.',
|
||||
settings: 'Setări',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: 'Partajat',
|
||||
sharedWithMe_title: 'Partajat cu mine',
|
||||
showOnFrontOfCard: 'Afișează pe fața cardului',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Sortează lista',
|
||||
stopwatch: 'Cronometru',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Poveste',
|
||||
subscribeToCardWhenCommenting: 'Abonează-te la card când comentezi',
|
||||
subscribeToMyOwnCardsByDefault: 'Abonați-vă la propriile carduri în mod implicit',
|
||||
taskActions_title: 'Acțiuni de sarcină',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: 'Atribuirea sarcinilor și finalizarea proiectului.',
|
||||
taskListActions_title: 'Acțiuni listă de sarcini',
|
||||
taskList_title: 'Listă de sarcini',
|
||||
team: 'Echipă',
|
||||
terms: 'Termeni',
|
||||
testLog_title: 'Jurnal de test',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Nu există nicio previzualizare disponibilă pentru acest atașament.',
|
||||
time: 'Timp',
|
||||
title: 'Titlu',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'Coș de gunoi',
|
||||
trashHasBeenSuccessfullyEmptied: 'Coșul de gunoi a fost golit cu succes.',
|
||||
turnOffRecentCardHighlighting: 'Oprește evidențierea cardurilor recente',
|
||||
typeNameToConfirm: 'Tastează numele pentru confirmare.',
|
||||
typeTitleToConfirm: 'Tastează titlul pentru confirmare.',
|
||||
unsavedChanges: 'Modificări nesalvate',
|
||||
uploadFailedFileIsTooBig: 'Încărcarea a eșuat: fișierul este prea mare.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Încărcarea a eșuat: spațiu de stocare insuficient.',
|
||||
uploadedImages: 'Imagini încărcate',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Folosește conexiune securizată',
|
||||
userActions_title: 'Acțiunile utilizatorului',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> a adăugat <2>{{card}}</2> în {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> a adăugat acest card în {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> a adăugat pe {{addedUser}} la <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> a adăugat pe {{addedUser}} la acest card',
|
||||
userAddedYouToCard: '<0>{{user}}</0> te-a adăugat la <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> a completat {{task}} pe <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> a completat {{task}} pe acest card',
|
||||
userJoinedCard: '<0>{{user}}</0> s-a alăturat la <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> s-a alăturat la acest card',
|
||||
userLeftCard: '<0>{{user}}</0> a părăsit <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> a lăsat un nou comentariu «{{comment}}» în <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> a părăsit acest card',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> a marcat {{task}} ca incompletă pe <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> a marcat {{task}} ca incompletă pe acest card',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> te-a menționat într-un comentariu «{{comment}}» pe <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> a mutat <2>{{card}}</2> din {{fromList}} în {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> a mutat aceast card din {{fromList}} în {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard:
|
||||
'<0>{{actorUser}}</0> a eliminat pe {{removedUser}} de la <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard:
|
||||
'<0>{{actorUser}}</0> a eliminat pe {{removedUser}} de la acest card',
|
||||
username: 'Nume utilizator',
|
||||
users: 'Utilizatori',
|
||||
viewer: 'Vizualizator',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'Vizualizatori',
|
||||
visualTaskManagementWithLists: 'Gestionarea vizuală a sarcinilor cu liste.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Fără grup de bază',
|
||||
writeComment: 'Scrie un comentariu...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Activează utilizatorul',
|
||||
activateUser_title: 'Activează utilizatorul',
|
||||
addAnotherCard: 'Adăugați un alt card',
|
||||
addAnotherList: 'Adăugați o altă listă',
|
||||
addAnotherTask: 'Adăugați o altă sarcină',
|
||||
addCard: 'Adăugați card',
|
||||
addCard_title: 'Adăugați card',
|
||||
addComment: 'Adauga comentariu',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Adaugă câmp personalizat',
|
||||
addCustomFieldGroup: 'Adaugă grup de câmpuri personalizate',
|
||||
addList: 'Adăugați listă',
|
||||
addMember: 'Adăugați membru',
|
||||
addMoreDetailedDescription: 'Adăugați descrierea mai detaliata',
|
||||
addTask: 'Adăugați sarcină',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Adaugă listă de sarcini',
|
||||
addToCard: 'Adauga în card',
|
||||
addUser: 'Adăugați utilizator',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Adaugă webhook',
|
||||
archive: 'Arhivează',
|
||||
archiveCard: 'Arhivează cardul',
|
||||
archiveCard_title: 'Arhivează cardul',
|
||||
archiveCards: 'Arhivează cardurile',
|
||||
archiveCards_title: 'Arhivează cardurile',
|
||||
assignAsOwner: 'Atribuie ca proprietar',
|
||||
cancel: 'Anulează',
|
||||
createBoard: 'Creați tablă',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Creați grup de câmpuri personalizate',
|
||||
createFile: 'Creați fișier',
|
||||
createLabel: 'Creați eticheta',
|
||||
createNewLabel: 'Creați o nouă etichetă',
|
||||
createProject: 'Creați proiect',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Dezactivați utilizatorul',
|
||||
deactivateUser_title: 'Dezactivați utilizatorul',
|
||||
delete: 'Ștergeți',
|
||||
deleteAttachment: 'Ștergeți atașamentul',
|
||||
deleteAvatar: 'Ștergeți avatarul',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Ștergeți imaginea de fundal',
|
||||
deleteBoard: 'Ștergeți tabla',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Ștergeți tabla',
|
||||
deleteCard: 'Ștergeți cardul',
|
||||
deleteCardForever: null,
|
||||
deleteCard_title: 'Ștergeți Cardul',
|
||||
deleteCardForever: 'Ștergeți cardul pentru totdeauna',
|
||||
deleteCard_title: 'Ștergeți cardul',
|
||||
deleteComment: 'Șterge comentariu',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteLabel: 'Ștergeți Eticheta',
|
||||
deleteCustomField: 'Ștergeți câmpul personalizat',
|
||||
deleteCustomFieldGroup: 'Ștergeți grupul de câmpuri personalizate',
|
||||
deleteForever_title: 'Ștergeți pentru totdeauna',
|
||||
deleteGroup: 'Ștergeți grupul',
|
||||
deleteLabel: 'Ștergeți eticheta',
|
||||
deleteList: 'Ștergeți lista',
|
||||
deleteList_title: 'Ștergeți Lista',
|
||||
deleteNotificationService: null,
|
||||
deleteList_title: 'Ștergeți lista',
|
||||
deleteNotificationService: 'Ștergeți serviciul de notificare',
|
||||
deleteProject: 'Ștergeți proiectul',
|
||||
deleteProject_title: 'Ștergeți Proiectul',
|
||||
deleteProject_title: 'Ștergeți proiectul',
|
||||
deleteTask: 'Ștergeți sarcina',
|
||||
deleteTaskList: null,
|
||||
deleteTask_title: 'Ștergeți Sarcina',
|
||||
deleteTaskList: 'Ștergeți lista de sarcini',
|
||||
deleteTask_title: 'Ștergeți sarcina',
|
||||
deleteUser: 'Ștergeți utilizatorul',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: 'Ștergeți utilizatorul',
|
||||
deleteWebhook: 'Ștergeți webhook-ul',
|
||||
dismissAll: 'Respingeți toate',
|
||||
download: 'Descărcați',
|
||||
duplicateCard_title: 'Duplicați cardul',
|
||||
edit: 'Editați',
|
||||
editColor_title: null,
|
||||
editColor_title: 'Editați culoarea',
|
||||
editDescription_title: 'Editați descrierea',
|
||||
editDueDate_title: 'Editați data scadentă',
|
||||
editEmail_title: 'Editați e-mailul',
|
||||
editGroup: null,
|
||||
editGroup: 'Editați grupul',
|
||||
editInformation_title: 'Editați informații',
|
||||
editPassword_title: 'Editați parola',
|
||||
editPermissions: 'Editați permisiunile',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Editați rolul',
|
||||
editStopwatch_title: 'Editați cronometrul',
|
||||
editTitle_title: 'Editați Titlul',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Editați Numele Utilizator',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
editTitle_title: 'Editați titlul',
|
||||
editType_title: 'Editați tipul',
|
||||
editUsername_title: 'Editați numele utilizator',
|
||||
emptyTrash: 'Goliți coșul de gunoi',
|
||||
emptyTrash_title: 'Goliți coșul de gunoi',
|
||||
import: 'Import',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'Alăturați-vă',
|
||||
leave: 'Părăsiți',
|
||||
leaveBoard: 'Părăsiți bordul',
|
||||
leaveProject: 'Părăsiți proiect',
|
||||
logOut_title: 'Deconectați-vă',
|
||||
makeCover_title: 'Faceți Coperta',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeCover_title: 'Faceți coperta',
|
||||
makeProjectPrivate: 'Faceți proiectul privat',
|
||||
makeProjectPrivate_title: 'Faceți proiectul privat',
|
||||
makeProjectShared: 'Faceți proiectul partajat',
|
||||
makeProjectShared_title: 'Faceți proiectul partajat',
|
||||
move: 'Mutați',
|
||||
moveCard_title: 'Mutați cardul',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Mutați lista',
|
||||
remove: 'Eliminați',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeCover_title: 'Eliminați Coperta',
|
||||
removeFromBoard: 'Eliminați din Tabla',
|
||||
removeAssignee: 'Eliminați cesionarul',
|
||||
removeColor: 'Eliminați culoarea',
|
||||
removeCover_title: 'Eliminați coperta',
|
||||
removeFromBoard: 'Eliminați din tabla',
|
||||
removeFromProject: 'Eliminați din proiect',
|
||||
removeManager: 'Eliminați managerul',
|
||||
removeMember: 'Eliminați membrul',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Restaurați în {{list}}',
|
||||
returnToBoard: 'Întoarceți-vă la tablă',
|
||||
save: 'Salveaza',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Trimiteți e-mail de test',
|
||||
showActive: 'Afișați activ',
|
||||
showAllAttachments: 'Afișați toate atașamentele ({{hidden}} ascunse)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Afișați cardurile cu acest utilizator',
|
||||
showDeactivated: 'Afișați dezactivat',
|
||||
showFewerAttachments: 'Afișați mai puține atașamente',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: 'Afișați mai puțin',
|
||||
showMore: 'Afișați mai mult',
|
||||
sortList_title: 'Sortați lista',
|
||||
start: 'Start',
|
||||
stop: 'Stop',
|
||||
subscribe: 'Abonati-va',
|
||||
|
||||
@@ -1,29 +1,30 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Limita utilizatorilor activi a fost atinsă',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Este necesară autentificarea administratorului pentru a inițializa instanța',
|
||||
emailAlreadyInUse: 'E-mail deja utilizat',
|
||||
emailOrUsername: 'E-mail sau nume de utilizator',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Am citit și sunt de acord cu acești termeni',
|
||||
invalidCredentials: 'Credențiale nevalide',
|
||||
invalidEmailOrUsername: 'E-mail sau nume de utilizator introduse greșit',
|
||||
invalidPassword: 'Parola greșita',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Autentificare',
|
||||
noInternetConnection: 'Lipsește conexiunea cu internet',
|
||||
or: null,
|
||||
or: 'Sau',
|
||||
pageNotFound_title: 'Pagina n-a fost găsită',
|
||||
password: 'Parola',
|
||||
poweredByPlanka: null,
|
||||
serverConnectionFailed: 'Conexiunea cu Server a eșuat',
|
||||
poweredByPlanka: 'Susținut de <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Conexiunea la server a eșuat',
|
||||
unknownError: 'Eroarea necunoscuta, mai incercați',
|
||||
useSingleSignOn: 'Folosiți autentificarea unica',
|
||||
usernameAlreadyInUse: 'Nume utilizator deja exista',
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Anulează și închide',
|
||||
continue: 'Continuă',
|
||||
logIn: 'Autentificarea',
|
||||
logInWithSso: 'Autentificarea cu SSO',
|
||||
},
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"bundle": {
|
||||
"error-title": "Eroare în editorul markdown",
|
||||
"settings_wysiwyg": "Editor vizual (wysiwyg)",
|
||||
"settings_markup": "Marcaj Markdown",
|
||||
"settings_markup": "Marcaj markdown",
|
||||
"markup_placeholder": "Introduceți marcajul markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
|
||||
@@ -21,7 +21,7 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'О проекте PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Токен доступа',
|
||||
account: 'Учетная запись',
|
||||
actions: 'Действия',
|
||||
activateUser_title: 'Активировать пользователя',
|
||||
@@ -64,18 +64,20 @@ export default {
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Вы уверены, что хотите удалить эту группу настраиваемых полей?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Вы уверены, что хотите удалить эту метку?',
|
||||
areYouSureYouWantToDeleteThisList: 'Вы уверены, что хотите удалить этот список?',
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Вы уверены, что хотите удалить этот список? Все карточки будут перемещены в корзину.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Вы уверены, что хотите удалить этот сервис уведомлений?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Вы уверены, что хотите удалить этот проект?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Вы уверены, что хотите удалить эту задачу?',
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Вы уверены, что хотите удалить этот список задач?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Вы уверены, что хотите удалить этого пользователя?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Вы уверены, что хотите удалить этот веб-хук?',
|
||||
areYouSureYouWantToEmptyTrash: 'Вы уверены, что хотите очистить корзину?',
|
||||
areYouSureYouWantToLeaveBoard: 'Вы уверены, что хотите покинуть эту доску?',
|
||||
areYouSureYouWantToLeaveProject: 'Вы уверены, что хотите покинуть этот проект?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Вы уверены, что хотите сделать этот проект частным?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Вы уверены, что хотите сделать этот проект общим?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Вы уверены, что хотите удалить этого менеджера из проекта?',
|
||||
@@ -114,12 +116,13 @@ export default {
|
||||
'Карточки в этом списке завершены и готовы к архивированию.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Карточки в этом списке готовы к работе.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Нажмите здесь</0> или обновите страницу для обновления.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: 'Имя хоста клиента в EHLO',
|
||||
closed: 'Закрыто',
|
||||
color: 'Цвет',
|
||||
comments: 'Комментарии',
|
||||
contentExceedsLimit: 'Содержимое превышает {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Содержимое этого вложения слишком большое для отображения.',
|
||||
copy_inline: 'копия',
|
||||
createBoard_title: 'Создание доски',
|
||||
createCustomFieldGroup_title: 'Создать группу настраиваемых полей',
|
||||
@@ -137,7 +140,7 @@ export default {
|
||||
date: 'Дата',
|
||||
deactivateUser_title: 'Деактивировать пользователя',
|
||||
defaultCardType_title: 'Тип карточки по умолчанию',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'По умолчанию "от"',
|
||||
defaultView_title: 'Вид по умолчанию',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Удалите все доски, чтобы иметь возможность удалить этот проект',
|
||||
@@ -156,14 +159,13 @@ export default {
|
||||
deleteTaskList_title: 'Удалить список задач',
|
||||
deleteTask_title: 'Удаление задачи',
|
||||
deleteUser_title: 'Удаление пользователя',
|
||||
deleteWebhook_title: null,
|
||||
deleteWebhook_title: 'Удалить веб-хук',
|
||||
deletedUser_title: 'Удалённый пользователь',
|
||||
description: 'Описание',
|
||||
detectAutomatically: 'Определить автоматически',
|
||||
display: 'Отображение',
|
||||
dropFileToUpload: 'Перетяните файл, чтобы загрузить',
|
||||
dueDate_title: 'Срок исполнения',
|
||||
dynamicAndUnevenlySpacedLayout: 'Динамичное и неравномерно распределённое расположение',
|
||||
dynamicAndUnevenlySpacedLayout: 'Динамичное и неравномерно распределённое расположение.',
|
||||
editAttachment_title: 'Изменение вложения',
|
||||
editAvatar_title: 'Изменение аватара',
|
||||
editColor_title: 'Изменить цвет',
|
||||
@@ -188,21 +190,21 @@ export default {
|
||||
enterFilename: 'Введите название файла',
|
||||
enterListTitle: 'Введите заголовок списка...',
|
||||
enterTaskDescription: 'Введите описание задачи...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'События',
|
||||
excludedEvents: 'Исключенные события',
|
||||
expandTaskListsByDefault: 'Разворачивать списки задач по умолчанию',
|
||||
filterByLabels_title: 'Фильтр по меткам',
|
||||
filterByMembers_title: 'Фильтр по участникам',
|
||||
forPersonalProjects: 'Для личных проектов',
|
||||
forTeamBasedProjects: 'Для командных проектов',
|
||||
forPersonalProjects: 'Для личных проектов.',
|
||||
forTeamBasedProjects: 'Для командных проектов.',
|
||||
fromComputer_title: 'С компьютера',
|
||||
fromTrello: 'Из Trello',
|
||||
general: 'Основные',
|
||||
gradients: 'Градиенты',
|
||||
grid: 'Сетка',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: 'Скрыть выполненные задачи',
|
||||
hideFromProjectListAndFavorites: 'Скрыть из списка проектов и избранного',
|
||||
host: null,
|
||||
host: 'Хост',
|
||||
hours: 'Часы',
|
||||
importBoard_title: 'Импорт доски',
|
||||
invalidCurrentPassword: 'Неверный текущий пароль',
|
||||
@@ -212,21 +214,21 @@ export default {
|
||||
leaveBoard_title: 'Покинуть доску',
|
||||
leaveProject_title: 'Покинуть проект',
|
||||
limitCardTypesToDefaultOne: 'Разрешён только тип карточки по умолчанию',
|
||||
linkToCard: null,
|
||||
linkToCard: 'Ссылка на карточку',
|
||||
list: 'Список',
|
||||
listActions_title: 'Действия со списком',
|
||||
lists: 'Списки',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate_title: 'Сделать проект частным',
|
||||
makeProjectShared_title: 'Сделать проект общим',
|
||||
managers: 'Менеджеры',
|
||||
memberActions_title: 'Действия участников',
|
||||
members: 'Участники',
|
||||
minutes: 'Минуты',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Больше действий',
|
||||
moreActions_title: 'Больше действий',
|
||||
moveCard_title: 'Перемещение карточки',
|
||||
moveList_title: null,
|
||||
myOwn_title: 'Мой собственный',
|
||||
moveList_title: 'Переместить список',
|
||||
myOwn_title: 'Мои собственные',
|
||||
name: 'Имя',
|
||||
newEmail: 'Новый e-mail',
|
||||
newPassword: 'Новый пароль',
|
||||
@@ -234,23 +236,24 @@ export default {
|
||||
newVersionAvailable: 'Доступна новая версия',
|
||||
newestFirst: 'Новые первые',
|
||||
noBoards: 'Досок нет',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Карточки не найдены.',
|
||||
noConnectionToServer: 'Нет соединения с сервером',
|
||||
noLists: 'Списков нет',
|
||||
noProjects: 'Проектов нет',
|
||||
noUnreadNotifications: 'Уведомлений нет.',
|
||||
notifications: 'Уведомления',
|
||||
oldestFirst: 'Старые первые',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Должен остаться только один менеджер, чтобы сделать этот проект частным',
|
||||
openBoard_title: 'Откройте доску',
|
||||
optional_inline: 'необязательно',
|
||||
organization: 'Организация',
|
||||
others: 'Другие',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Пароль установлен',
|
||||
phone: 'Телефон',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA использует <1><0>Apprise</0></1> для отправки уведомлений в более чем 100 популярных сервисов.',
|
||||
port: null,
|
||||
port: 'Порт',
|
||||
preferences: 'Предпочтения',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Совет: нажмите Ctrl-V (Cmd-V на Mac), чтобы добавить вложение из буфера обмена.',
|
||||
@@ -258,8 +261,8 @@ export default {
|
||||
project: 'Проект',
|
||||
projectNotFound_title: 'Проект не найден',
|
||||
projectOwner: 'Владелец проекта',
|
||||
referenceDataAndKnowledgeStorage: 'Хранение справочных данных и знаний',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
referenceDataAndKnowledgeStorage: 'Хранение справочных данных и знаний.',
|
||||
rejectUnauthorizedTlsCertificates: 'Отклонять неавторизованные TLS-сертификаты',
|
||||
removeManager_title: 'Удалить менеджера',
|
||||
removeMember_title: 'Удаление участника',
|
||||
role: 'Роль',
|
||||
@@ -281,67 +284,71 @@ export default {
|
||||
selectProject: 'Выберите проект',
|
||||
selectRole_title: 'Выбрать роль',
|
||||
selectType_title: 'Выбрать тип',
|
||||
sequentialDisplayOfCards: 'Последовательное отображение карточек',
|
||||
sequentialDisplayOfCards: 'Последовательное отображение карточек.',
|
||||
settings: 'Настройки',
|
||||
shared: 'Общий',
|
||||
sharedWithMe_title: 'Общий со мной',
|
||||
sharedWithMe_title: 'Общие со мной',
|
||||
showOnFrontOfCard: 'Показать на лицевой стороне карточки',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Сортировка списка',
|
||||
stopwatch: 'Секундомер',
|
||||
story: 'История',
|
||||
subscribeToCardWhenCommenting: 'Подписаться на карточку при комментировании',
|
||||
subscribeToMyOwnCardsByDefault: 'По умолчанию подписываться на мои собственные карточки',
|
||||
taskActions_title: 'Действия по задаче',
|
||||
taskAssignmentAndProjectCompletion: 'Назначение задач и завершение проекта',
|
||||
taskAssignmentAndProjectCompletion: 'Назначение задач и завершение проекта.',
|
||||
taskListActions_title: 'Действия с списком задач',
|
||||
taskList_title: 'Список задач',
|
||||
team: 'Команда',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
team: 'Командные',
|
||||
terms: 'Условия',
|
||||
testLog_title: 'Журнал тестирования',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Предпросмотр для этого вложения недоступен.',
|
||||
time: 'Время',
|
||||
title: 'Название',
|
||||
trash: 'Корзина',
|
||||
trashHasBeenSuccessfullyEmptied: 'Корзина успешно очищена',
|
||||
trashHasBeenSuccessfullyEmptied: 'Корзина успешно очищена.',
|
||||
turnOffRecentCardHighlighting: 'Выключить подсветку последних карточек',
|
||||
typeNameToConfirm: 'Введите имя для подтверждения',
|
||||
typeTitleToConfirm: 'Введите название для подтверждения',
|
||||
typeNameToConfirm: 'Введите имя для подтверждения.',
|
||||
typeTitleToConfirm: 'Введите название для подтверждения.',
|
||||
unsavedChanges: 'Несохранённые изменения',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Загрузка не удалась: файл слишком большой.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Загрузка не удалась: недостаточно места для хранения.',
|
||||
uploadedImages: 'Загруженные изображения',
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Использовать безопасное соединение',
|
||||
userActions_title: 'Действия с пользователем',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> добавил(а) <2>{{card}}</2> в {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> добавил(а) эту карточку в {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> добавил(а) {{addedUser}} к <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> добавил(а) {{addedUser}} к этой карточке',
|
||||
userAddedYouToCard: '<0>{{user}}</0> добавил(а) вас к <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> выполнил(а) {{task}} в <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> выполнил(а) {{task}} в этой карточке',
|
||||
userJoinedCard: '<0>{{user}}</0> присоединился(лась) к <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> присоединился(лась) к этой карточке',
|
||||
userLeftCard: '<0>{{user}}</0> покинул(а) <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> оставил(а) комментарий «{{comment}}» к <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> покинул(а) эту карточку',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> отметил(а) {{task}} как невыполненную в <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> отметил(а) {{task}} как невыполненную в этой карточке',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> упомянул(а) вас в комментарии «{{comment}}» к <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> переместил(а) <2>{{card}}</2> из {{fromList}} в {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> переместил(а) эту карточку из {{fromList}} в {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> удалил(а) {{removedUser}} из <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard:
|
||||
'<0>{{actorUser}}</0> удалил(а) {{removedUser}} из этой карточки',
|
||||
username: 'Имя пользователя',
|
||||
users: 'Пользователи',
|
||||
viewer: 'Читатель',
|
||||
viewers: 'Читатели',
|
||||
visualTaskManagementWithLists: 'Визуальное управление задачами с помощью списков',
|
||||
webhooks: null,
|
||||
visualTaskManagementWithLists: 'Визуальное управление задачами с помощью списков.',
|
||||
webhooks: 'Веб-хуки',
|
||||
withoutBaseGroup: 'Без основной группы',
|
||||
writeComment: 'Напишите комментарий...',
|
||||
},
|
||||
@@ -364,8 +371,8 @@ export default {
|
||||
addTaskList: 'Добавить список задач',
|
||||
addToCard: 'Добавить на карточку',
|
||||
addUser: 'Добавить пользователя',
|
||||
addWebhook: null,
|
||||
archive: 'Архив',
|
||||
addWebhook: 'Добавить веб-хук',
|
||||
archive: 'Архивировать',
|
||||
archiveCard: 'Архивировать карточку',
|
||||
archiveCard_title: 'Архивировать карточку',
|
||||
archiveCards: 'Архивировать карточки',
|
||||
@@ -405,9 +412,9 @@ export default {
|
||||
deleteTask_title: 'Удалить задачу',
|
||||
deleteUser: 'Удалить пользователя',
|
||||
deleteUser_title: 'Удалить пользователя',
|
||||
deleteWebhook: null,
|
||||
deleteWebhook: 'Удалить веб-хук',
|
||||
dismissAll: 'Отклонить все',
|
||||
download: null,
|
||||
download: 'Скачать',
|
||||
duplicateCard_title: 'Дублировать карточку',
|
||||
edit: 'Изменить',
|
||||
editColor_title: 'Изменить цвет',
|
||||
@@ -432,13 +439,13 @@ export default {
|
||||
leaveProject: 'Покинуть проект',
|
||||
logOut_title: 'Выйти',
|
||||
makeCover_title: 'Сделать обложкой',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate: 'Сделать проект частным',
|
||||
makeProjectPrivate_title: 'Сделать проект частным',
|
||||
makeProjectShared: 'Сделать проект общим',
|
||||
makeProjectShared_title: 'Сделать проект общим',
|
||||
move: 'Переместить',
|
||||
moveCard_title: 'Переместить карточку',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Переместить список',
|
||||
remove: 'Убрать',
|
||||
removeAssignee: 'Удалить исполнителя',
|
||||
removeColor: 'Удалить цвет',
|
||||
@@ -450,14 +457,14 @@ export default {
|
||||
restoreToList: 'Восстановить в {{list}}',
|
||||
returnToBoard: 'Вернуться на доску',
|
||||
save: 'Сохранить',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Отправить тестовое письмо',
|
||||
showActive: 'Показать активные',
|
||||
showAllAttachments: 'Показать все вложения ({{hidden}} скрыто)',
|
||||
showCardsWithThisUser: 'Показать карточки с этим пользователем',
|
||||
showDeactivated: 'Показать деактивированные',
|
||||
showFewerAttachments: 'Показать меньше вложений',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'Показать меньше',
|
||||
showMore: 'Показать больше',
|
||||
sortList_title: 'Сортировать список',
|
||||
start: 'Начать',
|
||||
stop: 'Остановить',
|
||||
|
||||
@@ -2,10 +2,11 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Достигнут лимит активных пользователей',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Требуется вход администратора для инициализации экземпляра',
|
||||
emailAlreadyInUse: 'E-mail уже занят',
|
||||
emailOrUsername: 'E-mail или имя пользователя',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Я прочитал и согласен с этими условиями',
|
||||
invalidCredentials: 'Недействительные учетные данные',
|
||||
invalidEmailOrUsername: 'Неверный e-mail или имя пользователя',
|
||||
invalidPassword: 'Неверный пароль',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Отменить и закрыть',
|
||||
continue: 'Продолжить',
|
||||
logIn: 'Войти',
|
||||
logInWithSso: 'Войти с помощью единого входа',
|
||||
},
|
||||
|
||||
@@ -20,430 +20,445 @@ export default {
|
||||
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: null,
|
||||
accessToken: null,
|
||||
aboutPlanka: 'O Planke',
|
||||
accessToken: 'Prístupový token',
|
||||
account: 'Účet',
|
||||
actions: 'Akcia',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'Aktivovať používateľa',
|
||||
active: 'Aktívny',
|
||||
addAttachment_title: 'Pridať prílohu',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'Pridať skupinu vlastných polí',
|
||||
addCustomField_title: 'Pridať vlastné pole',
|
||||
addManager_title: 'Pridať správcu',
|
||||
addMember_title: 'Pridať člena',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'Pridať zoznam úloh',
|
||||
addUser_title: 'Pridať používateľa',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'Správca',
|
||||
administration: 'Správa',
|
||||
all: 'Všetko',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Všetky zmeny budú automaticky uložené<br />po obnovení spojenia.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Abecedne',
|
||||
alwaysDisplayCardCreator: 'Vždy zobraziť tvorcu karty',
|
||||
archive: 'Archív',
|
||||
archiveCard_title: 'Archivovať kartu',
|
||||
archiveCards_title: 'Archivovať karty',
|
||||
areYouSureYouWantToActivateThisUser: 'Naozaj chcete aktivovať tohoto používateľa?',
|
||||
areYouSureYouWantToArchiveCards: 'Naozaj chcete archivovať karty?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Naozaj chcete archivovať túto kartu?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Naozaj chcete prideliť tohoto správcu projektu ako vlastníka?',
|
||||
areYouSureYouWantToDeactivateThisUser: 'Naozaj chcete deaktivovať tohoto používateľa?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Naozaj chcete zmazať túto prílohu?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: 'Naozaj chcete zmazať tento obrázok pozadia?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Naozaj chcete zmazať túto tabuľu?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Naozaj chcete zmazať túto kartu?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever: 'Naozaj chcete natrvalo zmazať túto kartu?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Naozaj chcete zmazať tento komentár?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField: 'Naozaj chcete zmazať toto vlastné pole?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Naozaj chcete zmazať túto skupinu vlastných polí?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Naozaj chcete zmazať tento štítok?',
|
||||
areYouSureYouWantToDeleteThisList: 'Naozaj chcete zmazať tento zoznam?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Naozaj chcete zmazať tento zoznam? Všetky karty budú presunuté do koša.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Naozaj chcete zmazať túto notifikačnú službu?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Naozaj chcete zmazať tento projekt?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Naozaj chcete zmazať túto úlohu?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Naozaj chcete zmazať tento zoznam úloh?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Naozaj chcete zmazať tohoto používateľa?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Naozaj chcete zmazať tento webhook?',
|
||||
areYouSureYouWantToEmptyTrash: 'Naozaj chcete vyprázdniť kôš?',
|
||||
areYouSureYouWantToLeaveBoard: 'Naozaj chcete opustiť túto tabuľu?',
|
||||
areYouSureYouWantToLeaveProject: 'Naozaj chcete opustiť tento projekt?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate: 'Naozaj chcete urobiť tento projekt súkromným?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Naozaj chcete urobiť tento projekt zdieľaným?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Naozaj chcete zmazať daného správcu tohto projektu?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Naozaj chcete odstrániť tohoto člena z tabule?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Prideliť ako vlastníka',
|
||||
atLeastOneListMustBePresent: 'Musí byť prítomný aspoň jeden zoznam',
|
||||
attachment: 'Príloha',
|
||||
attachments: 'Prílohy',
|
||||
authentication: 'Overenie',
|
||||
background: 'Pozadie',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Základné vlastné polia',
|
||||
baseGroup: 'Základná skupina',
|
||||
board: 'Tabuľa',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Akcie tabule',
|
||||
boardNotFound_title: 'Tabuľa neexistuje',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
canComment: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canOnlyViewBoard: null,
|
||||
boardSubscribed: 'Tabuľa odberateľa',
|
||||
boardUser: 'Používateľ tabule',
|
||||
byCreationTime: 'Podľa času vytvorenia',
|
||||
byDefault: 'Predvolene',
|
||||
byDueDate: 'Podľa termínu',
|
||||
canBeInvitedToWorkInBoards: 'Môže byť pozvaný pracovať v tabuliach.',
|
||||
canComment: 'Môže komentovať',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Môže vytvárať vlastné projekty a byť pozvaný pracovať v iných.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Môže upravovať rozloženie tabule a prideľovať členov kartám.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Môže spravovať systémové nastavenia a konať ako vlastník projektu.',
|
||||
canOnlyViewBoard: 'Môže iba zobraziť tabuľu.',
|
||||
cardActions_title: 'Akcie na karte',
|
||||
cardNotFound_title: 'Karta neexistuje',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Karty v tomto zozname sú dostupné všetkým členom tabule.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Karty v tomto zozname sú dokončené a pripravené na archiváciu.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Karty v tomto zozname sú pripravené na prácu.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Kliknite sem</0> alebo obnovte stránku na aktualizáciu.',
|
||||
clientHostnameInEhlo: 'Názov hostiteľa klienta v EHLO',
|
||||
closed: 'Zatvorené',
|
||||
color: 'Farba',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
comments: 'Komentáre',
|
||||
contentExceedsLimit: 'Obsah prekračuje {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Obsah tejto prílohy je príliš veľký na zobrazenie.',
|
||||
copy_inline: 'kópia',
|
||||
createBoard_title: 'Vytvoriť tabuľu',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'Vytvoriť skupinu vlastných polí',
|
||||
createLabel_title: 'Vytvoriť štítok',
|
||||
createNewOneOrSelectExistingOne: 'Vytvoriť nový alebo vyberte<br />už existujúci.',
|
||||
createProject_title: 'Vytvoriť projekt',
|
||||
createTextFile_title: 'Vytvoriť textový súbor',
|
||||
creator: null,
|
||||
creator: 'Tvorca',
|
||||
currentPassword: 'Aktuálne heslo',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'Skupina vlastných polí',
|
||||
customFieldGroups_title: 'Skupiny vlastných polí',
|
||||
customField_title: 'Vlastné pole',
|
||||
customFields_title: 'Vlastné polia',
|
||||
dangerZone_title: 'Nebezpečná zóna',
|
||||
date: 'Dátum',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'Deaktivovať používateľa',
|
||||
defaultCardType_title: 'Predvolený typ karty',
|
||||
defaultFrom: 'Predvolené od',
|
||||
defaultView_title: 'Predvolené zobrazenie',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Zmaž všetky tabule, aby si mohol zmazať tento projekt',
|
||||
deleteAttachment_title: 'Zmazať prílohu',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: 'Zmazať obrázok pozadia',
|
||||
deleteBoard_title: 'Zmazať tabuľu',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'Zmazať kartu natrvalo',
|
||||
deleteCard_title: 'Zmazať kartu',
|
||||
deleteComment_title: 'Zmazať komentár',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'Zmazať skupinu vlastných polí',
|
||||
deleteCustomField_title: 'Zmazať vlastné pole',
|
||||
deleteLabel_title: 'Zmazať štítok',
|
||||
deleteList_title: 'Zmazať zoznam',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'Zmazať notifikačnú službu',
|
||||
deleteProject_title: 'Zmazať projekt',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'Zmazať zoznam úloh',
|
||||
deleteTask_title: 'Zmazať úlohu',
|
||||
deleteUser_title: 'Zmazať používateľa',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'Zmazať webhook',
|
||||
deletedUser_title: 'Zmazaný používateľ',
|
||||
description: 'Popis',
|
||||
detectAutomatically: null,
|
||||
display: null,
|
||||
display: 'Zobraziť',
|
||||
dropFileToUpload: 'Potiahnutím nahraj súbor',
|
||||
dueDate_title: 'Termín do',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'Dynamické a nerovnomerne rozložené usporiadanie.',
|
||||
editAttachment_title: 'Upraviť prílohu',
|
||||
editAvatar_title: 'Upraviť avatar',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editDueDate_title: 'Upraviť Termín do',
|
||||
editColor_title: 'Upraviť farbu',
|
||||
editCustomFieldGroup_title: 'Upraviť skupinu vlastných polí',
|
||||
editCustomField_title: 'Upraviť vlastné pole',
|
||||
editDueDate_title: 'Upraviť termín do',
|
||||
editEmail_title: 'Upraviť e-mail',
|
||||
editInformation_title: 'Upraviť informácie',
|
||||
editLabel_title: 'Upraviť štítok',
|
||||
editPassword_title: 'Upraviť heslo',
|
||||
editPermissions_title: null,
|
||||
editRole_title: null,
|
||||
editPermissions_title: 'Upraviť oprávnenia',
|
||||
editRole_title: 'Upraviť rolu',
|
||||
editStopwatch_title: 'Upraviť časovač',
|
||||
editType_title: null,
|
||||
editType_title: 'Upraviť typ',
|
||||
editUsername_title: 'Upraviť používateľské meno',
|
||||
editor: null,
|
||||
editors: null,
|
||||
editor: 'Editor',
|
||||
editors: 'Editori',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Vyprázdniť kôš',
|
||||
enterCardTitle: 'Vlož názov karty...',
|
||||
enterDescription: 'Vlož popis...',
|
||||
enterFilename: 'Vlož názov súboru',
|
||||
enterListTitle: 'Vlož názov zoznamu...',
|
||||
enterTaskDescription: 'Vlož popis úlohy...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Udalosti',
|
||||
excludedEvents: 'Vylúčené udalosti',
|
||||
expandTaskListsByDefault: 'Predvolene rozšíriť zoznamy úloh',
|
||||
filterByLabels_title: 'Filtruj podľa štítku',
|
||||
filterByMembers_title: 'Filtruj podľa člena',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'Pre osobné projekty.',
|
||||
forTeamBasedProjects: 'Pre tímové projekty.',
|
||||
fromComputer_title: 'Z počítača',
|
||||
fromTrello: null,
|
||||
fromTrello: 'Z Trello',
|
||||
general: 'Všeobecné',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Prechody',
|
||||
grid: 'Mriežka',
|
||||
hideCompletedTasks: 'Skryť dokončené úlohy',
|
||||
hideFromProjectListAndFavorites: 'Skryť zo zoznamu projektov a obľúbených',
|
||||
host: 'Hostiteľ',
|
||||
hours: 'Hodiny',
|
||||
importBoard_title: null,
|
||||
importBoard_title: 'Importovať tabuľu',
|
||||
invalidCurrentPassword: 'Neplatné aktuálne heslo',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'Štítky',
|
||||
language: null,
|
||||
language: 'Jazyk',
|
||||
leaveBoard_title: 'Opustiť tabuľu',
|
||||
leaveProject_title: 'Opustiť projekt',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'Obmedziť typy kariet na predvolený',
|
||||
linkToCard: 'Odkaz na kartu',
|
||||
list: 'Zoznam',
|
||||
listActions_title: 'Zoznam akcií',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'Zoznamy',
|
||||
makeProjectPrivate_title: 'Urobiť projekt súkromným',
|
||||
makeProjectShared_title: 'Urobiť projekt zdieľaným',
|
||||
managers: 'Správcovia',
|
||||
memberActions_title: null,
|
||||
memberActions_title: 'Akcie členov',
|
||||
members: 'Členovia',
|
||||
minutes: 'Minúty',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Viac akcií',
|
||||
moreActions_title: 'Viac akcií',
|
||||
moveCard_title: 'Presunúť kartu',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'Presunúť zoznam',
|
||||
myOwn_title: 'Moje vlastné',
|
||||
name: 'Meno',
|
||||
newEmail: 'Nový e-mail',
|
||||
newPassword: 'Nové heslo',
|
||||
newUsername: 'Nové používateľské meno',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: 'Nová verzia je dostupná',
|
||||
newestFirst: 'Najnovšie prvé',
|
||||
noBoards: 'Žiadne tabule',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Nenašli sa žiadne karty.',
|
||||
noConnectionToServer: 'Nie je spojenie k serveru',
|
||||
noLists: 'Žiadne zoznamy',
|
||||
noProjects: 'Žiadne projekty',
|
||||
noUnreadNotifications: 'Žiadne neprečítané oznámenia.',
|
||||
notifications: 'Oznámenia',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
oldestFirst: 'Najstaršie prvé',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Iba jeden správca by mal zostať, aby sa tento projekt stal súkromným',
|
||||
openBoard_title: 'Otvoriť tabuľu',
|
||||
optional_inline: 'voliteľné',
|
||||
organization: 'Spoločnosť',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Ostatní',
|
||||
passwordIsSet: 'Heslo je nastavené',
|
||||
phone: 'Telefón',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA používa <1><0>Apprise</0></1> na posielanie oznámení do viac ako 100 populárnych služieb.',
|
||||
port: 'Port',
|
||||
preferences: 'Voľby',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Tip: stlačte Ctrl-V (Cmd-V na Mac) pre vloženie prílohy zo schránky.',
|
||||
private: null,
|
||||
private: 'Súkromný',
|
||||
project: 'Projekt',
|
||||
projectNotFound_title: 'Projekt neexistuje',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'Vlastník projektu',
|
||||
referenceDataAndKnowledgeStorage: 'Referenčné údaje a úložisko znalostí.',
|
||||
rejectUnauthorizedTlsCertificates: 'Odmietnuť neautorizované TLS certifikáty',
|
||||
removeManager_title: 'Odstrániť správcu',
|
||||
removeMember_title: 'Odstrániť člena',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchLabels: null,
|
||||
searchLists: null,
|
||||
searchMembers: null,
|
||||
searchProjects: null,
|
||||
searchUsers: null,
|
||||
role: 'Rola',
|
||||
searchCards: 'Hľadať karty...',
|
||||
searchCustomFieldGroups: 'Hľadať skupiny vlastných polí...',
|
||||
searchCustomFields: 'Hľadať vlastné polia...',
|
||||
searchLabels: 'Hľadať štítky...',
|
||||
searchLists: 'Hľadať zoznamy...',
|
||||
searchMembers: 'Hľadať členov...',
|
||||
searchProjects: 'Hľadať projekty...',
|
||||
searchUsers: 'Hľadať používateľov...',
|
||||
seconds: 'Sekúnd',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Vybrať pridelenú osobu',
|
||||
selectBoard: 'Vybrať tabuľu',
|
||||
selectList: 'Vybrať zoznam',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectPermissions_title: null,
|
||||
selectListToRestoreThisCard: 'Vyberte zoznam na obnovenie tejto karty',
|
||||
selectOrder_title: 'Vybrať poradie',
|
||||
selectPermissions_title: 'Vybrať oprávnenia',
|
||||
selectProject: 'Vybrať projekt',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Vybrať rolu',
|
||||
selectType_title: 'Vybrať typ',
|
||||
sequentialDisplayOfCards: 'Postupné zobrazenie kariet.',
|
||||
settings: 'Nastavenia',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: 'Zdieľané',
|
||||
sharedWithMe_title: 'Zdieľané so mnou',
|
||||
showOnFrontOfCard: 'Zobraziť na prednej strane karty',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Zoradiť zoznam',
|
||||
stopwatch: 'Časovač',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Príbeh',
|
||||
subscribeToCardWhenCommenting: 'Odoberať kartu pri komentovaní',
|
||||
subscribeToMyOwnCardsByDefault: 'Predvolene odoberať vlastné karty',
|
||||
taskActions_title: 'Akcie na úlohe',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
thereIsNoPreviewAvailableForThisAttachment: null,
|
||||
taskAssignmentAndProjectCompletion: 'Pridelenie úloh a dokončenie projektu.',
|
||||
taskListActions_title: 'Akcie zoznamu úloh',
|
||||
taskList_title: 'Zoznam úloh',
|
||||
team: 'Tím',
|
||||
terms: 'Podmienky',
|
||||
testLog_title: 'Testovací denník',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Pre túto prílohu nie je k dispozícii náhľad.',
|
||||
time: 'Čas',
|
||||
title: 'Názov',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'Kôš',
|
||||
trashHasBeenSuccessfullyEmptied: 'Kôš bol úspešne vyprázdnený.',
|
||||
turnOffRecentCardHighlighting: 'Vypnúť zvýrazňovanie nedávnych kariet',
|
||||
typeNameToConfirm: 'Zadajte meno na potvrdenie.',
|
||||
typeTitleToConfirm: 'Zadajte názov na potvrdenie.',
|
||||
unsavedChanges: 'Neuložené zmeny',
|
||||
uploadFailedFileIsTooBig: 'Nahrávanie zlyhalo: súbor je príliš veľký.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Nahrávanie zlyhalo: nedostatok úložného priestoru.',
|
||||
uploadedImages: 'Nahrané obrázky',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Použiť zabezpečené pripojenie',
|
||||
userActions_title: 'Akcie na používateľovi',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> pridal <2>{{card}}</2> do {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> pridal kartu do {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> pridal {{addedUser}} do <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> pridal {{addedUser}} do tejto karty',
|
||||
userAddedYouToCard: '<0>{{user}}</0> vás pridal do <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> dokončil {{task}} na <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> dokončil {{task}} na tejto karte',
|
||||
userJoinedCard: '<0>{{user}}</0> sa pripojil k <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> sa pripojil k tejto karte',
|
||||
userLeftCard: '<0>{{user}}</0> opustil <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> zanechal nový komentár «{{comment}}» k <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> opustil túto kartu',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> označil {{task}} ako nedokončenú na <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> označil {{task}} ako nedokončenú na tejto karte',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> vás spomenul v komentári «{{comment}}» na <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> presunul <2>{{card}}</2> z {{fromList}} do {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> presunul túto kartu z {{fromList}} do {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> odstránil {{removedUser}} z <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> odstránil {{removedUser}} z tejto karty',
|
||||
username: 'Používateľské meno',
|
||||
users: 'Používatelia',
|
||||
viewer: null,
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewer: 'Prehliadač',
|
||||
viewers: 'Prehliadače',
|
||||
visualTaskManagementWithLists: 'Vizuálne riadenie úloh so zoznamami.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Bez základnej skupiny',
|
||||
writeComment: 'Napísať komentár...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Aktivovať používateľa',
|
||||
activateUser_title: 'Aktivovať používateľa',
|
||||
addAnotherCard: 'Pridať ďalšiu kartu',
|
||||
addAnotherList: 'Pridať ďalší zoznam',
|
||||
addAnotherTask: 'Pridať ďalšiu úlohu',
|
||||
addCard: 'Pridať kartu',
|
||||
addCard_title: 'Pridať kartu',
|
||||
addComment: 'Pridať komentár',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Pridať vlastné pole',
|
||||
addCustomFieldGroup: 'Pridať skupinu vlastných polí',
|
||||
addList: 'Pridať zoznam',
|
||||
addMember: null,
|
||||
addMember: 'Pridať člena',
|
||||
addMoreDetailedDescription: 'Pridať ďalší detailný popis',
|
||||
addTask: 'Pridať úlohu',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Pridať zoznam úloh',
|
||||
addToCard: 'Pridať na kartu',
|
||||
addUser: 'Pridať používateľa',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Pridať webhook',
|
||||
archive: 'Archivovať',
|
||||
archiveCard: 'Archivovať kartu',
|
||||
archiveCard_title: 'Archivovať kartu',
|
||||
archiveCards: 'Archivovať karty',
|
||||
archiveCards_title: 'Archivovať karty',
|
||||
assignAsOwner: 'Prideliť ako vlastníka',
|
||||
cancel: 'Zrušiť',
|
||||
createBoard: 'Vytvoriť tabuľu',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Vytvoriť skupinu vlastných polí',
|
||||
createFile: 'Vytvoriť súbor',
|
||||
createLabel: 'Vytvoriť štítok',
|
||||
createNewLabel: 'Vytvoriť nový štítok',
|
||||
createProject: 'Vytvoriť projekt',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Deaktivovať používateľa',
|
||||
deactivateUser_title: 'Deaktivovať používateľa',
|
||||
delete: 'Zmazať',
|
||||
deleteAttachment: 'Zmazať prílohu',
|
||||
deleteAvatar: 'Zmazať avatar',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Zmazať obrázok pozadia',
|
||||
deleteBoard: 'Zmazať tabuľu',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Zmazať tabuľu',
|
||||
deleteCard: 'Zmazať kartu',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'Zmazať kartu natrvalo',
|
||||
deleteCard_title: 'Zmazať kartu',
|
||||
deleteComment: 'Zmazať komentár',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Zmazať vlastné pole',
|
||||
deleteCustomFieldGroup: 'Zmazať skupinu vlastných polí',
|
||||
deleteForever_title: 'Zmazať natrvalo',
|
||||
deleteGroup: 'Zmazať skupinu',
|
||||
deleteLabel: 'Zmazať štítok',
|
||||
deleteList: 'Zmazať zoznam',
|
||||
deleteList_title: 'Zmazať zoznam',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: 'Zmazať notifikačnú službu',
|
||||
deleteProject: 'Zmazať projekt',
|
||||
deleteProject_title: 'Zmazať projekt',
|
||||
deleteTask: 'Zmazať úlohu',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'Zmazať zoznam úloh',
|
||||
deleteTask_title: 'Zmazať úlohu',
|
||||
deleteUser: 'Zmazať používateľa',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: 'Zmazať používateľa',
|
||||
deleteWebhook: 'Zmazať webhook',
|
||||
dismissAll: 'Zamietnuť všetko',
|
||||
download: 'Stiahnuť',
|
||||
duplicateCard_title: 'Duplikovať kartu',
|
||||
edit: 'Upraviť',
|
||||
editColor_title: null,
|
||||
editColor_title: 'Upraviť farbu',
|
||||
editDescription_title: 'Upraviť popis',
|
||||
editDueDate_title: 'Upraviť termín do',
|
||||
editEmail_title: 'Upraviť e-mail',
|
||||
editGroup: null,
|
||||
editGroup: 'Upraviť skupinu',
|
||||
editInformation_title: 'Upraviť informácie',
|
||||
editPassword_title: 'Upraviť heslo',
|
||||
editPermissions: null,
|
||||
editRole_title: null,
|
||||
editPermissions: 'Upraviť oprávnenia',
|
||||
editRole_title: 'Upraviť rolu',
|
||||
editStopwatch_title: 'Upraviť časovač',
|
||||
editTitle_title: 'Upraviť názov',
|
||||
editType_title: null,
|
||||
editType_title: 'Upraviť typ',
|
||||
editUsername_title: 'Upraviť používateľské meno',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
import: null,
|
||||
join: null,
|
||||
leave: null,
|
||||
emptyTrash: 'Vyprázdniť kôš',
|
||||
emptyTrash_title: 'Vyprázdniť kôš',
|
||||
import: 'Importovať',
|
||||
join: 'Pripojiť sa',
|
||||
leave: 'Opustiť',
|
||||
leaveBoard: 'Opustiť tabuľu',
|
||||
leaveProject: 'Opustiť projekt',
|
||||
logOut_title: 'Odhlásiť sa',
|
||||
makeCover_title: 'Vytvoriť obal',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'Urobiť projekt súkromným',
|
||||
makeProjectPrivate_title: 'Urobiť projekt súkromným',
|
||||
makeProjectShared: 'Urobiť projekt zdieľaným',
|
||||
makeProjectShared_title: 'Urobiť projekt zdieľaným',
|
||||
move: 'Presunúť',
|
||||
moveCard_title: 'Presunúť kartu',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Presunúť zoznam',
|
||||
remove: 'Odstrániť',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'Odstrániť pridelenú osobu',
|
||||
removeColor: 'Odstrániť farbu',
|
||||
removeCover_title: 'Odstrániť obal',
|
||||
removeFromBoard: 'Odstrániť z tabule',
|
||||
removeFromProject: 'Odstrániť z projektu',
|
||||
removeManager: 'Odstrániť správcu',
|
||||
removeMember: 'Odstrániť člena',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Obnoviť do {{list}}',
|
||||
returnToBoard: 'Vrátiť sa na tabuľu',
|
||||
save: 'Uložiť',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Poslať testovací e-mail',
|
||||
showActive: 'Zobraziť aktívne',
|
||||
showAllAttachments: 'Zozbraziť všetky prílohy ({{hidden}} skryté)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Zobraziť karty s týmto používateľom',
|
||||
showDeactivated: 'Zobraziť deaktivované',
|
||||
showFewerAttachments: 'Zobraziť menej príloh',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: 'Zobraziť menej',
|
||||
showMore: 'Zobraziť viac',
|
||||
sortList_title: 'Zoradiť zoznam',
|
||||
start: 'Start',
|
||||
stop: 'Stop',
|
||||
subscribe: 'Odoberať',
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Limit aktívnych používateľov bol dosiahnutý',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Na inicializáciu inštancie je potrebné prihlásenie správcu',
|
||||
emailAlreadyInUse: 'E-mail je už použitý',
|
||||
emailOrUsername: 'E-mail alebo používateľské meno',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Prečítal som si a súhlasím s týmito podmienkami',
|
||||
invalidCredentials: 'Neplatné prihlasovacie údaje',
|
||||
invalidEmailOrUsername: 'Nesprávny e-mail alebo používateľské meno',
|
||||
invalidPassword: 'Nesprávne heslo',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Prihlásiť sa',
|
||||
noInternetConnection: 'Bez pripojenia k internetu',
|
||||
or: null,
|
||||
or: 'Alebo',
|
||||
pageNotFound_title: 'Stránka neexistuje',
|
||||
password: 'Heslo',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Poháňané <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Pripojenie k serveru zlyhalo',
|
||||
unknownError: 'Neznáma chyba, skúste to neskôr',
|
||||
useSingleSignOn: null,
|
||||
useSingleSignOn: 'Použiť jednotné prihlásenie',
|
||||
usernameAlreadyInUse: 'Používateľské meno je zabrané',
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Zrušiť a zavrieť',
|
||||
continue: 'Pokračovať',
|
||||
logIn: 'Prihlásiť sa',
|
||||
logInWithSso: null,
|
||||
logInWithSso: 'Prihlásiť sa cez SSO',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
@@ -21,428 +21,446 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'O PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Токен за приступ',
|
||||
account: 'Налог',
|
||||
actions: 'Радње',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'Активирај корисника',
|
||||
active: 'Активан',
|
||||
addAttachment_title: 'Додај прилог',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'Додај групу прилагођених поља',
|
||||
addCustomField_title: 'Додај прилагођено поље',
|
||||
addManager_title: 'Додај руководиоца',
|
||||
addMember_title: 'Додај члана',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'Додај листу задатака',
|
||||
addUser_title: 'Додај корисника',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'Администратор',
|
||||
administration: 'Администрација',
|
||||
all: 'Све',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Све промене ће аутоматски бити сачуване<br />након успостављања конекције.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Абецедно',
|
||||
alwaysDisplayCardCreator: 'Увек прикажи творца картице',
|
||||
archive: 'Архива',
|
||||
archiveCard_title: 'Архивирај картицу',
|
||||
archiveCards_title: 'Архивирај картице',
|
||||
areYouSureYouWantToActivateThisUser: 'Да ли заиста желите да активирате овог корисника?',
|
||||
areYouSureYouWantToArchiveCards: 'Да ли заиста желите да архивирате картице?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Да ли заиста желите да архивирате ову картицу?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Да ли заиста желите да доделите овог руководиоца пројекта као власника?',
|
||||
areYouSureYouWantToDeactivateThisUser: 'Да ли заиста желите да деактивирате овог корисника?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Да ли заиста желите да обришете овај прилог?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Да ли заиста желите да обришете ову позадинску слику?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Да ли заиста желите да обришете ову таблу?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Да ли заиста желите да обришете ову картицу?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Да ли заиста желите да обришете ову картицу заувек?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Да ли заиста желите да обришете овај коментар?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'Да ли заиста желите да обришете ово прилагођено поље?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Да ли заиста желите да обришете ову групу прилагођених поља?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Да ли заиста желите да обришете ову ознаку?',
|
||||
areYouSureYouWantToDeleteThisList: 'Да ли заиста желите да обришете овај списак?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Да ли заиста желите да обришете овај списак? Све картице ће бити премештене у корпу.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Да ли заиста желите да обришете ову услугу обавештења?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Да ли заиста желите да обришете овај пројекат?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Да ли заиста желите да обришете овај задатак?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Да ли заиста желите да обришете ову листу задатака?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Да ли заиста желите да обришете овог корисника?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Да ли заиста желите да обришете овај webhook?',
|
||||
areYouSureYouWantToEmptyTrash: 'Да ли заиста желите да испразните корпу?',
|
||||
areYouSureYouWantToLeaveBoard: 'Да ли заиста желите да напустите ову таблу?',
|
||||
areYouSureYouWantToLeaveProject: 'Да ли заиста желите да напустите овај пројекат?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Да ли заиста желите да учините овај пројекат приватним?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Да ли заиста желите да поделите овај пројекат?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Да ли заиста желите да уклоните овог руководиоца из овог пројекта?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Да ли заиста желите да уклоните овог члана из ове табле?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Додели као власника',
|
||||
atLeastOneListMustBePresent: 'Мора постојати најмање једна листа',
|
||||
attachment: 'Прилог',
|
||||
attachments: 'Прилози',
|
||||
authentication: 'Аутентификација',
|
||||
background: 'Позадина',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Основна прилагођена поља',
|
||||
baseGroup: 'Основна група',
|
||||
board: 'Табла',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Радње над таблом',
|
||||
boardNotFound_title: 'Табла није пронађена',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'Претплаћен на таблу',
|
||||
boardUser: 'Корисник табле',
|
||||
byCreationTime: 'По времену креирања',
|
||||
byDefault: 'По подразумеваном',
|
||||
byDueDate: 'По року доспећа',
|
||||
canBeInvitedToWorkInBoards: 'Може бити позван да ради на таблама.',
|
||||
canComment: 'Може да коментарише',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Може креирати сопствене пројекте и бити позван да ради на другима.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Може уређивати изглед табле и додељивати чланове картицама.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Може управљати системским подешавањима и деловати као власник пројекта.',
|
||||
canOnlyViewBoard: 'Може само да прегледа таблу.',
|
||||
cardActions_title: 'Радње над картицом',
|
||||
cardNotFound_title: 'Картица није пронађена',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Картице на овој листи су доступне свим члановима табле.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Картице на овој листи су завршене и спремне за архивирање.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Картице на овој листи су спремне за рад.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Кликните овде</0> или освежите страницу за ажурирање.',
|
||||
clientHostnameInEhlo: 'Име хоста клијента у EHLO',
|
||||
closed: 'Затворено',
|
||||
color: 'Боја',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
comments: 'Коментари',
|
||||
contentExceedsLimit: 'Садржај превазилази {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: 'Садржај овог прилога је превелик за приказ.',
|
||||
copy_inline: 'копија',
|
||||
createBoard_title: 'Направи таблу',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'Направи групу прилагођених поља',
|
||||
createLabel_title: 'Направи ознаку',
|
||||
createNewOneOrSelectExistingOne: 'Направи нову или изабери<br />постојећу.',
|
||||
createProject_title: 'Направи пројекат',
|
||||
createTextFile_title: 'Направи текстуалну датотеку',
|
||||
creator: null,
|
||||
creator: 'Творац',
|
||||
currentPassword: 'Тренутна лозинка',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'Група прилагођених поља',
|
||||
customFieldGroups_title: 'Групе прилагођених поља',
|
||||
customField_title: 'Прилагођено поље',
|
||||
customFields_title: 'Прилагођена поља',
|
||||
dangerZone_title: 'Опасна зона',
|
||||
date: 'Датум',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'Деактивирај корисника',
|
||||
defaultCardType_title: 'Подразумевани тип картице',
|
||||
defaultFrom: 'Подразумевано од',
|
||||
defaultView_title: 'Подразумевани приказ',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Обришите све табле да бисте могли да обришете овај пројекат',
|
||||
deleteAttachment_title: 'Обриши прилог',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: 'Обриши позадинску слику',
|
||||
deleteBoard_title: 'Обриши таблу',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'Обриши картицу заувек',
|
||||
deleteCard_title: 'Обриши картицу',
|
||||
deleteComment_title: 'Обриши коментар',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'Обриши групу прилагођених поља',
|
||||
deleteCustomField_title: 'Обриши прилагођено поље',
|
||||
deleteLabel_title: 'Обриши ознаку',
|
||||
deleteList_title: 'Обриши списак',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'Обриши услугу обавештења',
|
||||
deleteProject_title: 'Обриши пројекат',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'Обриши листу задатака',
|
||||
deleteTask_title: 'Обриши задатак',
|
||||
deleteUser_title: 'Обриши корисника',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'Обриши webhook',
|
||||
deletedUser_title: 'Обрисан корисник',
|
||||
description: 'Опис',
|
||||
detectAutomatically: 'Детектуј аутоматски',
|
||||
display: null,
|
||||
display: 'Приказ',
|
||||
dropFileToUpload: 'Превуци датотеку за слање',
|
||||
dueDate_title: 'Рок',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'Динамички и неравномерно распоређен изглед.',
|
||||
editAttachment_title: 'Уреди прилог',
|
||||
editAvatar_title: 'Уреди аватара',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: 'Уреди боју',
|
||||
editCustomFieldGroup_title: 'Уреди групу прилагођених поља',
|
||||
editCustomField_title: 'Уреди прилагођено поље',
|
||||
editDueDate_title: 'Уреди рок',
|
||||
editEmail_title: 'Уреди е-пошту',
|
||||
editInformation_title: 'Уреди информације',
|
||||
editLabel_title: 'Уреди ознаку',
|
||||
editPassword_title: 'Измени лозинку',
|
||||
editPermissions_title: 'Уреди овлашћења',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Уреди улогу',
|
||||
editStopwatch_title: 'Уреди штоперицу',
|
||||
editType_title: null,
|
||||
editType_title: 'Уреди тип',
|
||||
editUsername_title: 'Измени корисничко име',
|
||||
editor: 'Уређивач',
|
||||
editors: null,
|
||||
editors: 'Уређивачи',
|
||||
email: 'Е-пошта',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Испразни корпу',
|
||||
enterCardTitle: 'Унеси наслов картице...',
|
||||
enterDescription: 'Унеси опис...',
|
||||
enterFilename: 'Унеси назив датотеке',
|
||||
enterListTitle: 'Унеси наслов списка...',
|
||||
enterTaskDescription: 'Унеси опис задатка...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Догађаји',
|
||||
excludedEvents: 'Искључени догађаји',
|
||||
expandTaskListsByDefault: 'Прошири листе задатака по подразумеваном',
|
||||
filterByLabels_title: 'Филтрирај према ознакама',
|
||||
filterByMembers_title: 'Филтрирај према члановима',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'За личне пројекте.',
|
||||
forTeamBasedProjects: 'За тимске пројекте.',
|
||||
fromComputer_title: 'Са рачунара',
|
||||
fromTrello: 'Са Trello-а',
|
||||
general: 'Опште',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Градијенти',
|
||||
grid: 'Мрежа',
|
||||
hideCompletedTasks: 'Сакриј завршене задатке',
|
||||
hideFromProjectListAndFavorites: 'Сакриј из листе пројеката и омиљених',
|
||||
host: 'Хост',
|
||||
hours: 'Сати',
|
||||
importBoard_title: 'Увези таблу',
|
||||
invalidCurrentPassword: 'Неисправна тренутна лозинка',
|
||||
kanban: null,
|
||||
kanban: 'Канбан',
|
||||
labels: 'Ознаке',
|
||||
language: 'Језик',
|
||||
leaveBoard_title: 'Напусти таблу',
|
||||
leaveProject_title: 'Напусти пројекат',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'Ограничи типове картица на подразумевани',
|
||||
linkToCard: 'Веза до картице',
|
||||
list: 'Списак',
|
||||
listActions_title: 'Радње над списком',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'Спискови',
|
||||
makeProjectPrivate_title: 'Учини пројекат приватним',
|
||||
makeProjectShared_title: 'Подели пројекат',
|
||||
managers: 'Руководиоци',
|
||||
memberActions_title: 'Радње над члановима',
|
||||
members: 'Чланови',
|
||||
minutes: 'Минути',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Више радњи',
|
||||
moreActions_title: 'Више радњи',
|
||||
moveCard_title: 'Премести картицу',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'Премести списак',
|
||||
myOwn_title: 'Моји',
|
||||
name: 'Име',
|
||||
newEmail: 'Нова е-пошта',
|
||||
newPassword: 'Нова лозинка',
|
||||
newUsername: 'Ново корисничко име',
|
||||
newVersionAvailable: null,
|
||||
newVersionAvailable: 'Нова верзија је доступна',
|
||||
newestFirst: 'Прво најновије',
|
||||
noBoards: 'Нема табли',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Нема пронађених картица.',
|
||||
noConnectionToServer: 'Нема конекције са сервером',
|
||||
noLists: 'Нема спискова',
|
||||
noProjects: 'Нема пројеката',
|
||||
noUnreadNotifications: 'Нема непрочитаних обавештења.',
|
||||
notifications: 'Обавештења',
|
||||
oldestFirst: 'Прво најстарије',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Само један руководилац треба да остане да би овај пројекат постао приватан',
|
||||
openBoard_title: 'Отвори таблу',
|
||||
optional_inline: 'опционо',
|
||||
organization: 'Организација',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Остали',
|
||||
passwordIsSet: 'Лозинка је подешена',
|
||||
phone: 'Телефон',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA користи <1><0>Apprise</0></1> за слање обавештења на преко 100 популарних сервиса.',
|
||||
port: 'Порт',
|
||||
preferences: 'Својства',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Савет: притисни Ctrl-V (Cmd-V на Меку) да би додао прилог са бележнице.',
|
||||
private: null,
|
||||
private: 'Приватан',
|
||||
project: 'Пројекат',
|
||||
projectNotFound_title: 'Пројекат није пронађен',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'Власник пројекта',
|
||||
referenceDataAndKnowledgeStorage: 'Складиштење референтних података и знања.',
|
||||
rejectUnauthorizedTlsCertificates: 'Одбаци неовлашћене TLS сертификате',
|
||||
removeManager_title: 'Уклони руководиоца',
|
||||
removeMember_title: 'Уклони члана',
|
||||
role: null,
|
||||
role: 'Улога',
|
||||
searchCards: 'Претражи картице...',
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchCustomFieldGroups: 'Претражи групе прилагођених поља...',
|
||||
searchCustomFields: 'Претражи прилагођена поља...',
|
||||
searchLabels: 'Претражи ознаке...',
|
||||
searchLists: null,
|
||||
searchLists: 'Претражи спискове...',
|
||||
searchMembers: 'Претражи чланове...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'Претражи пројекте...',
|
||||
searchUsers: 'Претражи кориснике...',
|
||||
seconds: 'Секунде',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Изабери извршиоца',
|
||||
selectBoard: 'Изабери таблу',
|
||||
selectList: 'Изабери списак',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: 'Изабери списак за враћање ове картице',
|
||||
selectOrder_title: 'Изабери редослед',
|
||||
selectPermissions_title: 'Изабери одобрења',
|
||||
selectProject: 'Изабери пројекат',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Изабери улогу',
|
||||
selectType_title: 'Изабери тип',
|
||||
sequentialDisplayOfCards: 'Секвенцијални приказ картица.',
|
||||
settings: 'Подешавања',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
shared: 'Подељено',
|
||||
sharedWithMe_title: 'Подељено са мном',
|
||||
showOnFrontOfCard: 'Прикажи на предњој страни картице',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Сложи списак',
|
||||
stopwatch: 'Штоперица',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Прича',
|
||||
subscribeToCardWhenCommenting: 'Претплати се на картицу при коментарисању',
|
||||
subscribeToMyOwnCardsByDefault: 'Подразумевано се претплати на сопствене картице',
|
||||
taskActions_title: 'Радње над задатком',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: 'Додељивање задатака и завршетак пројекта.',
|
||||
taskListActions_title: 'Радње над листом задатака',
|
||||
taskList_title: 'Листа задатака',
|
||||
team: 'Тим',
|
||||
terms: 'Услови',
|
||||
testLog_title: 'Тест дневник',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Нема прегледа доступног за овај прилог.',
|
||||
time: 'Време',
|
||||
title: 'Наслов',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'Корпа',
|
||||
trashHasBeenSuccessfullyEmptied: 'Корпа је успешно испражњена.',
|
||||
turnOffRecentCardHighlighting: 'Искључи истицање скорашњих картица',
|
||||
typeNameToConfirm: 'Укуцај име за потврду.',
|
||||
typeTitleToConfirm: 'Укуцај наслов за потврду.',
|
||||
unsavedChanges: 'Несачуване промене',
|
||||
uploadFailedFileIsTooBig: 'Слање неуспешно: датотека је превелика.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Слање неуспешно: нема довољно простора за складиштење.',
|
||||
uploadedImages: 'Послате слике',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Користи сигурну везу',
|
||||
userActions_title: 'Корисничке радње',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> је додао <2>{{card}}</2> на {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> је додао ову картицу на {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> је додао {{addedUser}} на <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> је додао {{addedUser}} на ову картицу',
|
||||
userAddedYouToCard: '<0>{{user}}</0> вас је додао на <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> је завршио {{task}} на <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> је завршио {{task}} на овој картици',
|
||||
userJoinedCard: '<0>{{user}}</0> се придружио <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> се придружио овој картици',
|
||||
userLeftCard: '<0>{{user}}</0> је напустио <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> је оставио нови коментар «{{comment}}» у <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> је напустио ову картицу',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> је означио {{task}} као незавршен на <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> је означио {{task}} као незавршен на овој картици',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> вас је поменуо у коментару «{{comment}}» на <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> је преместио <2>{{card}}</2> са {{fromList}} у {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> је преместио ову картицу са {{fromList}} на {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> је уклонио {{removedUser}} са <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> је уклонио {{removedUser}} са ове картице',
|
||||
username: 'Корисничко име',
|
||||
users: 'Корисници',
|
||||
viewer: 'Прегледач',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'Прегледачи',
|
||||
visualTaskManagementWithLists: 'Визуелно управљање задацима са списковима.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Без основне групе',
|
||||
writeComment: 'Напиши коментар...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Активирај корисника',
|
||||
activateUser_title: 'Активирај корисника',
|
||||
addAnotherCard: 'Додај још једну картицу',
|
||||
addAnotherList: 'Додај још један списак',
|
||||
addAnotherTask: 'Додај још један задатак',
|
||||
addCard: 'Додај картицу',
|
||||
addCard_title: 'Додај картицу',
|
||||
addComment: 'Додај коментар',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Додај прилагођено поље',
|
||||
addCustomFieldGroup: 'Додај групу прилагођених поља',
|
||||
addList: 'Додај списак',
|
||||
addMember: 'Додај члана',
|
||||
addMoreDetailedDescription: 'Додај детаљнији опис',
|
||||
addTask: 'Додај задатак',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Додај листу задатака',
|
||||
addToCard: 'Додај на картицу',
|
||||
addUser: 'Додај корисника',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Додај webhook',
|
||||
archive: 'Архивирај',
|
||||
archiveCard: 'Архивирај картицу',
|
||||
archiveCard_title: 'Архивирај картицу',
|
||||
archiveCards: 'Архивирај картице',
|
||||
archiveCards_title: 'Архивирај картице',
|
||||
assignAsOwner: 'Додели као власника',
|
||||
cancel: 'Откажи',
|
||||
createBoard: 'Направи таблу',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Направи групу прилагођених поља',
|
||||
createFile: 'Направи датотеку',
|
||||
createLabel: 'Направи ознаку',
|
||||
createNewLabel: 'Направи нову ознаку',
|
||||
createProject: 'Направи пројекат',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Деактивирај корисника',
|
||||
deactivateUser_title: 'Деактивирај корисника',
|
||||
delete: 'Обриши',
|
||||
deleteAttachment: 'Обриши прилог',
|
||||
deleteAvatar: 'Обриши аватара',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Обриши позадинску слику',
|
||||
deleteBoard: 'Обриши таблу',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Обриши таблу',
|
||||
deleteCard: 'Обриши картицу',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'Обриши картицу заувек',
|
||||
deleteCard_title: 'Обриши картицу',
|
||||
deleteComment: 'Обриши коментар',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Обриши прилагођено поље',
|
||||
deleteCustomFieldGroup: 'Обриши групу прилагођених поља',
|
||||
deleteForever_title: 'Обриши заувек',
|
||||
deleteGroup: 'Обриши групу',
|
||||
deleteLabel: 'Обриши ознаку',
|
||||
deleteList: 'Обриши списак',
|
||||
deleteList_title: 'Обриши списак',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: 'Обриши услугу обавештења',
|
||||
deleteProject: 'Обриши пројекат',
|
||||
deleteProject_title: 'Обриши пројекат',
|
||||
deleteTask: 'Обриши задатак',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'Обриши листу задатака',
|
||||
deleteTask_title: 'Обриши задатак',
|
||||
deleteUser: 'Обриши корисника',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
deleteUser_title: 'Обриши корисника',
|
||||
deleteWebhook: 'Обриши webhook',
|
||||
dismissAll: 'Одбаци све',
|
||||
download: 'Преузми',
|
||||
duplicateCard_title: 'Клонирај картицу',
|
||||
edit: 'Измени',
|
||||
editColor_title: null,
|
||||
editColor_title: 'Уреди боју',
|
||||
editDescription_title: 'Измени опис',
|
||||
editDueDate_title: 'Измени рок',
|
||||
editEmail_title: 'Измени е-пошту',
|
||||
editGroup: null,
|
||||
editGroup: 'Уреди групу',
|
||||
editInformation_title: 'Измени информације',
|
||||
editPassword_title: 'Измени лозинку',
|
||||
editPermissions: 'Измени одобрења',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Уреди улогу',
|
||||
editStopwatch_title: 'Измени штоперицу',
|
||||
editTitle_title: 'Измени наслов',
|
||||
editType_title: null,
|
||||
editType_title: 'Уреди тип',
|
||||
editUsername_title: 'Измени корисничко име',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: 'Испразни корпу',
|
||||
emptyTrash_title: 'Испразни корпу',
|
||||
import: 'Увези',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'Придружи се',
|
||||
leave: 'Напусти',
|
||||
leaveBoard: 'Напусти таблу',
|
||||
leaveProject: 'Напусти пројекат',
|
||||
logOut_title: 'Одјава',
|
||||
makeCover_title: 'Направи омот',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'Учини пројекат приватним',
|
||||
makeProjectPrivate_title: 'Учини пројекат приватним',
|
||||
makeProjectShared: 'Подели пројекат',
|
||||
makeProjectShared_title: 'Подели пројекат',
|
||||
move: 'Премести',
|
||||
moveCard_title: 'Премести картицу',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Премести списак',
|
||||
remove: 'Уклони',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'Уклони извршиоца',
|
||||
removeColor: 'Уклони боју',
|
||||
removeCover_title: 'Уклони омот',
|
||||
removeFromBoard: 'Уклони са табле',
|
||||
removeFromProject: 'Уклони из пројекта',
|
||||
removeManager: 'Уклони руководиоца',
|
||||
removeMember: 'Уклони члана',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Врати у {{list}}',
|
||||
returnToBoard: 'Врати се на таблу',
|
||||
save: 'Сачувај',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Пошаљи тест е-пошту',
|
||||
showActive: 'Прикажи активне',
|
||||
showAllAttachments: 'Прикажи све ({{hidden}} сакривене прилоге)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Прикажи картице са овим корисником',
|
||||
showDeactivated: 'Прикажи деактивиране',
|
||||
showFewerAttachments: 'Прикажи мање прилога',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'Прикажи мање',
|
||||
showMore: 'Прикажи више',
|
||||
sortList_title: 'Сложи списак',
|
||||
start: 'Почни',
|
||||
stop: 'Заустави',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Достигнут је лимит активних корисника',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Потребна је администраторска пријава за иницијализацију инстанце',
|
||||
emailAlreadyInUse: 'Е-пошта је већ у употреби',
|
||||
emailOrUsername: 'Е-пошта или корисничко име',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Прочитао сам и слажем се са овим условима',
|
||||
invalidCredentials: 'Неисправни акредитиви',
|
||||
invalidEmailOrUsername: 'Неисправна е-пошта или корисничко име',
|
||||
invalidPassword: 'Неисправна лозинка',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Пријава',
|
||||
noInternetConnection: 'Нема конекције са интернетом',
|
||||
or: null,
|
||||
or: 'Или',
|
||||
pageNotFound_title: 'Страница није пронађена',
|
||||
password: 'Лозинка',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Покреће <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Неуспешна конекција са сервером',
|
||||
unknownError: 'Непозната грешка, покушајте поново касније',
|
||||
useSingleSignOn: 'Користи универзалну пријаву',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Откажи и затвори',
|
||||
continue: 'Настави',
|
||||
logIn: 'Пријава',
|
||||
logInWithSso: 'Пријава са УП',
|
||||
},
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import dateFns from 'date-fns/locale/sr-Latn';
|
||||
import timeAgo from 'javascript-time-ago/locale/sr-Latn';
|
||||
|
||||
import markdownEditor from './markdown-editor.json';
|
||||
|
||||
export default {
|
||||
dateFns,
|
||||
timeAgo,
|
||||
markdownEditor,
|
||||
|
||||
format: {
|
||||
date: 'd.M.yyyy.',
|
||||
@@ -18,428 +21,447 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: 'O PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: 'Token za pristup',
|
||||
account: 'Nalog',
|
||||
actions: 'Radnje',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'Aktiviraj korisnika',
|
||||
active: 'Aktivan',
|
||||
addAttachment_title: 'Dodaj prilog',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'Dodaj grupu prilagođenih polja',
|
||||
addCustomField_title: 'Dodaj prilagođeno polje',
|
||||
addManager_title: 'Dodaj rukovodioca',
|
||||
addMember_title: 'Dodaj člana',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'Dodaj listu zadataka',
|
||||
addUser_title: 'Dodaj korisnika',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'Administrator',
|
||||
administration: 'Administracija',
|
||||
all: 'Sve',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Sve promene će automatski biti sačuvane<br />nakon uspostavljanja konekcije.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Abecedno',
|
||||
alwaysDisplayCardCreator: 'Uvek prikaži tvorca kartice',
|
||||
archive: 'Arhiva',
|
||||
archiveCard_title: 'Arhiviraj karticu',
|
||||
archiveCards_title: 'Arhiviraj kartice',
|
||||
areYouSureYouWantToActivateThisUser: 'Da li zaista želite da aktivirate ovog korisnika?',
|
||||
areYouSureYouWantToArchiveCards: 'Da li zaista želite da arhivirate kartice?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Da li zaista želite da arhivirate ovu karticu?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Da li zaista želite da dodelite ovog rukovodioca projekta kao vlasnika?',
|
||||
areYouSureYouWantToDeactivateThisUser: 'Da li zaista želite da deaktivirate ovog korisnika?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Da li zaista želite da obrišete ovaj prilog?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Da li zaista želite da obrišete ovu pozadinsku sliku?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Da li zaista želite da obrišete ovu tablu?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Da li zaista želite da obrišete ovu karticu?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Da li zaista želite da obrišete ovu karticu zauvek?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Da li zaista želite da obrišete ovaj komentar?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'Da li zaista želite da obrišete ovo prilagođeno polje?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Da li zaista želite da obrišete ovu grupu prilagođenih polja?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Da li zaista želite da obrišete ovu oznaku?',
|
||||
areYouSureYouWantToDeleteThisList: 'Da li zaista želite da obrišete ovaj spisak?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Da li zaista želite da obrišete ovaj spisak? Sve kartice će biti premeštene u korpu.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Da li zaista želite da obrišete ovu uslugu obaveštenja?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Da li zaista želite da obrišete ovaj projekat?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Da li zaista želite da obrišete ovaj zadatak?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: 'Da li zaista želite da obrišete ovu listu zadataka?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Da li zaista želite da obrišete ovog korisnika?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Da li zaista želite da obrišete ovaj webhook?',
|
||||
areYouSureYouWantToEmptyTrash: 'Da li zaista želite da ispraznite korpu?',
|
||||
areYouSureYouWantToLeaveBoard: 'Da li zaista želite da napustite ovu tablu?',
|
||||
areYouSureYouWantToLeaveProject: 'Da li zaista želite da napustite ovaj projekat?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Da li zaista želite da učinite ovaj projekat privatnim?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Da li zaista želite da podelite ovaj projekat?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Da li zaista želite da uklonite ovog rukovodioca iz ovog projekta?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Da li zaista želite da uklonite ovog člana iz ove table?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Dodeli kao vlasnika',
|
||||
atLeastOneListMustBePresent: 'Mora postojati najmanje jedna lista',
|
||||
attachment: 'Prilog',
|
||||
attachments: 'Prilozi',
|
||||
authentication: 'Autentifikacija',
|
||||
background: 'Pozadina',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Osnovna prilagođena polja',
|
||||
baseGroup: 'Osnovna grupa',
|
||||
board: 'Tabla',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Radnje nad tablom',
|
||||
boardNotFound_title: 'Tabla nije pronađena',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: 'Pretplaćen na tablu',
|
||||
boardUser: 'Korisnik table',
|
||||
byCreationTime: 'Po vremenu kreiranja',
|
||||
byDefault: 'Po podrazumevanom',
|
||||
byDueDate: 'Po roku dospeća',
|
||||
canBeInvitedToWorkInBoards: 'Može biti pozvan da radi na tablama.',
|
||||
canComment: 'Može da komentariše',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Može kreirati sopstvene projekte i biti pozvan da radi na drugima.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Može uređivati izgled table i dodeljivati članove karticama.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Može upravljati sistemskim podešavanjima i delovati kao vlasnik projekta.',
|
||||
canOnlyViewBoard: 'Može samo da pregleda tablu.',
|
||||
cardActions_title: 'Radnje nad karticom',
|
||||
cardNotFound_title: 'Kartica nije pronađena',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Kartice na ovoj listi su dostupne svim članovima table.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Kartice na ovoj listi su završene i spremne za arhiviranje.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Kartice na ovoj listi su spremne za rad.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Kliknite ovde</0> ili osvežite stranicu za ažuriranje.',
|
||||
clientHostnameInEhlo: 'Ime hosta klijenta u EHLO',
|
||||
closed: 'Zatvoreno',
|
||||
color: 'Boja',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
comments: 'Komentari',
|
||||
contentExceedsLimit: 'Sadržaj prevazilazi {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: 'Sadržaj ovog priloga je prevelik za prikaz.',
|
||||
copy_inline: 'kopija',
|
||||
createBoard_title: 'Napravi tablu',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'Napravi grupu prilagođenih polja',
|
||||
createLabel_title: 'Napravi oznaku',
|
||||
createNewOneOrSelectExistingOne: 'Napravi novu ili izaberi<br />postojeću.',
|
||||
createProject_title: 'Napravi projekat',
|
||||
createTextFile_title: 'Napravi tekstualnu datoteku',
|
||||
creator: null,
|
||||
creator: 'Tvorac',
|
||||
currentPassword: 'Trenutna lozinka',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'Grupa prilagođenih polja',
|
||||
customFieldGroups_title: 'Grupe prilagođenih polja',
|
||||
customField_title: 'Prilagođeno polje',
|
||||
customFields_title: 'Prilagođena polja',
|
||||
dangerZone_title: 'Opasna zona',
|
||||
date: 'Datum',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'Deaktiviraj korisnika',
|
||||
defaultCardType_title: 'Podrazumevani tip kartice',
|
||||
defaultFrom: 'Podrazumevano od',
|
||||
defaultView_title: 'Podrazumevani prikaz',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Obrišite sve table da biste mogli da obrišete ovaj projekat',
|
||||
deleteAttachment_title: 'Obriši prilog',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: 'Obriši pozadinsku sliku',
|
||||
deleteBoard_title: 'Obriši tablu',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'Obriši karticu zauvek',
|
||||
deleteCard_title: 'Obriši karticu',
|
||||
deleteComment_title: 'Obriši komentar',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'Obriši grupu prilagođenih polja',
|
||||
deleteCustomField_title: 'Obriši prilagođeno polje',
|
||||
deleteLabel_title: 'Obriši oznaku',
|
||||
deleteList_title: 'Obriši spisak',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'Obriši uslugu obaveštenja',
|
||||
deleteProject_title: 'Obriši projekat',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'Obriši listu zadataka',
|
||||
deleteTask_title: 'Obriši zadatak',
|
||||
deleteUser_title: 'Obriši korisnika',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'Obriši webhook',
|
||||
deletedUser_title: 'Obrisan korisnik',
|
||||
description: 'Opis',
|
||||
detectAutomatically: 'Detektuj automatski',
|
||||
display: null,
|
||||
display: 'Prikaz',
|
||||
dropFileToUpload: 'Prevuci datoteku za slanje',
|
||||
dueDate_title: 'Rok',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'Dinamički i neravnomerno raspoređen izgled.',
|
||||
editAttachment_title: 'Uredi prilog',
|
||||
editAvatar_title: 'Uredi avatara',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: 'Uredi boju',
|
||||
editCustomFieldGroup_title: 'Uredi grupu prilagođenih polja',
|
||||
editCustomField_title: 'Uredi prilagođeno polje',
|
||||
editDueDate_title: 'Uredi rok',
|
||||
editEmail_title: 'Uredi e-poštu',
|
||||
editInformation_title: 'Uredi informacije',
|
||||
editLabel_title: 'Uredi oznaku',
|
||||
editPassword_title: 'Izmeni lozinku',
|
||||
editPermissions_title: 'Uredi ovlašćenja',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Uredi ulogu',
|
||||
editStopwatch_title: 'Uredi štopericu',
|
||||
editType_title: null,
|
||||
editType_title: 'Uredi tip',
|
||||
editUsername_title: 'Izmeni korisničko ime',
|
||||
editor: 'Uređivač',
|
||||
editors: null,
|
||||
editors: 'Uređivači',
|
||||
email: 'E-pošta',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Isprazni korpu',
|
||||
enterCardTitle: 'Unesi naslov kartice...',
|
||||
enterDescription: 'Unesi opis...',
|
||||
enterFilename: 'Unesi naziv datoteke',
|
||||
enterListTitle: 'Unesi naslov spiska...',
|
||||
enterTaskDescription: 'Unesi opis zadatka...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Događaji',
|
||||
excludedEvents: 'Isključeni događaji',
|
||||
expandTaskListsByDefault: 'Proširi liste zadataka po podrazumevanom',
|
||||
filterByLabels_title: 'Filtriraj prema oznakama',
|
||||
filterByMembers_title: 'Filtriraj prema članovima',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'Za lične projekte.',
|
||||
forTeamBasedProjects: 'Za timske projekte.',
|
||||
fromComputer_title: 'Sa računara',
|
||||
fromTrello: 'Sa Trello-a',
|
||||
general: 'Opšte',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Gradijenti',
|
||||
grid: 'Mreža',
|
||||
hideCompletedTasks: 'Sakrij završene zadatke',
|
||||
hideFromProjectListAndFavorites: 'Sakrij iz liste projekata i omiljenih',
|
||||
host: 'Host',
|
||||
hours: 'Sati',
|
||||
importBoard_title: 'Uvezi tablu',
|
||||
invalidCurrentPassword: 'Neispravna trenutna lozinka',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'Oznake',
|
||||
language: 'Jezik',
|
||||
leaveBoard_title: 'Napusti tablu',
|
||||
leaveProject_title: 'Napusti projekat',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'Ograniči tipove kartica na podrazumevani',
|
||||
linkToCard: 'Veza do kartice',
|
||||
list: 'Spisak',
|
||||
listActions_title: 'Radnje nad spiskom',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'Spiskovi',
|
||||
makeProjectPrivate_title: 'Učini projekat privatnim',
|
||||
makeProjectShared_title: 'Podeli projekat',
|
||||
managers: 'Rukovodioci',
|
||||
memberActions_title: 'Radnje nad članovima',
|
||||
members: 'Članovi',
|
||||
minutes: 'Minuti',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Više radnji',
|
||||
moreActions_title: 'Više radnji',
|
||||
moveCard_title: 'Premesti karticu',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'Premesti spisak',
|
||||
myOwn_title: 'Moji',
|
||||
name: 'Ime',
|
||||
newEmail: 'Nova e-pošta',
|
||||
newPassword: 'Nova lozinka',
|
||||
newUsername: 'Novo korisničko ime',
|
||||
newVersionAvailable: null,
|
||||
newVersionAvailable: 'Nova verzija je dostupna',
|
||||
newestFirst: 'Prvo najnovije',
|
||||
noBoards: 'Nema tabli',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Nema pronađenih kartica.',
|
||||
noConnectionToServer: 'Nema konekcije sa serverom',
|
||||
noLists: 'Nema spiskova',
|
||||
noProjects: 'Nema projekata',
|
||||
noUnreadNotifications: 'Nema nepročitanih obaveštenja.',
|
||||
notifications: 'Obaveštenja',
|
||||
oldestFirst: 'Prvo najstarije',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Samo jedan rukovodilac treba da ostane da bi ovaj projekat postao privatan',
|
||||
openBoard_title: 'Otvori tablu',
|
||||
optional_inline: 'opciono',
|
||||
organization: 'Organizacija',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Ostali',
|
||||
passwordIsSet: 'Lozinka je podešena',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA koristi <1><0>Apprise</0></1> za slanje obaveštenja na preko 100 popularnih servisa.',
|
||||
port: 'Port',
|
||||
preferences: 'Svojstva',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Savet: pritisni Ctrl-V (Cmd-V na Meku) da bi dodao prilog sa beležnice.',
|
||||
private: null,
|
||||
private: 'Privatan',
|
||||
project: 'Projekat',
|
||||
projectNotFound_title: 'Projekat nije pronađen',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'Vlasnik projekta',
|
||||
referenceDataAndKnowledgeStorage: 'Skladištenje referentnih podataka i znanja.',
|
||||
rejectUnauthorizedTlsCertificates: 'Odbaci neovlašćene TLS sertifikate',
|
||||
removeManager_title: 'Ukloni rukovodioca',
|
||||
removeMember_title: 'Ukloni člana',
|
||||
role: null,
|
||||
role: 'Uloga',
|
||||
searchCards: 'Pretraži kartice...',
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchCustomFieldGroups: 'Pretraži grupe prilagođenih polja...',
|
||||
searchCustomFields: 'Pretraži prilagođena polja...',
|
||||
searchLabels: 'Pretraži oznake...',
|
||||
searchLists: null,
|
||||
searchLists: 'Pretraži spiskove...',
|
||||
searchMembers: 'Pretraži članove...',
|
||||
searchProjects: null,
|
||||
searchProjects: 'Pretraži projekte...',
|
||||
searchUsers: 'Pretraži korisnike...',
|
||||
seconds: 'Sekunde',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Izaberi izvršioca',
|
||||
selectBoard: 'Izaberi tablu',
|
||||
selectList: 'Izaberi spisak',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: 'Izaberi spisak za vraćanje ove kartice',
|
||||
selectOrder_title: 'Izaberi redosled',
|
||||
selectPermissions_title: 'Izaberi odobrenja',
|
||||
selectProject: 'Izaberi projekat',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Izaberi ulogu',
|
||||
selectType_title: 'Izaberi tip',
|
||||
sequentialDisplayOfCards: 'Sekvencijalni prikaz kartica.',
|
||||
settings: 'Podešavanja',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
shared: 'Podeljeno',
|
||||
sharedWithMe_title: 'Podeljeno sa mnom',
|
||||
showOnFrontOfCard: 'Prikaži na prednjoj strani kartice',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Složi spisak',
|
||||
stopwatch: 'Štoperica',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Priča',
|
||||
subscribeToCardWhenCommenting: 'Pretplati se na karticu pri komentarisanju',
|
||||
subscribeToMyOwnCardsByDefault: 'Podrazumevano se pretplati na sopstvene kartice',
|
||||
taskActions_title: 'Radnje nad zadatkom',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskAssignmentAndProjectCompletion: 'Dodeljivanje zadataka i završetak projekta.',
|
||||
taskListActions_title: 'Radnje nad listom zadataka',
|
||||
taskList_title: 'Lista zadataka',
|
||||
team: 'Tim',
|
||||
terms: 'Uslovi',
|
||||
testLog_title: 'Test dnevnik',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Nema pregleda dostupnog za ovaj prilog.',
|
||||
time: 'Vreme',
|
||||
title: 'Naslov',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'Korpa',
|
||||
trashHasBeenSuccessfullyEmptied: 'Korpa je uspešno ispražnjena.',
|
||||
turnOffRecentCardHighlighting: 'Isključi isticanje skorašnjih kartica',
|
||||
typeNameToConfirm: 'Ukucaj ime za potvrdu.',
|
||||
typeTitleToConfirm: 'Ukucaj naslov za potvrdu.',
|
||||
unsavedChanges: 'Nesačuvane promene',
|
||||
uploadFailedFileIsTooBig: 'Slanje neuspešno: datoteka je prevelika.',
|
||||
uploadFailedNotEnoughStorageSpace:
|
||||
'Slanje neuspešno: nema dovoljno prostora za skladištenje.',
|
||||
uploadedImages: 'Poslate slike',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Koristi sigurnu vezu',
|
||||
userActions_title: 'Korisničke radnje',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> je dodao <2>{{card}}</2> na {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> je dodao ovu karticu na {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> je dodao {{addedUser}} na <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> je dodao {{addedUser}} na ovu karticu',
|
||||
userAddedYouToCard: '<0>{{user}}</0> vas je dodao na <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> je završio {{task}} na <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> je završio {{task}} na ovoj kartici',
|
||||
userJoinedCard: '<0>{{user}}</0> se pridružio <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> se pridružio ovoj kartici',
|
||||
userLeftCard: '<0>{{user}}</0> je napustio <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> je ostavio novi komentar «{{comment}}» u <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> je napustio ovu karticu',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> je označio {{task}} kao nezavršen na <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> je označio {{task}} kao nezavršen na ovoj kartici',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> vas je pomenuo u komentaru «{{comment}}» na <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> je premestio <2>{{card}}</2> sa {{fromList}} u {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> je premestio ovu karticu sa {{fromList}} na {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> je uklonio {{removedUser}} sa <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> je uklonio {{removedUser}} sa ove kartice',
|
||||
username: 'Korisničko ime',
|
||||
users: 'Korisnici',
|
||||
viewer: 'Pregledač',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: 'Pregledači',
|
||||
visualTaskManagementWithLists: 'Vizuelno upravljanje zadacima sa spiskovima.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Bez osnovne grupe',
|
||||
writeComment: 'Napiši komentar...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Aktiviraj korisnika',
|
||||
activateUser_title: 'Aktiviraj korisnika',
|
||||
addAnotherCard: 'Dodaj još jednu karticu',
|
||||
addAnotherList: 'Dodaj još jedan spisak',
|
||||
addAnotherTask: 'Dodaj još jedan zadatak',
|
||||
addCard: 'Dodaj karticu',
|
||||
addCard_title: 'Dodaj karticu',
|
||||
addComment: 'Dodaj komentar',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Dodaj prilagođeno polje',
|
||||
addCustomFieldGroup: 'Dodaj grupu prilagođenih polja',
|
||||
addList: 'Dodaj spisak',
|
||||
addMember: 'Dodaj člana',
|
||||
addMoreDetailedDescription: 'Dodaj detaljniji opis',
|
||||
addTask: 'Dodaj zadatak',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Dodaj listu zadataka',
|
||||
addToCard: 'Dodaj na karticu',
|
||||
addUser: 'Dodaj korisnika',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Dodaj webhook',
|
||||
archive: 'Arhiviraj',
|
||||
archiveCard: 'Arhiviraj karticu',
|
||||
archiveCard_title: 'Arhiviraj karticu',
|
||||
archiveCards: 'Arhiviraj kartice',
|
||||
archiveCards_title: 'Arhiviraj kartice',
|
||||
assignAsOwner: 'Dodeli kao vlasnika',
|
||||
cancel: 'Otkaži',
|
||||
createBoard: 'Napravi tablu',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Napravi grupu prilagođenih polja',
|
||||
createFile: 'Napravi datoteku',
|
||||
createLabel: 'Napravi oznaku',
|
||||
createNewLabel: 'Napravi novu oznaku',
|
||||
createProject: 'Napravi projekat',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Deaktiviraj korisnika',
|
||||
deactivateUser_title: 'Deaktiviraj korisnika',
|
||||
delete: 'Obriši',
|
||||
deleteAttachment: 'Obriši prilog',
|
||||
deleteAvatar: 'Obriši avatara',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Obriši pozadinsku sliku',
|
||||
deleteBoard: 'Obriši tablu',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Obriši tablu',
|
||||
deleteCard: 'Obriši karticu',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'Obriši karticu zauvek',
|
||||
deleteCard_title: 'Obriši karticu',
|
||||
deleteComment: 'Obriši komentar',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Obriši prilagođeno polje',
|
||||
deleteCustomFieldGroup: 'Obriši grupu prilagođenih polja',
|
||||
deleteForever_title: 'Obriši zauvek',
|
||||
deleteGroup: 'Obriši grupu',
|
||||
deleteLabel: 'Obriši oznaku',
|
||||
deleteList: 'Obriši spisak',
|
||||
deleteList_title: 'Obriši spisak',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: 'Obriši uslugu obaveštenja',
|
||||
deleteProject: 'Obriši projekat',
|
||||
deleteProject_title: 'Obriši projekat',
|
||||
deleteTask: 'Obriši zadatak',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'Obriši listu zadataka',
|
||||
deleteTask_title: 'Obriši zadatak',
|
||||
deleteUser: 'Obriši korisnika',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
deleteUser_title: 'Obriši korisnika',
|
||||
deleteWebhook: 'Obriši webhook',
|
||||
dismissAll: 'Odbaci sve',
|
||||
download: 'Preuzmi',
|
||||
duplicateCard_title: 'Kloniraj karticu',
|
||||
edit: 'Izmeni',
|
||||
editColor_title: null,
|
||||
editColor_title: 'Uredi boju',
|
||||
editDescription_title: 'Izmeni opis',
|
||||
editDueDate_title: 'Izmeni rok',
|
||||
editEmail_title: 'Izmeni e-poštu',
|
||||
editGroup: null,
|
||||
editGroup: 'Uredi grupu',
|
||||
editInformation_title: 'Izmeni informacije',
|
||||
editPassword_title: 'Izmeni lozinku',
|
||||
editPermissions: 'Izmeni odobrenja',
|
||||
editRole_title: null,
|
||||
editRole_title: 'Uredi ulogu',
|
||||
editStopwatch_title: 'Izmeni štopericu',
|
||||
editTitle_title: 'Izmeni naslov',
|
||||
editType_title: null,
|
||||
editType_title: 'Uredi tip',
|
||||
editUsername_title: 'Izmeni korisničko ime',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: 'Isprazni korpu',
|
||||
emptyTrash_title: 'Isprazni korpu',
|
||||
import: 'Uvezi',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: 'Pridruži se',
|
||||
leave: 'Napusti',
|
||||
leaveBoard: 'Napusti tablu',
|
||||
leaveProject: 'Napusti projekat',
|
||||
logOut_title: 'Odjava',
|
||||
makeCover_title: 'Napravi omot',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'Učini projekat privatnim',
|
||||
makeProjectPrivate_title: 'Učini projekat privatnim',
|
||||
makeProjectShared: 'Podeli projekat',
|
||||
makeProjectShared_title: 'Podeli projekat',
|
||||
move: 'Premesti',
|
||||
moveCard_title: 'Premesti karticu',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Premesti spisak',
|
||||
remove: 'Ukloni',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'Ukloni izvršioca',
|
||||
removeColor: 'Ukloni boju',
|
||||
removeCover_title: 'Ukloni omot',
|
||||
removeFromBoard: 'Ukloni sa table',
|
||||
removeFromProject: 'Ukloni iz projekta',
|
||||
removeManager: 'Ukloni rukovodioca',
|
||||
removeMember: 'Ukloni člana',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Vrati u {{list}}',
|
||||
returnToBoard: 'Vrati se na tablu',
|
||||
save: 'Sačuvaj',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Pošalji test e-poštu',
|
||||
showActive: 'Prikaži aktivne',
|
||||
showAllAttachments: 'Prikaži sve ({{hidden}} sakrivene priloge)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Prikaži kartice sa ovim korisnikom',
|
||||
showDeactivated: 'Prikaži deaktivirane',
|
||||
showFewerAttachments: 'Prikaži manje priloga',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
showLess: 'Prikaži manje',
|
||||
showMore: 'Prikaži više',
|
||||
sortList_title: 'Složi spisak',
|
||||
start: 'Počni',
|
||||
stop: 'Zaustavi',
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Dostignut je limit aktivnih korisnika',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Potrebna je administratorska prijava za inicijalizaciju instance',
|
||||
emailAlreadyInUse: 'E-pošta je već u upotrebi',
|
||||
emailOrUsername: 'E-pošta ili korisničko ime',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Pročitao sam i slažem se sa ovim uslovima',
|
||||
invalidCredentials: 'Neispravni akreditivi',
|
||||
invalidEmailOrUsername: 'Neispravna e-pošta ili korisničko ime',
|
||||
invalidPassword: 'Neispravna lozinka',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Prijava',
|
||||
noInternetConnection: 'Nema konekcije sa internetom',
|
||||
or: null,
|
||||
or: 'Ili',
|
||||
pageNotFound_title: 'Stranica nije pronađena',
|
||||
password: 'Lozinka',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Pokreće <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Neuspešna konekcija sa serverom',
|
||||
unknownError: 'Nepoznata greška, pokušajte ponovo kasnije',
|
||||
useSingleSignOn: 'Koristi univerzalnu prijavu',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Otkaži i zatvori',
|
||||
continue: 'Nastavi',
|
||||
logIn: 'Prijava',
|
||||
logInWithSso: 'Prijava sa UP',
|
||||
},
|
||||
|
||||
165
client/src/locales/sr-Latn-RS/markdown-editor.json
Normal file
165
client/src/locales/sr-Latn-RS/markdown-editor.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"action-previews": {
|
||||
"text": "Ovo je tekst bez naslova.\nI naslov i tekst\nmogу biti istaknuti podebljanim, kurzivom, bojom,\nprecrtan i podvučen.",
|
||||
"text-with-head": "Ovo je tekst sa naslovom.\nI naslov i tekst\nmogу biti istaknuti podebljanim, kurzivom, bojom,\nprecrtan i podvučen.",
|
||||
"heading": "Naslov"
|
||||
},
|
||||
"bundle": {
|
||||
"error-title": "Greška u markdown editoru",
|
||||
"settings_wysiwyg": "Vizuelni editor (wysiwyg)",
|
||||
"settings_markup": "Markdown označavanje",
|
||||
"markup_placeholder": "Unesite markdown označavanje..."
|
||||
},
|
||||
"codeblock": {
|
||||
"remove": "Ukloni",
|
||||
"empty_option": "Nema pronađenih poklapanja"
|
||||
},
|
||||
"common": {
|
||||
"delete": "Obriši",
|
||||
"edit": "Uredi",
|
||||
"toolbar_action_disabled": "Nekompatibilan element označavanja"
|
||||
},
|
||||
"forms": {
|
||||
"common_action_cancel": "Otkaži",
|
||||
"common_action_submit": "Pošalji",
|
||||
"common_action_upload": "Izaberi",
|
||||
"common_tab_attach": "Dodaj sa uređaja",
|
||||
"common_tab_link": "Dodaj putem linka",
|
||||
"common_link": "Link",
|
||||
"common_sizes": "Veličina, px",
|
||||
"image_name": "Naslov",
|
||||
"image_link_href": "Link slike",
|
||||
"image_link_href_help": "Adresa na koju vodi link slike.",
|
||||
"image_alt": "Alt tekst",
|
||||
"image_alt_help": "Alt tekst se prikazuje ako slika ne može biti učitana.",
|
||||
"image_upload_help": "JPEG, GIF ili PNG slika ne veća od 1 MB.",
|
||||
"image_upload_failed": "Neuspešno dodavanje slike",
|
||||
"image_size_width": "Širina",
|
||||
"image_size_height": "Visina",
|
||||
"link_url_help": "Adresa na koju vodi link.",
|
||||
"link_text": "Tekst linka",
|
||||
"link_text_help": "Tekst prikazan kao link.",
|
||||
"link_open_help": "Otvori link u novom tabu"
|
||||
},
|
||||
"md-hints": {
|
||||
"header_title": "Zaglavlje",
|
||||
"header_hint": "# Vaš tekst",
|
||||
"italic_title": "Kurziv",
|
||||
"italic_hint": "_Vaš tekst_",
|
||||
"bold_title": "Podebljano",
|
||||
"bold_hint": "**Vaš tekst**",
|
||||
"strikethrough_title": "Precrtano",
|
||||
"strikethrough_hint": "~~Vaš tekst~~",
|
||||
"blockquote_title": "Citat",
|
||||
"blockquote_hint": "> Vaš tekst",
|
||||
"code_title": "Kod",
|
||||
"code_hint": "```Vaš tekst```",
|
||||
"link_title": "Link",
|
||||
"link_hint": "[Vaš tekst](url)",
|
||||
"image_title": "Slika",
|
||||
"image_hint": "",
|
||||
"list_title": "Stavka liste",
|
||||
"list_hint": "- Vaš tekst",
|
||||
"numbered-list_title": "Numerisana lista",
|
||||
"numbered-list_hint": "1. Vaš tekst",
|
||||
"documentation": "Dokumentacija",
|
||||
"documentation_link": "https://diplodoc.com/docs/en/syntax/"
|
||||
},
|
||||
"menubar": {
|
||||
"bold": "Podebljano",
|
||||
"code": "Kod",
|
||||
"code_inline": "Ugrađeni kod",
|
||||
"codeblock": "Blok koda",
|
||||
"colorify": "Boja teksta",
|
||||
"colorify__color_blue": "Plava",
|
||||
"colorify__color_default": "Podrazumevano",
|
||||
"colorify__color_gray": "Siva",
|
||||
"colorify__color_green": "Zelena",
|
||||
"colorify__color_orange": "Narandžasta",
|
||||
"colorify__color_red": "Crvena",
|
||||
"colorify__color_violet": "Ljubičasta",
|
||||
"colorify__color_yellow": "Žuta",
|
||||
"colorify__group_text": "Tekst",
|
||||
"cut": "Iseci",
|
||||
"emoji": "Emoji",
|
||||
"emoji__hint": "Emoji se mogu dodati u WYSIWYG ili ručno sa označavanjem",
|
||||
"heading": "Naslov",
|
||||
"heading1": "Naslov 1",
|
||||
"heading2": "Naslov 2",
|
||||
"heading3": "Naslov 3",
|
||||
"heading4": "Naslov 4",
|
||||
"heading5": "Naslov 5",
|
||||
"heading6": "Naslov 6",
|
||||
"hrule": "Separator",
|
||||
"image": "Slika",
|
||||
"italic": "Kurziv",
|
||||
"link": "Link",
|
||||
"list": "Lista",
|
||||
"list__action_lift": "Podigni stavku",
|
||||
"list__action_sink": "Spusti stavku",
|
||||
"list_action_disabled": "Protivreči logici liste",
|
||||
"mark": "Označeno",
|
||||
"mono": "Monospace",
|
||||
"more_action": "Više akcija",
|
||||
"note": "Beleška",
|
||||
"olist": "Uređena lista",
|
||||
"quote": "Citat",
|
||||
"redo": "Ponovi",
|
||||
"strike": "Precrtano",
|
||||
"table": "Tabela",
|
||||
"text": "Tekst",
|
||||
"ulist": "Lista sa tačkama",
|
||||
"underline": "Podvučeno",
|
||||
"undo": "Opozovi"
|
||||
},
|
||||
"placeholder": {
|
||||
"doc_empty": "Kucajte / da koristite slash komande...",
|
||||
"checkbox": "Unesite opis zadatka...",
|
||||
"deflist_term": "Termin",
|
||||
"deflist_desc": "Opis definicije",
|
||||
"heading": "Naslov",
|
||||
"cut_title": "Naslov",
|
||||
"cut_content": "Sadržaj za prikaz na klik",
|
||||
"note_title": "Naslov",
|
||||
"note_content": "Sadržaj beleške",
|
||||
"table_cell": "Sadržaj ćelije",
|
||||
"select_filter": "Pretraži jezike..."
|
||||
},
|
||||
"search": {
|
||||
"label_case-sensitive": "Osetljivo na velika/mala slova",
|
||||
"label_whole-word": "Cela reč",
|
||||
"title": "Pretraži u kodu"
|
||||
},
|
||||
"suggest": {
|
||||
"empty-msg": "Nije pronađeno"
|
||||
},
|
||||
"widgets": {
|
||||
"image": "Dodaj sliku",
|
||||
"link": "Dodaj link"
|
||||
},
|
||||
"yfm-note": {
|
||||
"info": "Informacija",
|
||||
"tip": "Savet",
|
||||
"warning": "Upozorenje",
|
||||
"alert": "Uzbuna",
|
||||
"remove": "Ukloni"
|
||||
},
|
||||
"yfm-table": {
|
||||
"column.add.before": "Dodaj kolonu pre",
|
||||
"column.add.after": "Dodaj kolonu posle",
|
||||
"column.remove": "Ukloni kolonu",
|
||||
"row.add.before": "Dodaj red pre",
|
||||
"row.add.after": "Dodaj red posle",
|
||||
"row.remove": "Ukloni red",
|
||||
"table.remove": "Ukloni tabelu",
|
||||
"table.menu.cell.align.left": "Poravnaj sadržaj ćelije levo",
|
||||
"table.menu.cell.align.right": "Poravnaj sadržaj ćelije desno",
|
||||
"table.menu.cell.align.center": "Poravnaj sadržaj ćelije u centar",
|
||||
"table.menu.row.add": "Dodaj red posle",
|
||||
"table.menu.row.remove": "Ukloni red",
|
||||
"table.menu.column.add": "Dodaj kolonu posle",
|
||||
"table.menu.column.remove": "Ukloni kolonu",
|
||||
"table.menu.convert.yfm": "Konvertuj u YFM tabelu",
|
||||
"table.menu.table.remove": "Ukloni tabelu"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,12 @@
|
||||
import dateFns from 'date-fns/locale/sv';
|
||||
import timeAgo from 'javascript-time-ago/locale/sv';
|
||||
|
||||
import markdownEditor from './markdown-editor.json';
|
||||
|
||||
export default {
|
||||
dateFns,
|
||||
timeAgo,
|
||||
markdownEditor,
|
||||
|
||||
format: {
|
||||
date: 'd/M/yyyy',
|
||||
@@ -17,432 +20,457 @@ export default {
|
||||
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: null,
|
||||
accessToken: null,
|
||||
aboutPlanka: 'Om PLANKA',
|
||||
accessToken: 'Åtkomsttoken',
|
||||
account: 'Konto',
|
||||
actions: 'Åtgärder',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'Aktivera användare',
|
||||
active: 'Aktiv',
|
||||
addAttachment_title: 'Bifoga',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'Lägg till anpassad fältgrupp',
|
||||
addCustomField_title: 'Lägg till anpassat fält',
|
||||
addManager_title: 'Lägg till projektledare',
|
||||
addMember_title: 'Lägg till medlem',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'Lägg till uppgiftslista',
|
||||
addUser_title: 'Lägg till användare',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'Admin',
|
||||
administration: 'Administration',
|
||||
all: 'Alla',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Alla ändringar kommer att sparas automatiskt<br />så fort anslutningen är återställd.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Alfabetiskt',
|
||||
alwaysDisplayCardCreator: 'Visa alltid kortskapare',
|
||||
archive: 'Arkiv',
|
||||
archiveCard_title: 'Arkivera kort',
|
||||
archiveCards_title: 'Arkivera kort',
|
||||
areYouSureYouWantToActivateThisUser:
|
||||
'Är du säker på att du vill aktivera den här användaren?',
|
||||
areYouSureYouWantToArchiveCards: 'Är du säker på att du vill arkivera kort?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Är du säker på att du vill arkivera det här kortet?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Är du säker på att du vill tilldela den här projektledaren som ägare?',
|
||||
areYouSureYouWantToDeactivateThisUser:
|
||||
'Är du säker på att du vill inaktivera den här användaren?',
|
||||
areYouSureYouWantToDeleteThisAttachment:
|
||||
'Är du säker på att du vill ta bort den här bilagan?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Är du säker på att du vill ta bort den här bakgrundsbilden?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Är du säker på att du vill ta bort den här tavlan?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Är du säker på att du vill ta bort det här kortet?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Är du säker på att du vill ta bort det här kortet för alltid?',
|
||||
areYouSureYouWantToDeleteThisComment:
|
||||
'Är du säker på att du vill ta bort den här kommentaren?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField:
|
||||
'Är du säker på att du vill ta bort det här anpassade fältet?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Är du säker på att du vill ta bort den här anpassade fältgruppen?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Är du säker på att du vill ta bort den här etiketten?',
|
||||
areYouSureYouWantToDeleteThisList: 'Är du säker på att du vill ta bort den här listan?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Är du säker på att du vill ta bort den här listan? Alla kort kommer att flyttas till papperskorgen.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Är du säker på att du vill ta bort den här aviseringstjänsten?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Är du säker på att du vill ta bort det här projektet?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Är du säker på att du vill ta bort den här uppgiften?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList:
|
||||
'Är du säker på att du vill ta bort den här uppgiftslistan?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Är du säker på att du vill ta bort den här användaren?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: 'Är du säker på att du vill ta bort den här webhooken?',
|
||||
areYouSureYouWantToEmptyTrash: 'Är du säker på att du vill tömma papperskorgen?',
|
||||
areYouSureYouWantToLeaveBoard: 'Är du säker på att du vill lämna tavlan?',
|
||||
areYouSureYouWantToLeaveProject: 'Är du säker på att du vill lämna projektet?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Är du säker på att du vill göra det här projektet privat?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Är du säker på att du vill dela det här projektet?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Är du säker på att du vill ta bort den här projektledaren från projektet?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Är du säker på att du vill ta bort den här medlemmen från tavlan?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Tilldela som ägare',
|
||||
atLeastOneListMustBePresent: 'Minst en lista måste finnas',
|
||||
attachment: 'Bilaga',
|
||||
attachments: 'Bilagor',
|
||||
authentication: 'Autentisering',
|
||||
background: 'Bakgrund',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Grundläggande anpassade fält',
|
||||
baseGroup: 'Basgrupp',
|
||||
board: 'Tavla',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Tavlåtgärder',
|
||||
boardNotFound_title: 'Tavla hittades inte',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
canComment: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canOnlyViewBoard: null,
|
||||
boardSubscribed: 'Tavla prenumererad',
|
||||
boardUser: 'Tavlanvändare',
|
||||
byCreationTime: 'Efter skapandetid',
|
||||
byDefault: 'Som standard',
|
||||
byDueDate: 'Efter förfallodatum',
|
||||
canBeInvitedToWorkInBoards: 'Kan bjudas in att arbeta i tavlor.',
|
||||
canComment: 'Kan kommentera',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Kan skapa egna projekt och bjudas in att arbeta i andras.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Kan redigera tavllayout och tilldela medlemmar till kort.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Kan hantera systemomfattande inställningar och agera som projektägare.',
|
||||
canOnlyViewBoard: 'Kan endast visa tavla.',
|
||||
cardActions_title: 'Kortåtgärder',
|
||||
cardNotFound_title: 'Kort hittades inte',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Kort på den här listan är tillgängliga för alla tavlmedlemmar.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Kort på den här listan är färdiga och redo att arkiveras.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Kort på den här listan är redo att arbetas på.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Klicka här</0> eller uppdatera sidan för att uppdatera.',
|
||||
clientHostnameInEhlo: 'Klientvärdnamn i EHLO',
|
||||
closed: 'Stängd',
|
||||
color: 'Färg',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
comments: 'Kommentarer',
|
||||
contentExceedsLimit: 'Innehållet överskrider {{limit}}',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Innehållet i den här bilagan är för stort för att visas.',
|
||||
copy_inline: 'kopia',
|
||||
createBoard_title: 'Skapa tavla',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: 'Skapa anpassad fältgrupp',
|
||||
createLabel_title: 'Skapa etikett',
|
||||
createNewOneOrSelectExistingOne: 'Skapa en ny eller välj<br />en redan existerande.',
|
||||
createProject_title: 'Skapa projekt',
|
||||
createTextFile_title: 'Skapa textfil',
|
||||
creator: null,
|
||||
creator: 'Skapare',
|
||||
currentPassword: 'Nuvarande lösenord',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: 'Anpassad fältgrupp',
|
||||
customFieldGroups_title: 'Anpassade fältgrupper',
|
||||
customField_title: 'Anpassat fält',
|
||||
customFields_title: 'Anpassade fält',
|
||||
dangerZone_title: 'Farozon',
|
||||
date: 'Datum',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: 'Inaktivera användare',
|
||||
defaultCardType_title: 'Standardkorttyp',
|
||||
defaultFrom: 'Standard från',
|
||||
defaultView_title: 'Standardvy',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Ta bort alla tavlor för att kunna ta bort det här projektet',
|
||||
deleteAttachment_title: 'Ta bort bilaga',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: 'Ta bort bakgrundsbild',
|
||||
deleteBoard_title: 'Ta bort tavla',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: 'Ta bort kort för alltid',
|
||||
deleteCard_title: 'Ta bort kort',
|
||||
deleteComment_title: 'Ta bort kommentar',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: 'Ta bort anpassad fältgrupp',
|
||||
deleteCustomField_title: 'Ta bort anpassat fält',
|
||||
deleteLabel_title: 'Ta bort etikett',
|
||||
deleteList_title: 'Ta bort lista',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: 'Ta bort aviseringstjänst',
|
||||
deleteProject_title: 'Ta bort projekt',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: 'Ta bort uppgiftslista',
|
||||
deleteTask_title: 'Ta bort uppgift',
|
||||
deleteUser_title: 'Ta bort användare',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: 'Ta bort webhook',
|
||||
deletedUser_title: 'Borttagen användare',
|
||||
description: 'Beskrivning',
|
||||
detectAutomatically: null,
|
||||
display: null,
|
||||
display: 'Visa',
|
||||
dropFileToUpload: 'Släpp en fil för att ladda upp',
|
||||
dueDate_title: 'Förfallodatum',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'Dynamisk och ojämnt fördelad layout.',
|
||||
editAttachment_title: 'Redigera bilaga',
|
||||
editAvatar_title: 'Redigera avatar',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: 'Redigera färg',
|
||||
editCustomFieldGroup_title: 'Redigera anpassad fältgrupp',
|
||||
editCustomField_title: 'Redigera anpassat fält',
|
||||
editDueDate_title: 'Redigera förfallodatum',
|
||||
editEmail_title: 'Redigera e-mail',
|
||||
editInformation_title: null,
|
||||
editInformation_title: 'Redigera information',
|
||||
editLabel_title: 'Redigera etikett',
|
||||
editPassword_title: 'Redigera lösenord',
|
||||
editPermissions_title: null,
|
||||
editRole_title: null,
|
||||
editPermissions_title: 'Redigera behörigheter',
|
||||
editRole_title: 'Redigera roll',
|
||||
editStopwatch_title: 'Redigera timer',
|
||||
editType_title: null,
|
||||
editType_title: 'Redigera typ',
|
||||
editUsername_title: 'Redigera användarnamn',
|
||||
editor: null,
|
||||
editors: null,
|
||||
editor: 'Redigerare',
|
||||
editors: 'Redigerare',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'Töm papperskorg',
|
||||
enterCardTitle: 'Ange kortets titel...',
|
||||
enterDescription: 'Ange beskrivning...',
|
||||
enterFilename: 'Ange filnamn',
|
||||
enterListTitle: 'Ange listans titel...',
|
||||
enterTaskDescription: 'Ange uppgiftsbeskrivning...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Händelser',
|
||||
excludedEvents: 'Uteslutna händelser',
|
||||
expandTaskListsByDefault: 'Expandera uppgiftslistor som standard',
|
||||
filterByLabels_title: 'Filtrera efter etiketter',
|
||||
filterByMembers_title: 'Filtrera efter medlemmar',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'För personliga projekt.',
|
||||
forTeamBasedProjects: 'För teambaserade projekt.',
|
||||
fromComputer_title: 'Från dator',
|
||||
fromTrello: null,
|
||||
fromTrello: 'Från Trello',
|
||||
general: 'Allmänt',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Gradienter',
|
||||
grid: 'Rutnät',
|
||||
hideCompletedTasks: 'Dölj slutförda uppgifter',
|
||||
hideFromProjectListAndFavorites: 'Dölj från projektlista och favoriter',
|
||||
host: 'Värd',
|
||||
hours: 'Timmar',
|
||||
importBoard_title: null,
|
||||
importBoard_title: 'Importera tavla',
|
||||
invalidCurrentPassword: 'Ogiltigt nuvarande lösenord',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'Etiketter',
|
||||
language: null,
|
||||
language: 'Språk',
|
||||
leaveBoard_title: 'Lämna tavla',
|
||||
leaveProject_title: 'Lämna projekt',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: 'Begränsa korttyper till standardtyp',
|
||||
linkToCard: 'Länk till kort',
|
||||
list: 'Lista',
|
||||
listActions_title: 'Liståtgärder',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: 'Listor',
|
||||
makeProjectPrivate_title: 'Gör projekt privat',
|
||||
makeProjectShared_title: 'Dela projekt',
|
||||
managers: 'Projektledare',
|
||||
memberActions_title: null,
|
||||
memberActions_title: 'Medlemsåtgärder',
|
||||
members: 'Medlemmar',
|
||||
minutes: 'Minuter',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: 'Fler åtgärder',
|
||||
moreActions_title: 'Fler åtgärder',
|
||||
moveCard_title: 'Flytta kort',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: 'Flytta lista',
|
||||
myOwn_title: 'Mina egna',
|
||||
name: 'Namn',
|
||||
newEmail: 'Ny e-mail',
|
||||
newPassword: 'Nytt lösenord',
|
||||
newUsername: 'Nytt användarnamn',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: 'Ny version tillgänglig',
|
||||
newestFirst: 'Nyaste först',
|
||||
noBoards: 'Inga tavlor',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Inga kort hittades.',
|
||||
noConnectionToServer: 'Ingen anslutning till servern',
|
||||
noLists: 'Inga listor',
|
||||
noProjects: 'Inga projekt',
|
||||
noUnreadNotifications: 'Inga olästa notifikationer.',
|
||||
notifications: 'Notifikationer',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
oldestFirst: 'Äldsta först',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Endast en projektledare bör kvarstå för att göra detta projekt privat',
|
||||
openBoard_title: 'Öppna tavla',
|
||||
optional_inline: 'valfri',
|
||||
organization: 'Organisation',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Andra',
|
||||
passwordIsSet: 'Lösenord är inställt',
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA använder <1><0>Apprise</0></1> för att skicka aviseringar till över 100 populära tjänster.',
|
||||
port: 'Port',
|
||||
preferences: 'Preferenser',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Tips: tryck på Ctrl-V (Cmd-V på Mac) för att lägga till en bilaga från urklipp.',
|
||||
private: null,
|
||||
private: 'Privat',
|
||||
project: 'Projekt',
|
||||
projectNotFound_title: 'Projekt hittades inte',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: 'Projektägare',
|
||||
referenceDataAndKnowledgeStorage: 'Referensdata och kunskapslagring.',
|
||||
rejectUnauthorizedTlsCertificates: 'Avvisa obehöriga TLS-certifikat',
|
||||
removeManager_title: 'Ta bort projektledare',
|
||||
removeMember_title: 'Ta bort medlem',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchLabels: null,
|
||||
searchLists: null,
|
||||
searchMembers: null,
|
||||
searchProjects: null,
|
||||
searchUsers: null,
|
||||
role: 'Roll',
|
||||
searchCards: 'Sök kort...',
|
||||
searchCustomFieldGroups: 'Sök anpassade fältgrupper...',
|
||||
searchCustomFields: 'Sök anpassade fält...',
|
||||
searchLabels: 'Sök etiketter...',
|
||||
searchLists: 'Sök listor...',
|
||||
searchMembers: 'Sök medlemmar...',
|
||||
searchProjects: 'Sök projekt...',
|
||||
searchUsers: 'Sök användare...',
|
||||
seconds: 'Sekunder',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Välj tilldelad',
|
||||
selectBoard: 'Välj tavla',
|
||||
selectList: 'Välj lista',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectPermissions_title: null,
|
||||
selectListToRestoreThisCard: 'Välj lista för att återställa detta kort',
|
||||
selectOrder_title: 'Välj ordning',
|
||||
selectPermissions_title: 'Välj behörigheter',
|
||||
selectProject: 'Välj projekt',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Välj roll',
|
||||
selectType_title: 'Välj typ',
|
||||
sequentialDisplayOfCards: 'Sekventiell visning av kort.',
|
||||
settings: 'Inställningar',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: 'Delad',
|
||||
sharedWithMe_title: 'Delad med mig',
|
||||
showOnFrontOfCard: 'Visa på framsidan av kort',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Sortera lista',
|
||||
stopwatch: 'Timer',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Berättelse',
|
||||
subscribeToCardWhenCommenting: 'Prenumerera på kort vid kommentering',
|
||||
subscribeToMyOwnCardsByDefault: 'Prenumerera på mina egna kort som standard',
|
||||
taskActions_title: 'Uppgiftsåtgärder',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
thereIsNoPreviewAvailableForThisAttachment: null,
|
||||
taskAssignmentAndProjectCompletion: 'Uppgiftstilldelning och projektavslutning.',
|
||||
taskListActions_title: 'Uppgiftslistsåtgärder',
|
||||
taskList_title: 'Uppgiftslista',
|
||||
team: 'Team',
|
||||
terms: 'Villkor',
|
||||
testLog_title: 'Testlogg',
|
||||
thereIsNoPreviewAvailableForThisAttachment:
|
||||
'Det finns ingen förhandsvisning tillgänglig för denna bilaga.',
|
||||
time: 'Tid',
|
||||
title: 'Titel',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: 'Papperskorg',
|
||||
trashHasBeenSuccessfullyEmptied: 'Papperskorgen har tömts framgångsrikt.',
|
||||
turnOffRecentCardHighlighting: 'Stäng av markering av senaste kort',
|
||||
typeNameToConfirm: 'Skriv namn för att bekräfta.',
|
||||
typeTitleToConfirm: 'Skriv titel för att bekräfta.',
|
||||
unsavedChanges: 'Osparade ändringar',
|
||||
uploadFailedFileIsTooBig: 'Uppladdning misslyckades: filen är för stor.',
|
||||
uploadFailedNotEnoughStorageSpace:
|
||||
'Uppladdning misslyckades: inte tillräckligt med lagringsutrymme.',
|
||||
uploadedImages: 'Uppladdade bilder',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Använd säker anslutning',
|
||||
userActions_title: 'Användaråtgärder',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> lade till <2>{{card}}</2> i {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> lade till detta kort i {{list}}',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> lade till {{addedUser}} i <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> lade till {{addedUser}} i detta kort',
|
||||
userAddedYouToCard: '<0>{{user}}</0> lade till dig i <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> slutförde {{task}} på <4>{{card}}</4>',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> slutförde {{task}} på detta kort',
|
||||
userJoinedCard: '<0>{{user}}</0> gick med i <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> gick med i detta kort',
|
||||
userLeftCard: '<0>{{user}}</0> lämnade <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> lämnade en ny kommentar «{{comment}}» på <2>{{card}}</2>',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> lämnade detta kort',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> markerade {{task}} som ofullständig på <4>{{card}}</4>',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> markerade {{task}} som ofullständig på detta kort',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> nämnde dig i en kommentar «{{comment}}» på <2>{{card}}</2>',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> flyttade <2>{{card}}</2> från {{fromList}} till {{toList}}',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> flyttade detta kort från {{fromList}} till {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> tog bort {{removedUser}} från <4>{{card}}</4>',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> tog bort {{removedUser}} från detta kort',
|
||||
username: 'Användarnamn',
|
||||
users: 'Användare',
|
||||
viewer: null,
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewer: 'Visare',
|
||||
viewers: 'Visare',
|
||||
visualTaskManagementWithLists: 'Visuell uppgiftshantering med listor.',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Utan basgrupp',
|
||||
writeComment: 'Skriv en kommentar...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Aktivera användare',
|
||||
activateUser_title: 'Aktivera användare',
|
||||
addAnotherCard: 'Lägg till ytterligare ett kort',
|
||||
addAnotherList: 'Lägg till ytterligare en lista',
|
||||
addAnotherTask: 'Lägg till ytterligare en uppgift',
|
||||
addCard: 'Lägg till kort',
|
||||
addCard_title: 'Lägg Till Kort',
|
||||
addCard_title: 'Lägg till kort',
|
||||
addComment: 'Lägg till kommentar',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Lägg till anpassat fält',
|
||||
addCustomFieldGroup: 'Lägg till anpassad fältgrupp',
|
||||
addList: 'Lägg till lista',
|
||||
addMember: null,
|
||||
addMember: 'Lägg till medlem',
|
||||
addMoreDetailedDescription: 'Lägg till en mer detaljerad beskrivning',
|
||||
addTask: 'Lägg till uppgift',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Lägg till uppgiftslista',
|
||||
addToCard: 'Lägg till i kort',
|
||||
addUser: 'Lägg till användare',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Lägg till webhook',
|
||||
archive: 'Arkivera',
|
||||
archiveCard: 'Arkivera kort',
|
||||
archiveCard_title: 'Arkivera kort',
|
||||
archiveCards: 'Arkivera kort',
|
||||
archiveCards_title: 'Arkivera kort',
|
||||
assignAsOwner: 'Tilldela som ägare',
|
||||
cancel: 'Avbryt',
|
||||
createBoard: 'Skapa tavla',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Skapa anpassad fältgrupp',
|
||||
createFile: 'Skapa fil',
|
||||
createLabel: 'Skapa etikett',
|
||||
createNewLabel: 'Skapa ny etikett',
|
||||
createProject: 'Skapa projekt',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
delete: 'Ta Bort',
|
||||
deactivateUser: 'Inaktivera användare',
|
||||
deactivateUser_title: 'Inaktivera användare',
|
||||
delete: 'Ta bort',
|
||||
deleteAttachment: 'Ta bort bilaga',
|
||||
deleteAvatar: 'Ta bort avatar',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: 'Ta bort bakgrundsbild',
|
||||
deleteBoard: 'Ta bort tavla',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: 'Ta bort tavla',
|
||||
deleteCard: 'Ta bort kort',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: 'Ta bort kort för alltid',
|
||||
deleteCard_title: 'Ta bort kort',
|
||||
deleteComment: 'Ta bort kommentar',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Ta bort anpassat fält',
|
||||
deleteCustomFieldGroup: 'Ta bort anpassad fältgrupp',
|
||||
deleteForever_title: 'Ta bort för alltid',
|
||||
deleteGroup: 'Ta bort grupp',
|
||||
deleteLabel: 'Ta bort etikett',
|
||||
deleteList: 'Ta bort lista',
|
||||
deleteList_title: 'Ta bort lista',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: 'Ta bort aviseringstjänst',
|
||||
deleteProject: 'Ta bort projekt',
|
||||
deleteProject_title: 'Ta bort projekt',
|
||||
deleteTask: 'Ta bort uppgift',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: 'Ta bort uppgiftslista',
|
||||
deleteTask_title: 'Ta bort uppgift',
|
||||
deleteUser: 'Ta bort användare',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
deleteUser_title: 'Ta bort användare',
|
||||
deleteWebhook: 'Ta bort webhook',
|
||||
dismissAll: 'Avvisa alla',
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
download: 'Ladda ner',
|
||||
duplicateCard_title: 'Duplicera kort',
|
||||
edit: 'Redigera',
|
||||
editColor_title: null,
|
||||
editColor_title: 'Redigera färg',
|
||||
editDescription_title: 'Redigera beskrivning',
|
||||
editDueDate_title: 'Redigera förfallodatum',
|
||||
editEmail_title: 'Redigera e-mail',
|
||||
editGroup: null,
|
||||
editInformation_title: null,
|
||||
editGroup: 'Redigera grupp',
|
||||
editInformation_title: 'Redigera information',
|
||||
editPassword_title: 'Redigera lösenord',
|
||||
editPermissions: null,
|
||||
editRole_title: null,
|
||||
editPermissions: 'Redigera behörigheter',
|
||||
editRole_title: 'Redigera roll',
|
||||
editStopwatch_title: 'Redigera timer',
|
||||
editTitle_title: 'Redigera titel',
|
||||
editType_title: null,
|
||||
editType_title: 'Redigera typ',
|
||||
editUsername_title: 'Redigera användarnamn',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
import: null,
|
||||
join: null,
|
||||
leave: null,
|
||||
emptyTrash: 'Töm papperskorg',
|
||||
emptyTrash_title: 'Töm papperskorg',
|
||||
import: 'Importera',
|
||||
join: 'Gå med',
|
||||
leave: 'Lämna',
|
||||
leaveBoard: 'Lämna tavla',
|
||||
leaveProject: 'Lämna projekt',
|
||||
logOut_title: 'Logga ut',
|
||||
makeCover_title: 'Skapa omslagsbild',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'Gör projekt privat',
|
||||
makeProjectPrivate_title: 'Gör projekt privat',
|
||||
makeProjectShared: 'Dela projekt',
|
||||
makeProjectShared_title: 'Dela projekt',
|
||||
move: 'Flytta',
|
||||
moveCard_title: 'Flytta kort',
|
||||
moveList_title: null,
|
||||
moveList_title: 'Flytta lista',
|
||||
remove: 'Ta bort',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'Ta bort tilldelad',
|
||||
removeColor: 'Ta bort färg',
|
||||
removeCover_title: 'Ta bort omslagsbild',
|
||||
removeFromBoard: 'Ta bort from tavla',
|
||||
removeFromProject: 'Ta bort from projekt',
|
||||
removeManager: 'Ta bort projektledare',
|
||||
removeMember: 'Ta bort medlem',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: 'Återställ till {{list}}',
|
||||
returnToBoard: 'Återgå till tavla',
|
||||
save: 'Spara',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Skicka test-e-post',
|
||||
showActive: 'Visa aktiva',
|
||||
showAllAttachments: 'Visa alla bilagor ({{hidden}} dolda)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Visa kort med denna användare',
|
||||
showDeactivated: 'Visa inaktiverade',
|
||||
showFewerAttachments: 'Visa färre bilagor',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: 'Visa mindre',
|
||||
showMore: 'Visa mer',
|
||||
sortList_title: 'Sortera lista',
|
||||
start: 'Starta',
|
||||
stop: 'Stoppa',
|
||||
subscribe: 'Prenumerera',
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Gränsen för aktiva användare har nåtts',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Administratörsinloggning krävs för att initiera instansen',
|
||||
emailAlreadyInUse: 'E-mail används redan',
|
||||
emailOrUsername: 'E-mail eller användarnamn',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Jag har läst och godkänner dessa villkor',
|
||||
invalidCredentials: 'Ogiltiga inloggningsuppgifter',
|
||||
invalidEmailOrUsername: 'Ogiltig e-mail eller användarnamn',
|
||||
invalidPassword: 'Ogiltigt lösenord',
|
||||
logIn_title: null,
|
||||
logIn_title: 'Logga in',
|
||||
noInternetConnection: 'Ingen internetanslutning',
|
||||
or: null,
|
||||
pageNotFound_title: 'Sidan Kunde Inte Hittas',
|
||||
or: 'Eller',
|
||||
pageNotFound_title: 'Sidan kunde inte hittas',
|
||||
password: 'Lösenord',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'Drivs av <1>PLANKA</1>',
|
||||
serverConnectionFailed: 'Server connection failed',
|
||||
unknownError: 'Okänt fel, försök igen senare',
|
||||
useSingleSignOn: null,
|
||||
useSingleSignOn: 'Använd enkel inloggning',
|
||||
usernameAlreadyInUse: 'Användarnamnet används redan',
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Avbryt och stäng',
|
||||
continue: 'Fortsätt',
|
||||
logIn: 'Logga in',
|
||||
logInWithSso: null,
|
||||
logInWithSso: 'Logga in med SSO',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
165
client/src/locales/sv-SE/markdown-editor.json
Normal file
165
client/src/locales/sv-SE/markdown-editor.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"action-previews": {
|
||||
"text": "Detta är en text utan titel.\nBåde titeln och texten\nkan markeras med fet, kursiv, färg,\ngenomstruken och understruken.",
|
||||
"text-with-head": "Detta är en text med titel.\nBåde titeln och texten\nkan markeras med fet, kursiv, färg,\ngenomstruken och understruken.",
|
||||
"heading": "Titel"
|
||||
},
|
||||
"bundle": {
|
||||
"error-title": "Fel i markdown-redigerare",
|
||||
"settings_wysiwyg": "Visuell redigerare (wysiwyg)",
|
||||
"settings_markup": "Markdown-märkning",
|
||||
"markup_placeholder": "Ange markdown-märkning..."
|
||||
},
|
||||
"codeblock": {
|
||||
"remove": "Ta bort",
|
||||
"empty_option": "Inga träffar hittades"
|
||||
},
|
||||
"common": {
|
||||
"delete": "Radera",
|
||||
"edit": "Redigera",
|
||||
"toolbar_action_disabled": "Inkompatibelt märkningselement"
|
||||
},
|
||||
"forms": {
|
||||
"common_action_cancel": "Avbryt",
|
||||
"common_action_submit": "Skicka",
|
||||
"common_action_upload": "Välj",
|
||||
"common_tab_attach": "Lägg till från enhet",
|
||||
"common_tab_link": "Lägg till via länk",
|
||||
"common_link": "Länk",
|
||||
"common_sizes": "Storlek, px",
|
||||
"image_name": "Titel",
|
||||
"image_link_href": "Bildlänk",
|
||||
"image_link_href_help": "Adress som bildlänken leder till.",
|
||||
"image_alt": "Alt-text",
|
||||
"image_alt_help": "Alt-text visas om bilden inte kan laddas.",
|
||||
"image_upload_help": "JPEG-, GIF- eller PNG-bild som inte är större än 1 MB.",
|
||||
"image_upload_failed": "Misslyckades med att lägga till bild",
|
||||
"image_size_width": "Bredd",
|
||||
"image_size_height": "Höjd",
|
||||
"link_url_help": "Adress som länken leder till.",
|
||||
"link_text": "Länktext",
|
||||
"link_text_help": "Text som visas som länk.",
|
||||
"link_open_help": "Öppna länken i ny flik"
|
||||
},
|
||||
"md-hints": {
|
||||
"header_title": "Rubrik",
|
||||
"header_hint": "# Din text",
|
||||
"italic_title": "Kursiv",
|
||||
"italic_hint": "_Din text_",
|
||||
"bold_title": "Fet",
|
||||
"bold_hint": "**Din text**",
|
||||
"strikethrough_title": "Genomstruken",
|
||||
"strikethrough_hint": "~~Din text~~",
|
||||
"blockquote_title": "Blockcitat",
|
||||
"blockquote_hint": "> Din text",
|
||||
"code_title": "Kod",
|
||||
"code_hint": "```Din text```",
|
||||
"link_title": "Länk",
|
||||
"link_hint": "[Din text](url)",
|
||||
"image_title": "Bild",
|
||||
"image_hint": "",
|
||||
"list_title": "Listobjekt",
|
||||
"list_hint": "- Din text",
|
||||
"numbered-list_title": "Numrerad lista",
|
||||
"numbered-list_hint": "1. Din text",
|
||||
"documentation": "Dokumentation",
|
||||
"documentation_link": "https://diplodoc.com/docs/en/syntax/"
|
||||
},
|
||||
"menubar": {
|
||||
"bold": "Fet",
|
||||
"code": "Kod",
|
||||
"code_inline": "Inline-kod",
|
||||
"codeblock": "Kodblock",
|
||||
"colorify": "Textfärg",
|
||||
"colorify__color_blue": "Blå",
|
||||
"colorify__color_default": "Standard",
|
||||
"colorify__color_gray": "Grå",
|
||||
"colorify__color_green": "Grön",
|
||||
"colorify__color_orange": "Orange",
|
||||
"colorify__color_red": "Röd",
|
||||
"colorify__color_violet": "Violett",
|
||||
"colorify__color_yellow": "Gul",
|
||||
"colorify__group_text": "Text",
|
||||
"cut": "Klipp ut",
|
||||
"emoji": "Emoji",
|
||||
"emoji__hint": "Emojis kan läggas till i WYSIWYG eller manuellt med märkning",
|
||||
"heading": "Rubrik",
|
||||
"heading1": "Rubrik 1",
|
||||
"heading2": "Rubrik 2",
|
||||
"heading3": "Rubrik 3",
|
||||
"heading4": "Rubrik 4",
|
||||
"heading5": "Rubrik 5",
|
||||
"heading6": "Rubrik 6",
|
||||
"hrule": "Separator",
|
||||
"image": "Bild",
|
||||
"italic": "Kursiv",
|
||||
"link": "Länk",
|
||||
"list": "Lista",
|
||||
"list__action_lift": "Lyft objekt",
|
||||
"list__action_sink": "Sänk objekt",
|
||||
"list_action_disabled": "Motsäger listans logik",
|
||||
"mark": "Markerad",
|
||||
"mono": "Monospace",
|
||||
"more_action": "Fler åtgärder",
|
||||
"note": "Anteckning",
|
||||
"olist": "Ordnad lista",
|
||||
"quote": "Citat",
|
||||
"redo": "Gör om",
|
||||
"strike": "Genomstruken",
|
||||
"table": "Tabell",
|
||||
"text": "Text",
|
||||
"ulist": "Punktlista",
|
||||
"underline": "Understruken",
|
||||
"undo": "Ångra"
|
||||
},
|
||||
"placeholder": {
|
||||
"doc_empty": "Skriv / för att använda snedstreckskommandon...",
|
||||
"checkbox": "Ange uppgiftsbeskrivning...",
|
||||
"deflist_term": "Term",
|
||||
"deflist_desc": "Definitionsbeskrivning",
|
||||
"heading": "Rubrik",
|
||||
"cut_title": "Titel",
|
||||
"cut_content": "Innehåll som ska visas vid klick",
|
||||
"note_title": "Titel",
|
||||
"note_content": "Anteckningsinnehåll",
|
||||
"table_cell": "Cellinnehåll",
|
||||
"select_filter": "Sök språk..."
|
||||
},
|
||||
"search": {
|
||||
"label_case-sensitive": "Skiftlägeskänslig",
|
||||
"label_whole-word": "Helt ord",
|
||||
"title": "Sök i kod"
|
||||
},
|
||||
"suggest": {
|
||||
"empty-msg": "Hittades inte"
|
||||
},
|
||||
"widgets": {
|
||||
"image": "Lägg till bild",
|
||||
"link": "Lägg till länk"
|
||||
},
|
||||
"yfm-note": {
|
||||
"info": "Anteckning",
|
||||
"tip": "Tips",
|
||||
"warning": "Varning",
|
||||
"alert": "Varning",
|
||||
"remove": "Ta bort"
|
||||
},
|
||||
"yfm-table": {
|
||||
"column.add.before": "Lägg till kolumn före",
|
||||
"column.add.after": "Lägg till kolumn efter",
|
||||
"column.remove": "Ta bort kolumn",
|
||||
"row.add.before": "Lägg till rad före",
|
||||
"row.add.after": "Lägg till rad efter",
|
||||
"row.remove": "Ta bort rad",
|
||||
"table.remove": "Ta bort tabell",
|
||||
"table.menu.cell.align.left": "Vänsterjustera cellinnehåll",
|
||||
"table.menu.cell.align.right": "Högerjustera cellinnehåll",
|
||||
"table.menu.cell.align.center": "Centrera cellinnehåll",
|
||||
"table.menu.row.add": "Lägg till rad efter",
|
||||
"table.menu.row.remove": "Ta bort rad",
|
||||
"table.menu.column.add": "Lägg till kolumn efter",
|
||||
"table.menu.column.remove": "Ta bort kolumn",
|
||||
"table.menu.convert.yfm": "Konvertera till YFM-tabell",
|
||||
"table.menu.table.remove": "Ta bort tabell"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,12 @@
|
||||
import dateFns from 'date-fns/locale/tr';
|
||||
import timeAgo from 'javascript-time-ago/locale/tr';
|
||||
|
||||
import markdownEditor from './markdown-editor.json';
|
||||
|
||||
export default {
|
||||
dateFns,
|
||||
timeAgo,
|
||||
markdownEditor,
|
||||
|
||||
format: {
|
||||
date: 'd.MM.yyyy',
|
||||
@@ -17,430 +20,455 @@ export default {
|
||||
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: null,
|
||||
accessToken: null,
|
||||
aboutPlanka: 'PLANKA Hakkında',
|
||||
accessToken: 'Erişim jetonu',
|
||||
account: 'Hesap',
|
||||
actions: 'Eylemler',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: 'Kullanıcıyı etkinleştir',
|
||||
active: 'Etkin',
|
||||
addAttachment_title: 'Dosya ekle',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: 'Özel alan grubu ekle',
|
||||
addCustomField_title: 'Özel alan ekle',
|
||||
addManager_title: 'Yönetici ekle',
|
||||
addMember_title: 'Üye ekle',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: 'Görev listesi ekle',
|
||||
addUser_title: 'Kullanıcı ekle',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: 'Yönetici',
|
||||
administration: 'Yönetim',
|
||||
all: 'Tümü',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
'Bağlantı yeniden kurulduğunda tüm değişiklikler kaydedilecektir.',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Alfabetik olarak',
|
||||
alwaysDisplayCardCreator: 'Kart oluşturucusunu her zaman göster',
|
||||
archive: 'Arşiv',
|
||||
archiveCard_title: 'Kartı arşivle',
|
||||
archiveCards_title: 'Kartları arşivle',
|
||||
areYouSureYouWantToActivateThisUser:
|
||||
'Bu kullanıcıyı etkinleştirmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToArchiveCards: 'Kartları arşivlemek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Bu kartı arşivlemek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Bu proje yöneticisini sahip olarak atamak istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeactivateThisUser:
|
||||
'Bu kullanıcıyı devre dışı bırakmak istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisAttachment: 'Bu eki silmek istediğinize emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage:
|
||||
'Bu arka plan resmini silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisBoard: 'Bu panoyu silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisCard: 'Bu kartı silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever:
|
||||
'Bu kartı kalıcı olarak silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisComment: 'Bu yorumu silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField: 'Bu özel alanı silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Bu özel alan grubunu silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Bu etiketi silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisList: 'Bu listeyi silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Bu listeyi silmek istediğinizden emin misiniz? Tüm kartlar çöp kutusuna taşınacaktır.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Bu bildirim servisini silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Bu projeyi silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisTask: 'Bu görevi silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList:
|
||||
'Bu görev listesini silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisUser: 'Bu kullanıcıyı silmek istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: "Bu webhook'u silmek istediğinizden emin misiniz?",
|
||||
areYouSureYouWantToEmptyTrash: 'Çöp kutusunu boşaltmak istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToLeaveBoard: 'Panodan ayrılmak istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToLeaveProject: 'Projeden ayrılmak istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate:
|
||||
'Bu projeyi özel yapmak istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToMakeThisProjectShared:
|
||||
'Bu projeyi paylaşımlı yapmak istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
'Bu yöneticiyi projeden çıkarmak istediğinizden emin misiniz?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard:
|
||||
'Bu üyeyi panodan çıkarmak istediğinizden emin misiniz?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Sahip olarak ata',
|
||||
atLeastOneListMustBePresent: 'En az bir liste bulunmalıdır',
|
||||
attachment: 'ek',
|
||||
attachments: 'ekler',
|
||||
authentication: 'kimlik doğrulama',
|
||||
background: 'arka plan',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Temel özel alanlar',
|
||||
baseGroup: 'Temel grup',
|
||||
board: 'pano',
|
||||
boardActions_title: null,
|
||||
boardActions_title: 'Pano işlemleri',
|
||||
boardNotFound_title: 'Pano bulunamadı',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
canComment: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canOnlyViewBoard: null,
|
||||
cardActions_title: 'Kart İşlemleri',
|
||||
boardSubscribed: 'Panoya abone olundu',
|
||||
boardUser: 'Pano kullanıcısı',
|
||||
byCreationTime: 'Oluşturma zamanına göre',
|
||||
byDefault: 'Varsayılan olarak',
|
||||
byDueDate: 'Termin tarihine göre',
|
||||
canBeInvitedToWorkInBoards: 'Panolarda çalışmaya davet edilebilir.',
|
||||
canComment: 'Yorum yapabilir',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
'Kendi projelerini oluşturabilir ve başkalarında çalışmaya davet edilebilir.',
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
'Pano düzenini düzenleyebilir ve kartlara üye atayabilir.',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
'Sistem geneli ayarları yönetebilir ve proje sahibi olarak hareket edebilir.',
|
||||
canOnlyViewBoard: 'Sadece panoyu görüntüleyebilir.',
|
||||
cardActions_title: 'Kart işlemleri',
|
||||
cardNotFound_title: 'Kart bulunamadı',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
'Bu listedeki kartlar tüm pano üyelerine açıktır.',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
'Bu listedeki kartlar tamamlanmış ve arşivlenmeye hazırdır.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Bu listedeki kartlar üzerinde çalışılmaya hazırdır.',
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>Güncellemek için buraya tıklayın</0> veya sayfayı yenileyin.',
|
||||
clientHostnameInEhlo: "EHLO'da istemci ana bilgisayar adı",
|
||||
closed: 'Kapalı',
|
||||
color: 'renk',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
createBoard_title: 'Pano Oluştur',
|
||||
createCustomFieldGroup_title: null,
|
||||
createLabel_title: 'Etiket Oluştur',
|
||||
comments: 'Yorumlar',
|
||||
contentExceedsLimit: 'İçerik {{limit}} sınırını aşıyor',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: 'Bu ekin içeriği görüntülenemeyecek kadar büyük.',
|
||||
copy_inline: 'kopya',
|
||||
createBoard_title: 'Pano oluştur',
|
||||
createCustomFieldGroup_title: 'Özel alan grubu oluştur',
|
||||
createLabel_title: 'Etiket oluştur',
|
||||
createNewOneOrSelectExistingOne: 'Yeni bir tane oluşturun veya mevcut bir tanesini seçin.',
|
||||
createProject_title: 'Proje Oluştur',
|
||||
createTextFile_title: 'Metin Dosyası Oluştur',
|
||||
creator: null,
|
||||
createProject_title: 'Proje oluştur',
|
||||
createTextFile_title: 'Metin dosyası oluştur',
|
||||
creator: 'Oluşturan',
|
||||
currentPassword: 'Geçerli şifre',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
dangerZone_title: 'Tehlikeli Bölge',
|
||||
customFieldGroup_title: 'özel alan grubu',
|
||||
customFieldGroups_title: 'özel alan grupları',
|
||||
customField_title: 'Özel alan',
|
||||
customFields_title: 'Özel alanlar',
|
||||
dangerZone_title: 'Tehlikeli bölge',
|
||||
date: 'tarih',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deleteAttachment_title: 'Eki Sil',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBoard_title: 'Panoyu Sil',
|
||||
deleteCardForever_title: null,
|
||||
deleteCard_title: 'Kartı Sil',
|
||||
deleteComment_title: 'Yorumu Sil',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteLabel_title: 'Etiketi Sil',
|
||||
deleteList_title: 'Listeyi Sil',
|
||||
deleteNotificationService_title: null,
|
||||
deleteProject_title: 'Projeyi Sil',
|
||||
deleteTaskList_title: null,
|
||||
deleteTask_title: 'Görevi Sil',
|
||||
deleteUser_title: 'Kullanıcıyı Sil',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deactivateUser_title: 'Kullanıcıyı devre dışı bırak',
|
||||
defaultCardType_title: 'Varsayılan kart türü',
|
||||
defaultFrom: 'Varsayılan gönderen',
|
||||
defaultView_title: 'Varsayılan görünüm',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: 'Bu projeyi silebilmek için tüm panoları silin',
|
||||
deleteAttachment_title: 'Eki sil',
|
||||
deleteBackgroundImage_title: 'Arka plan resmini sil',
|
||||
deleteBoard_title: 'Panoyu sil',
|
||||
deleteCardForever_title: 'Kartı kalıcı olarak sil',
|
||||
deleteCard_title: 'Kartı sil',
|
||||
deleteComment_title: 'Yorumu sil',
|
||||
deleteCustomFieldGroup_title: 'Özel alan grubunu sil',
|
||||
deleteCustomField_title: 'Özel alanı sil',
|
||||
deleteLabel_title: 'Etiketi sil',
|
||||
deleteList_title: 'Listeyi sil',
|
||||
deleteNotificationService_title: 'Bildirim servisini sil',
|
||||
deleteProject_title: 'Projeyi sil',
|
||||
deleteTaskList_title: 'Görev listesini sil',
|
||||
deleteTask_title: 'Görevi sil',
|
||||
deleteUser_title: 'Kullanıcıyı sil',
|
||||
deleteWebhook_title: "Webhook'u sil",
|
||||
deletedUser_title: 'Silinmiş kullanıcı',
|
||||
description: 'açıklama',
|
||||
detectAutomatically: 'Otomatik olarak algıla',
|
||||
display: null,
|
||||
display: 'Görüntüle',
|
||||
dropFileToUpload: 'Yüklenecek dosyayı buraya bırakın',
|
||||
dueDate_title: 'Termin Tarihi',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
editAttachment_title: 'Eki Düzenle',
|
||||
editAvatar_title: 'Avatarı Düzenle',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editDueDate_title: 'Son Tarihi Düzenle',
|
||||
editEmail_title: 'E-posta Adresini Düzenle',
|
||||
editInformation_title: null,
|
||||
editLabel_title: 'Etiketi Düzenle',
|
||||
editPassword_title: 'Şifreyi Değiştir',
|
||||
editPermissions_title: null,
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Kronometreyi Düzenle',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Kullanıcı Adını Düzenle',
|
||||
editor: null,
|
||||
editors: null,
|
||||
dueDate_title: 'Termin tarihi',
|
||||
dynamicAndUnevenlySpacedLayout: 'Dinamik ve düzensiz aralıklı düzen.',
|
||||
editAttachment_title: 'Eki düzenle',
|
||||
editAvatar_title: 'Avatarı düzenle',
|
||||
editColor_title: 'Rengi düzenle',
|
||||
editCustomFieldGroup_title: 'Özel alan grubunu düzenle',
|
||||
editCustomField_title: 'Özel alanı düzenle',
|
||||
editDueDate_title: 'Son tarihi düzenle',
|
||||
editEmail_title: 'E-posta adresini düzenle',
|
||||
editInformation_title: 'Bilgileri düzenle',
|
||||
editLabel_title: 'Etiketi düzenle',
|
||||
editPassword_title: 'Şifreyi değiştir',
|
||||
editPermissions_title: 'İzinleri düzenle',
|
||||
editRole_title: 'Rolü düzenle',
|
||||
editStopwatch_title: 'Kronometreyi düzenle',
|
||||
editType_title: 'Türü düzenle',
|
||||
editUsername_title: 'Kullanıcı adını düzenle',
|
||||
editor: 'Düzenleyici',
|
||||
editors: 'Düzenleyiciler',
|
||||
email: 'e-posta',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: 'çöp kutusunu boşalt',
|
||||
enterCardTitle: 'Kart başlığını girin...',
|
||||
enterDescription: 'Açıklamayı girin...',
|
||||
enterFilename: 'Dosya adını girin',
|
||||
enterListTitle: 'Liste başlığını girin...',
|
||||
enterTaskDescription: 'Görev açıklamasını girin...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
filterByLabels_title: 'Etikete Göre Filtrele',
|
||||
events: 'Olaylar',
|
||||
excludedEvents: 'Hariç tutulan olaylar',
|
||||
expandTaskListsByDefault: 'Görev listelerini varsayılan olarak genişlet',
|
||||
filterByLabels_title: 'Etikete göre filtrele',
|
||||
filterByMembers_title: 'Üyelere göre filtrele',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'Kişisel projeler için.',
|
||||
forTeamBasedProjects: 'Takım tabanlı projeler için.',
|
||||
fromComputer_title: 'Bilgisayardan',
|
||||
fromTrello: null,
|
||||
fromTrello: "Trello'dan",
|
||||
general: 'Genel',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Gradyanlar',
|
||||
grid: 'Izgara',
|
||||
hideCompletedTasks: 'Tamamlanan görevleri gizle',
|
||||
hideFromProjectListAndFavorites: 'Proje listesi ve favorilerden gizle',
|
||||
host: 'Ana bilgisayar',
|
||||
hours: 'saat',
|
||||
importBoard_title: null,
|
||||
importBoard_title: 'Panoyu içe aktar',
|
||||
invalidCurrentPassword: 'Mevcut şifre yanlış',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'etiketler',
|
||||
language: 'dil',
|
||||
leaveBoard_title: 'Panodan Ayrıl',
|
||||
leaveProject_title: 'Projeden Ayrıl',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
leaveBoard_title: 'Panodan ayrıl',
|
||||
leaveProject_title: 'Projeden ayrıl',
|
||||
limitCardTypesToDefaultOne: 'Kart türlerini varsayılan olanla sınırla',
|
||||
linkToCard: 'Karta bağlantı',
|
||||
list: 'Listeler',
|
||||
listActions_title: 'Görevleri Listele',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
listActions_title: 'Görevleri listele',
|
||||
lists: 'Listeler',
|
||||
makeProjectPrivate_title: 'Projeyi özel yap',
|
||||
makeProjectShared_title: 'Projeyi paylaşımlı yap',
|
||||
managers: 'Yöneticiler',
|
||||
memberActions_title: null,
|
||||
memberActions_title: 'Üye işlemleri',
|
||||
members: 'Üyeler',
|
||||
minutes: 'dakika',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moveCard_title: 'Kartı Taşı',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moreActions: 'Daha fazla işlem',
|
||||
moreActions_title: 'Daha fazla işlem',
|
||||
moveCard_title: 'Kartı taşı',
|
||||
moveList_title: 'Listeyi taşı',
|
||||
myOwn_title: 'Kendimin',
|
||||
name: 'isim',
|
||||
newEmail: 'Yeni e-posta adresi',
|
||||
newPassword: 'Yeni şifre',
|
||||
newUsername: 'Yeni kullanıcı adı',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: 'Yeni sürüm mevcut',
|
||||
newestFirst: 'Önce en yeni',
|
||||
noBoards: 'Pano yok',
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Kart bulunamadı.',
|
||||
noConnectionToServer: 'Sunucuya bağlantı yok',
|
||||
noLists: 'Liste yok',
|
||||
noProjects: 'Proje yok',
|
||||
noUnreadNotifications: 'Okunmamış bildirim yok.',
|
||||
notifications: 'Bildirimler',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
openBoard_title: 'Açık Pano',
|
||||
oldestFirst: 'Önce en eski',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Bu projeyi özel yapmak için sadece bir yönetici kalmalıdır',
|
||||
openBoard_title: 'Açık pano',
|
||||
optional_inline: 'İsteğe bağlı',
|
||||
organization: 'Organizasyon',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Diğerleri',
|
||||
passwordIsSet: 'Şifre ayarlandı',
|
||||
phone: 'telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
"PLANKA, 100'den fazla popüler servise bildirim göndermek için <1><0>Apprise</0></1> kullanır.",
|
||||
port: 'Port',
|
||||
preferences: 'Tercihler',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'İpucu: Panodan bir ek eklemek için CTRL-V ye (Macte Cmd-V) basın.',
|
||||
private: null,
|
||||
private: 'Özel',
|
||||
project: 'Proje',
|
||||
projectNotFound_title: 'Proje bulunamadı',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
removeManager_title: 'Yöneticiyi Kaldır',
|
||||
removeMember_title: 'Üyeyi Kaldır',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchLabels: null,
|
||||
searchLists: null,
|
||||
searchMembers: null,
|
||||
searchProjects: null,
|
||||
searchUsers: null,
|
||||
projectOwner: 'Proje sahibi',
|
||||
referenceDataAndKnowledgeStorage: 'Referans veri ve bilgi depolama.',
|
||||
rejectUnauthorizedTlsCertificates: 'Yetkisiz TLS sertifikalarını reddet',
|
||||
removeManager_title: 'Yöneticiyi kaldır',
|
||||
removeMember_title: 'Üyeyi kaldır',
|
||||
role: 'Rol',
|
||||
searchCards: 'Kartları ara...',
|
||||
searchCustomFieldGroups: 'Özel alan gruplarını ara...',
|
||||
searchCustomFields: 'Özel alanları ara...',
|
||||
searchLabels: 'Etiketleri ara...',
|
||||
searchLists: 'Listeleri ara...',
|
||||
searchMembers: 'Üyeleri ara...',
|
||||
searchProjects: 'Projeleri ara...',
|
||||
searchUsers: 'Kullanıcıları ara...',
|
||||
seconds: 'saniye',
|
||||
selectAssignee_title: null,
|
||||
selectBoard: 'Pano Seç',
|
||||
selectAssignee_title: 'Atanan kişiyi seç',
|
||||
selectBoard: 'Pano seç',
|
||||
selectList: 'Liste seç',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectPermissions_title: null,
|
||||
selectListToRestoreThisCard: 'Bu kartı geri yüklemek için liste seçin',
|
||||
selectOrder_title: 'Sıralamayı seç',
|
||||
selectPermissions_title: 'İzinleri seç',
|
||||
selectProject: 'Proje seç',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Rolü seç',
|
||||
selectType_title: 'Türü seç',
|
||||
sequentialDisplayOfCards: 'Kartların sıralı görüntülenmesi.',
|
||||
settings: 'Ayarlar',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: 'Paylaşımlı',
|
||||
sharedWithMe_title: 'Benimle paylaşılan',
|
||||
showOnFrontOfCard: 'Kartın ön yüzünde göster',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Listeyi sırala',
|
||||
stopwatch: 'kronometre',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Hikaye',
|
||||
subscribeToCardWhenCommenting: 'Yorum yaparken karta abone ol',
|
||||
subscribeToMyOwnCardsByDefault: 'Varsayılan olarak kendi kartlarıma abone ol',
|
||||
taskActions_title: 'Görev Eylemleri',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
taskActions_title: 'Görev eylemleri',
|
||||
taskAssignmentAndProjectCompletion: 'Görev atama ve proje tamamlama.',
|
||||
taskListActions_title: 'Görev listesi işlemleri',
|
||||
taskList_title: 'Görev listesi',
|
||||
team: 'Takım',
|
||||
terms: 'Şartlar',
|
||||
testLog_title: 'Test günlüğü',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Bu ek için önizleme mevcut değil.',
|
||||
time: 'zaman',
|
||||
title: 'başlık',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
userActions_title: 'Kullanıcı İşlemleri',
|
||||
userAddedCardToList: null,
|
||||
trash: 'Çöp kutusu',
|
||||
trashHasBeenSuccessfullyEmptied: 'Çöp kutusu başarıyla boşaltıldı.',
|
||||
turnOffRecentCardHighlighting: 'Son kart vurgulamasını kapat',
|
||||
typeNameToConfirm: 'Onaylamak için adı yazın.',
|
||||
typeTitleToConfirm: 'Onaylamak için başlığı yazın.',
|
||||
unsavedChanges: 'Kaydedilmemiş değişiklikler',
|
||||
uploadFailedFileIsTooBig: 'Yükleme başarısız: dosya çok büyük.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Yükleme başarısız: yeterli depolama alanı yok.',
|
||||
uploadedImages: 'Yüklenen resimler',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Güvenli bağlantı kullan',
|
||||
userActions_title: 'Kullanıcı işlemleri',
|
||||
userAddedCardToList: '<0>{{user}}</0> <2>{{card}}</2> kartını {{list}} listesine ekledi',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> bu kartı {{list}} listesine ekledi',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userAddedUserToCard:
|
||||
'<0>{{actorUser}}</0> {{addedUser}} kullanıcısını <4>{{card}}</4> kartına ekledi',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> {{addedUser}} kullanıcısını bu karta ekledi',
|
||||
userAddedYouToCard: '<0>{{user}}</0> sizi <2>{{card}}</2> kartına ekledi',
|
||||
userCompletedTaskOnCard:
|
||||
'<0>{{user}}</0> {{task}} görevini <4>{{card}}</4> kartında tamamladı',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> {{task}} görevini bu kartta tamamladı',
|
||||
userJoinedCard: '<0>{{user}}</0> <2>{{card}}</2> kartına katıldı',
|
||||
userJoinedThisCard: '<0>{{user}}</0> bu karta katıldı',
|
||||
userLeftCard: '<0>{{user}}</0> <2>{{card}}</2> kartından ayrıldı',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> yeni bir yorum yazdı: <2>{{card}</2> kartına «{{comment}}»',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
'<0>{{user}}</0> <2>{{card}}</2> kartına yeni bir yorum yazdı: «{{comment}}»',
|
||||
userLeftThisCard: '<0>{{user}}</0> bu karttan ayrıldı',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> {{task}} görevini <4>{{card}}</4> kartında tamamlanmamış olarak işaretledi',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> {{task}} görevini bu kartta tamamlanmamış olarak işaretledi',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> sizi <2>{{card}}</2> kartındaki «{{comment}}» yorumunda bahsetti',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0>, <2>{{card}></2> kartını {{fromList}} listesinden {{toList}} listesine taşıdı',
|
||||
'<0>{{user}}</0> <2>{{card}}</2> kartını {{fromList}} listesinden {{toList}} listesine taşıdı',
|
||||
userMovedThisCardFromListToList:
|
||||
'<0>{{user}}</0> bu kartı {{fromList}} konumundan {{toList}} konumuna taşıdı',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard:
|
||||
'<0>{{actorUser}}</0> {{removedUser}} kullanıcısını <4>{{card}}</4> kartından çıkardı',
|
||||
userRemovedUserFromThisCard:
|
||||
'<0>{{actorUser}}</0> {{removedUser}} kullanıcısını bu karttan çıkardı',
|
||||
username: 'kullanıcı adı',
|
||||
users: 'kullanıcı',
|
||||
viewer: null,
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewer: 'Görüntüleyici',
|
||||
viewers: 'Görüntüleyiciler',
|
||||
visualTaskManagementWithLists: 'Listelerle görsel görev yönetimi.',
|
||||
webhooks: "Webhook'lar",
|
||||
withoutBaseGroup: 'Temel grup olmadan',
|
||||
writeComment: 'Yorum yazın...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Kullanıcıyı etkinleştir',
|
||||
activateUser_title: 'Kullanıcıyı etkinleştir',
|
||||
addAnotherCard: 'Başka bir kart ekle',
|
||||
addAnotherList: 'Başka bir liste ekle',
|
||||
addAnotherTask: 'Başka bir görev ekle',
|
||||
addCard: 'Kart ekle',
|
||||
addCard_title: 'Kart Ekle',
|
||||
addCard_title: 'Kart ekle',
|
||||
addComment: 'Yorum ekle',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: 'Özel alan ekle',
|
||||
addCustomFieldGroup: 'Özel alan grubu ekle',
|
||||
addList: 'Liste ekle',
|
||||
addMember: null,
|
||||
addMember: 'Üye ekle',
|
||||
addMoreDetailedDescription: 'Ayrıntılı bir açıklama ekleyin',
|
||||
addTask: 'Görev ekle',
|
||||
addTaskList: null,
|
||||
addTaskList: 'Görev listesi ekle',
|
||||
addToCard: 'Karta ekle',
|
||||
addUser: 'Kullanıcı ekle',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: 'Webhook ekle',
|
||||
archive: 'Arşivle',
|
||||
archiveCard: 'Kartı arşivle',
|
||||
archiveCard_title: 'Kartı arşivle',
|
||||
archiveCards: 'Kartları arşivle',
|
||||
archiveCards_title: 'Kartları arşivle',
|
||||
assignAsOwner: 'Sahip olarak ata',
|
||||
cancel: 'İptal',
|
||||
createBoard: 'Pano oluştur',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Özel alan grubu oluştur',
|
||||
createFile: 'Dosya oluştur',
|
||||
createLabel: 'Etiket Oluştur',
|
||||
createLabel: 'Etiket oluştur',
|
||||
createNewLabel: 'Yeni etiket oluştur',
|
||||
createProject: 'Proje oluştur',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Kullanıcıyı devre dışı bırak',
|
||||
deactivateUser_title: 'Kullanıcıyı devre dışı bırak',
|
||||
delete: 'Sil',
|
||||
deleteAttachment: 'Eki sil',
|
||||
deleteAvatar: 'Avatarı sil',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBoard: 'Panoyu Sil',
|
||||
deleteBoard_title: null,
|
||||
deleteBackgroundImage: 'Arka plan resmini sil',
|
||||
deleteBoard: 'Panoyu sil',
|
||||
deleteBoard_title: 'Panoyu sil',
|
||||
deleteCard: 'Kartı sil',
|
||||
deleteCardForever: null,
|
||||
deleteCard_title: 'Kartı Sil',
|
||||
deleteCardForever: 'Kartı kalıcı olarak sil',
|
||||
deleteCard_title: 'Kartı sil',
|
||||
deleteComment: 'Yorumu sil',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: 'Özel alanı sil',
|
||||
deleteCustomFieldGroup: 'Özel alan grubunu sil',
|
||||
deleteForever_title: 'Kalıcı olarak sil',
|
||||
deleteGroup: 'Grubu sil',
|
||||
deleteLabel: 'Etiketi sil',
|
||||
deleteList: 'Listeyi sil',
|
||||
deleteList_title: 'Listeyi Sil',
|
||||
deleteNotificationService: null,
|
||||
deleteList_title: 'Listeyi sil',
|
||||
deleteNotificationService: 'Bildirim servisini sil',
|
||||
deleteProject: 'Projeyi sil',
|
||||
deleteProject_title: 'Projeyi Sil',
|
||||
deleteProject_title: 'Projeyi sil',
|
||||
deleteTask: 'Görevi sil',
|
||||
deleteTaskList: null,
|
||||
deleteTask_title: 'Görevi Sil',
|
||||
deleteTaskList: 'Görev listesini sil',
|
||||
deleteTask_title: 'Görevi sil',
|
||||
deleteUser: 'Kullanıcıyı sil',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: 'Kullanıcıyı sil',
|
||||
deleteWebhook: "Webhook'u sil",
|
||||
dismissAll: 'Tümünü kapat',
|
||||
download: 'İndir',
|
||||
duplicateCard_title: 'Kartı kopyala',
|
||||
edit: 'Düzenle',
|
||||
editColor_title: null,
|
||||
editDescription_title: 'Açıklamayı Düzenle',
|
||||
editDueDate_title: 'Son Tarihi Düzenle',
|
||||
editEmail_title: 'E-posta Adresini Düzenle',
|
||||
editGroup: null,
|
||||
editInformation_title: null,
|
||||
editPassword_title: 'Şifreyi Değiştir',
|
||||
editPermissions: null,
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Kronometreyi Düzenle',
|
||||
editColor_title: 'Rengi düzenle',
|
||||
editDescription_title: 'Açıklamayı düzenle',
|
||||
editDueDate_title: 'Son tarihi düzenle',
|
||||
editEmail_title: 'E-posta adresini düzenle',
|
||||
editGroup: 'Grubu düzenle',
|
||||
editInformation_title: 'Bilgileri düzenle',
|
||||
editPassword_title: 'Şifreyi değiştir',
|
||||
editPermissions: 'İzinleri düzenle',
|
||||
editRole_title: 'Rolü düzenle',
|
||||
editStopwatch_title: 'Kronometreyi düzenle',
|
||||
editTitle_title: 'Başlığı düzenle',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Kullanıcı Adını Düzenle',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
import: null,
|
||||
join: null,
|
||||
leave: null,
|
||||
leaveBoard: 'Panodan Ayrıl',
|
||||
editType_title: 'Türü düzenle',
|
||||
editUsername_title: 'Kullanıcı adını düzenle',
|
||||
emptyTrash: 'Çöp kutusunu boşalt',
|
||||
emptyTrash_title: 'Çöp kutusunu boşalt',
|
||||
import: 'İçe aktar',
|
||||
join: 'Katıl',
|
||||
leave: 'Ayrıl',
|
||||
leaveBoard: 'Panodan ayrıl',
|
||||
leaveProject: 'Projeden ayrıl',
|
||||
logOut_title: 'Çıkış',
|
||||
makeCover_title: 'Önizleme olarak ayarla',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: 'Projeyi özel yap',
|
||||
makeProjectPrivate_title: 'Projeyi özel yap',
|
||||
makeProjectShared: 'Projeyi paylaşımlı yap',
|
||||
makeProjectShared_title: 'Projeyi paylaşımlı yap',
|
||||
move: 'Taşı',
|
||||
moveCard_title: 'Kartı Taşı',
|
||||
moveList_title: null,
|
||||
moveCard_title: 'Kartı taşı',
|
||||
moveList_title: 'Listeyi taşı',
|
||||
remove: 'Sil',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeCover_title: 'Önizlemeyi Kaldır',
|
||||
removeAssignee: 'Atanan kişiyi kaldır',
|
||||
removeColor: 'Rengi kaldır',
|
||||
removeCover_title: 'Önizlemeyi kaldır',
|
||||
removeFromBoard: 'Panodan kaldır',
|
||||
removeFromProject: 'Projeden kaldır',
|
||||
removeManager: 'Yöneticiyi kaldır',
|
||||
removeMember: 'Üyeyi kaldır',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: '{{list}} listesine geri yükle',
|
||||
returnToBoard: 'Panoya dön',
|
||||
save: 'Kaydet',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Test e-postası gönder',
|
||||
showActive: 'Etkinleri göster',
|
||||
showAllAttachments: 'Tüm ekleri göster ({{hidden}} gizli)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: 'Bu kullanıcıyla kartları göster',
|
||||
showDeactivated: 'Devre dışı bırakılanları göster',
|
||||
showFewerAttachments: 'Daha az ek göster',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: 'Daha az göster',
|
||||
showMore: 'Daha fazla göster',
|
||||
sortList_title: 'Listeyi sırala',
|
||||
start: 'başlat',
|
||||
stop: 'dur',
|
||||
subscribe: 'Abone ol',
|
||||
|
||||
@@ -1,31 +1,31 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Aktif kullanıcı sınırına ulaşıldı',
|
||||
adminLoginRequiredToInitializeInstance: 'Örneği başlatmak için yönetici girişi gerekli',
|
||||
emailAlreadyInUse: 'E-posta adresi zaten kullanımda',
|
||||
emailOrUsername: 'E-posta adresi veya Kullanıcı adı',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
emailOrUsername: 'E-posta adresi veya kullanıcı adı',
|
||||
iHaveReadAndAgreeToTheseTerms: 'Bu şartları okudum ve kabul ediyorum',
|
||||
invalidCredentials: 'Geçersiz kimlik bilgileri',
|
||||
invalidEmailOrUsername: 'Geçersiz e-posta adresi veya kullanıcı adı',
|
||||
invalidPassword: 'Hatalı Şifre',
|
||||
logIn_title: null,
|
||||
invalidPassword: 'Hatalı şifre',
|
||||
logIn_title: 'Giriş yap',
|
||||
noInternetConnection: 'Internet bağlantısı yok',
|
||||
or: null,
|
||||
or: 'Veya',
|
||||
pageNotFound_title: 'Sayfa bulunamadı',
|
||||
password: 'Şifre',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'PLANKA tarafından desteklenmektedir',
|
||||
serverConnectionFailed: 'Sunucu bağlantı hatası',
|
||||
unknownError: 'Bilinmeyen Hata, daha sonra tekrar deneyin',
|
||||
useSingleSignOn: null,
|
||||
unknownError: 'Bilinmeyen hata, daha sonra tekrar deneyin',
|
||||
useSingleSignOn: 'Tek oturum açma kullan',
|
||||
usernameAlreadyInUse: 'Kullanıcı adı zaten kullanımda',
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
logIn: 'Giriş Yap',
|
||||
logInWithSso: null,
|
||||
cancelAndClose: 'İptal et ve kapat',
|
||||
continue: 'Devam et',
|
||||
logIn: 'Giriş yap',
|
||||
logInWithSso: 'SSO ile giriş yap',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
165
client/src/locales/tr-TR/markdown-editor.json
Normal file
165
client/src/locales/tr-TR/markdown-editor.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"action-previews": {
|
||||
"text": "Bu başlıksız bir metindir.\nHem başlık hem de metin\nkalın, italik, renkli,\nüstü çizili ve altı çizili olarak vurgulanabilir.",
|
||||
"text-with-head": "Bu başlıklı bir metindir.\nHem başlık hem de metin\nkalın, italik, renkli,\nüstü çizili ve altı çizili olarak vurgulanabilir.",
|
||||
"heading": "Başlık"
|
||||
},
|
||||
"bundle": {
|
||||
"error-title": "Markdown editöründe hata",
|
||||
"settings_wysiwyg": "Görsel editör (wysiwyg)",
|
||||
"settings_markup": "Markdown işaretleme",
|
||||
"markup_placeholder": "Markdown işaretlemesi girin..."
|
||||
},
|
||||
"codeblock": {
|
||||
"remove": "Kaldır",
|
||||
"empty_option": "Eşleşme bulunamadı"
|
||||
},
|
||||
"common": {
|
||||
"delete": "Sil",
|
||||
"edit": "Düzenle",
|
||||
"toolbar_action_disabled": "Uyumsuz işaretleme öğesi"
|
||||
},
|
||||
"forms": {
|
||||
"common_action_cancel": "İptal",
|
||||
"common_action_submit": "Gönder",
|
||||
"common_action_upload": "Seç",
|
||||
"common_tab_attach": "Cihazdan ekle",
|
||||
"common_tab_link": "Bağlantı ile ekle",
|
||||
"common_link": "Bağlantı",
|
||||
"common_sizes": "Boyut, px",
|
||||
"image_name": "Başlık",
|
||||
"image_link_href": "Resim bağlantısı",
|
||||
"image_link_href_help": "Resim bağlantısının yönlendirdiği adres.",
|
||||
"image_alt": "Alt metin",
|
||||
"image_alt_help": "Resim yüklenemezse alt metin görüntülenir.",
|
||||
"image_upload_help": "1 MB'dan büyük olmayan JPEG, GIF veya PNG resmi.",
|
||||
"image_upload_failed": "Resim eklenemedi",
|
||||
"image_size_width": "Genişlik",
|
||||
"image_size_height": "Yükseklik",
|
||||
"link_url_help": "Bağlantının yönlendirdiği adres.",
|
||||
"link_text": "Bağlantı metni",
|
||||
"link_text_help": "Bağlantı olarak görüntülenen metin.",
|
||||
"link_open_help": "Bağlantıyı yeni sekmede aç"
|
||||
},
|
||||
"md-hints": {
|
||||
"header_title": "Başlık",
|
||||
"header_hint": "# Metniniz",
|
||||
"italic_title": "İtalik",
|
||||
"italic_hint": "_Metniniz_",
|
||||
"bold_title": "Kalın",
|
||||
"bold_hint": "**Metniniz**",
|
||||
"strikethrough_title": "Üstü çizili",
|
||||
"strikethrough_hint": "~~Metniniz~~",
|
||||
"blockquote_title": "Blok alıntı",
|
||||
"blockquote_hint": "> Metniniz",
|
||||
"code_title": "Kod",
|
||||
"code_hint": "```Metniniz```",
|
||||
"link_title": "Bağlantı",
|
||||
"link_hint": "[Metniniz](url)",
|
||||
"image_title": "Resim",
|
||||
"image_hint": "",
|
||||
"list_title": "Liste öğesi",
|
||||
"list_hint": "- Metniniz",
|
||||
"numbered-list_title": "Numaralı liste",
|
||||
"numbered-list_hint": "1. Metniniz",
|
||||
"documentation": "Dokümantasyon",
|
||||
"documentation_link": "https://diplodoc.com/docs/en/syntax/"
|
||||
},
|
||||
"menubar": {
|
||||
"bold": "Kalın",
|
||||
"code": "Kod",
|
||||
"code_inline": "Satır içi kod",
|
||||
"codeblock": "Kod bloğu",
|
||||
"colorify": "Metin rengi",
|
||||
"colorify__color_blue": "Mavi",
|
||||
"colorify__color_default": "Varsayılan",
|
||||
"colorify__color_gray": "Gri",
|
||||
"colorify__color_green": "Yeşil",
|
||||
"colorify__color_orange": "Turuncu",
|
||||
"colorify__color_red": "Kırmızı",
|
||||
"colorify__color_violet": "Mor",
|
||||
"colorify__color_yellow": "Sarı",
|
||||
"colorify__group_text": "Metin",
|
||||
"cut": "Kes",
|
||||
"emoji": "Emoji",
|
||||
"emoji__hint": "Emojiler WYSIWYG'de veya işaretleme ile manuel olarak eklenebilir",
|
||||
"heading": "Başlık",
|
||||
"heading1": "Başlık 1",
|
||||
"heading2": "Başlık 2",
|
||||
"heading3": "Başlık 3",
|
||||
"heading4": "Başlık 4",
|
||||
"heading5": "Başlık 5",
|
||||
"heading6": "Başlık 6",
|
||||
"hrule": "Ayırıcı",
|
||||
"image": "Resim",
|
||||
"italic": "İtalik",
|
||||
"link": "Bağlantı",
|
||||
"list": "Liste",
|
||||
"list__action_lift": "Öğeyi yukarı taşı",
|
||||
"list__action_sink": "Öğeyi aşağı taşı",
|
||||
"list_action_disabled": "Liste mantığıyla çelişiyor",
|
||||
"mark": "İşaretli",
|
||||
"mono": "Monospace",
|
||||
"more_action": "Daha fazla eylem",
|
||||
"note": "Not",
|
||||
"olist": "Sıralı liste",
|
||||
"quote": "Alıntı",
|
||||
"redo": "Yinele",
|
||||
"strike": "Üstü çizili",
|
||||
"table": "Tablo",
|
||||
"text": "Metin",
|
||||
"ulist": "Madde işaretli liste",
|
||||
"underline": "Altı çizili",
|
||||
"undo": "Geri al"
|
||||
},
|
||||
"placeholder": {
|
||||
"doc_empty": "Eğik çizgi komutlarını kullanmak için / yazın...",
|
||||
"checkbox": "Görev açıklaması girin...",
|
||||
"deflist_term": "Terim",
|
||||
"deflist_desc": "Tanım açıklaması",
|
||||
"heading": "Başlık",
|
||||
"cut_title": "Başlık",
|
||||
"cut_content": "Tıklandığında görüntülenecek içerik",
|
||||
"note_title": "Başlık",
|
||||
"note_content": "Not içeriği",
|
||||
"table_cell": "Hücre içeriği",
|
||||
"select_filter": "Dilleri ara..."
|
||||
},
|
||||
"search": {
|
||||
"label_case-sensitive": "Büyük/küçük harf duyarlı",
|
||||
"label_whole-word": "Tam kelime",
|
||||
"title": "Kodda ara"
|
||||
},
|
||||
"suggest": {
|
||||
"empty-msg": "Bulunamadı"
|
||||
},
|
||||
"widgets": {
|
||||
"image": "Resim ekle",
|
||||
"link": "Bağlantı ekle"
|
||||
},
|
||||
"yfm-note": {
|
||||
"info": "Bilgi",
|
||||
"tip": "İpucu",
|
||||
"warning": "Uyarı",
|
||||
"alert": "Alarm",
|
||||
"remove": "Kaldır"
|
||||
},
|
||||
"yfm-table": {
|
||||
"column.add.before": "Öncesine sütun ekle",
|
||||
"column.add.after": "Sonrasına sütun ekle",
|
||||
"column.remove": "Sütunu kaldır",
|
||||
"row.add.before": "Öncesine satır ekle",
|
||||
"row.add.after": "Sonrasına satır ekle",
|
||||
"row.remove": "Satırı kaldır",
|
||||
"table.remove": "Tabloyu kaldır",
|
||||
"table.menu.cell.align.left": "Hücre içeriğini sola hizala",
|
||||
"table.menu.cell.align.right": "Hücre içeriğini sağa hizala",
|
||||
"table.menu.cell.align.center": "Hücre içeriğini ortala",
|
||||
"table.menu.row.add": "Sonrasına satır ekle",
|
||||
"table.menu.row.remove": "Satırı kaldır",
|
||||
"table.menu.column.add": "Sonrasına sütun ekle",
|
||||
"table.menu.column.remove": "Sütunu kaldır",
|
||||
"table.menu.convert.yfm": "YFM tablosuna dönüştür",
|
||||
"table.menu.table.remove": "Tabloyu kaldır"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,12 @@
|
||||
import dateFns from 'date-fns/locale/uk';
|
||||
import timeAgo from 'javascript-time-ago/locale/uk';
|
||||
|
||||
import markdownEditor from './markdown-editor.json';
|
||||
|
||||
export default {
|
||||
dateFns,
|
||||
timeAgo,
|
||||
markdownEditor,
|
||||
|
||||
format: {
|
||||
date: 'd/M/yyyy',
|
||||
@@ -23,13 +26,13 @@ export default {
|
||||
actions: 'Дії',
|
||||
activateUser_title: 'Активувати користувача',
|
||||
active: 'Активний',
|
||||
addAttachment_title: 'Додати Вкладення',
|
||||
addAttachment_title: 'Додати вкладення',
|
||||
addCustomFieldGroup_title: 'Додати групу користувацьких полів',
|
||||
addCustomField_title: 'Додати Менеджера',
|
||||
addManager_title: 'Додати Менеджера',
|
||||
addMember_title: 'Додати Учасника',
|
||||
addCustomField_title: 'Додати користувацьке поле',
|
||||
addManager_title: 'Додати менеджера',
|
||||
addMember_title: 'Додати учасника',
|
||||
addTaskList_title: 'Додати список завдань',
|
||||
addUser_title: 'Додати Користувача',
|
||||
addUser_title: 'Додати користувача',
|
||||
admin: 'Адмін',
|
||||
administration: 'Адміністратор',
|
||||
all: 'Все',
|
||||
@@ -38,8 +41,8 @@ export default {
|
||||
alphabetically: 'За алфавітом',
|
||||
alwaysDisplayCardCreator: 'Завжди відображати творця картки',
|
||||
archive: 'Архів',
|
||||
archiveCard_title: 'Архівна картка',
|
||||
archiveCards_title: 'Архівні картки',
|
||||
archiveCard_title: 'Архівувати картку',
|
||||
archiveCards_title: 'Архівувати картки',
|
||||
areYouSureYouWantToActivateThisUser: 'Ви впевнені, що хочете активувати цього користувача?',
|
||||
areYouSureYouWantToArchiveCards: 'Ви впевнені, що хочете архівувати картки?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Ви впевнені, що хочете заархівувати цю картку?',
|
||||
@@ -59,7 +62,8 @@ export default {
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
'Ви впевнені, що хочете видалити цю групу кастомних полів?',
|
||||
areYouSureYouWantToDeleteThisLabel: 'Ви впевнені, що хочете видалити цю мітку?',
|
||||
areYouSureYouWantToDeleteThisList: 'Ви впевнені, що хочете видалити цей список?',
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
'Ви впевнені, що хочете видалити цей список? Усі картки будуть переміщені до смітника.',
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
'Ви впевнені, що хочете видалити цю службу сповіщень?',
|
||||
areYouSureYouWantToDeleteThisProject: 'Ви впевнені, що хочете видалити цей проект?',
|
||||
@@ -111,7 +115,7 @@ export default {
|
||||
'Картки з цього списку завершені і готові до архівування.',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: 'Картки з цього списку готові до роботи.',
|
||||
clickHereOrRefreshPageToUpdate: '<0>Натисніть тут</0> або оновіть сторінку для оновлення.',
|
||||
clientHostnameInEhlo: null,
|
||||
clientHostnameInEhlo: "Ім'я хоста клієнта в EHLO",
|
||||
closed: 'Закрито',
|
||||
color: 'Колір',
|
||||
comments: 'Коментарі',
|
||||
@@ -119,68 +123,67 @@ export default {
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
'Вміст цього вкладення занадто великий для відображення.',
|
||||
copy_inline: 'копія',
|
||||
createBoard_title: 'Створити Дошку',
|
||||
createBoard_title: 'Створити дошку',
|
||||
createCustomFieldGroup_title: 'Створити групу користувацьких полів',
|
||||
createLabel_title: 'Створити Мітку',
|
||||
createLabel_title: 'Створити мітку',
|
||||
createNewOneOrSelectExistingOne: 'Створіть нову або виберіть<br />існуючу.',
|
||||
createProject_title: 'Створити Проект',
|
||||
createTextFile_title: 'Створити Текстовий Файл',
|
||||
createProject_title: 'Створити проект',
|
||||
createTextFile_title: 'Створити текстовий файл',
|
||||
creator: 'Творець',
|
||||
currentPassword: 'Поточний пароль',
|
||||
customFieldGroup_title: 'Користувацька група полів',
|
||||
customFieldGroups_title: 'Користувацькі групи полів',
|
||||
customField_title: 'Користувацьке поле',
|
||||
customFields_title: 'Користувацькі поля',
|
||||
dangerZone_title: 'Небезпечна Зона',
|
||||
dangerZone_title: 'Небезпечна зона',
|
||||
date: 'Дата',
|
||||
deactivateUser_title: 'Деактивувати користувача',
|
||||
defaultCardType_title: 'Тип картки за замовчуванням',
|
||||
defaultFrom: null,
|
||||
defaultFrom: 'За замовчуванням "від"',
|
||||
defaultView_title: 'Вигляд за замовчуванням',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
'Видаліть усі дошки, щоб мати змогу видалити цей проект',
|
||||
deleteAttachment_title: 'Видалити Вкладення',
|
||||
deleteAttachment_title: 'Видалити вкладення',
|
||||
deleteBackgroundImage_title: 'Видалити фонове зображення',
|
||||
deleteBoard_title: 'Видалити Дошку',
|
||||
deleteBoard_title: 'Видалити дошку',
|
||||
deleteCardForever_title: 'Видалити картку назавжди',
|
||||
deleteCard_title: 'Видалити Картку',
|
||||
deleteComment_title: 'Видалити Коментар',
|
||||
deleteCustomFieldGroup_title: 'Видалення групи користувацьких полів',
|
||||
deleteCard_title: 'Видалити картку',
|
||||
deleteComment_title: 'Видалити коментар',
|
||||
deleteCustomFieldGroup_title: 'Видалити групу користувацьких полів',
|
||||
deleteCustomField_title: 'Видалити користувацьке поле',
|
||||
deleteLabel_title: 'Видалити Мітку',
|
||||
deleteList_title: 'Видалити Список',
|
||||
deleteLabel_title: 'Видалити мітку',
|
||||
deleteList_title: 'Видалити список',
|
||||
deleteNotificationService_title: 'Видалити службу сповіщень',
|
||||
deleteProject_title: 'Видалити Проект',
|
||||
deleteProject_title: 'Видалити проект',
|
||||
deleteTaskList_title: 'Видалити список завдань',
|
||||
deleteTask_title: 'Видалити Завдання',
|
||||
deleteUser_title: 'Видалити Користувача',
|
||||
deleteTask_title: 'Видалити завдання',
|
||||
deleteUser_title: 'Видалити користувача',
|
||||
deleteWebhook_title: 'Видалити вебхук',
|
||||
deletedUser_title: 'Видалений користувач',
|
||||
description: 'Опис',
|
||||
detectAutomatically: 'Визначити автоматично',
|
||||
display: 'Дисплей',
|
||||
dropFileToUpload: 'Перетягніть файл для завантаження',
|
||||
dueDate_title: 'Крайній Термін',
|
||||
dueDate_title: 'Крайній термін',
|
||||
dynamicAndUnevenlySpacedLayout: 'Динамічна та нерівномірна верстка.',
|
||||
editAttachment_title: 'Редагувати Вкладення',
|
||||
editAvatar_title: 'Редагувати Аватар',
|
||||
editAttachment_title: 'Редагувати вкладення',
|
||||
editAvatar_title: 'Редагувати аватар',
|
||||
editColor_title: 'Редагувати колір',
|
||||
editCustomFieldGroup_title: 'Редагування групи користувацьких полів',
|
||||
editCustomFieldGroup_title: 'Редагувати групу користувацьких полів',
|
||||
editCustomField_title: 'Редагувати користувацьке поле',
|
||||
editDueDate_title: 'Редагувати Крайній Термін',
|
||||
editEmail_title: 'Редагувати Електронну пошту',
|
||||
editInformation_title: 'Редагувати Інформацію',
|
||||
editLabel_title: 'Редагувати Мітку',
|
||||
editPassword_title: 'Редагувати Пароль',
|
||||
editPermissions_title: 'Редагувати Дозволи',
|
||||
editRole_title: 'Редагувати Роль',
|
||||
editStopwatch_title: 'Редагувати Секундомір',
|
||||
editType_title: 'Редагувати Тип',
|
||||
editUsername_title: "Редагувати Ім'я користувача",
|
||||
editDueDate_title: 'Редагувати крайній термін',
|
||||
editEmail_title: 'Редагувати електронну пошту',
|
||||
editInformation_title: 'Редагувати інформацію',
|
||||
editLabel_title: 'Редагувати мітку',
|
||||
editPassword_title: 'Редагувати пароль',
|
||||
editPermissions_title: 'Редагувати дозволи',
|
||||
editRole_title: 'Редагувати роль',
|
||||
editStopwatch_title: 'Редагувати секундомір',
|
||||
editType_title: 'Редагувати тип',
|
||||
editUsername_title: "Редагувати ім'я користувача",
|
||||
editor: 'Редактор',
|
||||
editors: 'Редактори',
|
||||
email: 'Електронна пошта',
|
||||
emptyTrash_title: 'Порожнє сміття',
|
||||
emptyTrash_title: 'Очистити смітник',
|
||||
enterCardTitle: 'Введіть назву картки...',
|
||||
enterDescription: 'Введіть опис...',
|
||||
enterFilename: "Введіть ім'я файлу",
|
||||
@@ -188,9 +191,9 @@ export default {
|
||||
enterTaskDescription: 'Введіть опис завдання...',
|
||||
events: 'Події',
|
||||
excludedEvents: 'Виключені події',
|
||||
expandTaskListsByDefault: null,
|
||||
filterByLabels_title: 'Фільтрувати за Мітками',
|
||||
filterByMembers_title: 'Фільтрувати за Учасниками',
|
||||
expandTaskListsByDefault: 'Розгортати списки завдань за замовчуванням',
|
||||
filterByLabels_title: 'Фільтрувати за мітками',
|
||||
filterByMembers_title: 'Фільтрувати за учасниками',
|
||||
forPersonalProjects: 'Для особистих проектів.',
|
||||
forTeamBasedProjects: 'Для командних проектів.',
|
||||
fromComputer_title: "З комп'ютера",
|
||||
@@ -200,19 +203,19 @@ export default {
|
||||
grid: 'Сітка',
|
||||
hideCompletedTasks: 'Приховати виконані завдання',
|
||||
hideFromProjectListAndFavorites: 'Приховати зі списку проектів та обраного',
|
||||
host: null,
|
||||
host: 'Хост',
|
||||
hours: 'Години',
|
||||
importBoard_title: 'Імпортувати Дошку',
|
||||
importBoard_title: 'Імпортувати дошку',
|
||||
invalidCurrentPassword: 'Невірний поточний пароль',
|
||||
kanban: 'Канбан',
|
||||
labels: 'Мітки',
|
||||
language: 'Мова',
|
||||
leaveBoard_title: 'Покинути Дошку',
|
||||
leaveProject_title: 'Покинути Проект',
|
||||
leaveBoard_title: 'Покинути дошку',
|
||||
leaveProject_title: 'Покинути проект',
|
||||
limitCardTypesToDefaultOne: 'Обмежте типи карток до одного за замовчуванням',
|
||||
linkToCard: 'Посилання на картку',
|
||||
list: 'Список',
|
||||
listActions_title: 'Дії зі Списком',
|
||||
listActions_title: 'Дії зі списком',
|
||||
lists: 'Списки',
|
||||
makeProjectPrivate_title: 'Зробити проект приватним',
|
||||
makeProjectShared_title: 'Зробити проект спільним',
|
||||
@@ -222,9 +225,9 @@ export default {
|
||||
minutes: 'Хвилини',
|
||||
moreActions: 'Більше дій',
|
||||
moreActions_title: 'Більше дій',
|
||||
moveCard_title: 'Перемістити Картку',
|
||||
moveList_title: null,
|
||||
myOwn_title: 'Моя власна',
|
||||
moveCard_title: 'Перемістити картку',
|
||||
moveList_title: 'Перемістити список',
|
||||
myOwn_title: 'Мої власні',
|
||||
name: 'Назва',
|
||||
newEmail: 'Нова електронна пошта',
|
||||
newPassword: 'Новий пароль',
|
||||
@@ -241,15 +244,15 @@ export default {
|
||||
oldestFirst: 'Найстарший перший',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Щоб зробити цей проект приватним, має залишитися лише один менеджер',
|
||||
openBoard_title: 'Відкрити Дошку',
|
||||
openBoard_title: 'Відкрити дошку',
|
||||
optional_inline: 'опціонально',
|
||||
organization: 'Організація',
|
||||
others: 'Інші',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: 'Пароль встановлено',
|
||||
phone: 'Телефон',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA використовує <1><0>Apprise</0></1> для надсилання сповіщень на понад 100 популярних сервісів.',
|
||||
port: null,
|
||||
port: 'Порт',
|
||||
preferences: 'Уподобання',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'Порада: натисніть Ctrl-V (⌘V на Mac), щоб додати вкладення з буфера обміну.',
|
||||
@@ -258,9 +261,9 @@ export default {
|
||||
projectNotFound_title: 'Проект не знайдено',
|
||||
projectOwner: 'Власник проекту',
|
||||
referenceDataAndKnowledgeStorage: 'Довідкові дані та сховище знань.',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
removeManager_title: 'Видалити Менеджера',
|
||||
removeMember_title: 'Видалити Учасника',
|
||||
rejectUnauthorizedTlsCertificates: 'Відхиляти неавторизовані TLS-сертифікати',
|
||||
removeManager_title: 'Видалити менеджера',
|
||||
removeMember_title: 'Видалити учасника',
|
||||
role: 'Роль',
|
||||
searchCards: 'Картки пошуку...',
|
||||
searchCustomFieldGroups: 'Пошук користувацьких груп полів...',
|
||||
@@ -271,22 +274,22 @@ export default {
|
||||
searchProjects: 'Пошук проектів...',
|
||||
searchUsers: 'Пошук користувачів...',
|
||||
seconds: 'Секунди',
|
||||
selectAssignee_title: 'Виберіть правонаступника',
|
||||
selectAssignee_title: 'Вибрати виконавця',
|
||||
selectBoard: 'Вибрати дошку',
|
||||
selectList: 'Вибрати список',
|
||||
selectListToRestoreThisCard: 'Виберіть список для відновлення цієї картки',
|
||||
selectOrder_title: 'Оберіть замовлення',
|
||||
selectPermissions_title: 'Вибрати Дозволи',
|
||||
selectOrder_title: 'Вибрати порядок',
|
||||
selectPermissions_title: 'Вибрати дозволи',
|
||||
selectProject: 'Вибрати проект',
|
||||
selectRole_title: 'Виберіть роль',
|
||||
selectType_title: 'Виберіть тип',
|
||||
selectRole_title: 'Вибрати роль',
|
||||
selectType_title: 'Вибрати тип',
|
||||
sequentialDisplayOfCards: 'Послідовне відображення карток.',
|
||||
settings: 'Налаштування',
|
||||
shared: 'Спільне',
|
||||
sharedWithMe_title: 'Поділіться зі мною',
|
||||
sharedWithMe_title: 'Поділені зі мною',
|
||||
showOnFrontOfCard: 'Показати на лицьовій стороні картки',
|
||||
smtp: null,
|
||||
sortList_title: 'Сортування списку',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: 'Сортувати список',
|
||||
stopwatch: 'Секундомір',
|
||||
story: 'Історія',
|
||||
subscribeToCardWhenCommenting: 'Підпишіться на картку при коментуванні',
|
||||
@@ -296,8 +299,8 @@ export default {
|
||||
taskListActions_title: 'Дії для списку завдань',
|
||||
taskList_title: 'Список завдань',
|
||||
team: 'Команда',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
terms: 'Умови',
|
||||
testLog_title: 'Журнал тестування',
|
||||
thereIsNoPreviewAvailableForThisAttachment: 'Для цього вкладення немає доступного перегляду.',
|
||||
time: 'Час',
|
||||
title: 'Назва',
|
||||
@@ -307,11 +310,11 @@ export default {
|
||||
typeNameToConfirm: "Введіть ім'я для підтвердження.",
|
||||
typeTitleToConfirm: 'Введіть назву, щоб підтвердити.',
|
||||
unsavedChanges: 'Незбережені зміни',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: 'Помилка завантаження: файл занадто великий.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Помилка завантаження: недостатньо місця для зберігання.',
|
||||
uploadedImages: 'Завантажені зображення',
|
||||
url: 'Посилання',
|
||||
useSecureConnection: null,
|
||||
useSecureConnection: "Використовувати безпечне з'єднання",
|
||||
userActions_title: 'Дії користувача',
|
||||
userAddedCardToList: '<0>{{user}}</0> додав(ла) <2>{{card}}</2> до {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> додав(ла) цю картку до {{list}}',
|
||||
@@ -341,7 +344,7 @@ export default {
|
||||
username: "Ім'я користувача",
|
||||
users: 'Користувачі',
|
||||
viewer: 'Переглядач',
|
||||
viewers: 'Переглядач',
|
||||
viewers: 'Переглядачі',
|
||||
visualTaskManagementWithLists: 'Візуальне управління завданнями за допомогою списків.',
|
||||
webhooks: 'Вебхуки',
|
||||
withoutBaseGroup: 'Без базової групи',
|
||||
@@ -350,12 +353,12 @@ export default {
|
||||
|
||||
action: {
|
||||
activateUser: 'Активувати користувача',
|
||||
activateUser_title: 'Активувати Користувача',
|
||||
activateUser_title: 'Активувати користувача',
|
||||
addAnotherCard: 'Додати іншу картку',
|
||||
addAnotherList: 'Додати інший список',
|
||||
addAnotherTask: 'Додати інше завдання',
|
||||
addCard: 'Додати картку',
|
||||
addCard_title: 'Додати Картку',
|
||||
addCard_title: 'Додати картку',
|
||||
addComment: 'Додати коментар',
|
||||
addCustomField: 'Додати користувацьке поле',
|
||||
addCustomFieldGroup: 'Додати групу користувацьких полів',
|
||||
@@ -367,64 +370,64 @@ export default {
|
||||
addToCard: 'Додати до картки',
|
||||
addUser: 'Додати користувача',
|
||||
addWebhook: 'Додати вебхук',
|
||||
archive: 'Архів',
|
||||
archiveCard: 'Архівна картка',
|
||||
archiveCard_title: 'Архівна Картка',
|
||||
archiveCards: 'Архівні картки',
|
||||
archiveCards_title: 'Архівні Картки',
|
||||
archive: 'Архівувати',
|
||||
archiveCard: 'Архівувати картку',
|
||||
archiveCard_title: 'Архівувати картку',
|
||||
archiveCards: 'Архівувати картки',
|
||||
archiveCards_title: 'Архівувати картки',
|
||||
assignAsOwner: 'Призначити власником',
|
||||
cancel: 'Скасувати',
|
||||
createBoard: 'Створити дошку',
|
||||
createCustomFieldGroup: 'Створіть власну групу полів',
|
||||
createCustomFieldGroup: 'Створити групу користувацьких полів',
|
||||
createFile: 'Створити файл',
|
||||
createLabel: 'Створити мітку',
|
||||
createNewLabel: 'Створити нову мітку',
|
||||
createProject: 'Створити проект',
|
||||
deactivateUser: 'Деактивувати користувача',
|
||||
deactivateUser_title: 'Деактивувати Користувача',
|
||||
deactivateUser_title: 'Деактивувати користувача',
|
||||
delete: 'Видалити',
|
||||
deleteAttachment: 'Видалити вкладення',
|
||||
deleteAvatar: 'Видалити аватар',
|
||||
deleteBackgroundImage: 'Видалити фонове зображення',
|
||||
deleteBoard: 'Видалити дошку',
|
||||
deleteBoard_title: 'Видалити Дошку',
|
||||
deleteBoard_title: 'Видалити дошку',
|
||||
deleteCard: 'Видалити картку',
|
||||
deleteCardForever: 'Видалити картку назавжди',
|
||||
deleteCard_title: 'Видалити Картку',
|
||||
deleteCard_title: 'Видалити картку',
|
||||
deleteComment: 'Видалити коментар',
|
||||
deleteCustomField: 'Видалити користувацьке поле',
|
||||
deleteCustomFieldGroup: 'Видалення групи користувацьких полів',
|
||||
deleteForever_title: 'Видалити Назавжди',
|
||||
deleteCustomFieldGroup: 'Видалити групу користувацьких полів',
|
||||
deleteForever_title: 'Видалити назавжди',
|
||||
deleteGroup: 'Видалити групу',
|
||||
deleteLabel: 'Видалити мітку',
|
||||
deleteList: 'Видалити список',
|
||||
deleteList_title: 'Видалити Список',
|
||||
deleteList_title: 'Видалити список',
|
||||
deleteNotificationService: 'Видалити службу сповіщень',
|
||||
deleteProject: 'Видалити проект',
|
||||
deleteProject_title: 'Видалити Проект',
|
||||
deleteProject_title: 'Видалити проект',
|
||||
deleteTask: 'Видалити завдання',
|
||||
deleteTaskList: 'Видалення списку завдань',
|
||||
deleteTask_title: 'Видалити Завдання',
|
||||
deleteTaskList: 'Видалити список завдань',
|
||||
deleteTask_title: 'Видалити завдання',
|
||||
deleteUser: 'Видалити користувача',
|
||||
deleteUser_title: 'Видалити Користувача',
|
||||
deleteUser_title: 'Видалити користувача',
|
||||
deleteWebhook: 'Видалити вебхук',
|
||||
dismissAll: 'Скасувати всі',
|
||||
download: null,
|
||||
duplicateCard_title: 'Дублювати Картку',
|
||||
download: 'Завантажити',
|
||||
duplicateCard_title: 'Дублювати картку',
|
||||
edit: 'Редагувати',
|
||||
editColor_title: 'Редагувати колір',
|
||||
editDescription_title: 'Редагувати опис',
|
||||
editDueDate_title: 'Редагувати термін виконання',
|
||||
editEmail_title: 'Редагувати E-mail',
|
||||
editEmail_title: 'Редагувати e-mail',
|
||||
editGroup: 'Редагувати групу',
|
||||
editInformation_title: 'Редагувати інформацію',
|
||||
editPassword_title: 'Редагувати пароль',
|
||||
editPermissions: 'Редагувати дозволи',
|
||||
editRole_title: 'Редагувати Роль',
|
||||
editRole_title: 'Редагувати роль',
|
||||
editStopwatch_title: 'Редагувати секундомір',
|
||||
editTitle_title: 'Редагувати Заголовок',
|
||||
editType_title: 'Редагувати Тип',
|
||||
editUsername_title: "Редагувати Ім'я користувача",
|
||||
editTitle_title: 'Редагувати заголовок',
|
||||
editType_title: 'Редагувати тип',
|
||||
editUsername_title: "Редагувати ім'я користувача",
|
||||
emptyTrash: 'Очистити смітник',
|
||||
emptyTrash_title: 'Очистити смітник',
|
||||
import: 'Імпортувати',
|
||||
@@ -433,16 +436,16 @@ export default {
|
||||
leaveBoard: 'Залишити дошку',
|
||||
leaveProject: 'Залишити проект',
|
||||
logOut_title: 'Вийти',
|
||||
makeCover_title: 'Встановити обкладинку',
|
||||
makeCover_title: 'Зробити обкладинкою',
|
||||
makeProjectPrivate: 'Зробити проект приватним',
|
||||
makeProjectPrivate_title: 'Зробити Проект Приватним',
|
||||
makeProjectPrivate_title: 'Зробити проект приватним',
|
||||
makeProjectShared: 'Зробити проект спільним',
|
||||
makeProjectShared_title: 'Зробити Проект спільним',
|
||||
makeProjectShared_title: 'Зробити проект спільним',
|
||||
move: 'Перемістити',
|
||||
moveCard_title: 'Перемістити Картку',
|
||||
moveList_title: null,
|
||||
moveCard_title: 'Перемістити картку',
|
||||
moveList_title: 'Перемістити список',
|
||||
remove: 'Видалити',
|
||||
removeAssignee: 'Видалити правонаступника',
|
||||
removeAssignee: 'Видалити виконавця',
|
||||
removeColor: 'Видалити колір',
|
||||
removeCover_title: 'Видалити обкладинку',
|
||||
removeFromBoard: 'Вилучити з дошки',
|
||||
@@ -452,7 +455,7 @@ export default {
|
||||
restoreToList: 'Відновити до {{list}}',
|
||||
returnToBoard: 'Повернутися до дошки',
|
||||
save: 'Зберегти',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: 'Надіслати тестовий електронний лист',
|
||||
showActive: 'Показати активний',
|
||||
showAllAttachments: 'Показати всі вкладення ({{hidden}} приховані)',
|
||||
showCardsWithThisUser: 'Показати картки з цим користувачем',
|
||||
@@ -460,7 +463,7 @@ export default {
|
||||
showFewerAttachments: 'Показати менше вкладень',
|
||||
showLess: 'Показати менше',
|
||||
showMore: 'Показати більше',
|
||||
sortList_title: 'Сортування списку',
|
||||
sortList_title: 'Сортувати список',
|
||||
start: 'Почати',
|
||||
stop: 'Зупинити',
|
||||
subscribe: 'Підписатися',
|
||||
|
||||
@@ -2,15 +2,16 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: 'Досягнуто ліміту активних користувачів',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Потрібен вхід адміністратора для ініціалізації екземпляра',
|
||||
emailAlreadyInUse: 'Електронна пошта вже використовується',
|
||||
emailOrUsername: "Електронна пошта або ім'я користувача",
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: 'Я прочитав і погоджуюся з цими умовами',
|
||||
invalidCredentials: 'Неправильні облікові дані',
|
||||
invalidEmailOrUsername: "Неправильна електронна пошта або ім'я користувача",
|
||||
invalidPassword: 'Неправильний пароль',
|
||||
logIn_title: 'Увійти',
|
||||
noInternetConnection: 'Відсутнє підключення до Інтернету',
|
||||
noInternetConnection: 'Відсутнє підключення до інтернету',
|
||||
or: 'Або',
|
||||
pageNotFound_title: 'Сторінку не знайдено',
|
||||
password: 'Пароль',
|
||||
@@ -22,8 +23,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Скасувати та закрити',
|
||||
continue: 'Продовжити',
|
||||
logIn: 'Увійти',
|
||||
logInWithSso: 'Увійти за допомогою SSO',
|
||||
},
|
||||
|
||||
165
client/src/locales/uk-UA/markdown-editor.json
Normal file
165
client/src/locales/uk-UA/markdown-editor.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"action-previews": {
|
||||
"text": "Це текст без заголовка.\nЯк заголовок, так і текст\nможуть бути виділені жирним, курсивом, кольором,\nзакресленим та підкресленим.",
|
||||
"text-with-head": "Це текст із заголовком.\nЯк заголовок, так і текст\nможуть бути виділені жирним, курсивом, кольором,\nзакресленим та підкресленим.",
|
||||
"heading": "Заголовок"
|
||||
},
|
||||
"bundle": {
|
||||
"error-title": "Помилка в редакторі markdown",
|
||||
"settings_wysiwyg": "Візуальний редактор (wysiwyg)",
|
||||
"settings_markup": "Розмітка markdown",
|
||||
"markup_placeholder": "Введіть розмітку markdown..."
|
||||
},
|
||||
"codeblock": {
|
||||
"remove": "Видалити",
|
||||
"empty_option": "Збігів не знайдено"
|
||||
},
|
||||
"common": {
|
||||
"delete": "Видалити",
|
||||
"edit": "Редагувати",
|
||||
"toolbar_action_disabled": "Несумісний елемент розмітки"
|
||||
},
|
||||
"forms": {
|
||||
"common_action_cancel": "Скасувати",
|
||||
"common_action_submit": "Надіслати",
|
||||
"common_action_upload": "Вибрати",
|
||||
"common_tab_attach": "Додати з пристрою",
|
||||
"common_tab_link": "Додати за посиланням",
|
||||
"common_link": "Посилання",
|
||||
"common_sizes": "Розмір, px",
|
||||
"image_name": "Заголовок",
|
||||
"image_link_href": "Посилання на зображення",
|
||||
"image_link_href_help": "Адреса, на яку веде посилання на зображення.",
|
||||
"image_alt": "Alt текст",
|
||||
"image_alt_help": "Alt текст відображається, якщо зображення не може бути завантажене.",
|
||||
"image_upload_help": "Зображення в форматі JPEG, GIF або PNG розміром не більше 1 МБ.",
|
||||
"image_upload_failed": "Не вдалося додати зображення",
|
||||
"image_size_width": "Ширина",
|
||||
"image_size_height": "Висота",
|
||||
"link_url_help": "Адреса, на яку веде посилання.",
|
||||
"link_text": "Текст посилання",
|
||||
"link_text_help": "Текст, що відображається як посилання.",
|
||||
"link_open_help": "Відкрити посилання в новій вкладці"
|
||||
},
|
||||
"md-hints": {
|
||||
"header_title": "Заголовок",
|
||||
"header_hint": "# Ваш текст",
|
||||
"italic_title": "Курсив",
|
||||
"italic_hint": "_Ваш текст_",
|
||||
"bold_title": "Жирний",
|
||||
"bold_hint": "**Ваш текст**",
|
||||
"strikethrough_title": "Закреслений",
|
||||
"strikethrough_hint": "~~Ваш текст~~",
|
||||
"blockquote_title": "Цитата",
|
||||
"blockquote_hint": "> Ваш текст",
|
||||
"code_title": "Код",
|
||||
"code_hint": "```Ваш текст```",
|
||||
"link_title": "Посилання",
|
||||
"link_hint": "[Ваш текст](url)",
|
||||
"image_title": "Зображення",
|
||||
"image_hint": "",
|
||||
"list_title": "Елемент списку",
|
||||
"list_hint": "- Ваш текст",
|
||||
"numbered-list_title": "Нумерований список",
|
||||
"numbered-list_hint": "1. Ваш текст",
|
||||
"documentation": "Документація",
|
||||
"documentation_link": "https://diplodoc.com/docs/en/syntax/"
|
||||
},
|
||||
"menubar": {
|
||||
"bold": "Жирний",
|
||||
"code": "Код",
|
||||
"code_inline": "Вбудований код",
|
||||
"codeblock": "Блок коду",
|
||||
"colorify": "Колір тексту",
|
||||
"colorify__color_blue": "Синій",
|
||||
"colorify__color_default": "За замовчуванням",
|
||||
"colorify__color_gray": "Сірий",
|
||||
"colorify__color_green": "Зелений",
|
||||
"colorify__color_orange": "Помаранчевий",
|
||||
"colorify__color_red": "Червоний",
|
||||
"colorify__color_violet": "Фіолетовий",
|
||||
"colorify__color_yellow": "Жовтий",
|
||||
"colorify__group_text": "Текст",
|
||||
"cut": "Вирізати",
|
||||
"emoji": "Емодзі",
|
||||
"emoji__hint": "Емодзі можна додати в WYSIWYG або вручну з розміткою",
|
||||
"heading": "Заголовок",
|
||||
"heading1": "Заголовок 1",
|
||||
"heading2": "Заголовок 2",
|
||||
"heading3": "Заголовок 3",
|
||||
"heading4": "Заголовок 4",
|
||||
"heading5": "Заголовок 5",
|
||||
"heading6": "Заголовок 6",
|
||||
"hrule": "Роздільник",
|
||||
"image": "Зображення",
|
||||
"italic": "Курсив",
|
||||
"link": "Посилання",
|
||||
"list": "Список",
|
||||
"list__action_lift": "Підняти елемент",
|
||||
"list__action_sink": "Опустити елемент",
|
||||
"list_action_disabled": "Суперечить логіці списку",
|
||||
"mark": "Виділити",
|
||||
"mono": "Моноширинний",
|
||||
"more_action": "Більше дій",
|
||||
"note": "Замітка",
|
||||
"olist": "Упорядкований список",
|
||||
"quote": "Цитата",
|
||||
"redo": "Повторити",
|
||||
"strike": "Закреслений",
|
||||
"table": "Таблиця",
|
||||
"text": "Текст",
|
||||
"ulist": "Маркований список",
|
||||
"underline": "Підкреслений",
|
||||
"undo": "Скасувати"
|
||||
},
|
||||
"placeholder": {
|
||||
"doc_empty": "Введіть / для використання команд через слеш...",
|
||||
"checkbox": "Введіть опис завдання...",
|
||||
"deflist_term": "Термін",
|
||||
"deflist_desc": "Опис визначення",
|
||||
"heading": "Заголовок",
|
||||
"cut_title": "Заголовок",
|
||||
"cut_content": "Вміст для відображення при кліку",
|
||||
"note_title": "Заголовок",
|
||||
"note_content": "Вміст замітки",
|
||||
"table_cell": "Вміст комірки",
|
||||
"select_filter": "Пошук мов..."
|
||||
},
|
||||
"search": {
|
||||
"label_case-sensitive": "Чутливість до регістру",
|
||||
"label_whole-word": "Повне слово",
|
||||
"title": "Пошук у коді"
|
||||
},
|
||||
"suggest": {
|
||||
"empty-msg": "Не знайдено"
|
||||
},
|
||||
"widgets": {
|
||||
"image": "Додати зображення",
|
||||
"link": "Додати посилання"
|
||||
},
|
||||
"yfm-note": {
|
||||
"info": "Інформація",
|
||||
"tip": "Порада",
|
||||
"warning": "Попередження",
|
||||
"alert": "Сповіщення",
|
||||
"remove": "Видалити"
|
||||
},
|
||||
"yfm-table": {
|
||||
"column.add.before": "Додати стовпець перед",
|
||||
"column.add.after": "Додати стовпець після",
|
||||
"column.remove": "Видалити стовпець",
|
||||
"row.add.before": "Додати рядок перед",
|
||||
"row.add.after": "Додати рядок після",
|
||||
"row.remove": "Видалити рядок",
|
||||
"table.remove": "Видалити таблицю",
|
||||
"table.menu.cell.align.left": "Вирівняти вміст комірки по лівому краю",
|
||||
"table.menu.cell.align.right": "Вирівняти вміст комірки по правому краю",
|
||||
"table.menu.cell.align.center": "Вирівняти вміст комірки по центру",
|
||||
"table.menu.row.add": "Додати рядок після",
|
||||
"table.menu.row.remove": "Видалити рядок",
|
||||
"table.menu.column.add": "Додати стовпець після",
|
||||
"table.menu.column.remove": "Видалити стовпець",
|
||||
"table.menu.convert.yfm": "Перетворити в таблицю YFM",
|
||||
"table.menu.table.remove": "Видалити таблицю"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,12 @@
|
||||
import dateFns from 'date-fns/locale/uz';
|
||||
import timeAgo from 'javascript-time-ago/locale/uz';
|
||||
|
||||
import markdownEditor from './markdown-editor.json';
|
||||
|
||||
export default {
|
||||
dateFns,
|
||||
timeAgo,
|
||||
markdownEditor,
|
||||
|
||||
format: {
|
||||
date: 'M/d/yyyy',
|
||||
@@ -17,429 +20,448 @@ export default {
|
||||
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: null,
|
||||
accessToken: null,
|
||||
aboutPlanka: 'PLANKA haqida',
|
||||
accessToken: 'Kirish tokeni',
|
||||
account: 'Profil',
|
||||
actions: 'Amallar',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
addAttachment_title: "Ilova Qo'shish",
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addManager_title: "Boshqaruvchi Qo'shish",
|
||||
addMember_title: "Yangi a'zo Qo'shish",
|
||||
addTaskList_title: null,
|
||||
addUser_title: "Foydalanuvchi Qo'shish",
|
||||
admin: null,
|
||||
administration: null,
|
||||
activateUser_title: 'Foydalanuvchini faollashtirish',
|
||||
active: 'Faol',
|
||||
addAttachment_title: "Ilova qo'shish",
|
||||
addCustomFieldGroup_title: "Maxsus maydon guruhini qo'shish",
|
||||
addCustomField_title: "Maxsus maydon qo'shish",
|
||||
addManager_title: "Boshqaruvchi qo'shish",
|
||||
addMember_title: "Yangi a'zo qo'shish",
|
||||
addTaskList_title: "Vazifalar ro'yxatini qo'shish",
|
||||
addUser_title: "Foydalanuvchi qo'shish",
|
||||
admin: 'Administrator',
|
||||
administration: 'Boshqaruv',
|
||||
all: 'Barchasi',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored:
|
||||
"Barcha o'zgarishlar tarmoq ulanishi tiklangandan so'ng<br />avtomatik saqlanadi.",
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: 'Alifbo tartibida',
|
||||
alwaysDisplayCardCreator: "Karta yaratuvchisini doim ko'rsatish",
|
||||
archive: 'Arxiv',
|
||||
archiveCard_title: 'Kartani arxivlash',
|
||||
archiveCards_title: 'Kartalarni arxivlash',
|
||||
areYouSureYouWantToActivateThisUser: 'Ushbu foydalanuvchini faollashtirishni xohlaysizmi?',
|
||||
areYouSureYouWantToArchiveCards: 'Kartalarni arxivlashni xohlaysizmi?',
|
||||
areYouSureYouWantToArchiveThisCard: 'Ushbu kartani arxivlashni xohlaysizmi?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner:
|
||||
'Ushbu loyiha menejerini egasi sifatida tayinlashni xohlaysizmi?',
|
||||
areYouSureYouWantToDeactivateThisUser:
|
||||
'Ushbu foydalanuvchini faolsizlantirishni xohlaysizmi?',
|
||||
areYouSureYouWantToDeleteThisAttachment: "Ushbu biriktirmani o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: "Ushbu fon rasmini o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisBoard: "Ushbu doskani o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisCard: "Ushbu kartani o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever: "Ushbu kartani butunlay o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisComment: "Ushbu izohni o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField: "Ushbu maxsus maydonni o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup:
|
||||
"Ushbu maxsus maydon guruhini o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisLabel: "Ushbu yorliqni o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisList: "Ushbu ro'yxatni o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList:
|
||||
"Ushbu ro'yxatni o'chirmoqchimisiz? Barcha kartalar axlat qutisiga ko'chiriladi.",
|
||||
areYouSureYouWantToDeleteThisNotificationService:
|
||||
"Ushbu bildirishnoma xizmatini o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisProject: "Ushbu loyihani o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisTask: "Ushbu topshiriqni o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: "Ushbu vazifalar ro'yxatini o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisUser: "Ushbu foydalanuvchini o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: "Ushbu webhookni o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToEmptyTrash: "Axlatni bo'shatmoqchimisiz?",
|
||||
areYouSureYouWantToLeaveBoard: 'Ushbu doskadan chiqmoqchimisiz?',
|
||||
areYouSureYouWantToLeaveProject: 'Ushbu loyihadan chiqmoqchimisiz?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate: 'Ushbu loyihani shaxsiy qilmoqchimisiz?',
|
||||
areYouSureYouWantToMakeThisProjectShared: 'Ushbu loyihani umumiy qilmoqchimisiz?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject:
|
||||
"Ushbu boshqaruvchini loyihadan o'chirmoqchimisiz?",
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard: "Ushbu a'zoni doskadan o'chirmoqchimisiz?",
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: 'Egasi sifatida tayinlash',
|
||||
atLeastOneListMustBePresent: "Kamida bitta ro'yxat bo'lishi kerak",
|
||||
attachment: 'Ilova',
|
||||
attachments: 'Ilovalar',
|
||||
authentication: 'Autentifikatsiya',
|
||||
background: 'Orqa fon',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: 'Asosiy maxsus maydonlar',
|
||||
baseGroup: 'Asosiy guruh',
|
||||
board: 'Doska',
|
||||
boardActions_title: null,
|
||||
boardNotFound_title: 'Doska Topilmadi',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
canComment: null,
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canOnlyViewBoard: null,
|
||||
cardActions_title: 'Karta Amallari',
|
||||
cardNotFound_title: 'Karta Topilmadi',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
boardActions_title: 'Doska amallari',
|
||||
boardNotFound_title: 'Doska topilmadi',
|
||||
boardSubscribed: "Doskaga obuna bo'lindi",
|
||||
boardUser: 'Doska foydalanuvchisi',
|
||||
byCreationTime: "Yaratilish vaqti bo'yicha",
|
||||
byDefault: "Standart bo'yicha",
|
||||
byDueDate: "Muddat bo'yicha",
|
||||
canBeInvitedToWorkInBoards: 'Doskalarda ishlash uchun taklif qilinishi mumkin.',
|
||||
canComment: 'Izoh qoldirishi mumkin',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers:
|
||||
"O'z loyihalarini yaratishi va boshqalarida ishlash uchun taklif qilinishi mumkin.",
|
||||
canEditBoardLayoutAndAssignMembersToCards:
|
||||
"Doska tartibini tahrirlashi va a'zolarni kartalarga tayinlashi mumkin.",
|
||||
canManageSystemWideSettingsAndActAsProjectOwner:
|
||||
"Tizim bo'ylab sozlamalarni boshqarishi va loyiha egasi sifatida harakat qilishi mumkin.",
|
||||
canOnlyViewBoard: "Faqat doskani ko'rishi mumkin.",
|
||||
cardActions_title: 'Karta amallari',
|
||||
cardNotFound_title: 'Karta topilmadi',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers:
|
||||
"Ushbu ro'yxatdagi kartalar barcha doska a'zolari uchun mavjud.",
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived:
|
||||
"Ushbu ro'yxatdagi kartalar tugallangan va arxivlashga tayyor.",
|
||||
cardsOnThisListAreReadyToBeWorkedOn: "Ushbu ro'yxatdagi kartalar ustida ishlashga tayyor.",
|
||||
clickHereOrRefreshPageToUpdate:
|
||||
'<0>Yangilash uchun bu yerga bosing</0> yoki sahifani yangilang.',
|
||||
clientHostnameInEhlo: 'EHLO da mijoz host nomi',
|
||||
closed: 'Yopiq',
|
||||
color: 'Rang',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
createBoard_title: 'Doska Yaratish',
|
||||
createCustomFieldGroup_title: null,
|
||||
createLabel_title: 'Yorliq Yaratish',
|
||||
comments: 'Izohlar',
|
||||
contentExceedsLimit: 'Kontent {{limit}} chegarasini oshirdi',
|
||||
contentOfThisAttachmentIsTooBigToDisplay:
|
||||
"Ushbu ilovaning mazmuni ko'rsatish uchun juda katta.",
|
||||
copy_inline: 'nusxa',
|
||||
createBoard_title: 'Doska yaratish',
|
||||
createCustomFieldGroup_title: 'Maxsus maydon guruhi yaratish',
|
||||
createLabel_title: 'Yorliq yaratish',
|
||||
createNewOneOrSelectExistingOne: "Yangisini tanlash yoki<br />mavjud bo'lganini tanlash.",
|
||||
createProject_title: 'Loyiha Yaratish',
|
||||
createProject_title: 'Loyiha yaratish',
|
||||
createTextFile_title: 'Matnli fayl yaratish',
|
||||
creator: null,
|
||||
creator: 'Yaratuvchi',
|
||||
currentPassword: 'Hozirgi parol',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
dangerZone_title: 'Xavfli Hudud',
|
||||
customFieldGroup_title: 'Maxsus maydon guruhi',
|
||||
customFieldGroups_title: 'Maxsus maydon guruhlari',
|
||||
customField_title: 'Maxsus maydon',
|
||||
customFields_title: 'Maxsus maydonlar',
|
||||
dangerZone_title: 'Xavfli hudud',
|
||||
date: 'Sana',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deleteAttachment_title: "Ilovani O'chirish",
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBoard_title: "Doskani O'chirish",
|
||||
deleteCardForever_title: null,
|
||||
deleteCard_title: "Kartani O'chirish",
|
||||
deleteComment_title: "Izohni O'chirish",
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteLabel_title: "Yorliqni O'chirish",
|
||||
deleteList_title: "Ro'yxatni O'chirish",
|
||||
deleteNotificationService_title: null,
|
||||
deleteProject_title: "Loyihani O'chirish",
|
||||
deleteTaskList_title: null,
|
||||
deleteTask_title: "Vazifani O'chirish",
|
||||
deleteUser_title: "Foydalanuvchini O'chirish",
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deactivateUser_title: 'Foydalanuvchini faolsizlantirish',
|
||||
defaultCardType_title: 'Standart karta turi',
|
||||
defaultFrom: 'Standart dan',
|
||||
defaultView_title: "Standart ko'rinish",
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject:
|
||||
"Ushbu loyihani o'chirish uchun barcha doskalarni o'chiring",
|
||||
deleteAttachment_title: "Ilovani o'chirish",
|
||||
deleteBackgroundImage_title: "Orqa fon rasmini o'chirish",
|
||||
deleteBoard_title: "Doskani o'chirish",
|
||||
deleteCardForever_title: "Kartani butunlay o'chirish",
|
||||
deleteCard_title: "Kartani o'chirish",
|
||||
deleteComment_title: "Izohni o'chirish",
|
||||
deleteCustomFieldGroup_title: "Maxsus maydon guruhini o'chirish",
|
||||
deleteCustomField_title: "Maxsus maydonni o'chirish",
|
||||
deleteLabel_title: "Yorliqni o'chirish",
|
||||
deleteList_title: "Ro'yxatni o'chirish",
|
||||
deleteNotificationService_title: "Bildirishnoma xizmatini o'chirish",
|
||||
deleteProject_title: "Loyihani o'chirish",
|
||||
deleteTaskList_title: "Vazifalar ro'yxatini o'chirish",
|
||||
deleteTask_title: "Vazifani o'chirish",
|
||||
deleteUser_title: "Foydalanuvchini o'chirish",
|
||||
deleteWebhook_title: "Webhookni o'chirish",
|
||||
deletedUser_title: "O'chirilgan foydalanuvchi",
|
||||
description: 'Tavsif',
|
||||
detectAutomatically: null,
|
||||
display: null,
|
||||
display: "Ko'rsatish",
|
||||
dropFileToUpload: 'Faylni yuklash uchun qoldiring',
|
||||
dueDate_title: 'Muddati',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
editAttachment_title: 'Ilovani Tahrirlash',
|
||||
editAvatar_title: 'Avatarni Tahrirlash',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editDueDate_title: 'Muddatni Tahrirlash',
|
||||
editEmail_title: 'E-mail ni Tahrirlash',
|
||||
editInformation_title: null,
|
||||
editLabel_title: 'Yorliqni Tahrirlash',
|
||||
editPassword_title: 'Parolni Tahrirlash',
|
||||
editPermissions_title: null,
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Taymerni Tahrirlash',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Foydalanuvchi nomini Tahrirlash',
|
||||
editor: null,
|
||||
editors: null,
|
||||
dynamicAndUnevenlySpacedLayout: 'Dinamik va notekis joylashtirilgan tartib.',
|
||||
editAttachment_title: 'Ilovani tahrirlash',
|
||||
editAvatar_title: 'Avatarni tahrirlash',
|
||||
editColor_title: 'Rangni tahrirlash',
|
||||
editCustomFieldGroup_title: 'Maxsus maydon guruhini tahrirlash',
|
||||
editCustomField_title: 'Maxsus maydonni tahrirlash',
|
||||
editDueDate_title: 'Muddatni tahrirlash',
|
||||
editEmail_title: 'E-mail ni tahrirlash',
|
||||
editInformation_title: "Ma'lumotni tahrirlash",
|
||||
editLabel_title: 'Yorliqni tahrirlash',
|
||||
editPassword_title: 'Parolni tahrirlash',
|
||||
editPermissions_title: 'Ruxsatlarni tahrirlash',
|
||||
editRole_title: 'Rolni tahrirlash',
|
||||
editStopwatch_title: 'Taymerni tahrirlash',
|
||||
editType_title: 'Turni tahrirlash',
|
||||
editUsername_title: 'Foydalanuvchi nomini tahrirlash',
|
||||
editor: 'Muharrir',
|
||||
editors: 'Muharrirlar',
|
||||
email: 'E-mail',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: "Axlatni bo'shatish",
|
||||
enterCardTitle: 'Karta sarlavhasini kiriting...',
|
||||
enterDescription: 'Tavsif kiriting...',
|
||||
enterFilename: 'Fayl nomini kiriting',
|
||||
enterListTitle: "Ro'yxat sarlavhasini kiriting...",
|
||||
enterTaskDescription: 'Topshiriq sarlavhasini kiriting...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: 'Hodisalar',
|
||||
excludedEvents: 'Istisno qilingan hodisalar',
|
||||
expandTaskListsByDefault: "Vazifalar ro'yxatini standart bo'yicha kengaytirish",
|
||||
filterByLabels_title: "Yorliq bo'yicha filter",
|
||||
filterByMembers_title: "A'zolar bo'yicha filter",
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: 'Shaxsiy loyihalar uchun.',
|
||||
forTeamBasedProjects: 'Jamoa loyihalari uchun.',
|
||||
fromComputer_title: 'Kompyuterdan',
|
||||
fromTrello: null,
|
||||
fromTrello: 'Trello dan',
|
||||
general: 'Umumiy',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: 'Gradientlar',
|
||||
grid: 'Panjara',
|
||||
hideCompletedTasks: 'Tugallangan vazifalarni yashirish',
|
||||
hideFromProjectListAndFavorites: "Loyihalar ro'yxati va sevimlilardan yashirish",
|
||||
host: 'Host',
|
||||
hours: 'Soat',
|
||||
importBoard_title: null,
|
||||
importBoard_title: 'Doskani import qilish',
|
||||
invalidCurrentPassword: 'Hozirgi parol xato',
|
||||
kanban: null,
|
||||
kanban: 'Kanban',
|
||||
labels: 'Yorliqlar',
|
||||
language: null,
|
||||
leaveBoard_title: 'Doskadan Chiqish',
|
||||
leaveProject_title: 'Loyihadan Chiqish',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
language: 'Til',
|
||||
leaveBoard_title: 'Doskadan chiqish',
|
||||
leaveProject_title: 'Loyihadan chiqish',
|
||||
limitCardTypesToDefaultOne: 'Karta turlarini standart turiga cheklash',
|
||||
linkToCard: 'Kartaga havola',
|
||||
list: "Ro'yxat",
|
||||
listActions_title: "R'yxat Amallari",
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
listActions_title: "Ro'yxat amallari",
|
||||
lists: "Ro'yxatlar",
|
||||
makeProjectPrivate_title: 'Loyihani shaxsiy qilish',
|
||||
makeProjectShared_title: 'Loyihani umumiy qilish',
|
||||
managers: 'Boshqaruvchilar',
|
||||
memberActions_title: null,
|
||||
memberActions_title: "A'zo amallari",
|
||||
members: "A'zolar",
|
||||
minutes: 'Minut',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moveCard_title: "Kartani Ko'chirish",
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moreActions: "Ko'proq amallar",
|
||||
moreActions_title: "Ko'proq amallar",
|
||||
moveCard_title: "Kartani ko'chirish",
|
||||
moveList_title: "Ro'yxatni ko'chirish",
|
||||
myOwn_title: 'Mening',
|
||||
name: 'Ism',
|
||||
newEmail: 'Yangi e-mail',
|
||||
newPassword: 'Yangi parol',
|
||||
newUsername: 'Yangi foydalanuvchi nomi',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: 'Yangi versiya mavjud',
|
||||
newestFirst: 'Avval yangisi',
|
||||
noBoards: "Doskalar yo'q",
|
||||
noCardsFound: null,
|
||||
noCardsFound: 'Kartalar topilmadi.',
|
||||
noConnectionToServer: "Server bilan bog'lanish yo'q",
|
||||
noLists: "Ro'yxatlar yo'q",
|
||||
noProjects: "Loyihalar yo'q",
|
||||
noUnreadNotifications: "O'qilmagan bildirishnomalar yo'q.",
|
||||
notifications: 'Bildirishnomalar',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
openBoard_title: 'Doskani Ochish',
|
||||
oldestFirst: 'Avval eskisi',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate:
|
||||
'Ushbu loyihani shaxsiy qilish uchun faqat bitta boshqaruvchi qolishi kerak',
|
||||
openBoard_title: 'Doskani ochish',
|
||||
optional_inline: 'ixtiyoriy',
|
||||
organization: 'Tashkilot',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: 'Boshqalar',
|
||||
passwordIsSet: "Parol o'rnatilgan",
|
||||
phone: 'Telefon',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA 100 dan ortiq mashhur xizmatlarga bildirishnomalar yuborish uchun <1><0>Apprise</0></1> dan foydalanadi.',
|
||||
port: 'Port',
|
||||
preferences: 'Afzalliklar',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
"Tip: Buferdan ilova qo'shish uchun Ctrl-V (Mac da Cmd-V) ni bosing.",
|
||||
private: null,
|
||||
private: 'Shaxsiy',
|
||||
project: 'Loyiha',
|
||||
projectNotFound_title: 'Loyiha Topilmadi',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
removeManager_title: "Boshqaruvchini O'chirish",
|
||||
removeMember_title: "A'zoni O'chirish",
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
searchLabels: null,
|
||||
searchLists: null,
|
||||
searchMembers: null,
|
||||
searchProjects: null,
|
||||
searchUsers: null,
|
||||
projectNotFound_title: 'Loyiha topilmadi',
|
||||
projectOwner: 'Loyiha egasi',
|
||||
referenceDataAndKnowledgeStorage: "Ma'lumotnoma va bilim saqlash.",
|
||||
rejectUnauthorizedTlsCertificates: 'Ruxsatsiz TLS sertifikatlarini rad etish',
|
||||
removeManager_title: "Boshqaruvchini o'chirish",
|
||||
removeMember_title: "A'zoni o'chirish",
|
||||
role: 'Rol',
|
||||
searchCards: 'Kartalarni qidirish...',
|
||||
searchCustomFieldGroups: 'Maxsus maydon guruhlarini qidirish...',
|
||||
searchCustomFields: 'Maxsus maydonlarni qidirish...',
|
||||
searchLabels: 'Yorliqlarni qidirish...',
|
||||
searchLists: "Ro'yxatlarni qidirish...",
|
||||
searchMembers: "A'zolarni qidirish...",
|
||||
searchProjects: 'Loyihalarni qidirish...',
|
||||
searchUsers: 'Foydalanuvchilarni qidirish...',
|
||||
seconds: 'Sekund',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: 'Ijrochini tanlash',
|
||||
selectBoard: 'Doskani tanlash',
|
||||
selectList: "Ro'yxatni tanlash",
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectPermissions_title: null,
|
||||
selectListToRestoreThisCard: "Ushbu kartani tiklash uchun ro'yxatni tanlang",
|
||||
selectOrder_title: 'Tartibni tanlash',
|
||||
selectPermissions_title: 'Ruxsatlarni tanlash',
|
||||
selectProject: "Loyihani '",
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: 'Rolni tanlash',
|
||||
selectType_title: 'Turni tanlash',
|
||||
sequentialDisplayOfCards: "Kartalarning ketma-ket ko'rsatilishi.",
|
||||
settings: 'Sozlamalar',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: 'Umumiy',
|
||||
sharedWithMe_title: 'Men bilan umumiy',
|
||||
showOnFrontOfCard: "Karta old tomonida ko'rsatish",
|
||||
smtp: 'SMTP',
|
||||
sortList_title: "Ro'yxatni saralash",
|
||||
stopwatch: 'Taymer',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: 'Hikoya',
|
||||
subscribeToCardWhenCommenting: "Izoh qoldirganida kartaga obuna bo'lish",
|
||||
subscribeToMyOwnCardsByDefault: "Odatiy holda o'z kartalarimga obuna bo'ling",
|
||||
taskActions_title: 'Vazifa Amallari',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
thereIsNoPreviewAvailableForThisAttachment: null,
|
||||
taskActions_title: 'Vazifa amallari',
|
||||
taskAssignmentAndProjectCompletion: 'Vazifa tayinlash va loyihani yakunlash.',
|
||||
taskListActions_title: "Vazifalar ro'yxati amallari",
|
||||
taskList_title: "Vazifalar ro'yxati",
|
||||
team: 'Jamoa',
|
||||
terms: 'Shartlar',
|
||||
testLog_title: 'Test jurnali',
|
||||
thereIsNoPreviewAvailableForThisAttachment: "Ushbu ilova uchun oldindan ko'rish mavjud emas.",
|
||||
time: 'Vaqt',
|
||||
title: 'Sarlavha',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
userActions_title: 'Foydalanuvchi Amallari',
|
||||
userAddedCardToList: null,
|
||||
userAddedThisCardToList: "Ushbu kartani {{list}} ga<0>{{user}}</0> qo'shdi",
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
trash: 'Axlat',
|
||||
trashHasBeenSuccessfullyEmptied: "Axlat muvaffaqiyatli bo'shatildi.",
|
||||
turnOffRecentCardHighlighting: "So'nggi kartalarni ajratib ko'rsatishni o'chirish",
|
||||
typeNameToConfirm: 'Tasdiqlash uchun nomni kiriting.',
|
||||
typeTitleToConfirm: 'Tasdiqlash uchun sarlavhani kiriting.',
|
||||
unsavedChanges: "Saqlanmagan o'zgarishlar",
|
||||
uploadFailedFileIsTooBig: 'Yuklash muvaffaqiyatsiz: fayl juda katta.',
|
||||
uploadFailedNotEnoughStorageSpace: 'Yuklash muvaffaqiyatsiz: saqlash joyi yetarli emas.',
|
||||
uploadedImages: 'Yuklangan rasmlar',
|
||||
url: 'URL',
|
||||
useSecureConnection: 'Xavfsiz ulanishdan foydalanish',
|
||||
userActions_title: 'Foydalanuvchi amallari',
|
||||
userAddedCardToList: "<0>{{user}}</0> <2>{{card}}</2> kartani {{list}} ga qo'shdi",
|
||||
userAddedThisCardToList: "<0>{{user}}</0> ushbu kartani {{list}} ga qo'shdi",
|
||||
userAddedUserToCard: "<0>{{actorUser}}</0> {{addedUser}} ni <4>{{card}}</4> ga qo'shdi",
|
||||
userAddedUserToThisCard: "<0>{{actorUser}}</0> {{addedUser}} ni ushbu kartaga qo'shdi",
|
||||
userAddedYouToCard: "<0>{{user}}</0> sizni <2>{{card}}</2> ga qo'shdi",
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> {{task}} vazifasini <4>{{card}}</4> da yakunladi',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> {{task}} vazifasini ushbu kartada yakunladi',
|
||||
userJoinedCard: "<0>{{user}}</0> <2>{{card}}</2> ga qo'shildi",
|
||||
userJoinedThisCard: "<0>{{user}}</0> ushbu kartaga qo'shildi",
|
||||
userLeftCard: '<0>{{user}}</0> <2>{{card}}</2> ni tark etdi',
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> <2>{{card}}</2> ga yangi izoh qoldirdi «{{comment}}»',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userLeftThisCard: '<0>{{user}}</0> ushbu kartani tark etdi',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> {{task}} vazifasini <4>{{card}}</4> da tugallanmagan deb belgiladi',
|
||||
userMarkedTaskIncompleteOnThisCard:
|
||||
'<0>{{user}}</0> {{task}} vazifasini ushbu kartada tugallanmagan deb belgiladi',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> sizni <2>{{card}}</2> dagi «{{comment}}» izohda eslatdi',
|
||||
userMovedCardFromListToList:
|
||||
"<0>{{user}}</0> <2>{{card}}</2> ni {{fromList}} dan {{toList}} ga ko'chirdi",
|
||||
userMovedThisCardFromListToList:
|
||||
"<0>{{user}}</0> ushbu kartani {{fromList}} dan {{toList}} ga ko'chirdi",
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard:
|
||||
'<0>{{actorUser}}</0> {{removedUser}} ni <4>{{card}}</4> dan olib tashladi',
|
||||
userRemovedUserFromThisCard:
|
||||
'<0>{{actorUser}}</0> {{removedUser}} ni ushbu kartadan olib tashladi',
|
||||
username: 'Foydalanuvchi nomi',
|
||||
users: 'Foydalanuvchilar',
|
||||
viewer: null,
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewer: "Ko'ruvchi",
|
||||
viewers: "Ko'ruvchilar",
|
||||
visualTaskManagementWithLists: "Ro'yxatlar bilan vizual vazifa boshqaruvi.",
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: 'Asosiy guruhsiz',
|
||||
writeComment: 'Izoh yozish...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: 'Foydalanuvchini faollashtirish',
|
||||
activateUser_title: 'Foydalanuvchini faollashtirish',
|
||||
addAnotherCard: "Yana karta qo'shish",
|
||||
addAnotherList: "Yana ro'yxat qo'shish",
|
||||
addAnotherTask: "Yana vazifa qo'shish",
|
||||
addCard: "Karta qo'shish",
|
||||
addCard_title: "Karta Qo'shish",
|
||||
addCard_title: "Karta qo'shish",
|
||||
addComment: "Izoh qo'shish",
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: "Maxsus maydon qo'shish",
|
||||
addCustomFieldGroup: "Maxsus maydon guruhi qo'shish",
|
||||
addList: "Ro'yxat qo'shish",
|
||||
addMember: null,
|
||||
addMember: "A'zo qo'shish",
|
||||
addMoreDetailedDescription: "Batafsil izoh qo'shish",
|
||||
addTask: "Vazifa qo'shish",
|
||||
addTaskList: null,
|
||||
addTaskList: "Vazifalar ro'yxatini qo'shish",
|
||||
addToCard: "Kartaga qo'shish",
|
||||
addUser: "Foydalanuvchi qo'shish",
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: "Webhook qo'shish",
|
||||
archive: 'Arxivlash',
|
||||
archiveCard: 'Kartani arxivlash',
|
||||
archiveCard_title: 'Kartani arxivlash',
|
||||
archiveCards: 'Kartalarni arxivlash',
|
||||
archiveCards_title: 'Kartalarni arxivlash',
|
||||
assignAsOwner: 'Egasi sifatida tayinlash',
|
||||
cancel: 'Bekor qilish',
|
||||
createBoard: 'Doska yaratish',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: 'Maxsus maydon guruhi yaratish',
|
||||
createFile: 'Fayl yaratish',
|
||||
createLabel: 'Yorliq yaratish',
|
||||
createNewLabel: 'Yangi yorliq yaratish',
|
||||
createProject: 'Loyiha yaratish',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: 'Foydalanuvchini faolsizlantirish',
|
||||
deactivateUser_title: 'Foydalanuvchini faolsizlantirish',
|
||||
delete: "O'chirish",
|
||||
deleteAttachment: "Ilovani o'chirish",
|
||||
deleteAvatar: "Avatarni o'chirish",
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: "Orqa fon rasmini o'chirish",
|
||||
deleteBoard: "Doskani o'chirish",
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: "Doskani o'chirish",
|
||||
deleteCard: "Kartani o'chirish",
|
||||
deleteCardForever: null,
|
||||
deleteCard_title: "Kartani O'chirish",
|
||||
deleteCardForever: "Kartani butunlay o'chirish",
|
||||
deleteCard_title: "Kartani o'chirish",
|
||||
deleteComment: "Izohni o'chirish",
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: "Maxsus maydonni o'chirish",
|
||||
deleteCustomFieldGroup: "Maxsus maydon guruhini o'chirish",
|
||||
deleteForever_title: "Butunlay o'chirish",
|
||||
deleteGroup: "Guruhni o'chirish",
|
||||
deleteLabel: "Yorliqni o'chirish",
|
||||
deleteList: "Ro'yxatni o'chirish",
|
||||
deleteList_title: "Ro'yxatni O'chirish",
|
||||
deleteNotificationService: null,
|
||||
deleteList_title: "Ro'yxatni o'chirish",
|
||||
deleteNotificationService: "Bildirishnoma xizmatini o'chirish",
|
||||
deleteProject: "Loyihani o'chirish",
|
||||
deleteProject_title: "Loyihani O'chirish",
|
||||
deleteProject_title: "Loyihani o'chirish",
|
||||
deleteTask: "Vazifani o'chirish",
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: "Vazifalar ro'yxatini o'chirish",
|
||||
deleteTask_title: "Vazifani O'chirish",
|
||||
deleteUser: "Foydalanuvchini o'chirish",
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: "Foydalanuvchini o'chirish",
|
||||
deleteWebhook: "Webhookni o'chirish",
|
||||
dismissAll: 'Barchasini rad etish',
|
||||
download: 'Yuklab olish',
|
||||
duplicateCard_title: 'Kartani nusxalash',
|
||||
edit: 'Tahrirlash',
|
||||
editColor_title: null,
|
||||
editDescription_title: 'Izohni Tahrirlash',
|
||||
editDueDate_title: 'Muddatni Tahrirlash',
|
||||
editEmail_title: 'E-mailni Tahrirlash',
|
||||
editGroup: null,
|
||||
editInformation_title: null,
|
||||
editPassword_title: 'Parolni Tahrirlash',
|
||||
editPermissions: null,
|
||||
editRole_title: null,
|
||||
editStopwatch_title: 'Taymerni Tahrirlash',
|
||||
editTitle_title: 'Sarlavhani Tahrirlash',
|
||||
editType_title: null,
|
||||
editUsername_title: 'Foydalanuvchi nomini Tahrirlash',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
import: null,
|
||||
join: null,
|
||||
leave: null,
|
||||
editColor_title: 'Rangni tahrirlash',
|
||||
editDescription_title: 'Izohni tahrirlash',
|
||||
editDueDate_title: 'Muddatni tahrirlash',
|
||||
editEmail_title: 'E-mailni tahrirlash',
|
||||
editGroup: 'Guruhni tahrirlash',
|
||||
editInformation_title: "Ma'lumotni tahrirlash",
|
||||
editPassword_title: 'Parolni tahrirlash',
|
||||
editPermissions: 'Ruxsatlarni tahrirlash',
|
||||
editRole_title: 'Rolni tahrirlash',
|
||||
editStopwatch_title: 'Taymerni tahrirlash',
|
||||
editTitle_title: 'Sarlavhani tahrirlash',
|
||||
editType_title: 'Turni tahrirlash',
|
||||
editUsername_title: 'Foydalanuvchi nomini tahrirlash',
|
||||
emptyTrash: "Axlatni bo'shatish",
|
||||
emptyTrash_title: "Axlatni bo'shatish",
|
||||
import: 'Import qilish',
|
||||
join: "Qo'shilish",
|
||||
leave: 'Tark etish',
|
||||
leaveBoard: 'Doskadan chiqish',
|
||||
leaveProject: 'Loyidan chiqish',
|
||||
logOut_title: 'Chiqish',
|
||||
makeCover_title: 'Muqova Yasash',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeCover_title: 'Muqova yasash',
|
||||
makeProjectPrivate: 'Loyihani shaxsiy qilish',
|
||||
makeProjectPrivate_title: 'Loyihani shaxsiy qilish',
|
||||
makeProjectShared: 'Loyihani umumiy qilish',
|
||||
makeProjectShared_title: 'Loyihani umumiy qilish',
|
||||
move: "Ko'chirish",
|
||||
moveCard_title: "Kartani Ko'chirish",
|
||||
moveList_title: null,
|
||||
moveCard_title: "Kartani ko'chirish",
|
||||
moveList_title: "Ro'yxatni ko'chirish",
|
||||
remove: "O'chirish",
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: 'Ijrochini olib tashlash',
|
||||
removeColor: 'Rangni olib tashlash',
|
||||
removeCover_title: "Muqovani O'chirish",
|
||||
removeFromBoard: "Doskadan o'chirish",
|
||||
removeFromProject: "Loyihadan o'chirish",
|
||||
removeManager: "Boshqaruvchini o'chirish",
|
||||
removeMember: "A'zoni o'chirish",
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: "{{list}} ro'yxatiga qaytarish",
|
||||
returnToBoard: 'Doskaga qaytish',
|
||||
save: 'Saqlash',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: 'Test e-mail yuborish',
|
||||
showActive: "Faollarni ko'rsatish",
|
||||
showAllAttachments: "Barcha ilovalarni ko'rsatish ({{hidden}} yashirilgan)",
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: "Ushbu foydalanuvchi bilan kartalarni ko'rsatish",
|
||||
showDeactivated: "Faolsizlantirilganlarni ko'rsatish",
|
||||
showFewerAttachments: "Kamroq ilovalarni ko'rsatish",
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: "Kamroq ko'rsatish",
|
||||
showMore: "Ko'proq ko'rsatish",
|
||||
sortList_title: "Ro'yxatni saralash",
|
||||
start: 'Boshlash',
|
||||
stop: "To'xtatish",
|
||||
subscribe: "Obuna bo'lish",
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: 'Faol foydalanuvchilar chegarasiga yetildi',
|
||||
adminLoginRequiredToInitializeInstance:
|
||||
'Tizimni ishga tushirish uchun admin kirishi talab qilinadi',
|
||||
emailAlreadyInUse: 'E-mail allaqachon mavjud',
|
||||
emailOrUsername: 'E-mail yoki foydalanuvchi nomi',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: "Men ushbu shartlarni o'qidim va roziman",
|
||||
invalidCredentials: "Noto'g'ri kirish ma'lumotlari",
|
||||
invalidEmailOrUsername: "Noto'g'ri e-mail yoki foydalanuvchi nomi",
|
||||
invalidPassword: "Noto'g'ri parol",
|
||||
logIn_title: null,
|
||||
logIn_title: 'Kirish',
|
||||
noInternetConnection: "Internet bog'lanishi yo'q",
|
||||
or: null,
|
||||
pageNotFound_title: 'Sahifa Topilmadi',
|
||||
or: 'Yoki',
|
||||
pageNotFound_title: 'Sahifa topilmadi',
|
||||
password: 'Parol',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: 'PLANKA tomonidan quvvatlanadi',
|
||||
serverConnectionFailed: "Serverga bog'lanish xatosi",
|
||||
unknownError: "Noma'lum xatolik, qaytadan urinib ko'ring",
|
||||
useSingleSignOn: null,
|
||||
useSingleSignOn: 'Yagona kirish tizimidan foydalaning',
|
||||
usernameAlreadyInUse: 'Foydalanuvchi nomi allaqachon mavjud',
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: 'Bekor qilish va yopish',
|
||||
continue: 'Davom etish',
|
||||
logIn: 'Kirish',
|
||||
logInWithSso: null,
|
||||
logInWithSso: 'SSO orqali kirish',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
165
client/src/locales/uz-UZ/markdown-editor.json
Normal file
165
client/src/locales/uz-UZ/markdown-editor.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"action-previews": {
|
||||
"text": "Bu sarlavhasiz matndir.\nHam sarlavha, ham matn\nqalin, qiyshiq, rangli,\nchizilgan va tagiga chizilgan holda ajratilishi mumkin.",
|
||||
"text-with-head": "Bu sarlavhali matndir.\nHam sarlavha, ham matn\nqalin, qiyshiq, rangli,\nchizilgan va tagiga chizilgan holda ajratilishi mumkin.",
|
||||
"heading": "Sarlavha"
|
||||
},
|
||||
"bundle": {
|
||||
"error-title": "Markdown muharririda xato",
|
||||
"settings_wysiwyg": "Vizual muharrir (wysiwyg)",
|
||||
"settings_markup": "Markdown belgilash",
|
||||
"markup_placeholder": "Markdown belgilashni kiriting..."
|
||||
},
|
||||
"codeblock": {
|
||||
"remove": "O'chirish",
|
||||
"empty_option": "Hech qanday mos kelish topilmadi"
|
||||
},
|
||||
"common": {
|
||||
"delete": "O'chirish",
|
||||
"edit": "Tahrirlash",
|
||||
"toolbar_action_disabled": "Mos kelmaydigan belgilash elementi"
|
||||
},
|
||||
"forms": {
|
||||
"common_action_cancel": "Bekor qilish",
|
||||
"common_action_submit": "Yuborish",
|
||||
"common_action_upload": "Tanlash",
|
||||
"common_tab_attach": "Qurilmadan qo'shish",
|
||||
"common_tab_link": "Havola orqali qo'shish",
|
||||
"common_link": "Havola",
|
||||
"common_sizes": "O'lcham, px",
|
||||
"image_name": "Sarlavha",
|
||||
"image_link_href": "Rasm havolasi",
|
||||
"image_link_href_help": "Rasm havolasi olib boradigan manzil.",
|
||||
"image_alt": "Alt matn",
|
||||
"image_alt_help": "Agar rasm yuklanmasa, alt matn ko'rsatiladi.",
|
||||
"image_upload_help": "1 MB dan katta bo'lmagan JPEG, GIF yoki PNG rasm.",
|
||||
"image_upload_failed": "Rasmni qo'shib bo'lmadi",
|
||||
"image_size_width": "Kenglik",
|
||||
"image_size_height": "Balandlik",
|
||||
"link_url_help": "Havola olib boradigan manzil.",
|
||||
"link_text": "Havola matni",
|
||||
"link_text_help": "Havola sifatida ko'rsatiladigan matn.",
|
||||
"link_open_help": "Havolani yangi varaqda ochish"
|
||||
},
|
||||
"md-hints": {
|
||||
"header_title": "Sarlavha",
|
||||
"header_hint": "# Sizning matningiz",
|
||||
"italic_title": "Qiyshiq",
|
||||
"italic_hint": "_Sizning matningiz_",
|
||||
"bold_title": "Qalin",
|
||||
"bold_hint": "**Sizning matningiz**",
|
||||
"strikethrough_title": "Chizilgan",
|
||||
"strikethrough_hint": "~~Sizning matningiz~~",
|
||||
"blockquote_title": "Blok iqtibos",
|
||||
"blockquote_hint": "> Sizning matningiz",
|
||||
"code_title": "Kod",
|
||||
"code_hint": "```Sizning matningiz```",
|
||||
"link_title": "Havola",
|
||||
"link_hint": "[Sizning matningiz](url)",
|
||||
"image_title": "Rasm",
|
||||
"image_hint": "",
|
||||
"list_title": "Ro'yxat elementi",
|
||||
"list_hint": "- Sizning matningiz",
|
||||
"numbered-list_title": "Raqamlangan ro'yxat",
|
||||
"numbered-list_hint": "1. Sizning matningiz",
|
||||
"documentation": "Hujjatlar",
|
||||
"documentation_link": "https://diplodoc.com/docs/en/syntax/"
|
||||
},
|
||||
"menubar": {
|
||||
"bold": "Qalin",
|
||||
"code": "Kod",
|
||||
"code_inline": "Ichki kod",
|
||||
"codeblock": "Kod bloki",
|
||||
"colorify": "Matn rangi",
|
||||
"colorify__color_blue": "Ko'k",
|
||||
"colorify__color_default": "Standart",
|
||||
"colorify__color_gray": "Kulrang",
|
||||
"colorify__color_green": "Yashil",
|
||||
"colorify__color_orange": "To'q sariq",
|
||||
"colorify__color_red": "Qizil",
|
||||
"colorify__color_violet": "Binafsha",
|
||||
"colorify__color_yellow": "Sariq",
|
||||
"colorify__group_text": "Matn",
|
||||
"cut": "Kesish",
|
||||
"emoji": "Emoji",
|
||||
"emoji__hint": "Emojilarni WYSIWYG da yoki belgilash bilan qo'lda qo'shish mumkin",
|
||||
"heading": "Sarlavha",
|
||||
"heading1": "Sarlavha 1",
|
||||
"heading2": "Sarlavha 2",
|
||||
"heading3": "Sarlavha 3",
|
||||
"heading4": "Sarlavha 4",
|
||||
"heading5": "Sarlavha 5",
|
||||
"heading6": "Sarlavha 6",
|
||||
"hrule": "Ajratuvchi",
|
||||
"image": "Rasm",
|
||||
"italic": "Qiyshiq",
|
||||
"link": "Havola",
|
||||
"list": "Ro'yxat",
|
||||
"list__action_lift": "Elementni ko'tarish",
|
||||
"list__action_sink": "Elementni tushirish",
|
||||
"list_action_disabled": "Ro'yxat mantiqiga zid",
|
||||
"mark": "Belgilangan",
|
||||
"mono": "Monospace",
|
||||
"more_action": "Ko'proq amal",
|
||||
"note": "Eslatma",
|
||||
"olist": "Tartiblangan ro'yxat",
|
||||
"quote": "Iqtibos",
|
||||
"redo": "Qaytarish",
|
||||
"strike": "Chizilgan",
|
||||
"table": "Jadval",
|
||||
"text": "Matn",
|
||||
"ulist": "Nuqtali ro'yxat",
|
||||
"underline": "Tagiga chizilgan",
|
||||
"undo": "Bekor qilish"
|
||||
},
|
||||
"placeholder": {
|
||||
"doc_empty": "Slash buyruqlarini ishlatish uchun / yozing...",
|
||||
"checkbox": "Vazifa tavsifini kiriting...",
|
||||
"deflist_term": "Atama",
|
||||
"deflist_desc": "Ta'rif tavsifi",
|
||||
"heading": "Sarlavha",
|
||||
"cut_title": "Sarlavha",
|
||||
"cut_content": "Bosishda ko'rsatiladigan kontent",
|
||||
"note_title": "Sarlavha",
|
||||
"note_content": "Eslatma kontenti",
|
||||
"table_cell": "Katak kontenti",
|
||||
"select_filter": "Tillarni qidirish..."
|
||||
},
|
||||
"search": {
|
||||
"label_case-sensitive": "Katta-kichik harflarga sezgir",
|
||||
"label_whole-word": "To'liq so'z",
|
||||
"title": "Kodda qidirish"
|
||||
},
|
||||
"suggest": {
|
||||
"empty-msg": "Topilmadi"
|
||||
},
|
||||
"widgets": {
|
||||
"image": "Rasm qo'shish",
|
||||
"link": "Havola qo'shish"
|
||||
},
|
||||
"yfm-note": {
|
||||
"info": "Ma'lumot",
|
||||
"tip": "Maslahat",
|
||||
"warning": "Ogohlantirish",
|
||||
"alert": "Signal",
|
||||
"remove": "O'chirish"
|
||||
},
|
||||
"yfm-table": {
|
||||
"column.add.before": "Oldin ustun qo'shish",
|
||||
"column.add.after": "Keyin ustun qo'shish",
|
||||
"column.remove": "Ustunni o'chirish",
|
||||
"row.add.before": "Oldin qator qo'shish",
|
||||
"row.add.after": "Keyin qator qo'shish",
|
||||
"row.remove": "Qatorni o'chirish",
|
||||
"table.remove": "Jadvalni o'chirish",
|
||||
"table.menu.cell.align.left": "Katak kontentini chapga tekislash",
|
||||
"table.menu.cell.align.right": "Katak kontentini o'ngga tekislash",
|
||||
"table.menu.cell.align.center": "Katak kontentini markazga tekislash",
|
||||
"table.menu.row.add": "Keyin qator qo'shish",
|
||||
"table.menu.row.remove": "Qatorni o'chirish",
|
||||
"table.menu.column.add": "Keyin ustun qo'shish",
|
||||
"table.menu.column.remove": "Ustunni o'chirish",
|
||||
"table.menu.convert.yfm": "YFM jadvaliga aylantirish",
|
||||
"table.menu.table.remove": "Jadvalni o'chirish"
|
||||
}
|
||||
}
|
||||
@@ -56,7 +56,7 @@ export default {
|
||||
areYouSureYouWantToDeleteThisCustomField: '您确定要删除此自定义字段吗?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: '您确定要删除此自定义字段组吗?',
|
||||
areYouSureYouWantToDeleteThisLabel: '确认删除此标签吗?',
|
||||
areYouSureYouWantToDeleteThisList: '您确定要删除此列表吗?所有卡片将被移至回收站',
|
||||
areYouSureYouWantToDeleteThisList: '您确定要删除此列表吗?所有卡片将被移至回收站。',
|
||||
areYouSureYouWantToDeleteThisNotificationService: '您确定要删除此通知服务吗?',
|
||||
areYouSureYouWantToDeleteThisProject: '确认删除此项目吗?',
|
||||
areYouSureYouWantToDeleteThisTask: '确认删除此任务吗?',
|
||||
@@ -66,7 +66,7 @@ export default {
|
||||
areYouSureYouWantToEmptyTrash: '您确定要清空回收站吗?',
|
||||
areYouSureYouWantToLeaveBoard: '确认离开此面板吗?',
|
||||
areYouSureYouWantToLeaveProject: '确认离开此项目吗?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate: '您确定要将此项目设为私有吗?',
|
||||
areYouSureYouWantToMakeThisProjectShared: '您确定要将此项目设为共享吗?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject: '确认从本项目删除该管理员吗?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard: '确认本面板删除该成员吗?',
|
||||
@@ -86,29 +86,29 @@ export default {
|
||||
byCreationTime: '按创建时间',
|
||||
byDefault: '默认',
|
||||
byDueDate: '按截止日期',
|
||||
canBeInvitedToWorkInBoards: '可被邀请在面板中工作',
|
||||
canBeInvitedToWorkInBoards: '可被邀请在面板中工作。',
|
||||
canComment: '可以评论',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: '可创建自己的项目并被邀请参与其他项目',
|
||||
canEditBoardLayoutAndAssignMembersToCards: '可编辑面板布局并分配成员到卡片',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: '可管理系统设置并担任项目所有者',
|
||||
canOnlyViewBoard: '仅可查看面板',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: '可创建自己的项目并被邀请参与其他项目。',
|
||||
canEditBoardLayoutAndAssignMembersToCards: '可编辑面板布局并分配成员到卡片。',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: '可管理系统设置并担任项目所有者。',
|
||||
canOnlyViewBoard: '仅可查看面板。',
|
||||
cardActions_title: '卡片操作',
|
||||
cardNotFound_title: '卡片不存在',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: '此列表中的卡片对所有面板成员可见',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: '此列表中的卡片已完成并准备归档',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: '此列表中的卡片已准备就绪可开始工作',
|
||||
clickHereOrRefreshPageToUpdate: '<0>点击此处</0>或刷新页面更新',
|
||||
clientHostnameInEhlo: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: '此列表中的卡片对所有面板成员可见。',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: '此列表中的卡片已完成并准备归档。',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: '此列表中的卡片已准备就绪可开始工作。',
|
||||
clickHereOrRefreshPageToUpdate: '<0>点击此处</0>或刷新页面更新。',
|
||||
clientHostnameInEhlo: 'EHLO中的客户端主机名',
|
||||
closed: '已关闭',
|
||||
color: '颜色',
|
||||
comments: '评论',
|
||||
contentExceedsLimit: '内容超过{{limit}}限制',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: '此附件内容过大无法显示',
|
||||
copy_inline: '复制',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: '此附件内容过大无法显示。',
|
||||
copy_inline: '副本',
|
||||
createBoard_title: '创建面板',
|
||||
createCustomFieldGroup_title: '创建自定义字段组',
|
||||
createLabel_title: '创建标签',
|
||||
createNewOneOrSelectExistingOne: '创建一个新的或者选择一个已创建的',
|
||||
createNewOneOrSelectExistingOne: '创建一个新的或者选择<br />一个已创建的。',
|
||||
createProject_title: '创建项目',
|
||||
createTextFile_title: '创建文本文件',
|
||||
creator: '创建者',
|
||||
@@ -121,7 +121,7 @@ export default {
|
||||
date: '日期',
|
||||
deactivateUser_title: '停用用户',
|
||||
defaultCardType_title: '默认卡片类型',
|
||||
defaultFrom: null,
|
||||
defaultFrom: '默认"发件人"',
|
||||
defaultView_title: '默认视图',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: '删除所有面板后方可删除此项目',
|
||||
deleteAttachment_title: '删除附件',
|
||||
@@ -142,11 +142,10 @@ export default {
|
||||
deleteWebhook_title: '删除Webhook',
|
||||
deletedUser_title: '已删除用户',
|
||||
description: '描述',
|
||||
detectAutomatically: '自动检测',
|
||||
display: '显示',
|
||||
dropFileToUpload: '拖放文件以上传',
|
||||
dueDate_title: '截止日期',
|
||||
dynamicAndUnevenlySpacedLayout: '动态非均匀间隔布局',
|
||||
dynamicAndUnevenlySpacedLayout: '动态非均匀间隔布局。',
|
||||
editAttachment_title: '编辑附件',
|
||||
editAvatar_title: '编辑头像',
|
||||
editColor_title: '编辑颜色',
|
||||
@@ -173,19 +172,19 @@ export default {
|
||||
enterTaskDescription: '输入任务描述...',
|
||||
events: '事件',
|
||||
excludedEvents: '排除事件',
|
||||
expandTaskListsByDefault: null,
|
||||
expandTaskListsByDefault: '默认展开任务列表',
|
||||
filterByLabels_title: '通过标签筛选',
|
||||
filterByMembers_title: '通过成员筛选',
|
||||
forPersonalProjects: '用于个人项目',
|
||||
forTeamBasedProjects: '用于团队项目',
|
||||
forPersonalProjects: '用于个人项目。',
|
||||
forTeamBasedProjects: '用于团队项目。',
|
||||
fromComputer_title: '来自计算机',
|
||||
fromTrello: '来自 Trello',
|
||||
general: '全体',
|
||||
gradients: '渐变',
|
||||
grid: '网格',
|
||||
hideCompletedTasks: null,
|
||||
hideCompletedTasks: '隐藏已完成任务',
|
||||
hideFromProjectListAndFavorites: '从项目列表和收藏中隐藏',
|
||||
host: null,
|
||||
host: '主机',
|
||||
hours: '小时',
|
||||
importBoard_title: '导入面板',
|
||||
invalidCurrentPassword: '当前密码错误',
|
||||
@@ -195,20 +194,20 @@ export default {
|
||||
leaveBoard_title: '离开面板',
|
||||
leaveProject_title: '离开项目',
|
||||
limitCardTypesToDefaultOne: '限制卡片类型为默认类型',
|
||||
linkToCard: null,
|
||||
linkToCard: '链接到卡片',
|
||||
list: '列表',
|
||||
listActions_title: '列表操作',
|
||||
lists: '列表',
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate_title: '将项目设为私有',
|
||||
makeProjectShared_title: '将项目设为共享',
|
||||
managers: '管理员',
|
||||
memberActions_title: '成员操作',
|
||||
members: '成员',
|
||||
minutes: '分钟',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: '更多操作',
|
||||
moreActions_title: '更多操作',
|
||||
moveCard_title: '移动卡片',
|
||||
moveList_title: null,
|
||||
moveList_title: '移动列表',
|
||||
myOwn_title: '我的',
|
||||
name: '姓名',
|
||||
newEmail: '新邮箱',
|
||||
@@ -217,32 +216,32 @@ export default {
|
||||
newVersionAvailable: '有新版本可用',
|
||||
newestFirst: '最新优先',
|
||||
noBoards: '没有面板',
|
||||
noCardsFound: null,
|
||||
noCardsFound: '未找到卡片。',
|
||||
noConnectionToServer: '未连接服务器',
|
||||
noLists: '没有列表',
|
||||
noProjects: '没有项目',
|
||||
noUnreadNotifications: '没有未读通知',
|
||||
noUnreadNotifications: '没有未读通知。',
|
||||
notifications: '通知',
|
||||
oldestFirst: '最旧优先',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: '只能保留一个管理员来将此项目设为私有',
|
||||
openBoard_title: '打开面板',
|
||||
optional_inline: '可选的',
|
||||
organization: '组织机构',
|
||||
others: '其他',
|
||||
passwordIsSet: null,
|
||||
passwordIsSet: '密码已设置',
|
||||
phone: '电话',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA使用<1><0>Apprise</0></1>向100多个流行服务发送通知',
|
||||
port: null,
|
||||
'PLANKA使用<1><0>Apprise</0></1>向100多个流行服务发送通知。',
|
||||
port: '端口',
|
||||
preferences: '偏好',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'提示: 按下 Ctrl-V (Mac: Cmd-V) 从剪切板添加附件',
|
||||
'提示: 按下 Ctrl-V (Mac: Cmd-V) 从剪切板添加附件。',
|
||||
private: '私有',
|
||||
project: '项目',
|
||||
projectNotFound_title: '项目未找到',
|
||||
projectOwner: '项目所有者',
|
||||
referenceDataAndKnowledgeStorage: '参考数据和知识存储',
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
referenceDataAndKnowledgeStorage: '参考数据和知识存储。',
|
||||
rejectUnauthorizedTlsCertificates: '拒绝未授权的TLS证书',
|
||||
removeManager_title: '删除管理员',
|
||||
removeMember_title: '删除成员',
|
||||
role: '角色',
|
||||
@@ -264,38 +263,38 @@ export default {
|
||||
selectProject: '选择项目',
|
||||
selectRole_title: '选择角色',
|
||||
selectType_title: '选择类型',
|
||||
sequentialDisplayOfCards: '卡片顺序显示',
|
||||
sequentialDisplayOfCards: '卡片顺序显示。',
|
||||
settings: '设置',
|
||||
shared: '共享',
|
||||
sharedWithMe_title: '与我共享',
|
||||
showOnFrontOfCard: '在卡片正面显示',
|
||||
smtp: null,
|
||||
smtp: 'SMTP',
|
||||
sortList_title: '排序列表',
|
||||
stopwatch: '计时器',
|
||||
story: '故事',
|
||||
subscribeToCardWhenCommenting: '评论时自动关注卡片',
|
||||
subscribeToMyOwnCardsByDefault: '默认关注自己创建的卡片',
|
||||
taskActions_title: '任务操作',
|
||||
taskAssignmentAndProjectCompletion: '任务分配和项目完成',
|
||||
taskAssignmentAndProjectCompletion: '任务分配和项目完成。',
|
||||
taskListActions_title: '任务列表操作',
|
||||
taskList_title: '任务列表',
|
||||
team: '团队',
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
thereIsNoPreviewAvailableForThisAttachment: '此附件无法预览',
|
||||
terms: '条款',
|
||||
testLog_title: '测试日志',
|
||||
thereIsNoPreviewAvailableForThisAttachment: '此附件无法预览。',
|
||||
time: '时间',
|
||||
title: '标题',
|
||||
trash: '回收站',
|
||||
trashHasBeenSuccessfullyEmptied: '回收站已成功清空',
|
||||
trashHasBeenSuccessfullyEmptied: '回收站已成功清空。',
|
||||
turnOffRecentCardHighlighting: '关闭最近卡片高亮',
|
||||
typeNameToConfirm: '输入名称以确认',
|
||||
typeTitleToConfirm: '输入标题以确认',
|
||||
typeNameToConfirm: '输入名称以确认。',
|
||||
typeTitleToConfirm: '输入标题以确认。',
|
||||
unsavedChanges: '未保存的更改',
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadFailedFileIsTooBig: '上传失败:文件太大。',
|
||||
uploadFailedNotEnoughStorageSpace: '上传失败:存储空间不足。',
|
||||
uploadedImages: '已上传图片',
|
||||
url: '网址',
|
||||
useSecureConnection: null,
|
||||
useSecureConnection: '使用安全连接',
|
||||
userActions_title: '用户操作',
|
||||
userAddedCardToList: '<0>{{user}}</0> 将 <2>{{card}}</2> 添加到 {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> 向列表 {{list}} 添加了该卡片',
|
||||
@@ -323,7 +322,7 @@ export default {
|
||||
users: '用户',
|
||||
viewer: '视图',
|
||||
viewers: '查看者',
|
||||
visualTaskManagementWithLists: '使用列表进行可视化任务管理',
|
||||
visualTaskManagementWithLists: '使用列表进行可视化任务管理。',
|
||||
webhooks: 'Webhooks',
|
||||
withoutBaseGroup: '无基础组',
|
||||
writeComment: '编写评论...',
|
||||
@@ -390,7 +389,7 @@ export default {
|
||||
deleteUser_title: '删除用户',
|
||||
deleteWebhook: '删除Webhook',
|
||||
dismissAll: '全部忽略',
|
||||
download: null,
|
||||
download: '下载',
|
||||
duplicateCard_title: '复制卡片',
|
||||
edit: '编辑',
|
||||
editColor_title: '编辑颜色',
|
||||
@@ -415,13 +414,13 @@ export default {
|
||||
leaveProject: '离开项目',
|
||||
logOut_title: '退出',
|
||||
makeCover_title: '设置标题',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectPrivate: '将项目设为私有',
|
||||
makeProjectPrivate_title: '将项目设为私有',
|
||||
makeProjectShared: '将项目设为共享',
|
||||
makeProjectShared_title: '将项目设为共享',
|
||||
move: '移动',
|
||||
moveCard_title: '移动卡片',
|
||||
moveList_title: null,
|
||||
moveList_title: '移动列表',
|
||||
remove: '删除',
|
||||
removeAssignee: '移除负责人',
|
||||
removeColor: '移除颜色',
|
||||
@@ -433,7 +432,7 @@ export default {
|
||||
restoreToList: '恢复到 {{list}}',
|
||||
returnToBoard: '返回面板',
|
||||
save: '保存',
|
||||
sendTestEmail: null,
|
||||
sendTestEmail: '发送测试邮件',
|
||||
showActive: '显示活跃',
|
||||
showAllAttachments: '显示所有的附件 ({{hidden}} 隐藏)',
|
||||
showCardsWithThisUser: '显示包含此用户的卡片',
|
||||
|
||||
@@ -2,10 +2,10 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: '活跃用户数已达上限',
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
adminLoginRequiredToInitializeInstance: '需要管理员登录以初始化实例',
|
||||
emailAlreadyInUse: '邮箱已使用',
|
||||
emailOrUsername: '邮箱或用户名',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
iHaveReadAndAgreeToTheseTerms: '我已阅读并同意这些条款',
|
||||
invalidCredentials: '无效凭证',
|
||||
invalidEmailOrUsername: '无效的邮箱或用户名',
|
||||
invalidPassword: '密码错误',
|
||||
@@ -22,8 +22,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: '取消并关闭',
|
||||
continue: '继续',
|
||||
logIn: '登录',
|
||||
logInWithSso: '使用SSO登录',
|
||||
},
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import dateFns from 'date-fns/locale/zh-TW';
|
||||
import timeAgo from 'javascript-time-ago/locale/zh';
|
||||
|
||||
import markdownEditor from './markdown-editor.json';
|
||||
|
||||
export default {
|
||||
dateFns,
|
||||
timeAgo,
|
||||
markdownEditor,
|
||||
|
||||
format: {
|
||||
date: 'M/d/yyyy',
|
||||
@@ -18,425 +21,426 @@ export default {
|
||||
translation: {
|
||||
common: {
|
||||
aboutPlanka: '關於 PLANKA',
|
||||
accessToken: null,
|
||||
accessToken: '存取權杖',
|
||||
account: '帳號',
|
||||
actions: '操作',
|
||||
activateUser_title: null,
|
||||
active: null,
|
||||
activateUser_title: '啟用使用者',
|
||||
active: '啟用',
|
||||
addAttachment_title: '添加附件',
|
||||
addCustomFieldGroup_title: null,
|
||||
addCustomField_title: null,
|
||||
addCustomFieldGroup_title: '添加自定義欄位群組',
|
||||
addCustomField_title: '添加自定義欄位',
|
||||
addManager_title: '添加管理員',
|
||||
addMember_title: '添加成員',
|
||||
addTaskList_title: null,
|
||||
addTaskList_title: '添加任務列表',
|
||||
addUser_title: '添加使用者',
|
||||
admin: null,
|
||||
administration: null,
|
||||
admin: '管理員',
|
||||
administration: '管理',
|
||||
all: '全部',
|
||||
allChangesWillBeAutomaticallySavedAfterConnectionRestored: '所有修改會在重新連線後自動保存',
|
||||
alphabetically: null,
|
||||
alwaysDisplayCardCreator: null,
|
||||
archive: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards_title: null,
|
||||
areYouSureYouWantToActivateThisUser: null,
|
||||
areYouSureYouWantToArchiveCards: null,
|
||||
areYouSureYouWantToArchiveThisCard: null,
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: null,
|
||||
areYouSureYouWantToDeactivateThisUser: null,
|
||||
alphabetically: '按字母順序',
|
||||
alwaysDisplayCardCreator: '總是顯示卡片建立者',
|
||||
archive: '封存',
|
||||
archiveCard_title: '封存卡片',
|
||||
archiveCards_title: '封存卡片',
|
||||
areYouSureYouWantToActivateThisUser: '確認啟用此使用者嗎?',
|
||||
areYouSureYouWantToArchiveCards: '確認封存這些卡片嗎?',
|
||||
areYouSureYouWantToArchiveThisCard: '確認封存此卡片嗎?',
|
||||
areYouSureYouWantToAssignThisProjectManagerAsOwner: '確認將此專案管理員指派為擁有者嗎?',
|
||||
areYouSureYouWantToDeactivateThisUser: '確認停用此使用者嗎?',
|
||||
areYouSureYouWantToDeleteThisAttachment: '確認刪除此附件嗎?',
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: null,
|
||||
areYouSureYouWantToDeleteThisBackgroundImage: '確認刪除此背景圖片嗎?',
|
||||
areYouSureYouWantToDeleteThisBoard: '確認刪除此看板嗎?',
|
||||
areYouSureYouWantToDeleteThisCard: '確認刪除此卡片嗎?',
|
||||
areYouSureYouWantToDeleteThisCardForever: null,
|
||||
areYouSureYouWantToDeleteThisCardForever: '確認永久刪除此卡片嗎?',
|
||||
areYouSureYouWantToDeleteThisComment: '確認刪除此評論嗎?',
|
||||
areYouSureYouWantToDeleteThisCustomField: null,
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: null,
|
||||
areYouSureYouWantToDeleteThisCustomField: '確認刪除此自定義欄位嗎?',
|
||||
areYouSureYouWantToDeleteThisCustomFieldGroup: '確認刪除此自定義欄位群組嗎?',
|
||||
areYouSureYouWantToDeleteThisLabel: '確認刪除此標籤嗎?',
|
||||
areYouSureYouWantToDeleteThisList: '確認刪除此列表嗎?',
|
||||
areYouSureYouWantToDeleteThisNotificationService: null,
|
||||
areYouSureYouWantToDeleteThisList: '確認刪除此列表嗎?所有卡片將被移至垃圾桶。',
|
||||
areYouSureYouWantToDeleteThisNotificationService: '確認刪除此通知服務嗎?',
|
||||
areYouSureYouWantToDeleteThisProject: '確認刪除此專案嗎?',
|
||||
areYouSureYouWantToDeleteThisTask: '確認刪除此任務嗎?',
|
||||
areYouSureYouWantToDeleteThisTaskList: null,
|
||||
areYouSureYouWantToDeleteThisTaskList: '確認刪除此任務列表嗎?',
|
||||
areYouSureYouWantToDeleteThisUser: '確認刪除此使用者嗎?',
|
||||
areYouSureYouWantToDeleteThisWebhook: null,
|
||||
areYouSureYouWantToEmptyTrash: null,
|
||||
areYouSureYouWantToDeleteThisWebhook: '確認刪除此 Webhook 嗎?',
|
||||
areYouSureYouWantToEmptyTrash: '確認清空垃圾桶嗎?',
|
||||
areYouSureYouWantToLeaveBoard: '確認離開此看板嗎?',
|
||||
areYouSureYouWantToLeaveProject: '確認離開此專案嗎?',
|
||||
areYouSureYouWantToMakeThisProjectPrivate: null,
|
||||
areYouSureYouWantToMakeThisProjectShared: null,
|
||||
areYouSureYouWantToMakeThisProjectPrivate: '確認將此專案設為私人嗎?',
|
||||
areYouSureYouWantToMakeThisProjectShared: '確認將此專案設為共享嗎?',
|
||||
areYouSureYouWantToRemoveThisManagerFromProject: '確認從此專案中刪除該管理員嗎?',
|
||||
areYouSureYouWantToRemoveThisMemberFromBoard: '確認從此看板中刪除該成員嗎?',
|
||||
assignAsOwner_title: null,
|
||||
atLeastOneListMustBePresent: null,
|
||||
assignAsOwner_title: '指派為擁有者',
|
||||
atLeastOneListMustBePresent: '至少必須有一個列表',
|
||||
attachment: '附件',
|
||||
attachments: '附件',
|
||||
authentication: '驗證',
|
||||
background: '背景',
|
||||
baseCustomFields_title: null,
|
||||
baseGroup: null,
|
||||
baseCustomFields_title: '基礎自定義欄位',
|
||||
baseGroup: '基礎群組',
|
||||
board: '看板',
|
||||
boardActions_title: null,
|
||||
boardActions_title: '看板操作',
|
||||
boardNotFound_title: '看板不存在',
|
||||
boardSubscribed: null,
|
||||
boardUser: null,
|
||||
byCreationTime: null,
|
||||
byDefault: null,
|
||||
byDueDate: null,
|
||||
canBeInvitedToWorkInBoards: null,
|
||||
boardSubscribed: '已訂閱看板',
|
||||
boardUser: '看板使用者',
|
||||
byCreationTime: '按創建時間',
|
||||
byDefault: '預設',
|
||||
byDueDate: '按到期日',
|
||||
canBeInvitedToWorkInBoards: '可以被邀請在看板中工作。',
|
||||
canComment: '可以評論',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: null,
|
||||
canEditBoardLayoutAndAssignMembersToCards: null,
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: null,
|
||||
canOnlyViewBoard: '僅可查看看板',
|
||||
canCreateOwnProjectsAndBeInvitedToWorkInOthers: '可以創建自己的專案並被邀請參與其他專案。',
|
||||
canEditBoardLayoutAndAssignMembersToCards: '可以編輯看板佈局並將成員指派給卡片。',
|
||||
canManageSystemWideSettingsAndActAsProjectOwner: '可以管理系統設定並作為專案擁有者。',
|
||||
canOnlyViewBoard: '僅可查看看板。',
|
||||
cardActions_title: '卡片操作',
|
||||
cardNotFound_title: '卡片不存在',
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: null,
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: null,
|
||||
cardsOnThisListAreReadyToBeWorkedOn: null,
|
||||
clickHereOrRefreshPageToUpdate: null,
|
||||
clientHostnameInEhlo: null,
|
||||
closed: null,
|
||||
cardsOnThisListAreAvailableToAllBoardMembers: '此列表中的卡片對所有看板成員可見。',
|
||||
cardsOnThisListAreCompleteAndReadyToBeArchived: '此列表中的卡片已完成並準備封存。',
|
||||
cardsOnThisListAreReadyToBeWorkedOn: '此列表中的卡片準備開始工作。',
|
||||
clickHereOrRefreshPageToUpdate: '<0>點擊此處</0>或重新整理頁面以更新。',
|
||||
clientHostnameInEhlo: 'EHLO 中的客戶端主機名',
|
||||
closed: '已關閉',
|
||||
color: '顏色',
|
||||
comments: null,
|
||||
contentExceedsLimit: null,
|
||||
contentOfThisAttachmentIsTooBigToDisplay: null,
|
||||
copy_inline: null,
|
||||
comments: '評論',
|
||||
contentExceedsLimit: '內容超過{{limit}}限制',
|
||||
contentOfThisAttachmentIsTooBigToDisplay: '此附件的內容太大無法顯示。',
|
||||
copy_inline: '副本',
|
||||
createBoard_title: '創建看板',
|
||||
createCustomFieldGroup_title: null,
|
||||
createCustomFieldGroup_title: '創建自定義欄位群組',
|
||||
createLabel_title: '創建標籤',
|
||||
createNewOneOrSelectExistingOne: '創建一個新的或選擇一個已創建的',
|
||||
createNewOneOrSelectExistingOne: '創建一個新的或選擇<br />一個已創建的。',
|
||||
createProject_title: '創建專案',
|
||||
createTextFile_title: '創建文本文件',
|
||||
creator: null,
|
||||
creator: '建立者',
|
||||
currentPassword: '當前密碼',
|
||||
customFieldGroup_title: null,
|
||||
customFieldGroups_title: null,
|
||||
customField_title: null,
|
||||
customFields_title: null,
|
||||
customFieldGroup_title: '自定義欄位群組',
|
||||
customFieldGroups_title: '自定義欄位群組',
|
||||
customField_title: '自定義欄位',
|
||||
customFields_title: '自定義欄位',
|
||||
dangerZone_title: '危險區域',
|
||||
date: '日期',
|
||||
deactivateUser_title: null,
|
||||
defaultCardType_title: null,
|
||||
defaultFrom: null,
|
||||
defaultView_title: null,
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: null,
|
||||
deactivateUser_title: '停用使用者',
|
||||
defaultCardType_title: '預設卡片類型',
|
||||
defaultFrom: '預設發送者',
|
||||
defaultView_title: '預設檢視',
|
||||
deleteAllBoardsToBeAbleToDeleteThisProject: '刪除所有看板以便刪除此專案',
|
||||
deleteAttachment_title: '刪除附件',
|
||||
deleteBackgroundImage_title: null,
|
||||
deleteBackgroundImage_title: '刪除背景圖片',
|
||||
deleteBoard_title: '刪除看板',
|
||||
deleteCardForever_title: null,
|
||||
deleteCardForever_title: '永久刪除卡片',
|
||||
deleteCard_title: '刪除卡片',
|
||||
deleteComment_title: '刪除評論',
|
||||
deleteCustomFieldGroup_title: null,
|
||||
deleteCustomField_title: null,
|
||||
deleteCustomFieldGroup_title: '刪除自定義欄位群組',
|
||||
deleteCustomField_title: '刪除自定義欄位',
|
||||
deleteLabel_title: '刪除標籤',
|
||||
deleteList_title: '刪除列表',
|
||||
deleteNotificationService_title: null,
|
||||
deleteNotificationService_title: '刪除通知服務',
|
||||
deleteProject_title: '刪除專案',
|
||||
deleteTaskList_title: null,
|
||||
deleteTaskList_title: '刪除任務列表',
|
||||
deleteTask_title: '刪除任務',
|
||||
deleteUser_title: '刪除使用者',
|
||||
deleteWebhook_title: null,
|
||||
deletedUser_title: null,
|
||||
deleteWebhook_title: '刪除 Webhook',
|
||||
deletedUser_title: '已刪除的使用者',
|
||||
description: '描述',
|
||||
detectAutomatically: '自動偵測',
|
||||
display: null,
|
||||
display: '顯示',
|
||||
dropFileToUpload: '拖放文件以上傳',
|
||||
dueDate_title: '截止日期',
|
||||
dynamicAndUnevenlySpacedLayout: null,
|
||||
dynamicAndUnevenlySpacedLayout: '動態不均勻間距佈局。',
|
||||
editAttachment_title: '編輯附件',
|
||||
editAvatar_title: '編輯頭像',
|
||||
editColor_title: null,
|
||||
editCustomFieldGroup_title: null,
|
||||
editCustomField_title: null,
|
||||
editColor_title: '編輯顏色',
|
||||
editCustomFieldGroup_title: '編輯自定義欄位群組',
|
||||
editCustomField_title: '編輯自定義欄位',
|
||||
editDueDate_title: '編輯截止時間',
|
||||
editEmail_title: '編輯郵箱',
|
||||
editInformation_title: '編輯信息',
|
||||
editLabel_title: '編輯標籤',
|
||||
editPassword_title: '修改密碼',
|
||||
editPermissions_title: '修改權限',
|
||||
editRole_title: null,
|
||||
editRole_title: '編輯角色',
|
||||
editStopwatch_title: '修改計時',
|
||||
editType_title: null,
|
||||
editType_title: '編輯類型',
|
||||
editUsername_title: '修改使用者名稱',
|
||||
editor: '編輯器',
|
||||
editors: null,
|
||||
editors: '編輯者',
|
||||
email: '郵箱',
|
||||
emptyTrash_title: null,
|
||||
emptyTrash_title: '清空垃圾桶',
|
||||
enterCardTitle: '輸入卡片標題...',
|
||||
enterDescription: '輸入描述...',
|
||||
enterFilename: '輸入文件名',
|
||||
enterListTitle: '輸入列表標題...',
|
||||
enterTaskDescription: '輸入任務描述...',
|
||||
events: null,
|
||||
excludedEvents: null,
|
||||
expandTaskListsByDefault: null,
|
||||
events: '事件',
|
||||
excludedEvents: '排除的事件',
|
||||
expandTaskListsByDefault: '預設展開任務列表',
|
||||
filterByLabels_title: '通過標籤篩選',
|
||||
filterByMembers_title: '通過成員篩選',
|
||||
forPersonalProjects: null,
|
||||
forTeamBasedProjects: null,
|
||||
forPersonalProjects: '用於個人專案。',
|
||||
forTeamBasedProjects: '用於團隊專案。',
|
||||
fromComputer_title: '來自電腦',
|
||||
fromTrello: '來自 Trello',
|
||||
general: '通用',
|
||||
gradients: null,
|
||||
grid: null,
|
||||
hideCompletedTasks: null,
|
||||
hideFromProjectListAndFavorites: null,
|
||||
host: null,
|
||||
gradients: '漸層',
|
||||
grid: '網格',
|
||||
hideCompletedTasks: '隱藏已完成的任務',
|
||||
hideFromProjectListAndFavorites: '從專案列表和收藏夾中隱藏',
|
||||
host: '主機',
|
||||
hours: '小時',
|
||||
importBoard_title: '導入看板',
|
||||
invalidCurrentPassword: '當前密碼錯誤',
|
||||
kanban: null,
|
||||
kanban: '看板',
|
||||
labels: '標籤',
|
||||
language: '語言',
|
||||
leaveBoard_title: '離開看板',
|
||||
leaveProject_title: '離開專案',
|
||||
limitCardTypesToDefaultOne: null,
|
||||
linkToCard: null,
|
||||
limitCardTypesToDefaultOne: '將卡片類型限制為預設',
|
||||
linkToCard: '連結到卡片',
|
||||
list: '列表',
|
||||
listActions_title: '列表操作',
|
||||
lists: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared_title: null,
|
||||
lists: '列表',
|
||||
makeProjectPrivate_title: '將專案設為私人',
|
||||
makeProjectShared_title: '將專案設為共享',
|
||||
managers: '管理員',
|
||||
memberActions_title: null,
|
||||
memberActions_title: '成員操作',
|
||||
members: '成員',
|
||||
minutes: '分鐘',
|
||||
moreActions: null,
|
||||
moreActions_title: null,
|
||||
moreActions: '更多操作',
|
||||
moreActions_title: '更多操作',
|
||||
moveCard_title: '移動卡片',
|
||||
moveList_title: null,
|
||||
myOwn_title: null,
|
||||
moveList_title: '移動列表',
|
||||
myOwn_title: '我的',
|
||||
name: '姓名',
|
||||
newEmail: '新郵箱',
|
||||
newPassword: '新密碼',
|
||||
newUsername: '新使用者名稱',
|
||||
newVersionAvailable: null,
|
||||
newestFirst: null,
|
||||
newVersionAvailable: '有新版本可用',
|
||||
newestFirst: '最新優先',
|
||||
noBoards: '沒有看板',
|
||||
noCardsFound: null,
|
||||
noCardsFound: '未找到卡片。',
|
||||
noConnectionToServer: '未連接到伺服器',
|
||||
noLists: '沒有列表',
|
||||
noProjects: '沒有專案',
|
||||
noUnreadNotifications: '沒有未讀通知',
|
||||
noUnreadNotifications: '沒有未讀通知。',
|
||||
notifications: '通知',
|
||||
oldestFirst: null,
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: null,
|
||||
oldestFirst: '最舊優先',
|
||||
onlyOneManagerShouldRemainToMakeThisProjectPrivate: '要將此專案設為私人,只能保留一個管理員',
|
||||
openBoard_title: '打開看板',
|
||||
optional_inline: '可選的',
|
||||
organization: '組織機構',
|
||||
others: null,
|
||||
passwordIsSet: null,
|
||||
others: '其他',
|
||||
passwordIsSet: '密碼已設定',
|
||||
phone: '電話',
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices: null,
|
||||
port: null,
|
||||
plankaUsesAppriseToSendNotificationsToOver100PopularServices:
|
||||
'PLANKA 使用 <1><0>Apprise</0></1> 向超過 100 個熱門服務發送通知。',
|
||||
port: '連接埠',
|
||||
preferences: '偏好設定',
|
||||
pressPasteShortcutToAddAttachmentFromClipboard:
|
||||
'提示: 按下 Ctrl-V (Mac: Cmd-V) 從剪貼簿添加附件',
|
||||
private: null,
|
||||
'提示:按下 Ctrl-V (Mac 上為 Cmd-V) 從剪貼簿添加附件。',
|
||||
private: '私人',
|
||||
project: '專案',
|
||||
projectNotFound_title: '專案未找到',
|
||||
projectOwner: null,
|
||||
referenceDataAndKnowledgeStorage: null,
|
||||
rejectUnauthorizedTlsCertificates: null,
|
||||
projectOwner: '專案擁有者',
|
||||
referenceDataAndKnowledgeStorage: '參考資料和知識儲存。',
|
||||
rejectUnauthorizedTlsCertificates: '拒絕未授權的 TLS 憑證',
|
||||
removeManager_title: '刪除管理員',
|
||||
removeMember_title: '刪除成員',
|
||||
role: null,
|
||||
searchCards: null,
|
||||
searchCustomFieldGroups: null,
|
||||
searchCustomFields: null,
|
||||
role: '角色',
|
||||
searchCards: '搜尋卡片...',
|
||||
searchCustomFieldGroups: '搜尋自定義欄位群組...',
|
||||
searchCustomFields: '搜尋自定義欄位...',
|
||||
searchLabels: '搜尋標籤...',
|
||||
searchLists: null,
|
||||
searchLists: '搜尋列表...',
|
||||
searchMembers: '搜尋成員...',
|
||||
searchProjects: null,
|
||||
searchProjects: '搜尋專案...',
|
||||
searchUsers: '搜尋使用者...',
|
||||
seconds: '秒',
|
||||
selectAssignee_title: null,
|
||||
selectAssignee_title: '選擇受派者',
|
||||
selectBoard: '選擇看板',
|
||||
selectList: '選擇列表',
|
||||
selectListToRestoreThisCard: null,
|
||||
selectOrder_title: null,
|
||||
selectListToRestoreThisCard: '選擇列表以恢復此卡片',
|
||||
selectOrder_title: '選擇順序',
|
||||
selectPermissions_title: '選擇權限',
|
||||
selectProject: '選擇專案',
|
||||
selectRole_title: null,
|
||||
selectType_title: null,
|
||||
sequentialDisplayOfCards: null,
|
||||
selectRole_title: '選擇角色',
|
||||
selectType_title: '選擇類型',
|
||||
sequentialDisplayOfCards: '卡片順序顯示。',
|
||||
settings: '設置',
|
||||
shared: null,
|
||||
sharedWithMe_title: null,
|
||||
showOnFrontOfCard: null,
|
||||
smtp: null,
|
||||
sortList_title: null,
|
||||
shared: '共享',
|
||||
sharedWithMe_title: '與我共享',
|
||||
showOnFrontOfCard: '在卡片正面顯示',
|
||||
smtp: 'SMTP',
|
||||
sortList_title: '排序列表',
|
||||
stopwatch: '碼表',
|
||||
story: null,
|
||||
subscribeToCardWhenCommenting: null,
|
||||
story: '故事',
|
||||
subscribeToCardWhenCommenting: '評論時訂閱卡片',
|
||||
subscribeToMyOwnCardsByDefault: '默認訂閱自己創建的卡片',
|
||||
taskActions_title: '任務操作',
|
||||
taskAssignmentAndProjectCompletion: null,
|
||||
taskListActions_title: null,
|
||||
taskList_title: null,
|
||||
team: null,
|
||||
terms: null,
|
||||
testLog_title: null,
|
||||
thereIsNoPreviewAvailableForThisAttachment: '此附件無法預覽',
|
||||
taskAssignmentAndProjectCompletion: '任務分配和專案完成。',
|
||||
taskListActions_title: '任務列表操作',
|
||||
taskList_title: '任務列表',
|
||||
team: '團隊',
|
||||
terms: '條款',
|
||||
testLog_title: '測試日誌',
|
||||
thereIsNoPreviewAvailableForThisAttachment: '此附件無法預覽。',
|
||||
time: '時間',
|
||||
title: '標題',
|
||||
trash: null,
|
||||
trashHasBeenSuccessfullyEmptied: null,
|
||||
turnOffRecentCardHighlighting: null,
|
||||
typeNameToConfirm: null,
|
||||
typeTitleToConfirm: null,
|
||||
unsavedChanges: null,
|
||||
uploadFailedFileIsTooBig: null,
|
||||
uploadFailedNotEnoughStorageSpace: null,
|
||||
uploadedImages: null,
|
||||
url: null,
|
||||
useSecureConnection: null,
|
||||
trash: '垃圾桶',
|
||||
trashHasBeenSuccessfullyEmptied: '垃圾桶已成功清空。',
|
||||
turnOffRecentCardHighlighting: '關閉最近卡片高亮顯示',
|
||||
typeNameToConfirm: '輸入名稱以確認。',
|
||||
typeTitleToConfirm: '輸入標題以確認。',
|
||||
unsavedChanges: '未保存的更改',
|
||||
uploadFailedFileIsTooBig: '上傳失敗:檔案太大。',
|
||||
uploadFailedNotEnoughStorageSpace: '上傳失敗:儲存空間不足。',
|
||||
uploadedImages: '已上傳的圖片',
|
||||
url: 'URL',
|
||||
useSecureConnection: '使用安全連接',
|
||||
userActions_title: '使用者操作',
|
||||
userAddedCardToList: null,
|
||||
userAddedCardToList: '<0>{{user}}</0> 將 <2>{{card}}</2> 添加到 {{list}}',
|
||||
userAddedThisCardToList: '<0>{{user}}</0> 向列表 {{list}} 添加了該卡片',
|
||||
userAddedUserToCard: null,
|
||||
userAddedUserToThisCard: null,
|
||||
userAddedYouToCard: null,
|
||||
userCompletedTaskOnCard: null,
|
||||
userCompletedTaskOnThisCard: null,
|
||||
userJoinedCard: null,
|
||||
userJoinedThisCard: null,
|
||||
userLeftCard: null,
|
||||
userLeftNewCommentToCard:
|
||||
'<0>{{user}}</0> 給 <2>{{card}}</2> 添加了一條新評論 「{{comment}}」',
|
||||
userLeftThisCard: null,
|
||||
userMarkedTaskIncompleteOnCard: null,
|
||||
userMarkedTaskIncompleteOnThisCard: null,
|
||||
userMentionedYouInCommentOnCard: null,
|
||||
userAddedUserToCard: '<0>{{actorUser}}</0> 將 {{addedUser}} 添加到 <4>{{card}}</4>',
|
||||
userAddedUserToThisCard: '<0>{{actorUser}}</0> 將 {{addedUser}} 添加到此卡片',
|
||||
userAddedYouToCard: '<0>{{user}}</0> 將您添加到 <2>{{card}}</2>',
|
||||
userCompletedTaskOnCard: '<0>{{user}}</0> 在 <4>{{card}}</4> 中完成了 {{task}}',
|
||||
userCompletedTaskOnThisCard: '<0>{{user}}</0> 在此卡片中完成了 {{task}}',
|
||||
userJoinedCard: '<0>{{user}}</0> 加入了 <2>{{card}}</2>',
|
||||
userJoinedThisCard: '<0>{{user}}</0> 加入了此卡片',
|
||||
userLeftCard: '<0>{{user}}</0> 離開了 <2>{{card}}</2>',
|
||||
userLeftNewCommentToCard: '<0>{{user}}</0> 給 <2>{{card}}</2> 添加了一條新評論 «{{comment}}»',
|
||||
userLeftThisCard: '<0>{{user}}</0> 離開了此卡片',
|
||||
userMarkedTaskIncompleteOnCard:
|
||||
'<0>{{user}}</0> 在 <4>{{card}}</4> 中將 {{task}} 標記為未完成',
|
||||
userMarkedTaskIncompleteOnThisCard: '<0>{{user}}</0> 在此卡片中將 {{task}} 標記為未完成',
|
||||
userMentionedYouInCommentOnCard:
|
||||
'<0>{{user}}</0> 在 <2>{{card}}</2> 的評論 「{{comment}}」 中提到了您',
|
||||
userMovedCardFromListToList:
|
||||
'<0>{{user}}</0> 將卡片 <2>{{card}}</2> 從 {{fromList}} 移動到 {{toList}}',
|
||||
userMovedThisCardFromListToList: '<0>{{user}}</0> 將該卡片從 {{fromList}} 移動到 {{toList}}',
|
||||
userRemovedUserFromCard: null,
|
||||
userRemovedUserFromThisCard: null,
|
||||
userRemovedUserFromCard: '<0>{{actorUser}}</0> 從 <4>{{card}}</4> 中移除了 {{removedUser}}',
|
||||
userRemovedUserFromThisCard: '<0>{{actorUser}}</0> 從此卡片中移除了 {{removedUser}}',
|
||||
username: '使用者名稱',
|
||||
users: '使用者',
|
||||
viewer: '檢視',
|
||||
viewers: null,
|
||||
visualTaskManagementWithLists: null,
|
||||
webhooks: null,
|
||||
withoutBaseGroup: null,
|
||||
viewers: '檢視者',
|
||||
visualTaskManagementWithLists: '使用列表進行視覺化任務管理。',
|
||||
webhooks: 'Webhook',
|
||||
withoutBaseGroup: '無基礎群組',
|
||||
writeComment: '編寫評論...',
|
||||
},
|
||||
|
||||
action: {
|
||||
activateUser: null,
|
||||
activateUser_title: null,
|
||||
activateUser: '啟用使用者',
|
||||
activateUser_title: '啟用使用者',
|
||||
addAnotherCard: '添加另一個卡片',
|
||||
addAnotherList: '添加另一個列表',
|
||||
addAnotherTask: '添加另一個任務',
|
||||
addCard: '添加卡片',
|
||||
addCard_title: '添加卡片',
|
||||
addComment: '添加評論',
|
||||
addCustomField: null,
|
||||
addCustomFieldGroup: null,
|
||||
addCustomField: '添加自定義欄位',
|
||||
addCustomFieldGroup: '添加自定義欄位群組',
|
||||
addList: '添加列表',
|
||||
addMember: '添加成員',
|
||||
addMoreDetailedDescription: '添加更多詳細描述',
|
||||
addTask: '添加任務',
|
||||
addTaskList: null,
|
||||
addTaskList: '添加任務列表',
|
||||
addToCard: '添加到卡片',
|
||||
addUser: '添加使用者',
|
||||
addWebhook: null,
|
||||
archive: null,
|
||||
archiveCard: null,
|
||||
archiveCard_title: null,
|
||||
archiveCards: null,
|
||||
archiveCards_title: null,
|
||||
assignAsOwner: null,
|
||||
cancel: null,
|
||||
addWebhook: '添加 Webhook',
|
||||
archive: '封存',
|
||||
archiveCard: '封存卡片',
|
||||
archiveCard_title: '封存卡片',
|
||||
archiveCards: '封存卡片',
|
||||
archiveCards_title: '封存卡片',
|
||||
assignAsOwner: '指派為擁有者',
|
||||
cancel: '取消',
|
||||
createBoard: '創建看板',
|
||||
createCustomFieldGroup: null,
|
||||
createCustomFieldGroup: '創建自定義欄位群組',
|
||||
createFile: '創建文件',
|
||||
createLabel: '創建標籤',
|
||||
createNewLabel: '創建新標籤',
|
||||
createProject: '創建專案',
|
||||
deactivateUser: null,
|
||||
deactivateUser_title: null,
|
||||
deactivateUser: '停用使用者',
|
||||
deactivateUser_title: '停用使用者',
|
||||
delete: '刪除',
|
||||
deleteAttachment: '刪除附件',
|
||||
deleteAvatar: '刪除頭像',
|
||||
deleteBackgroundImage: null,
|
||||
deleteBackgroundImage: '刪除背景圖片',
|
||||
deleteBoard: '刪除看板',
|
||||
deleteBoard_title: null,
|
||||
deleteBoard_title: '刪除看板',
|
||||
deleteCard: '刪除卡片',
|
||||
deleteCardForever: null,
|
||||
deleteCardForever: '永久刪除卡片',
|
||||
deleteCard_title: '刪除卡片',
|
||||
deleteComment: '刪除評論',
|
||||
deleteCustomField: null,
|
||||
deleteCustomFieldGroup: null,
|
||||
deleteForever_title: null,
|
||||
deleteGroup: null,
|
||||
deleteCustomField: '刪除自定義欄位',
|
||||
deleteCustomFieldGroup: '刪除自定義欄位群組',
|
||||
deleteForever_title: '永久刪除',
|
||||
deleteGroup: '刪除群組',
|
||||
deleteLabel: '刪除標籤',
|
||||
deleteList: '刪除列表',
|
||||
deleteList_title: '刪除列表',
|
||||
deleteNotificationService: null,
|
||||
deleteNotificationService: '刪除通知服務',
|
||||
deleteProject: '刪除專案',
|
||||
deleteProject_title: '刪除專案',
|
||||
deleteTask: '刪除任務',
|
||||
deleteTaskList: null,
|
||||
deleteTaskList: '刪除任務列表',
|
||||
deleteTask_title: '刪除任務',
|
||||
deleteUser: '刪除使用者',
|
||||
deleteUser_title: null,
|
||||
deleteWebhook: null,
|
||||
dismissAll: null,
|
||||
download: null,
|
||||
duplicateCard_title: null,
|
||||
deleteUser_title: '刪除使用者',
|
||||
deleteWebhook: '刪除 Webhook',
|
||||
dismissAll: '全部關閉',
|
||||
download: '下載',
|
||||
duplicateCard_title: '複製卡片',
|
||||
edit: '編輯',
|
||||
editColor_title: null,
|
||||
editColor_title: '編輯顏色',
|
||||
editDescription_title: '編輯描述',
|
||||
editDueDate_title: '編輯截止時間',
|
||||
editEmail_title: '編輯郵箱',
|
||||
editGroup: null,
|
||||
editGroup: '編輯群組',
|
||||
editInformation_title: '編輯信息',
|
||||
editPassword_title: '編輯密碼',
|
||||
editPermissions: '編輯權限',
|
||||
editRole_title: null,
|
||||
editRole_title: '編輯角色',
|
||||
editStopwatch_title: '編輯碼表',
|
||||
editTitle_title: '編輯標題',
|
||||
editType_title: null,
|
||||
editType_title: '編輯類型',
|
||||
editUsername_title: '編輯使用者名稱',
|
||||
emptyTrash: null,
|
||||
emptyTrash_title: null,
|
||||
emptyTrash: '清空垃圾桶',
|
||||
emptyTrash_title: '清空垃圾桶',
|
||||
import: '導入',
|
||||
join: null,
|
||||
leave: null,
|
||||
join: '加入',
|
||||
leave: '離開',
|
||||
leaveBoard: '離開看板',
|
||||
leaveProject: '離開專案',
|
||||
logOut_title: '登出',
|
||||
makeCover_title: '設置封面',
|
||||
makeProjectPrivate: null,
|
||||
makeProjectPrivate_title: null,
|
||||
makeProjectShared: null,
|
||||
makeProjectShared_title: null,
|
||||
makeProjectPrivate: '將專案設為私人',
|
||||
makeProjectPrivate_title: '將專案設為私人',
|
||||
makeProjectShared: '將專案設為共享',
|
||||
makeProjectShared_title: '將專案設為共享',
|
||||
move: '移動',
|
||||
moveCard_title: '移動卡片',
|
||||
moveList_title: null,
|
||||
moveList_title: '移動列表',
|
||||
remove: '刪除',
|
||||
removeAssignee: null,
|
||||
removeColor: null,
|
||||
removeAssignee: '移除受派者',
|
||||
removeColor: '移除顏色',
|
||||
removeCover_title: '刪除封面',
|
||||
removeFromBoard: '從看板中刪除',
|
||||
removeFromProject: '從專案中刪除',
|
||||
removeManager: '刪除管理員',
|
||||
removeMember: '刪除成員',
|
||||
restoreToList: null,
|
||||
returnToBoard: null,
|
||||
restoreToList: '恢復到 {{list}}',
|
||||
returnToBoard: '返回看板',
|
||||
save: '保存',
|
||||
sendTestEmail: null,
|
||||
showActive: null,
|
||||
sendTestEmail: '發送測試郵件',
|
||||
showActive: '顯示啟用',
|
||||
showAllAttachments: '顯示所有附件 ({{hidden}} 隱藏)',
|
||||
showCardsWithThisUser: null,
|
||||
showDeactivated: null,
|
||||
showCardsWithThisUser: '顯示此使用者的卡片',
|
||||
showDeactivated: '顯示已停用',
|
||||
showFewerAttachments: '顯示較少附件',
|
||||
showLess: null,
|
||||
showMore: null,
|
||||
sortList_title: null,
|
||||
showLess: '顯示較少',
|
||||
showMore: '顯示更多',
|
||||
sortList_title: '排序列表',
|
||||
start: '開始',
|
||||
stop: '結束',
|
||||
subscribe: '訂閱',
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
export default {
|
||||
translation: {
|
||||
common: {
|
||||
activeUsersLimitReached: null,
|
||||
adminLoginRequiredToInitializeInstance: null,
|
||||
activeUsersLimitReached: '活躍使用者數已達上限',
|
||||
adminLoginRequiredToInitializeInstance: '需要管理員登入以初始化實例',
|
||||
emailAlreadyInUse: '郵箱已被使用',
|
||||
emailOrUsername: '郵箱或使用者名稱',
|
||||
iHaveReadAndAgreeToTheseTerms: null,
|
||||
invalidCredentials: null,
|
||||
iHaveReadAndAgreeToTheseTerms: '我已閱讀並同意這些條款',
|
||||
invalidCredentials: '無效憑證',
|
||||
invalidEmailOrUsername: '無效的郵箱或使用者名稱',
|
||||
invalidPassword: '密碼錯誤',
|
||||
logIn_title: null,
|
||||
logIn_title: '登入',
|
||||
noInternetConnection: '沒有網路連接',
|
||||
or: null,
|
||||
or: '或',
|
||||
pageNotFound_title: '找不到頁面',
|
||||
password: '密碼',
|
||||
poweredByPlanka: null,
|
||||
poweredByPlanka: '技術支援由<1>PLANKA</1>提供',
|
||||
serverConnectionFailed: '伺服器連接失敗',
|
||||
unknownError: '未知錯誤,請稍後重試',
|
||||
useSingleSignOn: '使用單一登入',
|
||||
@@ -22,8 +22,8 @@ export default {
|
||||
},
|
||||
|
||||
action: {
|
||||
cancelAndClose: null,
|
||||
continue: null,
|
||||
cancelAndClose: '取消並關閉',
|
||||
continue: '繼續',
|
||||
logIn: '登入',
|
||||
logInWithSso: '使用SSO登入',
|
||||
},
|
||||
|
||||
165
client/src/locales/zh-TW/markdown-editor.json
Normal file
165
client/src/locales/zh-TW/markdown-editor.json
Normal file
@@ -0,0 +1,165 @@
|
||||
{
|
||||
"action-previews": {
|
||||
"text": "這是一個沒有標題的文字。\n標題和文字\n都可以用粗體、斜體、顏色、\n刪除線和底線來突出顯示。",
|
||||
"text-with-head": "這是一個有標題的文字。\n標題和文字\n都可以用粗體、斜體、顏色、\n刪除線和底線來突出顯示。",
|
||||
"heading": "標題"
|
||||
},
|
||||
"bundle": {
|
||||
"error-title": "Markdown 編輯器錯誤",
|
||||
"settings_wysiwyg": "視覺編輯器 (wysiwyg)",
|
||||
"settings_markup": "Markdown 標記",
|
||||
"markup_placeholder": "輸入 markdown 標記..."
|
||||
},
|
||||
"codeblock": {
|
||||
"remove": "移除",
|
||||
"empty_option": "找不到匹配項"
|
||||
},
|
||||
"common": {
|
||||
"delete": "刪除",
|
||||
"edit": "編輯",
|
||||
"toolbar_action_disabled": "不相容的標記元素"
|
||||
},
|
||||
"forms": {
|
||||
"common_action_cancel": "取消",
|
||||
"common_action_submit": "提交",
|
||||
"common_action_upload": "選擇",
|
||||
"common_tab_attach": "從裝置新增",
|
||||
"common_tab_link": "透過連結新增",
|
||||
"common_link": "連結",
|
||||
"common_sizes": "大小,px",
|
||||
"image_name": "標題",
|
||||
"image_link_href": "圖片連結",
|
||||
"image_link_href_help": "圖片連結指向的地址。",
|
||||
"image_alt": "替代文字",
|
||||
"image_alt_help": "如果圖片無法載入,會顯示替代文字。",
|
||||
"image_upload_help": "不大於 1 MB 的 JPEG、GIF 或 PNG 圖片。",
|
||||
"image_upload_failed": "新增圖片失敗",
|
||||
"image_size_width": "寬度",
|
||||
"image_size_height": "高度",
|
||||
"link_url_help": "連結指向的地址。",
|
||||
"link_text": "連結文字",
|
||||
"link_text_help": "顯示為連結的文字。",
|
||||
"link_open_help": "在新分頁中開啟連結"
|
||||
},
|
||||
"md-hints": {
|
||||
"header_title": "標題",
|
||||
"header_hint": "# 您的文字",
|
||||
"italic_title": "斜體",
|
||||
"italic_hint": "_您的文字_",
|
||||
"bold_title": "粗體",
|
||||
"bold_hint": "**您的文字**",
|
||||
"strikethrough_title": "刪除線",
|
||||
"strikethrough_hint": "~~您的文字~~",
|
||||
"blockquote_title": "區塊引用",
|
||||
"blockquote_hint": "> 您的文字",
|
||||
"code_title": "程式碼",
|
||||
"code_hint": "```您的文字```",
|
||||
"link_title": "連結",
|
||||
"link_hint": "[您的文字](url)",
|
||||
"image_title": "圖片",
|
||||
"image_hint": "",
|
||||
"list_title": "清單項目",
|
||||
"list_hint": "- 您的文字",
|
||||
"numbered-list_title": "編號清單",
|
||||
"numbered-list_hint": "1. 您的文字",
|
||||
"documentation": "文件",
|
||||
"documentation_link": "https://diplodoc.com/docs/en/syntax/"
|
||||
},
|
||||
"menubar": {
|
||||
"bold": "粗體",
|
||||
"code": "程式碼",
|
||||
"code_inline": "行內程式碼",
|
||||
"codeblock": "程式碼區塊",
|
||||
"colorify": "文字顏色",
|
||||
"colorify__color_blue": "藍色",
|
||||
"colorify__color_default": "預設",
|
||||
"colorify__color_gray": "灰色",
|
||||
"colorify__color_green": "綠色",
|
||||
"colorify__color_orange": "橙色",
|
||||
"colorify__color_red": "紅色",
|
||||
"colorify__color_violet": "紫色",
|
||||
"colorify__color_yellow": "黃色",
|
||||
"colorify__group_text": "文字",
|
||||
"cut": "剪下",
|
||||
"emoji": "表情符號",
|
||||
"emoji__hint": "表情符號可以在 WYSIWYG 中新增或手動使用標記新增",
|
||||
"heading": "標題",
|
||||
"heading1": "標題 1",
|
||||
"heading2": "標題 2",
|
||||
"heading3": "標題 3",
|
||||
"heading4": "標題 4",
|
||||
"heading5": "標題 5",
|
||||
"heading6": "標題 6",
|
||||
"hrule": "分隔線",
|
||||
"image": "圖片",
|
||||
"italic": "斜體",
|
||||
"link": "連結",
|
||||
"list": "清單",
|
||||
"list__action_lift": "提升項目",
|
||||
"list__action_sink": "降低項目",
|
||||
"list_action_disabled": "與清單邏輯衝突",
|
||||
"mark": "標記",
|
||||
"mono": "等寬字體",
|
||||
"more_action": "更多動作",
|
||||
"note": "備註",
|
||||
"olist": "有序清單",
|
||||
"quote": "引用",
|
||||
"redo": "重做",
|
||||
"strike": "刪除線",
|
||||
"table": "表格",
|
||||
"text": "文字",
|
||||
"ulist": "項目符號清單",
|
||||
"underline": "底線",
|
||||
"undo": "復原"
|
||||
},
|
||||
"placeholder": {
|
||||
"doc_empty": "輸入 / 使用斜線命令...",
|
||||
"checkbox": "輸入任務描述...",
|
||||
"deflist_term": "術語",
|
||||
"deflist_desc": "定義描述",
|
||||
"heading": "標題",
|
||||
"cut_title": "標題",
|
||||
"cut_content": "點擊時顯示的內容",
|
||||
"note_title": "標題",
|
||||
"note_content": "備註內容",
|
||||
"table_cell": "儲存格內容",
|
||||
"select_filter": "搜尋語言..."
|
||||
},
|
||||
"search": {
|
||||
"label_case-sensitive": "區分大小寫",
|
||||
"label_whole-word": "整個單字",
|
||||
"title": "在程式碼中搜尋"
|
||||
},
|
||||
"suggest": {
|
||||
"empty-msg": "找不到"
|
||||
},
|
||||
"widgets": {
|
||||
"image": "新增圖片",
|
||||
"link": "新增連結"
|
||||
},
|
||||
"yfm-note": {
|
||||
"info": "資訊",
|
||||
"tip": "提示",
|
||||
"warning": "警告",
|
||||
"alert": "警報",
|
||||
"remove": "移除"
|
||||
},
|
||||
"yfm-table": {
|
||||
"column.add.before": "在前面新增欄",
|
||||
"column.add.after": "在後面新增欄",
|
||||
"column.remove": "移除欄",
|
||||
"row.add.before": "在前面新增列",
|
||||
"row.add.after": "在後面新增列",
|
||||
"row.remove": "移除列",
|
||||
"table.remove": "移除表格",
|
||||
"table.menu.cell.align.left": "將儲存格內容靠左對齊",
|
||||
"table.menu.cell.align.right": "將儲存格內容靠右對齊",
|
||||
"table.menu.cell.align.center": "將儲存格內容置中對齊",
|
||||
"table.menu.row.add": "在後面新增列",
|
||||
"table.menu.row.remove": "移除列",
|
||||
"table.menu.column.add": "在後面新增欄",
|
||||
"table.menu.column.remove": "移除欄",
|
||||
"table.menu.convert.yfm": "轉換為 YFM 表格",
|
||||
"table.menu.table.remove": "移除表格"
|
||||
}
|
||||
}
|
||||
@@ -79,14 +79,8 @@ export function* initializeCore() {
|
||||
}
|
||||
|
||||
export function* changeCoreLanguage(language) {
|
||||
if (language === null) {
|
||||
yield call(i18n.detectLanguage);
|
||||
yield call(i18n.loadCoreLocale);
|
||||
yield call(i18n.changeLanguage, i18n.resolvedLanguage);
|
||||
} else {
|
||||
yield call(i18n.loadCoreLocale, language);
|
||||
yield call(i18n.changeLanguage, language);
|
||||
}
|
||||
yield call(i18n.loadCoreLocale, language);
|
||||
yield call(i18n.changeLanguage, language);
|
||||
}
|
||||
|
||||
export function* toggleFavorites(isEnabled) {
|
||||
|
||||
@@ -140,6 +140,7 @@ export function* acceptTerms(signature) {
|
||||
({ item: accessToken } = yield call(api.acceptTerms, {
|
||||
pendingToken,
|
||||
signature,
|
||||
initialLanguage: i18n.resolvedLanguage,
|
||||
}));
|
||||
} catch (error) {
|
||||
yield put(actions.acceptTerms.failure(error));
|
||||
|
||||
@@ -30,7 +30,8 @@ services:
|
||||
# Configure knex to accept SSL certificates
|
||||
# - KNEX_REJECT_UNAUTHORIZED_SSL_CERTIFICATE=false
|
||||
|
||||
# Used for per-board notifications
|
||||
# The default application language used as a fallback when a user's language is not set.
|
||||
# This language is also used for per-board notifications.
|
||||
# - DEFAULT_LANGUAGE=en-US
|
||||
|
||||
# Do not comment out DEFAULT_ADMIN_EMAIL if you want to prevent this user from being edited/deleted
|
||||
|
||||
@@ -42,7 +42,8 @@ services:
|
||||
# Configure knex to accept SSL certificates
|
||||
# - KNEX_REJECT_UNAUTHORIZED_SSL_CERTIFICATE=false
|
||||
|
||||
# Used for per-board notifications
|
||||
# The default application language used as a fallback when a user's language is not set.
|
||||
# This language is also used for per-board notifications.
|
||||
# - DEFAULT_LANGUAGE=en-US
|
||||
|
||||
# Do not comment out DEFAULT_ADMIN_EMAIL if you want to prevent this user from being edited/deleted
|
||||
|
||||
@@ -21,7 +21,8 @@ SECRET_KEY=notsecretkey
|
||||
# Configure knex to accept SSL certificates
|
||||
# KNEX_REJECT_UNAUTHORIZED_SSL_CERTIFICATE=false
|
||||
|
||||
# Used for per-board notifications
|
||||
# The default application language used as a fallback when a user's language is not set.
|
||||
# This language is also used for per-board notifications.
|
||||
# DEFAULT_LANGUAGE=en-US
|
||||
|
||||
# Do not comment out DEFAULT_ADMIN_EMAIL if you want to prevent this user from being edited/deleted
|
||||
|
||||
@@ -33,6 +33,12 @@
|
||||
* maxLength: 64
|
||||
* description: Terms signature hash based on user role
|
||||
* example: 940226c4c41f51afe3980ceb63704e752636526f4c52a4ea579e85b247493d94
|
||||
* initialLanguage:
|
||||
* type: string
|
||||
* enum: [ar-YE, bg-BG, cs-CZ, da-DK, de-DE, el-GR, en-GB, en-US, es-ES, et-EE, fa-IR, fi-FI, fr-FR, hu-HU, id-ID, it-IT, ja-JP, ko-KR, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sk-SK, sr-Cyrl-RS, sr-Latn-RS, sv-SE, tr-TR, uk-UA, uz-UZ, zh-CN, zh-TW]
|
||||
* nullable: true
|
||||
* description: Preferred language for user interface and notifications (used only if user language is not set)
|
||||
* example: en-US
|
||||
* responses:
|
||||
* 200:
|
||||
* description: Terms accepted successfully
|
||||
@@ -120,6 +126,11 @@ module.exports = {
|
||||
maxLength: 64,
|
||||
required: true,
|
||||
},
|
||||
initialLanguage: {
|
||||
type: 'string',
|
||||
isIn: User.LANGUAGES,
|
||||
allowNull: true,
|
||||
},
|
||||
},
|
||||
|
||||
exits: {
|
||||
@@ -179,10 +190,16 @@ module.exports = {
|
||||
throw Errors.INVALID_SIGNATURE;
|
||||
}
|
||||
|
||||
({ user } = await User.qm.updateOne(user.id, {
|
||||
const values = {
|
||||
termsSignature,
|
||||
termsAcceptedAt: new Date().toISOString(),
|
||||
}));
|
||||
};
|
||||
|
||||
if (!user.language && inputs.initialLanguage) {
|
||||
values.language = inputs.initialLanguage;
|
||||
}
|
||||
|
||||
({ user } = await User.qm.updateOne(user.id, values));
|
||||
}
|
||||
|
||||
const config = await Config.qm.getOneMain();
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
* type: string
|
||||
* enum: [ar-YE, bg-BG, cs-CZ, da-DK, de-DE, el-GR, en-GB, en-US, es-ES, et-EE, fa-IR, fi-FI, fr-FR, hu-HU, id-ID, it-IT, ja-JP, ko-KR, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sk-SK, sr-Cyrl-RS, sr-Latn-RS, sv-SE, tr-TR, uk-UA, uz-UZ, zh-CN, zh-TW]
|
||||
* nullable: true
|
||||
* description: Preferred language for user interface and notifications
|
||||
* description: Preferred language for user interface and notifications (if null - will be set automatically on the first login)
|
||||
* example: en-US
|
||||
* subscribeToOwnCards:
|
||||
* type: boolean
|
||||
|
||||
@@ -57,7 +57,6 @@
|
||||
* language:
|
||||
* type: string
|
||||
* enum: [ar-YE, bg-BG, cs-CZ, da-DK, de-DE, el-GR, en-GB, en-US, es-ES, et-EE, fa-IR, fi-FI, fr-FR, hu-HU, id-ID, it-IT, ja-JP, ko-KR, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sk-SK, sr-Cyrl-RS, sr-Latn-RS, sv-SE, tr-TR, uk-UA, uz-UZ, zh-CN, zh-TW]
|
||||
* nullable: true
|
||||
* description: Preferred language for user interface and notifications
|
||||
* example: en-US
|
||||
* subscribeToOwnCards:
|
||||
@@ -167,7 +166,6 @@ module.exports = {
|
||||
language: {
|
||||
type: 'string',
|
||||
isIn: User.LANGUAGES,
|
||||
allowNull: true,
|
||||
},
|
||||
subscribeToOwnCards: {
|
||||
type: 'boolean',
|
||||
|
||||
@@ -33,6 +33,7 @@ module.exports = {
|
||||
cover180: `${fileManager.buildUrl(`${sails.config.custom.userAvatarsPathSegment}/${inputs.record.avatar.uploadedFileId}/cover-180.${inputs.record.avatar.extension}`)}`,
|
||||
},
|
||||
},
|
||||
language: inputs.record.language || sails.config.i18n.defaultLocale,
|
||||
termsType: sails.hooks.terms.getTypeByUserRole(inputs.record.role),
|
||||
};
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
* type: string
|
||||
* minLength: 3
|
||||
* maxLength: 32
|
||||
* pattern: "^[a-zA-Z0-9]+((_{1}|\\.|){1}[a-zA-Z0-9])*$"
|
||||
* pattern: "^[a-z0-9._-]*$"
|
||||
* nullable: true
|
||||
* description: Unique username for user identification
|
||||
* example: john_doe
|
||||
@@ -298,7 +298,7 @@ module.exports = {
|
||||
isNotEmptyString: true,
|
||||
minLength: 3,
|
||||
maxLength: 32,
|
||||
regex: /^[a-zA-Z0-9]+((_|\.)?[a-zA-Z0-9])*$/,
|
||||
regex: /^[a-z0-9._-]*$/,
|
||||
allowNull: true,
|
||||
},
|
||||
avatar: {
|
||||
|
||||
@@ -20,18 +20,39 @@ module.exports.i18n = {
|
||||
*/
|
||||
|
||||
locales: [
|
||||
'ar-YE',
|
||||
'bg-BG',
|
||||
'cs-CZ',
|
||||
'da-DK',
|
||||
'de-DE',
|
||||
'el-GR',
|
||||
'en-GB',
|
||||
'en-US',
|
||||
'es-ES',
|
||||
'et-EE',
|
||||
'fa-IR',
|
||||
'fi-FI',
|
||||
'fr-FR',
|
||||
'hu-HU',
|
||||
'id-ID',
|
||||
'it-IT',
|
||||
'ja-JP',
|
||||
'ko-KR',
|
||||
'nl-NL',
|
||||
'pl-PL',
|
||||
'pt-BR',
|
||||
'pt-PT',
|
||||
'ro-RO',
|
||||
'ru-RU',
|
||||
'sk-SK',
|
||||
'sr-Cyrl-RS',
|
||||
'sr-Latn-RS',
|
||||
'sv-SE',
|
||||
'tr-TR',
|
||||
'uk-UA',
|
||||
'uz-UZ',
|
||||
'zh-CN',
|
||||
'zh-TW',
|
||||
],
|
||||
|
||||
/**
|
||||
|
||||
16
server/config/locales/ar-YE.json
Normal file
16
server/config/locales/ar-YE.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"Card Created": "تم إنشاء البطاقة",
|
||||
"Card Moved": "تم نقل البطاقة",
|
||||
"New Comment": "تعليق جديد",
|
||||
"Test Title": "عنوان تجريبي",
|
||||
"This is a test text message!": "هذه رسالة نصية تجريبية!",
|
||||
"This is a *test* **markdown** `message`!": "هذه *رسالة* **markdown** `تجريبية`!",
|
||||
"This is a <i>test</i> <b>html</b> <code>message</code>!": "هذه <i>رسالة</i> <b>html</b> <code>تجريبية</code>!",
|
||||
"You Were Added to Card": "تمت إضافتك إلى البطاقة",
|
||||
"You Were Mentioned in Comment": "تم ذكرك في تعليق",
|
||||
"%s added you to %s on %s": "%s أضافك إلى %s في %s",
|
||||
"%s created %s in %s on %s": "%s أنشأ %s في %s في %s",
|
||||
"%s left a new comment to %s on %s": "%s ترك تعليقاً جديداً على %s في %s",
|
||||
"%s mentioned you in %s on %s": "%s ذكرك في %s في %s",
|
||||
"%s moved %s from %s to %s on %s": "%s نقل %s من %s إلى %s في %s"
|
||||
}
|
||||
16
server/config/locales/bg-BG.json
Normal file
16
server/config/locales/bg-BG.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"Card Created": "Картата е създадена",
|
||||
"Card Moved": "Картата е преместена",
|
||||
"New Comment": "Нов коментар",
|
||||
"Test Title": "Тестово заглавие",
|
||||
"This is a test text message!": "Това е тестово текстово съобщение!",
|
||||
"This is a *test* **markdown** `message`!": "Това е *тестово* **markdown** `съобщение`!",
|
||||
"This is a <i>test</i> <b>html</b> <code>message</code>!": "Това е <i>тестово</i> <b>html</b> <code>съобщение</code>!",
|
||||
"You Were Added to Card": "Бяхте добавени към картата",
|
||||
"You Were Mentioned in Comment": "Бяхте споменати в коментар",
|
||||
"%s added you to %s on %s": "%s ви добави към %s на %s",
|
||||
"%s created %s in %s on %s": "%s създаде %s в %s на %s",
|
||||
"%s left a new comment to %s on %s": "%s остави нов коментар към %s на %s",
|
||||
"%s mentioned you in %s on %s": "%s ви спомена в %s на %s",
|
||||
"%s moved %s from %s to %s on %s": "%s премести %s от %s към %s на %s"
|
||||
}
|
||||
16
server/config/locales/cs-CZ.json
Normal file
16
server/config/locales/cs-CZ.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"Card Created": "Karta vytvořena",
|
||||
"Card Moved": "Karta přesunuta",
|
||||
"New Comment": "Nový komentář",
|
||||
"Test Title": "Testovací název",
|
||||
"This is a test text message!": "Toto je testovací textová zpráva!",
|
||||
"This is a *test* **markdown** `message`!": "Toto je *testovací* **markdown** `zpráva`!",
|
||||
"This is a <i>test</i> <b>html</b> <code>message</code>!": "Toto je <i>testovací</i> <b>html</b> <code>zpráva</code>!",
|
||||
"You Were Added to Card": "Byli jste přidáni ke kartě",
|
||||
"You Were Mentioned in Comment": "Byli jste zmíněni v komentáři",
|
||||
"%s added you to %s on %s": "%s vás přidal k %s dne %s",
|
||||
"%s created %s in %s on %s": "%s vytvořil %s v %s dne %s",
|
||||
"%s left a new comment to %s on %s": "%s zanechal nový komentář k %s dne %s",
|
||||
"%s mentioned you in %s on %s": "%s vás zmínil v %s dne %s",
|
||||
"%s moved %s from %s to %s on %s": "%s přesunul %s z %s do %s dne %s"
|
||||
}
|
||||
16
server/config/locales/da-DK.json
Normal file
16
server/config/locales/da-DK.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"Card Created": "Kort oprettet",
|
||||
"Card Moved": "Kort flyttet",
|
||||
"New Comment": "Ny kommentar",
|
||||
"Test Title": "Test titel",
|
||||
"This is a test text message!": "Dette er en test tekstbesked!",
|
||||
"This is a *test* **markdown** `message`!": "Dette er en *test* **markdown** `besked`!",
|
||||
"This is a <i>test</i> <b>html</b> <code>message</code>!": "Dette er en <i>test</i> <b>html</b> <code>besked</code>!",
|
||||
"You Were Added to Card": "Du blev tilføjet til kortet",
|
||||
"You Were Mentioned in Comment": "Du blev nævnt i en kommentar",
|
||||
"%s added you to %s on %s": "%s tilføjede dig til %s den %s",
|
||||
"%s created %s in %s on %s": "%s oprettede %s i %s den %s",
|
||||
"%s left a new comment to %s on %s": "%s efterlod en ny kommentar til %s den %s",
|
||||
"%s mentioned you in %s on %s": "%s nævnte dig i %s den %s",
|
||||
"%s moved %s from %s to %s on %s": "%s flyttede %s fra %s til %s den %s"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user