Initial Push

Pushing React-News to main
This commit is contained in:
ReactIntern 2021-09-22 18:12:42 -04:00
parent 54d0c6ecb3
commit 0fdb58fa6e
70 changed files with 30684 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true
[*]
# change these settings to your own preference
indent_style = space
indent_size = 2
# we recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
[{package,bower}.json]
indent_style = space
indent_size = 2

32
samples/react-news/.gitignore vendored Normal file
View File

@ -0,0 +1,32 @@
# Logs
logs
*.log
npm-debug.log*
# Dependency directories
node_modules
# Build generated files
dist
lib
solution
temp
*.sppkg
# Coverage directory used by tools like istanbul
coverage
# OSX
.DS_Store
# Visual Studio files
.ntvs_analysis.dat
.vs
bin
obj
# Resx Generated Code
*.resx.ts
# Styles Generated Code
*.scss.ts

View File

@ -0,0 +1,12 @@
{
"@microsoft/generator-sharepoint": {
"isCreatingSolution": true,
"environment": "spo",
"version": "1.10.0",
"libraryName": "react-news-webpart",
"libraryId": "2977aa46-bf61-4068-b5a3-95a5b3119720",
"packageManager": "npm",
"isDomainIsolated": false,
"componentType": "webpart"
}
}

View File

@ -0,0 +1,98 @@
# News
SPFx Webpart to display News from SharePoint site(s)
## SharePoint News Posts with SPFx
### Summary
Web part pulls all SharePoint News Posts that the logged in user has access to view.
- Pagination ( Back/Next ) and Page Display ( n out of n )
- Select Multiple Sites ( Defaults to site webpart is deployed to )
- Two styling options, Stack or Single
- News Title as link ( Click to go to post )
- News Thumbnail Image
- Preview of Description
- Author ( Can toggle visibility in Property Pane )
- Created Date
- Likes with Office UI Fabric Icons
- Comments with Office UI Fabric Icons ( Also retrieves nested comments )
![picture of the web part in action](./assets/Pagination.png)
![picture of the web part in action](./assets/Several-Sites-Author-Hidden.png)
![picture of the web part in action](./assets/Single-View-Default.png)
![picture of the web part in action](./assets/Stack-Style-Default.png)
## Compatibility
![SPFx 1.12](https://img.shields.io/badge/SPFx-1.12.1-green.svg)
![Node.js LTS 10.x](https://img.shields.io/badge/Node.js-LTS%2010.x-green.svg)
![SharePoint Online](https://img.shields.io/badge/SharePoint-Online-yellow.svg)
![Teams N/A: Untested with Microsoft Teams](https://img.shields.io/badge/Teams-N%2FA-lightgrey.svg "Untested with Microsoft Teams")
![Workbench Hosted: Only after API permissions granted](https://img.shields.io/badge/Workbench-Hosted-yellow.svg "Only after API permissions granted")
## Applies to
* [SharePoint Framework Developer Preview](https://docs.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview)
* [SharePoint Framework](https://docs.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview)
## Solution
Solution|Author(s)
--------|---------
React-News | [Alison Collins](https://github.com/ReactIntern) ([Blog](https://graphgod.dev), [LinkedIn](https://www.linkedin.com/in/alison-collins-53192b219/)) |
# Prerequisites
- Administrative access to Azure AD of Microsoft 365 tenant
- SharePoint Online tenant
- You need following set of permissions in order to manage React News Posts
```json
"webApiPermissionRequests": [
{
"resource": "Microsoft Graph",
"scope": "Groups.Read.All"
},
]
```
# Minimal Path to Awesome
- Clone this repo
- Navigate to the folder with current sample
- Restore dependencies: `$ npm i`
- Bundle the solution: `$ gulp bundle --ship`
- Package the solution: `$ gulp package-solution --ship`
- Upload to SharePoint tenant app catalog
- You will see a message saying that solution has pending permissions which need to be approved
- Approve the permission requests.
- Run `$ gulp serve --nobrowser`
- Open hosted workbench, i.e. `https://<tenant>.sharepoint.com/sites/<your site>/_layouts/15/workbench.aspx`
- Search and add `React News` web part to see it in action
# Features
This project contains sample client-side web part built on the SharePoint Framework illustrating possibilities to quickly gain access to News Posts in SharePoint site(s) using SharePoint Rest API.
This sample illustrates the following concepts on top of the SharePoint Framework:
- Explore SharePoint REST APIs for News Posts from SharePoint site(s)
- Requesting API permissions in a SharePoint Framework package
- Communicating with the SharePoint API using its REST API
- Using Office UI Fabric controls for building SharePoint Framework client-side web parts
- Passing web part properties to React components
# Disclaimer
**THIS CODE IS PROVIDED _AS IS_ WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
## Support
We do not support samples, but we do use GitHub to track issues and constantly want to improve these samples.
If you encounter any issues while using this sample, [create a new issue](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=bug-report.yml&sample=react-news&authors=@ReactIntern&title=react-news%20-%20).
For questions regarding this sample, [create a new question](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=question.yml&sample=react-news&authors=@ReactIntern&title=react-news%20-%20).
Finally, if you have an idea for improvement, [make a suggestion](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=suggestion.yml&sample=react-news&authors=@ReactIntern&title=react-news%20-%20).
<img src="https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/samples/React-News" />

Binary file not shown.

After

Width:  |  Height:  |  Size: 521 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 KiB

View File

@ -0,0 +1,19 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
"version": "2.0",
"bundles": {
"react-news-webpart": {
"components": [
{
"entrypoint": "./lib/webparts/reactNewsWebpart/ReactNewsWebpart.js",
"manifest": "./src/webparts/reactNewsWebpart/ReactNewsWebpart.manifest.json"
}
]
}
},
"externals": {},
"localizedResources": {
"ReactNewsWebpartStrings": "lib/webparts/reactNewsWebpart/loc/{locale}.js",
"PropertyControlStrings": "node_modules/@pnp/spfx-property-controls/lib/loc/{locale}.js"
}
}

View File

@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
"deployCdnPath": "temp/deploy"
}

View File

@ -0,0 +1,7 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"workingDir": "./temp/deploy/",
"account": "<!-- STORAGE ACCOUNT NAME -->",
"container": "react-news-webpart",
"accessKey": "<!-- ACCESS KEY -->"
}

View File

@ -0,0 +1,18 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "react-news-webpart-client-side-solution",
"id": "2977aa46-bf61-4068-b5a3-95a5b3119720",
"version": "1.0.0.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"webApiPermissionRequests":[{
"resource": "Microsoft Graph",
"scope": "Groups.Read.All"
}]
},
"paths": {
"zippedPackage": "solution/react-news-webpart.sppkg"
}
}

View File

@ -0,0 +1,10 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
"port": 4321,
"https": true,
"initialPage": "https://localhost:5432/workbench",
"api": {
"port": 5432,
"entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
}
}

View File

@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
"cdnBasePath": "<!-- PATH TO CDN -->"
}

16
samples/react-news/gulpfile.js vendored Normal file
View File

@ -0,0 +1,16 @@
'use strict';
const build = require('@microsoft/sp-build-web');
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
var getTasks = build.rig.getTasks;
build.rig.getTasks = function () {
var result = getTasks.call(build.rig);
result.set('serve', result.get('serve-deprecated'));
return result;
};
build.initialize(require('gulp'));

22383
samples/react-news/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,50 @@
{
"name": "react-news-webpart",
"version": "0.0.1",
"private": true,
"main": "lib/index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "gulp bundle",
"clean": "gulp clean",
"test": "gulp test"
},
"dependencies": {
"@microsoft/sp-core-library": "1.12.1",
"@microsoft/sp-lodash-subset": "1.12.1",
"@microsoft/sp-office-ui-fabric-core": "1.12.1",
"@microsoft/sp-property-pane": "1.12.1",
"@microsoft/sp-webpart-base": "1.12.1",
"@pnp/common": "^1.3.0",
"@pnp/graph": "^2.7.0",
"@pnp/logging": "^1.3.0",
"@pnp/odata": "^1.3.0",
"@pnp/sp": "^1.3.0",
"@pnp/spfx-property-controls": "^3.2.0",
"@types/es6-promise": "0.0.33",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.3",
"@types/webpack-env": "1.13.1",
"ajax": "0.0.4",
"office-ui-fabric-react": "6.189.2",
"react": "16.8.5",
"react-dom": "16.8.5"
},
"resolutions": {
"@types/react": "16.8.8"
},
"devDependencies": {
"@microsoft/sp-build-web": "1.12.1",
"@microsoft/sp-tslint-rules": "1.12.1",
"@microsoft/sp-module-interfaces": "1.12.1",
"@microsoft/sp-webpart-workbench": "1.12.1",
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
"gulp": "~3.9.1",
"gulp-sequence": "1.0.0",
"@types/chai": "3.4.34",
"@types/mocha": "2.2.38",
"ajv": "~5.2.2"
}
}

View File

@ -0,0 +1,114 @@
{
"id": "50f380a6-e5b2-4257-afa1-6d3a1c0ca358",
"alias": "ReactNewsWebpart",
"componentType": "WebPart",
"version": "0.0.1",
"manifestVersion": 2,
"requiresCustomScript": false,
"supportedHosts": [
"SharePointWebPart"
],
"preconfiguredEntries": [
{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70",
"group": {
"default": "Other"
},
"title": {
"default": "React-News-Webpart"
},
"description": {
"default": "React-News-Webpart description"
},
"officeFabricIconFontName": "News",
"properties": {
"description": "React-News-Webpart"
}
}
],
"loaderConfig": {
"internalModuleBaseUrls": [
"https://localhost:4321/dist/"
],
"entryModuleId": "react-news-webpart",
"scriptResources": {
"react-news-webpart": {
"type": "path",
"path": "react-news-webpart_a82dc6a09ff2adec49dd.js"
},
"@microsoft/sp-property-pane": {
"type": "component",
"id": "f9e737b7-f0df-4597-ba8c-3060f82380db",
"version": "1.12.1"
},
"ReactNewsWebpartStrings": {
"type": "path",
"path": "ReactNewsWebpartStrings_en-us_9c69b7524949cbd1c1bc277cc0857652.js"
},
"@microsoft/sp-lodash-subset": {
"type": "component",
"id": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a",
"version": "1.12.1"
},
"@microsoft/sp-core-library": {
"type": "component",
"id": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b",
"version": "1.12.1"
},
"@microsoft/sp-webpart-base": {
"type": "component",
"id": "974a7777-0990-4136-8fa6-95d80114c2e0",
"version": "1.12.1"
},
"react": {
"type": "component",
"id": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"version": "16.8.5"
},
"react-dom": {
"type": "component",
"id": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"version": "16.8.5"
},
"@microsoft/sp-http": {
"type": "component",
"id": "c07208f0-ea3b-4c1a-9965-ac1b825211a6",
"version": "1.12.1"
},
"PropertyControlStrings": {
"type": "localizedPath",
"paths": {
"bg-BG": "PropertyControlStrings_bg-bg_8ed72ece3685811017132eb844d74d2b.js",
"ca-ES": "PropertyControlStrings_ca-es_4584e999630b4da0f3943516915be8f0.js",
"da-DK": "PropertyControlStrings_da-dk_1d0932d33a05e1bfcf90ff2073389182.js",
"de-DE": "PropertyControlStrings_de-de_d40342425b678318d0419e6ad9dd6f70.js",
"el-GR": "PropertyControlStrings_el-gr_85080a0fd923b34329ed3afc8e24f0ca.js",
"en-US": "PropertyControlStrings_en-us_3770839de1f3a0bef2a56730368aab40.js",
"es-ES": "PropertyControlStrings_es-es_69e478d7c5043b45e6628ac2c9e2de4b.js",
"et-EE": "PropertyControlStrings_et-ee_598f724341a6fb38723922f994e302e0.js",
"fi-FI": "PropertyControlStrings_fi-fi_0f6d7d22b90096f65e849824ea36f036.js",
"fr-FR": "PropertyControlStrings_fr-fr_f17d1581e1807a854fa5df15365797bb.js",
"it-IT": "PropertyControlStrings_it-it_8f63bbadd3620640d822549f04da2ccb.js",
"ja-JP": "PropertyControlStrings_ja-jp_1ab0c1b344e245022153106fc5722a75.js",
"lt-LT": "PropertyControlStrings_lt-lt_1e9c7953e8515297e074b213288dfaaa.js",
"lv-LV": "PropertyControlStrings_lv-lv_56d7a5f081517fa938fa8bc2d903cd97.js",
"nb-NO": "PropertyControlStrings_nb-no_357d85cd6acd4c9cdfc5cc8c0b198986.js",
"nl-NL": "PropertyControlStrings_nl-nl_217fc5878d50553567c652e81c1b743c.js",
"no": "PropertyControlStrings_no_819bcb574a9a9b7bee923721da82f3af.js",
"pl-PL": "PropertyControlStrings_pl-pl_c233eab225f8a0a54bfd72e8cf26fcad.js",
"pt-PT": "PropertyControlStrings_pt-pt_4e8ff2c4c080c29048b237bec8d6c857.js",
"ro-RO": "PropertyControlStrings_ro-ro_5a1eb0ace969b2930de4c2b89f9791cc.js",
"ru-RU": "PropertyControlStrings_ru-ru_f2b220073240303d6e0a4693c7a95d24.js",
"sk-SK": "PropertyControlStrings_sk-sk_753cba40099869f50de2c9bc8d1f54e3.js",
"sr-Latn-RS": "PropertyControlStrings_sr-latn-rs_673d7d1f6c33e4e706753cf7dceb0655.js",
"sv-SE": "PropertyControlStrings_sv-se_5dbecd28947c574648adbe0516fa2b3b.js",
"tr-TR": "PropertyControlStrings_tr-tr_cda80038fa0f28a0926730ba014ef8d2.js",
"vi-VN": "PropertyControlStrings_vi-vn_e285a250de584da19f4d2bcda40cd095.js",
"zh-CN": "PropertyControlStrings_zh-cn_f54e63ffc9812984f622f4eef90882c9.js",
"zh-TW": "PropertyControlStrings_zh-tw_c48095a54869748740db4e3387cd8006.js"
},
"defaultPath": "PropertyControlStrings_en-us_3770839de1f3a0bef2a56730368aab40.js"
}
}
}
}

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Прилагат",
"ImportButtonLabel": "Внос",
"ExportButtonLabel": "Износ",
"FormatCodeButtonLabel": "Код на формат",
"JsonFileRequiredMessage": "Моля, качете json файл",
"SaveButtonLabel": "Запишете",
"CancelButtonLabel": "Отмените",
"PeoplePickerSuggestedContacts": "Препоръчани хора",
"PeoplePickerSuggestedGroups": "Предложени групи",
"PeoplePickerSuggestedCombined": "Предложени хора и групи",
"PeoplePickerNoResults": "Не е намерен резултат",
"PeoplePickerLoading": "Зареждане на резултати ...",
"DatePickerMonthLongJanuary": "Януари",
"DatePickerMonthShortJanuary": "Януари",
"DatePickerMonthLongFebruary": "Февруари",
"DatePickerMonthShortFebruary": "Февруари",
"DatePickerMonthLongMarch": "Март",
"DatePickerMonthShortMarch": "Мар",
"DatePickerMonthLongApril": "Април",
"DatePickerMonthShortApril": "Април",
"DatePickerMonthLongMay": "Май",
"DatePickerMonthShortMay": "Май",
"DatePickerMonthLongJune": "Юни",
"DatePickerMonthShortJune": "Юни",
"DatePickerMonthLongJuly": "Юли",
"DatePickerMonthShortJuly": "Юли",
"DatePickerMonthLongAugust": "Август",
"DatePickerMonthShortAugust": "Август",
"DatePickerMonthLongSeptember": "Септември",
"DatePickerMonthShortSeptember": "Седем",
"DatePickerMonthLongOctober": "Октомври",
"DatePickerMonthShortOctober": "Октомври",
"DatePickerMonthLongNovember": "Ноември",
"DatePickerMonthShortNovember": "Ноември",
"DatePickerMonthLongDecember": "Декември",
"DatePickerMonthShortDecember": "Декември",
"DatePickerDayLongSunday": "Неделя",
"DatePickerDayShortSunday": "Слънцето",
"DatePickerDayLongMonday": "Понеделник",
"DatePickerDayShortMonday": "Ми",
"DatePickerDayLongTuesday": "Вторник",
"DatePickerDayShortTuesday": "Вт",
"DatePickerDayLongWednesday": "Сряда",
"DatePickerDayShortWednesday": "Ср",
"DatePickerDayLongThursday": "Четвъртък",
"DatePickerDayShortThursday": "Чт",
"DatePickerDayLongFriday": "Петък",
"DatePickerDayShortFriday": "Пт",
"DatePickerDayLongSaturday": "Събота",
"DatePickerDayShortSaturday": "Сб",
"DatepickerGoToToday": "Днес",
"DateTimePickerDate": "Дата",
"DateTimePickerTime": "Час",
"ColorPickerButtonTitle": "Избор на цвят",
"NotNumberValidationMessage": "Стойността трябва да бъде число, действителна е:",
"MinimumNumberValidationMessage": "Стойността трябва да бъде по-голяма или равна на:",
"MaximumNumberValidationMessage": "Стойността трябва да бъде по-малка или равна на:",
"TermPickerNoTerms": "Наборът изрази не съдържа никакви термини",
"TermPickerExpandTitle": "Разгъване на този набор от изрази",
"TermPickerExpandNode": "Разгъване на този възел",
"TermPickerMenuTermSet": "Меню за набор от изрази",
"TermPickerMenuGroup": "Меню за група изрази",
"TermPickerInLabel": "Инча",
"TermPickerTermSetLabel": "Набор от изрази",
"propertyFieldMultiSelectNoOptions": "Няма опции за избор",
"CollectionDataEmptyFields": "Не са предоставени полета за събиране на данни.",
"CollectionDataEmptyValue": "Няма данни в колекцията си.",
"CollectionAddRowButtonLabel": "Добавяне на данни към колекцията",
"CollectionDeleteRowButtonLabel": "Изтриване на текущия ред",
"CollectionSaveAndAddButtonLabel": "Добавяне и записване",
"CollectionDataItemShowErrorsLabel": "Показване на грешките в реда",
"CollectionDataItemFieldRequiredLabel": "Полето е задължително.",
"InvalidUrlError": "Предоставеният URL адрес не е валиден",
"DescriptionLabel": "Описание",
"MoreInfoLabel": "Повече информация",
"AboutGroupLabel": "За",
"SitePickerSearchBoxPlaceholder": "Търсене...",
"SitePickerNoResults": "Няма резултати от търсенето",
"SitePickerSitesChosen": "Избран(и) уебсайт(и)",
"TeamPickerSearchBoxPlaceholder": "Търсене...",
"TeamPickerNoResults": "Няма резултати от търсенето",
"TeamPickerSitesChosen": "Избрани екипи",
"AddFileButtonLabel": "Добавяне на файл",
"AddImageButtonLabel": "Добавяне на изображение",
"AriaCellValue": "{0} колона {1}",
"FilePickerCancelButtonLabel": "Отмените",
"CantValidateValidationMessage": "Не можахме да потвърдим тази връзка. Проверете връзката и опитайте отново.",
"ChangeFileLinkLabel": "Промяна на файл",
"ChangeImageLinkLabel": "Промяна на изображението",
"ChooseFileLinkLabel": "Изберете файл",
"ChooseImageLinkLabel": "Избор на изображение",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Вие носите отговорност за зачитането на правата на другите, включително авторските права.",
"CreativeCommonsMessage": "Тези резултати са маркирани с лицензи на Криейтив Енъли. Прегледайте лицензите, за да се уверите, че спазвате.",
"DateFormat": "2000 mm/дд/гггг чч: ммА",
"DocumentLabelTemplate": "{0}, Документ, Модифициран {1}, редактиран от {2}, Лично",
"DocumentLibraries": "Библиотеки с документи",
"EditedByNamePlate": "редактирани от ",
"EmptyFileSize": "0 байта",
"FilePickerHeader": "Избор на файлове",
"FileSizeField": "Размер на файла",
"FolderAltText": "Папка",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, папка, модифицирани {1}, редактирани от {2}, {3} елементи,",
"FromLinkLinkLabel": "От връзка",
"ImageAltText": ". {0} Изображение",
"ImageAriaLabelTemplate": ". {0} Изображение",
"ImageLayoutPlaceholderText": "Оформление",
"ImageSizePlaceholderText": "Размер на изображението",
"ItemChildCountField": "Брой на дъщерните елементи",
"LayoutOptionAll": "Всички",
"LayoutOptionSquare": "Площад",
"LayoutOptionTall": "Висок",
"LayoutOptionWide": "Широк",
"LearnMoreLink": "Научете повече.",
"LicenseOptionAll": "Всички",
"LicenseOptionAny": "Само за творческата общност",
"LicensePlaceholderText": "Лиценз",
"LinkFileInstructions": "Поставяне на връзка към файл в OneDrive за бизнес или SharePoint Online",
"LinkHeader": "От връзка",
"LinkImageInstructions": "Поставяне на връзка към изображение в OneDrive за бизнес или SharePoint Online",
"ListLayoutAriaLabel": "Преглед на опциите. {0} {1} .",
"ListLayoutCompact": "Компактен изглед",
"ListLayoutCompactDescription": "Преглед на елементи и детайли в компактен списък",
"ListLayoutList": "Списъчен изглед",
"ListLayoutListDescrition": "Преглед на елементи и детайли в списък",
"ListLayoutTile": "Изглед на плочки",
"ListLayoutTileDescription": "Преглед на елементи с визуализация на плочки",
"ListOptionsAlt": "Преглед на опциите. {0} избрания .",
"ListOptionsTitle": "Отваряне на менюто с опции за изглед",
"Loading": "Зареждане...",
"ModifiedByField": "Модифицирано от",
"ModifiedField": "Дата на промяна",
"NameField": "Име",
"No": "Не",
"ProvidedValueIsInvalid": "Предоставената стойност е невалидна",
"NoExternalLinksValidationMessage": "Поддържаме само свързване към файлове във вашата организация.",
"NoImageValidationMessage": "Това не е връзка към тип файл, който поддържаме. Можете да се свържете само към изображение.",
"NoRecentFiles": "Няма скорошни файлове",
"NoRecentFilesDescription": "Опитайте да изберете файл от сайта си или да го качите от устройството си.",
"NoResultsBadEnglish": "Няма намерен резултат. Опитайте да промените опциите за филтриране",
"ODModifiedField": "Модифицирани",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Модифицирани {2}, редактирани от {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Този елемент е от вашия сайт на OneDrive. Файловете и папките в OneDrive са частни, освен ако не ги споделите. Споделили ли сте този файл с членовете на сайта си, за да могат да го схванат?",
"OneDriveConfirmDialogTitle": "Само проверявам...",
"OneDriveEmptyFolderAlt": "Празна папка",
"OneDriveEmptyFolderDescription": "За да добавите файлове, отидете на вашия OneDrive. Можете също да добавяте файлове в тази папка с помощта на приложението OneDrive за вашия компютър.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Тази папка е празна",
"OneDriveRootFolderName": "Файлове",
"OpenButtonLabel": "Отворен",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Изображения и файлове, предоставени от вашата организация",
"PoweredByBing": "Задвижван от Бинг",
"RecentDocumentsHeader": "Последни документи",
"RecentImagesHeader": "Последни изображения",
"RecentLinkLabel": "Последните",
"SearchBoxPlaceholder": "Търсене в уеб",
"SearchResultAlt": "Резултат от изображението за {0}.",
"SearchResultAriaLabel": "Натиснете Enter, за да отворите източника на изображение в нов раздел.",
"Selected": "Избрани",
"SharingField": "Споделяне",
"SharingPrivate": "Частни",
"SharingShared": "Споделени",
"SiteLinkLabel": "Сайт",
"SizeOptionAll": "Всички",
"SizeOptionExtraLarge": "Много голям",
"SizeOptionLarge": "Голям",
"SizeOptionMedium": "Средно",
"SizeOptionSmall": "Малки",
"SizeUnit": [
"Байта",
"Kb",
"Mb",
"Gb",
"Tb",
"Pb",
"Eb",
"Например",
"1000"
],
"SorryWebSearch": "За съжаление тази функция не се изпълнява в тази извадка, защото ще изисква ключ за Bing API.",
"SortedAscending": "Сортирани от А до Я",
"SortedDescending": "Сортирани от Z до A",
"TypeAriaLabel": "Операции на колони за тип файл, Натиснете, за да сортирате по тип файл",
"UploadFileHeader": "Качване на файл",
"UploadImageHeader": "Качване на изображение",
"UploadLinkLabel": "Качите",
"WebSearchLinkLabel": "Търсене в уеб",
"Yes": "Да",
"StockImagesLinkLabel": "Изображения на склад",
"StockImagesHeader": "Изображения на склад",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "След няколко секунди",
"L_RelativeDateTime_AFewSeconds": "Преди няколко секунди",
"L_RelativeDateTime_AboutAMinuteFuture": "След около минута",
"L_RelativeDateTime_AboutAMinute": "Преди около минута",
"L_RelativeDateTime_XMinutesFuture": "В {0} минута|| {0} минути",
"L_RelativeDateTime_XMinutes": "{0} минути|| преди {0} минути",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "След около час",
"L_RelativeDateTime_AboutAnHour": "Преди около час",
"L_RelativeDateTime_Tomorrow": "Утре",
"L_RelativeDateTime_Yesterday": "Вчера",
"L_RelativeDateTime_TomorrowAndTime": "Утре в {0}",
"L_RelativeDateTime_YesterdayAndTime": "1555 {0}",
"L_RelativeDateTime_XHoursFuture": "През {0} час|| {0} часа",
"L_RelativeDateTime_XHours": "{0} преди час|| {0} преди",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} в {1}",
"L_RelativeDateTime_XDaysFuture": "{0} ден от сега|| {0} дни от сега",
"L_RelativeDateTime_XDays": "{0} дни преди|| {0} дни",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Днес"
},
"NewFolderNamePlaceholder": "Въведете името на вашата папка",
"FolderFilterBoxPlaceholder": "Филтриране на папки по име",
"FolderExplorerLoading": "Зареждане на папки...",
"FolderExplorerNoItems": "Тази папка няма никакви подпапки.",
"IncorrectGuidValidationMessage": "Въведете валиден GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Aplicar",
"ImportButtonLabel": "Importació",
"ExportButtonLabel": "Exportació",
"FormatCodeButtonLabel": "Codi de format",
"JsonFileRequiredMessage": "Si us plau, carregueu un fitxer json",
"SaveButtonLabel": "Salvar",
"CancelButtonLabel": "Cancel·lar",
"PeoplePickerSuggestedContacts": "Persones suggerides",
"PeoplePickerSuggestedGroups": "Grups suggerits",
"PeoplePickerSuggestedCombined": "Persones i grups suggerits",
"PeoplePickerNoResults": "No s'ha trobat cap resultat",
"PeoplePickerLoading": "S'estan carregant els resultats ...",
"DatePickerMonthLongJanuary": "Gener",
"DatePickerMonthShortJanuary": "Gener",
"DatePickerMonthLongFebruary": "Febrer",
"DatePickerMonthShortFebruary": "Febrer",
"DatePickerMonthLongMarch": "Març",
"DatePickerMonthShortMarch": "Març de 20",
"DatePickerMonthLongApril": "Abril",
"DatePickerMonthShortApril": "Abr",
"DatePickerMonthLongMay": "Maig",
"DatePickerMonthShortMay": "Maig",
"DatePickerMonthLongJune": "Juny",
"DatePickerMonthShortJune": "Juny",
"DatePickerMonthLongJuly": "Juliol",
"DatePickerMonthShortJuly": "Juliol",
"DatePickerMonthLongAugust": "Agost",
"DatePickerMonthShortAugust": "Agost",
"DatePickerMonthLongSeptember": "Setembre",
"DatePickerMonthShortSeptember": "Set",
"DatePickerMonthLongOctober": "Octubre",
"DatePickerMonthShortOctober": "Octubre",
"DatePickerMonthLongNovember": "Novembre",
"DatePickerMonthShortNovember": "Novembre",
"DatePickerMonthLongDecember": "Desembre",
"DatePickerMonthShortDecember": "Desembre",
"DatePickerDayLongSunday": "Diumenge",
"DatePickerDayShortSunday": "Sol",
"DatePickerDayLongMonday": "Dilluns",
"DatePickerDayShortMonday": "Meu",
"DatePickerDayLongTuesday": "Dimarts",
"DatePickerDayShortTuesday": "Dm",
"DatePickerDayLongWednesday": "Dimecres",
"DatePickerDayShortWednesday": "Dc",
"DatePickerDayLongThursday": "Dijous",
"DatePickerDayShortThursday": "Dij",
"DatePickerDayLongFriday": "Divendres",
"DatePickerDayShortFriday": "Dv",
"DatePickerDayLongSaturday": "Dissabte",
"DatePickerDayShortSaturday": "Ds",
"DatepickerGoToToday": "Avui",
"DateTimePickerDate": "Data",
"DateTimePickerTime": "Hora",
"ColorPickerButtonTitle": "Tria un color",
"NotNumberValidationMessage": "El valor ha de ser un nombre, real és:",
"MinimumNumberValidationMessage": "El valor ha de ser superior o igual a:",
"MaximumNumberValidationMessage": "El valor ha de ser inferior o igual a:",
"TermPickerNoTerms": "El conjunt de termes no conté cap termes",
"TermPickerExpandTitle": "Expandeix aquest conjunt de terminis",
"TermPickerExpandNode": "Expandeix aquest node",
"TermPickerMenuTermSet": "Menú per al conjunt de terminis",
"TermPickerMenuGroup": "Menú per al grup de terminis",
"TermPickerInLabel": "En",
"TermPickerTermSetLabel": "Conjunt de terminis",
"propertyFieldMultiSelectNoOptions": "No hi ha opcions per seleccionar",
"CollectionDataEmptyFields": "No s'han proporcionat camps per a les dades de la col·lecció.",
"CollectionDataEmptyValue": "No hi ha dades a la recopilació.",
"CollectionAddRowButtonLabel": "Afegeix dades a la col·lecció",
"CollectionDeleteRowButtonLabel": "Suprimeix la fila actual",
"CollectionSaveAndAddButtonLabel": "Afegir i desar",
"CollectionDataItemShowErrorsLabel": "Mostra els errors de fila",
"CollectionDataItemFieldRequiredLabel": "El camp és obligatori.",
"InvalidUrlError": "L'adreça URL proporcionada no és vàlida",
"DescriptionLabel": "Descripció",
"MoreInfoLabel": "Més informació",
"AboutGroupLabel": "Sobre",
"SitePickerSearchBoxPlaceholder": "Cerca...",
"SitePickerNoResults": "Sense resultats de cerca",
"SitePickerSitesChosen": "Llocs web seleccionats",
"TeamPickerSearchBoxPlaceholder": "Cerca...",
"TeamPickerNoResults": "Sense resultats de cerca",
"TeamPickerSitesChosen": "Equips seleccionats",
"AddFileButtonLabel": "Afegeix un fitxer",
"AddImageButtonLabel": "Afegeix una imatge",
"AriaCellValue": "{0} columna, {1}",
"FilePickerCancelButtonLabel": "Cancel·lar",
"CantValidateValidationMessage": "No hem pogut verificar aquest enllaç. Comproveu l'enllaç i torneu-ho a provar.",
"ChangeFileLinkLabel": "Canvia el fitxer",
"ChangeImageLinkLabel": "Canvia la imatge",
"ChooseFileLinkLabel": "Tria un fitxer",
"ChooseImageLinkLabel": "Tria la imatge",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Vostè és responsable de respectar els drets dels altres, inclosos els drets d'autor.",
"CreativeCommonsMessage": "Aquests resultats estan etiquetats amb llicències Creative Commons. Reviseu les llicències per assegurar-vos que compliu.",
"DateFormat": "MM / DD / YYYY hh: mm A",
"DocumentLabelTemplate": "{0}, Document, Modificat {1}, editat per {2}, Privat",
"DocumentLibraries": "Biblioteques de documents",
"EditedByNamePlate": "editat per ",
"EmptyFileSize": "1.0 Els bytes",
"FilePickerHeader": "Selecció de fitxers",
"FileSizeField": "Mida del fitxer",
"FolderAltText": "Carpeta",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Carpeta, Modificació {1}, editat per {2}, {3}, Privat",
"FromLinkLinkLabel": "Des d'un enllaç",
"ImageAltText": ". {0} imatge",
"ImageAriaLabelTemplate": ". {0} imatge",
"ImageLayoutPlaceholderText": "Disposició",
"ImageSizePlaceholderText": "Mida de la imatge",
"ItemChildCountField": "Recompte de fills de l'element",
"LayoutOptionAll": "Tots els",
"LayoutOptionSquare": "Plaça",
"LayoutOptionTall": "Alt",
"LayoutOptionWide": "Àmplia",
"LearnMoreLink": "Més informació.",
"LicenseOptionAll": "Tots els",
"LicenseOptionAny": "Només Creative Commons",
"LicensePlaceholderText": "Llicència",
"LinkFileInstructions": "Enganxar un enllaç a un fitxer del OneDrive for Business o del SharePoint Online",
"LinkHeader": "Des d'un enllaç",
"LinkImageInstructions": "Enganxar un enllaç a una imatge del OneDrive for Business o del SharePoint Online",
"ListLayoutAriaLabel": "Visualitza les opcions. {0} {1} .",
"ListLayoutCompact": "Vista compacta",
"ListLayoutCompactDescription": "Veure elements i detalls en una llista compacta",
"ListLayoutList": "Visualització de llista",
"ListLayoutListDescrition": "Veure elements i detalls d'una llista",
"ListLayoutTile": "Visualització de mosaic",
"ListLayoutTileDescription": "Visualitza els elements amb visualitzacions prèvies en mosaic",
"ListOptionsAlt": "Visualitza les opcions. {0} seleccionat .",
"ListOptionsTitle": "Obre el menú d'opcions de visualització",
"Loading": "Càrrega...",
"ModifiedByField": "Modificat per",
"ModifiedField": "Data de modificació",
"NameField": "Nom",
"No": "No hi ha",
"ProvidedValueIsInvalid": "El valor proporcionat no és vàlid",
"NoExternalLinksValidationMessage": "Només admetem enllaços a fitxers de la vostra pròpia organització.",
"NoImageValidationMessage": "Això no és un enllaç a un tipus de fitxer que admetem. Només podeu enllaçar amb una imatge.",
"NoRecentFiles": "No hi ha fitxers recents",
"NoRecentFilesDescription": "Proveu de seleccionar un fitxer del lloc web o carregar-ne un des del dispositiu.",
"NoResultsBadEnglish": "No s'ha trobat cap resultat. Proveu de canviar les opcions del filtre",
"ODModifiedField": "Modificat",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Modified {2}, editat per {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Aquest element és del lloc del OneDrive. Els fitxers i les carpetes del OneDrive són privats tret que els compartiu. Heu compartit aquest fitxer amb els membres del vostre lloc perquè el puguin fer?",
"OneDriveConfirmDialogTitle": "Només comprovant...",
"OneDriveEmptyFolderAlt": "Carpeta buida",
"OneDriveEmptyFolderDescription": "Per afegir fitxers, aneu al OneDrive. També podeu afegir fitxers a aquesta carpeta mitjançant l'aplicació OneDrive per a l'ordinador.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Aquesta carpeta és buida",
"OneDriveRootFolderName": "fitxers",
"OpenButtonLabel": "Obert",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Imatges i fitxers proporcionats per la vostra organització",
"PoweredByBing": "Desenvolupat per Bing",
"RecentDocumentsHeader": "Documents recents",
"RecentImagesHeader": "Imatges recents",
"RecentLinkLabel": "Recent",
"SearchBoxPlaceholder": "Cerca web",
"SearchResultAlt": "Resultat de la imatge per a {0}.",
"SearchResultAriaLabel": "Premeu Retorn per obrir l'origen de la imatge en una pestanya nova.",
"Selected": "Seleccionat",
"SharingField": "Compartir",
"SharingPrivate": "Privat",
"SharingShared": "Compartit",
"SiteLinkLabel": "Lloc",
"SizeOptionAll": "Tots els",
"SizeOptionExtraLarge": "Molt gran",
"SizeOptionLarge": "Gran",
"SizeOptionMedium": "Mitjà",
"SizeOptionSmall": "Petit",
"SizeUnit": [
"Bytes",
"Kb",
"Mb",
"Gb",
"Tb",
"Pb",
"Eb",
"Ex",
"Preuo o poc"
],
"SorryWebSearch": "Ho sentim, aquesta funció no s'implementa en aquesta mostra, ja que requeriria una clau de l'API del Bing.",
"SortedAscending": "Ordenat A a Z",
"SortedDescending": "S'ha ordenat Z a A",
"TypeAriaLabel": "Operacions de columna per al tipus de fitxer, premeu per ordenar el tipus de fitxer",
"UploadFileHeader": "Carrega el fitxer",
"UploadImageHeader": "Carrega la imatge",
"UploadLinkLabel": "Carregar",
"WebSearchLinkLabel": "Cerca web",
"Yes": "Sí",
"StockImagesLinkLabel": "Imatges d'estoc",
"StockImagesHeader": "Imatges d'estoc",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "En pocs segons",
"L_RelativeDateTime_AFewSeconds": "Fa uns segons",
"L_RelativeDateTime_AboutAMinuteFuture": "En aproximadament un minut",
"L_RelativeDateTime_AboutAMinute": "Fa aproximadament un minut",
"L_RelativeDateTime_XMinutesFuture": "En {0} minut|| En {0} minuts",
"L_RelativeDateTime_XMinutes": "{0} fa un minut|| {0} fa uns minuts",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "En aproximadament una hora",
"L_RelativeDateTime_AboutAnHour": "Fa aproximadament una hora",
"L_RelativeDateTime_Tomorrow": "Demà",
"L_RelativeDateTime_Yesterday": "Ahir",
"L_RelativeDateTime_TomorrowAndTime": "Demà a {0}",
"L_RelativeDateTime_YesterdayAndTime": "Ahir a {0}",
"L_RelativeDateTime_XHoursFuture": "A {0} hora|| En {0} hores",
"L_RelativeDateTime_XHours": "{0} fa una hora|| {0} fa unes hores",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} a {1}",
"L_RelativeDateTime_XDaysFuture": "{0} a partir d'ara|| {0} dies a partir d'ara",
"L_RelativeDateTime_XDays": "{0} fa un dia|| {0} dies enrere",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Avui"
},
"NewFolderNamePlaceholder": "Introduïu el nom de la carpeta",
"FolderFilterBoxPlaceholder": "Filtra les carpetes pel seu nom",
"FolderExplorerLoading": "S'estan carregant les carpetes...",
"FolderExplorerNoItems": "Aquesta carpeta no té subcarpetes.",
"IncorrectGuidValidationMessage": "Introduïu un GUID vàlid"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Anvende",
"ImportButtonLabel": "Importere",
"ExportButtonLabel": "Eksport",
"FormatCodeButtonLabel": "Formatkode",
"JsonFileRequiredMessage": "Upload en json-fil",
"SaveButtonLabel": "Gemme",
"CancelButtonLabel": "Annullere",
"PeoplePickerSuggestedContacts": "Foreslåede personer",
"PeoplePickerSuggestedGroups": "Foreslåede grupper",
"PeoplePickerSuggestedCombined": "Foreslåede personer og grupper",
"PeoplePickerNoResults": "Der blev ikke fundet noget resultat",
"PeoplePickerLoading": "Indlæser resultater ...",
"DatePickerMonthLongJanuary": "Januar",
"DatePickerMonthShortJanuary": "Jan",
"DatePickerMonthLongFebruary": "Februar",
"DatePickerMonthShortFebruary": "Februar",
"DatePickerMonthLongMarch": "Marts",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "April",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Maj",
"DatePickerMonthShortMay": "Maj",
"DatePickerMonthLongJune": "Juni",
"DatePickerMonthShortJune": "Juni",
"DatePickerMonthLongJuly": "Juli",
"DatePickerMonthShortJuly": "2. jul.",
"DatePickerMonthLongAugust": "August",
"DatePickerMonthShortAugust": "August",
"DatePickerMonthLongSeptember": "September",
"DatePickerMonthShortSeptember": "Syv",
"DatePickerMonthLongOctober": "Oktober",
"DatePickerMonthShortOctober": "Oktober",
"DatePickerMonthLongNovember": "November",
"DatePickerMonthShortNovember": "November",
"DatePickerMonthLongDecember": "December",
"DatePickerMonthShortDecember": "December",
"DatePickerDayLongSunday": "Søndag",
"DatePickerDayShortSunday": "Sun",
"DatePickerDayLongMonday": "Mandag",
"DatePickerDayShortMonday": "Min",
"DatePickerDayLongTuesday": "Tirsdag",
"DatePickerDayShortTuesday": "Tue",
"DatePickerDayLongWednesday": "Onsdag",
"DatePickerDayShortWednesday": "Ons",
"DatePickerDayLongThursday": "Torsdag",
"DatePickerDayShortThursday": "Tor",
"DatePickerDayLongFriday": "Fredag",
"DatePickerDayShortFriday": "Fre",
"DatePickerDayLongSaturday": "Lørdag",
"DatePickerDayShortSaturday": "Lør",
"DatepickerGoToToday": "I dag",
"DateTimePickerDate": "Dato",
"DateTimePickerTime": "Tidspunkt",
"ColorPickerButtonTitle": "Vælg en farve",
"NotNumberValidationMessage": "Værdien skal være et tal, faktisk er:",
"MinimumNumberValidationMessage": "Værdien skal være større end eller lig med:",
"MaximumNumberValidationMessage": "Værdien skal være lavere end eller lig med:",
"TermPickerNoTerms": "Ordsæt indeholder ingen termer",
"TermPickerExpandTitle": "Udvid dette ordsæt",
"TermPickerExpandNode": "Udvid denne node",
"TermPickerMenuTermSet": "Menu til ordsæt",
"TermPickerMenuGroup": "Menu for Term Group",
"TermPickerInLabel": "I",
"TermPickerTermSetLabel": "Ordsæt",
"propertyFieldMultiSelectNoOptions": "Ingen indstillinger at vælge",
"CollectionDataEmptyFields": "Der blev ikke angivet felter for indsamlingsdataene.",
"CollectionDataEmptyValue": "Der er ingen data i din samling.",
"CollectionAddRowButtonLabel": "Føje data til samlingen",
"CollectionDeleteRowButtonLabel": "Slet den aktuelle række",
"CollectionSaveAndAddButtonLabel": "Tilføje og gemme",
"CollectionDataItemShowErrorsLabel": "Vis rækkefejl",
"CollectionDataItemFieldRequiredLabel": "Feltet er påkrævet.",
"InvalidUrlError": "Den angivne URL-adresse er ikke gyldig",
"DescriptionLabel": "Beskrivelse",
"MoreInfoLabel": "Flere oplysninger",
"AboutGroupLabel": "Om",
"SitePickerSearchBoxPlaceholder": "Søg...",
"SitePickerNoResults": "Ingen søgeresultater",
"SitePickerSitesChosen": "Hjemmeside(er) valgt",
"TeamPickerSearchBoxPlaceholder": "Søg...",
"TeamPickerNoResults": "Ingen søgeresultater",
"TeamPickerSitesChosen": "Hold valgt",
"AddFileButtonLabel": "Tilføj fil",
"AddImageButtonLabel": "Tilføj billede",
"AriaCellValue": "{0} kolonne, {1}",
"FilePickerCancelButtonLabel": "Annullere",
"CantValidateValidationMessage": "Vi kunne ikke bekræfte dette link. Kontroller linket, og prøv igen.",
"ChangeFileLinkLabel": "Ændre fil",
"ChangeImageLinkLabel": "Skift billede",
"ChooseFileLinkLabel": "Vælg fil",
"ChooseImageLinkLabel": "Vælg billede",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Du er ansvarlig for at respektere andres rettigheder, herunder ophavsret.",
"CreativeCommonsMessage": "Disse resultater er mærket med Creative Commons-licenser. Gennemgå licenserne for at sikre, at du overholder reglerne.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Dokument, Ændret {1}, redigeret af {2}, Privat",
"DocumentLibraries": "Dokumentbiblioteker",
"EditedByNamePlate": "redigeret af ",
"EmptyFileSize": "0 byte",
"FilePickerHeader": "Filvælger",
"FileSizeField": "Filstørrelse",
"FolderAltText": "Mappe",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Mappe, {1}, redigeret af {2}, {3}, Privat",
"FromLinkLinkLabel": "Fra et link",
"ImageAltText": ". {0} billede",
"ImageAriaLabelTemplate": ". {0} billede",
"ImageLayoutPlaceholderText": "Layout",
"ImageSizePlaceholderText": "Billedstørrelse",
"ItemChildCountField": "Antal underordnede varer",
"LayoutOptionAll": "Alle",
"LayoutOptionSquare": "Square",
"LayoutOptionTall": "Høj",
"LayoutOptionWide": "Bred",
"LearnMoreLink": "Lær mere.",
"LicenseOptionAll": "Alle",
"LicenseOptionAny": "Kun Creative Commons",
"LicensePlaceholderText": "Licens",
"LinkFileInstructions": "Indsætte et link til en fil i OneDrive for Business eller SharePoint Online",
"LinkHeader": "Fra et link",
"LinkImageInstructions": "Indsætte et link til et billede i OneDrive for Business eller SharePoint Online",
"ListLayoutAriaLabel": "Få vist indstillinger. {0} {1} .",
"ListLayoutCompact": "Kompakt visning",
"ListLayoutCompactDescription": "Få vist elementer og detaljer på en kompakt liste",
"ListLayoutList": "Listevisning",
"ListLayoutListDescrition": "Få vist elementer og detaljer på en liste",
"ListLayoutTile": "Feltvisning",
"ListLayoutTileDescription": "Få vist elementer med eksempelvisninger af felter",
"ListOptionsAlt": "Få vist indstillinger. {0} markeret .",
"ListOptionsTitle": "Åbne menuen Visningsindstillinger",
"Loading": "Indlæsning...",
"ModifiedByField": "Ændret af",
"ModifiedField": "Dato ændret",
"NameField": "Navn",
"No": "Nej",
"ProvidedValueIsInvalid": "Den angivne værdi er ugyldig",
"NoExternalLinksValidationMessage": "Vi understøtter kun sammenkædning til filer i din egen organisation.",
"NoImageValidationMessage": "Dette er ikke et link til en filtype, vi understøtter. Du kan kun oprette en kæde til et billede.",
"NoRecentFiles": "Ingen nyere filer",
"NoRecentFilesDescription": "Prøv at vælge en fil fra dit website, eller overfør en fra din enhed.",
"NoResultsBadEnglish": "Der blev ikke fundet noget resultat. Prøv at ændre filterindstillingerne",
"ODModifiedField": "Ændret",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, {2}, redigeret af {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Dette element er fra dit OneDrive-websted. Filer og mapper i OneDrive er private, medmindre du deler dem. Har du delt denne fil med dit websted medlemmer, så de kan ccess det?",
"OneDriveConfirmDialogTitle": "Jeg tjekker bare...",
"OneDriveEmptyFolderAlt": "Tom mappe",
"OneDriveEmptyFolderDescription": "Hvis du vil tilføje filer, skal du gå til dit OneDrive. Du kan også føje filer til denne mappe ved hjælp af OneDrive-appen til din computer.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Denne mappe er tom",
"OneDriveRootFolderName": "filer",
"OpenButtonLabel": "Åbne",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Billeder og filer fra din organisation",
"PoweredByBing": "Drevet af Bing",
"RecentDocumentsHeader": "Seneste dokumenter",
"RecentImagesHeader": "Seneste billeder",
"RecentLinkLabel": "Seneste",
"SearchBoxPlaceholder": "Søgning på internettet",
"SearchResultAlt": "Billedresultat for {0}.",
"SearchResultAriaLabel": "Tryk på Enter for at åbne billedkilden under en ny fane.",
"Selected": "Valgte",
"SharingField": "Deling",
"SharingPrivate": "Privat",
"SharingShared": "Delt",
"SiteLinkLabel": "Websted",
"SizeOptionAll": "Alle",
"SizeOptionExtraLarge": "Ekstra stor",
"SizeOptionLarge": "Store",
"SizeOptionMedium": "Medium",
"SizeOptionSmall": "Lille",
"SizeUnit": [
"Byte",
"Kb",
"Mb",
"Gb",
"Tb",
"Pb",
"Eb",
"F.eks",
"Yb"
],
"SorryWebSearch": "Beklager, men denne funktion er ikke implementeret i dette eksempel, fordi det ville kræve en Bing API-nøgle.",
"SortedAscending": "Sorteret A til Å",
"SortedDescending": "Sorteret Z til A",
"TypeAriaLabel": "Kolonnehandlinger for Filtype, Tryk for at sortere efter Filtype",
"UploadFileHeader": "Overfør fil",
"UploadImageHeader": "Overfør billede",
"UploadLinkLabel": "Uploade",
"WebSearchLinkLabel": "Søgning på internettet",
"Yes": "Ja",
"StockImagesLinkLabel": "Stock billeder",
"StockImagesHeader": "Stock billeder",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "På få sekunder",
"L_RelativeDateTime_AFewSeconds": "For et par sekunder siden",
"L_RelativeDateTime_AboutAMinuteFuture": "I cirka et minut",
"L_RelativeDateTime_AboutAMinute": "For et minut siden",
"L_RelativeDateTime_XMinutesFuture": "Om {0} minut|| På {0} minutter",
"L_RelativeDateTime_XMinutes": "{0} minut siden|| {0} minutter siden",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "I cirka en time",
"L_RelativeDateTime_AboutAnHour": "For en time siden",
"L_RelativeDateTime_Tomorrow": "Morgen",
"L_RelativeDateTime_Yesterday": "I går",
"L_RelativeDateTime_TomorrowAndTime": "I morgen kl{0}",
"L_RelativeDateTime_YesterdayAndTime": "I går kl{0}",
"L_RelativeDateTime_XHoursFuture": "Om {0} time|| I {0} timer",
"L_RelativeDateTime_XHours": "{0} for en time siden|| {0} timer siden",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} på {1}",
"L_RelativeDateTime_XDaysFuture": "{0} dag fra nu|| {0} dage fra nu",
"L_RelativeDateTime_XDays": "{0} dag siden|| {0} dage siden",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "I dag"
},
"NewFolderNamePlaceholder": "Angiv navnet på din mappe",
"FolderFilterBoxPlaceholder": "Filtrere mapper efter navn",
"FolderExplorerLoading": "Indlæser mapper...",
"FolderExplorerNoItems": "Denne mappe har ingen undermapper.",
"IncorrectGuidValidationMessage": "Angiv et gyldigt GUID"
};
});

View File

@ -0,0 +1,231 @@
define([], () => {
return {
"ApplyButtonLabel": "Anwenden",
"ImportButtonLabel": "Importieren",
"ExportButtonLabel": "Exportieren",
"FormatCodeButtonLabel": "Formatcode",
"JsonFileRequiredMessage": "Bitte laden Sie eine json-Datei hoch",
"SaveButtonLabel": "Speichern",
"CancelButtonLabel": "Abbrechen",
"PeoplePickerSuggestedContacts": "Vorgeschlagene Personen",
"PeoplePickerSuggestedGroups": "Vorgeschlagene Gruppen",
"PeoplePickerSuggestedCombined": "Vorgeschlagene Personen und Gruppen",
"PeoplePickerNoResults": "Kein Ergebnis gefunden",
"PeoplePickerLoading": "Ergebnisse werden geladen ...",
"DatePickerMonthLongJanuary": "Januar",
"DatePickerMonthShortJanuary": "Jan",
"DatePickerMonthLongFebruary": "Februar",
"DatePickerMonthShortFebruary": "Feb",
"DatePickerMonthLongMarch": "März",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "April",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Mai",
"DatePickerMonthShortMay": "Mai",
"DatePickerMonthLongJune": "Juni",
"DatePickerMonthShortJune": "Jun",
"DatePickerMonthLongJuly": "Juli",
"DatePickerMonthShortJuly": "Jul",
"DatePickerMonthLongAugust": "August",
"DatePickerMonthShortAugust": "Aug",
"DatePickerMonthLongSeptember": "September",
"DatePickerMonthShortSeptember": "Sieben",
"DatePickerMonthLongOctober": "Oktober",
"DatePickerMonthShortOctober": "Okt",
"DatePickerMonthLongNovember": "November",
"DatePickerMonthShortNovember": "Nov",
"DatePickerMonthLongDecember": "Dezember",
"DatePickerMonthShortDecember": "Dec",
"DatePickerDayLongSunday": "Sonntag",
"DatePickerDayShortSunday": "Sonne",
"DatePickerDayLongMonday": "Montag",
"DatePickerDayShortMonday": "Mein",
"DatePickerDayLongTuesday": "Dienstag",
"DatePickerDayShortTuesday": "Tue",
"DatePickerDayLongWednesday": "Mittwoch",
"DatePickerDayShortWednesday": "Wed",
"DatePickerDayLongThursday": "Donnerstag",
"DatePickerDayShortThursday": "Thu",
"DatePickerDayLongFriday": "Freitag",
"DatePickerDayShortFriday": "Fri",
"DatePickerDayLongSaturday": "Samstag",
"DatePickerDayShortSaturday": "Sat",
"DatepickerGoToToday": "Heute",
"DateTimePickerDate": "Datum",
"DateTimePickerTime": "Zeit",
"ColorPickerButtonTitle": "Wählen Sie eine Farbe",
"NotNumberValidationMessage": "Der Wert sollte eine Zahl sein, ist tatsächlich:",
"MinimumNumberValidationMessage": "Der Wert sollte größer oder gleich sein:",
"MaximumNumberValidationMessage": "Der Wert sollte niedriger oder gleich sein:",
"TermPickerNoTerms": "Begriffssatz enthält keine Begriffe",
"TermPickerExpandTitle": "Erweitern dieses Begriffssatzes",
"TermPickerExpandNode": "Erweitern dieses Knotens",
"TermPickerMenuTermSet": "Menü für Term Set",
"TermPickerMenuTerm": "Menü für Term",
"TermPickerMenuGroup": "Menü für Term Group",
"TermPickerInLabel": "In",
"TermPickerTermSetLabel": "Begriffssatz",
"propertyFieldMultiSelectNoOptions": "Keine Optionen zur Auswahl",
"CollectionDataEmptyFields": "Für die Sammlungsdaten wurden keine Felder angegeben.",
"CollectionDataEmptyValue": "Keine Daten in Ihrer Sammlung.",
"CollectionAddRowButtonLabel": "Hinzufügen von Daten zur Auflistung",
"CollectionDeleteRowButtonLabel": "Löschen der aktuellen Zeile",
"CollectionSaveAndAddButtonLabel": "Hinzufügen und Speichern",
"CollectionDataItemShowErrorsLabel": "Zeilenfehler anzeigen",
"CollectionDataItemFieldRequiredLabel": "Feld ist erforderlich.",
"InvalidUrlError": "Die angegebene URL ist ungültig.",
"DescriptionLabel": "Beschreibung",
"MoreInfoLabel": "Weitere Informationen",
"AboutGroupLabel": "Über",
"SitePickerSearchBoxPlaceholder": "Suche...",
"SitePickerNoResults": "Keine Suchergebnisse",
"SitePickerSitesChosen": "Website(n) ausgewählt",
"TeamPickerSearchBoxPlaceholder": "Suche...",
"TeamPickerNoResults": "Keine Suchergebnisse",
"TeamPickerSitesChosen": "Teams(e) ausgewählt",
"AddFileButtonLabel": "Datei hinzufügen",
"AddImageButtonLabel": "Hinzufügen von Bildern",
"AriaCellValue": "{0} Spalte, {1}",
"FilePickerCancelButtonLabel": "Abbrechen",
"CantValidateValidationMessage": "Wir konnten diesen Link nicht überprüfen. Überprüfen Sie den Link, und versuchen Sie es erneut.",
"ChangeFileLinkLabel": "Änderungsdatei",
"ChangeImageLinkLabel": "Ändern des Bildes",
"ChooseFileLinkLabel": "Datei auswählen",
"ChooseImageLinkLabel": "Wählen Sie Bild",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Sie sind für die Achtung der Rechte anderer verantwortlich, einschließlich des Urheberrechts.",
"CreativeCommonsMessage": "Diese Ergebnisse sind mit Creative Commons-Lizenzen gekennzeichnet. Überprüfen Sie die Lizenzen, um sicherzustellen, dass Sie die Anforderungen erfüllen.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Dokument, Geändertes {1}, bearbeitet von {2}, Privat",
"DocumentLibraries": "Dokumentbibliotheken",
"EditedByNamePlate": "bearbeitet von ",
"EmptyFileSize": "0 Bytes",
"FilePickerHeader": "Dateiauswahl",
"FileSizeField": "Dateigröße",
"FolderAltText": "Ordner",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Ordner, geänderte {1}, bearbeitet von {2}, {3} Elementen, Privat",
"FromLinkLinkLabel": "Von einem Link",
"ImageAltText": ". {0} Bild",
"ImageAriaLabelTemplate": ". {0} Bild",
"ImageLayoutPlaceholderText": "Layout",
"ImageSizePlaceholderText": "Bildgröße",
"ItemChildCountField": "Element Kinderanzahl",
"LayoutOptionAll": "Alle",
"LayoutOptionSquare": "Quadrat",
"LayoutOptionTall": "Hoch",
"LayoutOptionWide": "Breite",
"LearnMoreLink": "Weitere Informationen.",
"LicenseOptionAll": "Alle",
"LicenseOptionAny": "Nur Creative Commons",
"LicensePlaceholderText": "Lizenz",
"LinkFileInstructions": "Einfügen eines Links zu einer Datei in OneDrive for Business oder SharePoint Online",
"LinkHeader": "Von einem Link",
"LinkImageInstructions": "Einfügen eines Links zu einem Bild in OneDrive for Business oder SharePoint Online",
"ListLayoutAriaLabel": "Optionen anzeigen. {0} {1} .",
"ListLayoutCompact": "Kompakte Ansicht",
"ListLayoutCompactDescription": "Anzeigen von Elementen und Details in einer kompakten Liste",
"ListLayoutList": "Listenansicht",
"ListLayoutListDescrition": "Anzeigen von Elementen und Details in einer Liste",
"ListLayoutTile": "Kachelansicht",
"ListLayoutTileDescription": "Anzeigen von Elementen mit Kachelvorschau",
"ListOptionsAlt": "Optionen anzeigen. {0} ausgewählt .",
"ListOptionsTitle": "Öffnen sie das Menü \"Ansichtsoptionen\"",
"Loading": "Laden...",
"ModifiedByField": "Geändert von",
"ModifiedField": "Datum geändert",
"NameField": "Namen",
"No": "Nein",
"ProvidedValueIsInvalid": "Vorausgesetzter Wert ist ungültig",
"NoExternalLinksValidationMessage": "Wir unterstützen nur die Verknüpfung mit Dateien in Ihrer eigenen Organisation.",
"NoImageValidationMessage": "Dies ist kein Link zu einem Dateityp, den wir unterstützen. Sie können nur eine Verknüpfung zu einem Bild herstellen.",
"NoRecentFiles": "Keine aktuellen Dateien",
"NoRecentFilesDescription": "Versuchen Sie, eine Datei von Ihrer Website auszuwählen, oder laden Sie eine Datei von Ihrem Gerät hoch.",
"NoResultsBadEnglish": "Es wurde kein Ergebnis gefunden. Versuchen Sie, die Filteroptionen zu ändern",
"ODModifiedField": "Geändert",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Modified {2}, bearbeitet von {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Dieses Element stammt von Ihrer OneDrive-Website. Dateien und Ordner in OneDrive sind privat, es sei denn, Sie geben sie aus. Haben Sie diese Datei für Ihre Websitemitglieder freigegeben, damit sie sie zissen können?",
"OneDriveConfirmDialogTitle": "Nur überprüfen...",
"OneDriveEmptyFolderAlt": "Leerer Ordner",
"OneDriveEmptyFolderDescription": "Um Dateien hinzuzufügen, wechseln Sie zu OneDrive. Sie können diesem Ordner auch Dateien hinzufügen, indem Sie die OneDrive-App für Ihren Computer verwenden.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Dieser Ordner ist leer",
"OneDriveRootFolderName": "Dateien",
"OpenButtonLabel": "Öffnen",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Bilder und Dateien, die von Ihrer Organisation bereitgestellt werden",
"PoweredByBing": "Angetrieben von Bing",
"RecentDocumentsHeader": "Aktuelle Dokumente",
"RecentImagesHeader": "Aktuelle Bilder",
"RecentLinkLabel": "aktuell",
"SearchBoxPlaceholder": "Websuche",
"SearchResultAlt": "Bildergebnis für {0}.",
"SearchResultAriaLabel": "Drücken Sie die Eingabetaste, um die Bildquelle in einer neuen Registerkarte zu öffnen.",
"Selected": "Ausgewählten",
"SharingField": "Teilens",
"SharingPrivate": "privat",
"SharingShared": "geteilt",
"SiteLinkLabel": "Website",
"SizeOptionAll": "Alle",
"SizeOptionExtraLarge": "Extra groß",
"SizeOptionLarge": "Große",
"SizeOptionMedium": "Mittel",
"SizeOptionSmall": "klein",
"SizeUnit": [
"Bytes",
"Kb",
"Mb",
"Gb",
"Tb",
"Pb",
"Eb",
"ZB",
"Yb"
],
"SorryWebSearch": "Diese Funktion ist in diesem Beispiel leider nicht implementiert, da dafür ein Bing-API-Schlüssel erforderlich wäre.",
"SortedAscending": "Sortiert A bis Z",
"SortedDescending": "Sortiert Z nach A",
"TypeAriaLabel": "Spaltenoperationen für Dateityp, Drücken, um nach Dateityp zu sortieren",
"UploadFileHeader": "Datei hochladen",
"UploadImageHeader": "Bild hochladen",
"UploadLinkLabel": "Hochladen",
"WebSearchLinkLabel": "Websuche",
"Yes": "Ja",
"StockImagesLinkLabel": "Stockbilder",
"StockImagesHeader": "Stock Bilder",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "In wenigen Sekunden",
"L_RelativeDateTime_AFewSeconds": "vor ein paar Sekunden",
"L_RelativeDateTime_AboutAMinuteFuture": "In etwa einer Minute",
"L_RelativeDateTime_AboutAMinute": "Vor etwa einer Minute",
"L_RelativeDateTime_XMinutesFuture": "In {0} Minute|| In {0} Minuten",
"L_RelativeDateTime_XMinutes": "vor {0} Minuten|| vor {0} Minuten",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "In etwa einer Stunde",
"L_RelativeDateTime_AboutAnHour": "vor etwa einer Stunde",
"L_RelativeDateTime_Tomorrow": "Morgen",
"L_RelativeDateTime_Yesterday": "Gestern",
"L_RelativeDateTime_TomorrowAndTime": "Morgen auf {0}",
"L_RelativeDateTime_YesterdayAndTime": "Gestern bei {0}",
"L_RelativeDateTime_XHoursFuture": "In {0} Stunde|| In {0} Stunden",
"L_RelativeDateTime_XHours": "vor {0} Stunde|| vor {0} Stunden",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} bei {1}",
"L_RelativeDateTime_XDaysFuture": "{0}-Tag|| in {0} Tagen",
"L_RelativeDateTime_XDays": "vor {0} Tag|| vor {0} Tagen",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Heute"
},
"NewFolderNamePlaceholder": "Geben Sie Ihren Ordnernamen ein",
"FolderFilterBoxPlaceholder": "Filtern von Ordnern nach Namen",
"FolderExplorerLoading": "Ordner werden geladen...",
"FolderExplorerNoItems": "Dieser Ordner hat keine Unterordner.",
"IncorrectGuidValidationMessage": "Bitte geben Sie eine gültige GUID ein"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Εφαρμόσετε",
"ImportButtonLabel": "Εισαγωγή",
"ExportButtonLabel": "Εξαγωγή",
"FormatCodeButtonLabel": "Κωδικός μορφοποίησης",
"JsonFileRequiredMessage": "Παρακαλώ ανεβάστε ένα αρχείο json",
"SaveButtonLabel": "Αποθήκευση",
"CancelButtonLabel": "Ακυρώσετε",
"PeoplePickerSuggestedContacts": "Προτεινόμενα άτομα",
"PeoplePickerSuggestedGroups": "Προτεινόμενες ομάδες",
"PeoplePickerSuggestedCombined": "Προτεινόμενα άτομα και ομάδες",
"PeoplePickerNoResults": "Δεν βρέθηκε αποτέλεσμα",
"PeoplePickerLoading": "Φόρτωση αποτελέσματα ...",
"DatePickerMonthLongJanuary": "Ιανουάριος",
"DatePickerMonthShortJanuary": "Ιανουαρίου",
"DatePickerMonthLongFebruary": "Φεβρουάριος",
"DatePickerMonthShortFebruary": "Φεβρουαρίου",
"DatePickerMonthLongMarch": "Μάρτιος",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "Απρίλιος",
"DatePickerMonthShortApril": "Απρ",
"DatePickerMonthLongMay": "Μάιος",
"DatePickerMonthShortMay": "Μάιος",
"DatePickerMonthLongJune": "Ιούνιος",
"DatePickerMonthShortJune": "Ιουνίου",
"DatePickerMonthLongJuly": "Ιούλιος",
"DatePickerMonthShortJuly": "Ιουλ",
"DatePickerMonthLongAugust": "Αύγουστος",
"DatePickerMonthShortAugust": "Αυγούστου",
"DatePickerMonthLongSeptember": "Σεπτέμβριος",
"DatePickerMonthShortSeptember": "Επτά",
"DatePickerMonthLongOctober": "Οκτώβριος",
"DatePickerMonthShortOctober": "Οκτωβρίου",
"DatePickerMonthLongNovember": "Νοέμβριος",
"DatePickerMonthShortNovember": "Νοεμβρίου",
"DatePickerMonthLongDecember": "Δεκέμβριος",
"DatePickerMonthShortDecember": "Δεκεμβρίου",
"DatePickerDayLongSunday": "Κυριακή",
"DatePickerDayShortSunday": "Κυρ",
"DatePickerDayLongMonday": "Δευτέρα",
"DatePickerDayShortMonday": "Μου",
"DatePickerDayLongTuesday": "Τρίτη",
"DatePickerDayShortTuesday": "Τρί",
"DatePickerDayLongWednesday": "Τετάρτη",
"DatePickerDayShortWednesday": "Τετ",
"DatePickerDayLongThursday": "Πέμπτη",
"DatePickerDayShortThursday": "Πέμ",
"DatePickerDayLongFriday": "Παρασκευή",
"DatePickerDayShortFriday": "Παρ",
"DatePickerDayLongSaturday": "Σάββατο",
"DatePickerDayShortSaturday": "Σάβ",
"DatepickerGoToToday": "Σήμερα",
"DateTimePickerDate": "Ημερομηνία",
"DateTimePickerTime": "Ώρα",
"ColorPickerButtonTitle": "Επιλογή χρώματος",
"NotNumberValidationMessage": "Η τιμή πρέπει να είναι ένας αριθμός, η πραγματική είναι:",
"MinimumNumberValidationMessage": "Η τιμή πρέπει να είναι μεγαλύτερη ή ίση με:",
"MaximumNumberValidationMessage": "Η τιμή πρέπει να είναι μικρότερη ή ίση με:",
"TermPickerNoTerms": "Το σύνολο όρων δεν περιέχει όρους",
"TermPickerExpandTitle": "Ανάπτυξη αυτού του συνόλου όρων",
"TermPickerExpandNode": "Ανάπτυξη αυτού του κόμβου",
"TermPickerMenuTermSet": "Μενού για σύνολο όρων",
"TermPickerMenuGroup": "Μενού για ομάδα όρων",
"TermPickerInLabel": "In",
"TermPickerTermSetLabel": "Σύνολο όρων",
"propertyFieldMultiSelectNoOptions": "Δεν υπάρχουν επιλογές για να επιλέξετε",
"CollectionDataEmptyFields": "Δεν δόθηκαν πεδία για τα δεδομένα συλλογής.",
"CollectionDataEmptyValue": "Δεν υπάρχουν δεδομένα στη συλλογή σας.",
"CollectionAddRowButtonLabel": "Προσθήκη δεδομένων στη συλλογή",
"CollectionDeleteRowButtonLabel": "Διαγραφή της τρέχουσας γραμμής",
"CollectionSaveAndAddButtonLabel": "Προσθήκη και αποθήκευση",
"CollectionDataItemShowErrorsLabel": "Εμφάνιση σφαλμάτων γραμμής",
"CollectionDataItemFieldRequiredLabel": "Απαιτείται πεδίο.",
"InvalidUrlError": "Η παρεχόμενη διεύθυνση URL δεν είναι έγκυρη",
"DescriptionLabel": "Περιγραφή",
"MoreInfoLabel": "Περισσότερες πληροφορίες",
"AboutGroupLabel": "Για",
"SitePickerSearchBoxPlaceholder": "Αναζήτηση...",
"SitePickerNoResults": "Δεν υπάρχουν αποτελέσματα αναζήτησης",
"SitePickerSitesChosen": "Επιλεγμένοι ιστότοποι",
"TeamPickerSearchBoxPlaceholder": "Αναζήτηση...",
"TeamPickerNoResults": "Δεν υπάρχουν αποτελέσματα αναζήτησης",
"TeamPickerSitesChosen": "Επιλεγμένες ομάδες",
"AddFileButtonLabel": "Προσθήκη αρχείου",
"AddImageButtonLabel": "Προσθήκη εικόνας",
"AriaCellValue": "{0} στήλη, {1}",
"FilePickerCancelButtonLabel": "Ακυρώσετε",
"CantValidateValidationMessage": "Δεν ήταν δυνατή η επαλήθευση αυτής της σύνδεσης. Ελέγξτε τη σύνδεση και προσπαθήστε ξανά.",
"ChangeFileLinkLabel": "Αλλαγή αρχείου",
"ChangeImageLinkLabel": "Αλλαγή εικόνας",
"ChooseFileLinkLabel": "Επιλογή αρχείου",
"ChooseImageLinkLabel": "Επιλογή εικόνας",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Είστε υπεύθυνοι για το σεβασμό των δικαιωμάτων των άλλων, συμπεριλαμβανομένων των πνευματικών δικαιωμάτων.",
"CreativeCommonsMessage": "Αυτά τα αποτελέσματα επισημαίνονται με άδειες Creative Commons. Ελέγξτε τις άδειες χρήσης για να βεβαιωθείτε ότι συμμορφώνεστε.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Έγγραφο, Τροποποιημένο {1}, επεξεργασμένο από {2}, Ιδιωτικό",
"DocumentLibraries": "Βιβλιοθήκες εγγράφων",
"EditedByNamePlate": "επεξεργασία από ",
"EmptyFileSize": "0 byte",
"FilePickerHeader": "Επιλογή αρχείων",
"FileSizeField": "Μέγεθος αρχείου",
"FolderAltText": "Φάκελο",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Φάκελος, Τροποποιημένο {1}, επεξεργασμένο από {2}, {3} στοιχεία, Ιδιωτικό",
"FromLinkLinkLabel": "Από μια σύνδεση",
"ImageAltText": ". εικόνα {0}",
"ImageAriaLabelTemplate": ". εικόνα {0}",
"ImageLayoutPlaceholderText": "Διάταξη",
"ImageSizePlaceholderText": "Μέγεθος εικόνας",
"ItemChildCountField": "Θυγατρικό στοιχείο",
"LayoutOptionAll": "Όλα",
"LayoutOptionSquare": "Πλατεία",
"LayoutOptionTall": "Ψηλό",
"LayoutOptionWide": "Ευρύ",
"LearnMoreLink": "Μάθε περισσότερα.",
"LicenseOptionAll": "Όλα",
"LicenseOptionAny": "Μόνο δημιουργικά κοινά",
"LicensePlaceholderText": "Άδεια",
"LinkFileInstructions": "Επικόλληση σύνδεσης σε αρχείο στο OneDrive για επιχειρήσεις ή στο SharePoint Online",
"LinkHeader": "Από μια σύνδεση",
"LinkImageInstructions": "Επικόλληση σύνδεσης σε εικόνα στο OneDrive για επιχειρήσεις ή στο SharePoint Online",
"ListLayoutAriaLabel": "Προβολή επιλογών. {0} {1} .",
"ListLayoutCompact": "Συμπαγής προβολή",
"ListLayoutCompactDescription": "Προβολή στοιχείων και λεπτομερειών σε μια συμπαγή λίστα",
"ListLayoutList": "Προβολή λίστας",
"ListLayoutListDescrition": "Προβολή στοιχείων και λεπτομερειών σε μια λίστα",
"ListLayoutTile": "Προβολή πλακιδίων",
"ListLayoutTileDescription": "Προβολή στοιχείων με προεπισκοπήσεις πλακιδίων",
"ListOptionsAlt": "Προβολή επιλογών. {0} επιλεγμένο .",
"ListOptionsTitle": "Άνοιγμα του μενού επιλογών προβολής",
"Loading": "Φόρτωση...",
"ModifiedByField": "Τροποποιήθηκε από",
"ModifiedField": "Ημερομηνία τροποποίησης",
"NameField": "Όνομα",
"No": "Όχι",
"ProvidedValueIsInvalid": "Η παρεχόμενη τιμή δεν είναι έγκυρη",
"NoExternalLinksValidationMessage": "Υποστηρίζουμε μόνο τη σύνδεση με αρχεία στον οργανισμό σας.",
"NoImageValidationMessage": "Αυτό δεν είναι μια σύνδεση με έναν τύπο αρχείου που υποστηρίζουμε. Μπορείτε να συνδεθείτε μόνο με μια εικόνα.",
"NoRecentFiles": "Δεν υπάρχουν πρόσφατα αρχεία",
"NoRecentFilesDescription": "Δοκιμάστε να επιλέξετε ένα αρχείο από τον ιστότοπό σας ή να αποστείλετε ένα από τη συσκευή σας.",
"NoResultsBadEnglish": "Δεν βρέθηκε αποτέλεσμα. Προσπαθήστε να αλλάξετε τις επιλογές φίλτρου",
"ODModifiedField": "Τροποποιηθεί",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Τροποποιημένο {2}, επεξεργασμένο από {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Αυτό το στοιχείο προέρχεται από την τοποθεσία του OneDrive. Τα αρχεία και οι φάκελοι στο OneDrive είναι ιδιωτικά, εκτός εάν κάνετε κοινή χρήση τους. Έχετε μοιραστεί αυτό το αρχείο με τα μέλη της τοποθεσίας σας, ώστε να μπορούν να το ccess;",
"OneDriveConfirmDialogTitle": "Απλά ελέγχω...",
"OneDriveEmptyFolderAlt": "Κενός φάκελος",
"OneDriveEmptyFolderDescription": "Για να προσθέσετε αρχεία, μεταβείτε στο OneDrive. Μπορείτε επίσης να προσθέσετε αρχεία σε αυτόν το φάκελο χρησιμοποιώντας την εφαρμογή OneDrive για τον υπολογιστή σας.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Αυτός ο φάκελος είναι κενός",
"OneDriveRootFolderName": "Αρχεία",
"OpenButtonLabel": "Ανοίξετε",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Εικόνες και αρχεία που παρέχονται από τον οργανισμό σας",
"PoweredByBing": "Υποστηρίζεται από Bing",
"RecentDocumentsHeader": "Πρόσφατα έγγραφα",
"RecentImagesHeader": "Πρόσφατες εικόνες",
"RecentLinkLabel": "Πρόσφατους",
"SearchBoxPlaceholder": "Αναζήτηση στο Web",
"SearchResultAlt": "Αποτέλεσμα εικόνας για {0}.",
"SearchResultAriaLabel": "Πατήστε το πλήκτρο Enter για να ανοίξετε την προέλευση εικόνας σε μια νέα καρτέλα.",
"Selected": "Επιλεγμένο",
"SharingField": "Κοινή χρήση",
"SharingPrivate": "Ιδιωτικό",
"SharingShared": "Κοινόχρηστο",
"SiteLinkLabel": "Τοποθεσία",
"SizeOptionAll": "Όλα",
"SizeOptionExtraLarge": "Πολύ μεγάλο",
"SizeOptionLarge": "Μεγάλο",
"SizeOptionMedium": "Μέτριος",
"SizeOptionSmall": "Μικρό",
"SizeUnit": [
"Byte",
"Kb",
"Mb",
"Gb",
"Tb",
"Pb",
"Eb",
"Π.χ",
"Yb"
],
"SorryWebSearch": "Λυπούμαστε, αυτή η λειτουργία δεν υλοποιείται σε αυτό το δείγμα, επειδή θα απαιτούσε ένα κλειδί API Bing.",
"SortedAscending": "Ταξινόμηση από το Α έως το Ω",
"SortedDescending": "Ταξινόμηση από το Ω στο Α",
"TypeAriaLabel": "Λειτουργίες στήλης για τύπο αρχείου, πατήστε για ταξινόμηση σε τύπο αρχείου",
"UploadFileHeader": "Αποστολή αρχείου",
"UploadImageHeader": "Αποστολή εικόνας",
"UploadLinkLabel": "Φορτώσετε",
"WebSearchLinkLabel": "Αναζήτηση στο Web",
"Yes": "Ναι",
"StockImagesLinkLabel": "Στοκ εικόνες",
"StockImagesHeader": "Στοκ Εικόνες",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Σε λίγα δευτερόλεπτα.",
"L_RelativeDateTime_AFewSeconds": "Πριν από λίγα δευτερόλεπτα.",
"L_RelativeDateTime_AboutAMinuteFuture": "Σε περίπου ένα λεπτό",
"L_RelativeDateTime_AboutAMinute": "Πριν ένα λεπτό περίπου.",
"L_RelativeDateTime_XMinutesFuture": "Σε {0} λεπτό|| Σε {0} λεπτά",
"L_RelativeDateTime_XMinutes": "{0} λεπτά πριν|| πριν {0} λεπτά",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Σε περίπου μία ώρα",
"L_RelativeDateTime_AboutAnHour": "Πριν μια ώρα περίπου.",
"L_RelativeDateTime_Tomorrow": "Αύριο",
"L_RelativeDateTime_Yesterday": "Χθες",
"L_RelativeDateTime_TomorrowAndTime": "Αύριο στο {0}",
"L_RelativeDateTime_YesterdayAndTime": "Χθες στο {0}",
"L_RelativeDateTime_XHoursFuture": "Σε {0} ώρα|| Σε {0} ώρες",
"L_RelativeDateTime_XHours": "{0} ώρα πριν|| {0} ώρες",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} στο {1}",
"L_RelativeDateTime_XDaysFuture": "{0} μέρα από τώρα|| {0} μέρες από τώρα",
"L_RelativeDateTime_XDays": "{0} ημέρα πριν|| {0} ημέρες",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Σήμερα"
},
"NewFolderNamePlaceholder": "Πληκτρολογήστε το όνομα του φακέλου σας",
"FolderFilterBoxPlaceholder": "Φιλτράρισμα φακέλων με βάση το όνομα",
"FolderExplorerLoading": "Φόρτωση φακέλων...",
"FolderExplorerNoItems": "Αυτός ο φάκελος δεν έχει υποφακέλους.",
"IncorrectGuidValidationMessage": "Πληκτρολογήστε ένα έγκυρο GUID"
};
});

View File

@ -0,0 +1,239 @@
define([], function () {
return {
ApplyButtonLabel: "Apply",
ImportButtonLabel: "Import",
ExportButtonLabel: "Export",
FormatCodeButtonLabel: "Format Code",
JsonFileRequiredMessage: "Please upload a json file",
SaveButtonLabel: "Save",
CancelButtonLabel: "Cancel",
PeoplePickerSuggestedContacts: "Suggested people",
PeoplePickerSuggestedGroups: "Suggested groups",
PeoplePickerSuggestedCombined: "Suggested people and groups",
PeoplePickerNoResults: "No result found",
PeoplePickerLoading: "Loading results ...",
DatePickerMonthLongJanuary: "January",
DatePickerMonthShortJanuary: "Jan",
DatePickerMonthLongFebruary: "February",
DatePickerMonthShortFebruary: "Feb",
DatePickerMonthLongMarch: "March",
DatePickerMonthShortMarch: "Mar",
DatePickerMonthLongApril: "April",
DatePickerMonthShortApril: "Apr",
DatePickerMonthLongMay: "May",
DatePickerMonthShortMay: "May",
DatePickerMonthLongJune: "June",
DatePickerMonthShortJune: "Jun",
DatePickerMonthLongJuly: "July",
DatePickerMonthShortJuly: "Jul",
DatePickerMonthLongAugust: "August",
DatePickerMonthShortAugust: "Aug",
DatePickerMonthLongSeptember: "September",
DatePickerMonthShortSeptember: "Sept",
DatePickerMonthLongOctober: "October",
DatePickerMonthShortOctober: "Oct",
DatePickerMonthLongNovember: "November",
DatePickerMonthShortNovember: "Nov",
DatePickerMonthLongDecember: "December",
DatePickerMonthShortDecember: "Dec",
DatePickerDayLongSunday: "Sunday",
DatePickerDayShortSunday: "Sun",
DatePickerDayLongMonday: "Monday",
DatePickerDayShortMonday: "Mon",
DatePickerDayLongTuesday: "Tuesday",
DatePickerDayShortTuesday: "Tue",
DatePickerDayLongWednesday: "Wednesday",
DatePickerDayShortWednesday: "Wed",
DatePickerDayLongThursday: "Thursday",
DatePickerDayShortThursday: "Thu",
DatePickerDayLongFriday: "Friday",
DatePickerDayShortFriday: "Fri",
DatePickerDayLongSaturday: "Saturday",
DatePickerDayShortSaturday: "Sat",
DatepickerGoToToday: "Today",
DateTimePickerDate: "Date",
DateTimePickerTime: "Time",
ColorPickerButtonTitle: "Pick a Color",
NotNumberValidationMessage: "The value should be a number, actual is:",
MinimumNumberValidationMessage: "The value should be greater than or equal to:",
MaximumNumberValidationMessage: "The value should be lower than or equal to:",
TermPickerNoTerms: "Term set does not contain any terms",
TermPickerExpandTitle: "Expand this Term Set",
TermPickerExpandNode: "Expand this Node",
TermPickerMenuTermSet: "Menu for Term Set",
TermPickerMenuTerm: "Menu for Term",
TermPickerMenuGroup: "Menu for Term Group",
TermPickerInLabel: "in",
TermPickerTermSetLabel: "Term Set",
propertyFieldMultiSelectNoOptions: "No options to select",
CollectionDataEmptyFields: "No fields were provided for the collection data.",
CollectionDataEmptyValue: "No data in your collection.",
CollectionAddRowButtonLabel: "Add data to the collection",
CollectionDeleteRowButtonLabel: "Delete the current row",
CollectionSaveAndAddButtonLabel: "Add and save",
CollectionDataItemShowErrorsLabel: "Show row errors",
CollectionDataItemFieldRequiredLabel: "Field is required.",
InvalidUrlError: "The provided URL is not valid",
DescriptionLabel: "Description",
MoreInfoLabel: "More info",
AboutGroupLabel: "About",
SitePickerSearchBoxPlaceholder: "Search...",
SitePickerNoResults: "No search results",
SitePickerSitesChosen: "Website(s) selected",
TeamPickerSearchBoxPlaceholder: "Search...",
TeamPickerNoResults: "No search results",
TeamPickerSitesChosen: "Teams(s) selected",
AddFileButtonLabel: "Add file",
AddImageButtonLabel: "Add image",
AriaCellValue: "{0} column, {1}",
FilePickerCancelButtonLabel: "Cancel",
CantValidateValidationMessage: "We couldn't verify this link. Please check the link and try again.",
ChangeFileLinkLabel: "Change file",
ChangeImageLinkLabel: "Change image",
ChooseFileLinkLabel: "Choose file",
ChooseImageLinkLabel: "Choose image",
CopyrightUrl: "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
CopyrightWarning: "You are responsible for respecting others' rights, including copyright.",
CreativeCommonsMessage: "These results are tagged with Creative Commons licenses. Review the licenses to ensure you comply.",
DateFormat: "MM/DD/YYYY hh:mm A",
DocumentLabelTemplate: "{0}, Document, Modified {1}, edited by {2}, Private",
DocumentLibraries: "Document libraries",
EditedByNamePlate: "edited by ",
EmptyFileSize: "0 bytes",
FilePickerHeader: "File Picker",
FileSizeField: "File Size",
FolderAltText: "Folder",
FolderBackPlate: "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
FolderFrontPlate: "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
FolderIconUrl: "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
FolderLabelTemplate: "{0}, Folder, Modified {1}, edited by {2}, {3} items, Private",
FromLinkLinkLabel: "From a link",
ImageAltText: ".{0} Image",
ImageAriaLabelTemplate: ".{0} Image",
ImageLayoutPlaceholderText: "Layout",
ImageSizePlaceholderText: "Image size",
ItemChildCountField: "Item Child Count",
LayoutOptionAll: "All",
LayoutOptionSquare: "Square",
LayoutOptionTall: "Tall",
LayoutOptionWide: "Wide",
LearnMoreLink: "Learn more.",
LicenseOptionAll: "All",
LicenseOptionAny: "Creative Commons only",
LicensePlaceholderText: "License",
LinkFileInstructions: "Paste a link to a file in OneDrive for Business or SharePoint Online",
LinkHeader: "From a link",
LinkImageInstructions: "Paste a link to an image in OneDrive for Business or SharePoint Online",
ListLayoutAriaLabel: "View options. {0} {1} .",
ListLayoutCompact: "Compact view",
ListLayoutCompactDescription: "View items and details in a compact list",
ListLayoutList: "List view",
ListLayoutListDescrition: "View items and details in a list",
ListLayoutTile: "Tile view",
ListLayoutTileDescription: "View items with tile previews",
ListOptionsAlt: "View options. {0} selected .",
ListOptionsTitle: "Open the view options menu",
Loading: "Loading...",
ModifiedByField: "Modified By",
ModifiedField: "Date Modified",
NameField: "Name",
No: "No",
ProvidedValueIsInvalid: "Provided value is invalid",
NoExternalLinksValidationMessage: "We only support linking to files in your own organization.",
NoImageValidationMessage: "This isn't a link to a file type we support. You can only link to an image.",
NoRecentFiles: "No recent files",
NoRecentFilesDescription: "Try selecting a file from your site, or upload one from your device.",
NoResultsBadEnglish: "***There is no result found. Try to change the filter options",
ODModifiedField: "Modified",
ODPhotoIconUrl: "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
ODRowArialLabelTemplate: "{0}, {1}, Modified {2}, edited by {3}, {4}, {5}",
OneDriveConfirmDialogBody: "This item is from your OneDrive site. Files and folders in OneDrive are private unless you share them. Have you shared this file with your site members so they can ccess it?",
OneDriveConfirmDialogTitle: "Just checking...",
OneDriveEmptyFolderAlt: "Empty folder",
OneDriveEmptyFolderDescription: "To add files, go to your OneDrive. You can also add files to this folder using the OneDrive app for your computer.",
OneDriveEmptyFolderIconUrl: "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
OneDriveEmptyFolderTitle: "This folder is empty",
OneDriveRootFolderName: "Files",
OpenButtonLabel: "Open",
PhotoIconUrl: "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
OrgAssetsTabLabel: "Images and files provided by your organization",
PoweredByBing: "Powered by Bing",
RecentDocumentsHeader: "Recent documents",
RecentImagesHeader: "Recent images",
RecentLinkLabel: "Recent",
SearchBoxPlaceholder: "Web search",
SearchResultAlt: "Image result for {0}.",
SearchResultAriaLabel: "Press enter to open the image source in a new tab.",
Selected: "selected",
SharingField: "Sharing",
SharingPrivate: "Private",
SharingShared: "Shared",
SiteLinkLabel: "Site",
SizeOptionAll: "All",
SizeOptionExtraLarge: "Extra Large",
SizeOptionLarge: "Large",
SizeOptionMedium: "Medium",
SizeOptionSmall: "Small",
SizeUnit: [
"bytes",
"KB",
"MB",
"GB",
"TB",
"PB",
"EB",
"ZB",
"YB"
],
SorryWebSearch: "Sorry, this function isn't implemented in this sample, because it would require a Bing API key.",
SortedAscending: "Sorted A to Z",
SortedDescending: "Sorted Z to A",
TypeAriaLabel: "Column operations for File type, Press to sort on File type",
UploadFileHeader: "Upload file",
UploadImageHeader: "Upload image",
UploadLinkLabel: "Upload",
WebSearchLinkLabel: "Web search",
Yes: "Yes",
StockImagesLinkLabel: "Stock images",
StockImagesHeader: "Stock Images",
DateTime: {
"L_RelativeDateTime_AFewSecondsFuture": "In a few seconds",
"L_RelativeDateTime_AFewSeconds": "A few seconds ago",
"L_RelativeDateTime_AboutAMinuteFuture": "In about a minute",
"L_RelativeDateTime_AboutAMinute": "About a minute ago",
"L_RelativeDateTime_XMinutesFuture": "In {0} minute||In {0} minutes",
"L_RelativeDateTime_XMinutes": "{0} minute ago||{0} minutes ago",
"L_RelativeDateTime_XMinutesFutureIntervals": "1||2-",
"L_RelativeDateTime_XMinutesIntervals": "1||2-",
"L_RelativeDateTime_AboutAnHourFuture": "In about an hour",
"L_RelativeDateTime_AboutAnHour": "About an hour ago",
"L_RelativeDateTime_Tomorrow": "Tomorrow",
"L_RelativeDateTime_Yesterday": "Yesterday",
"L_RelativeDateTime_TomorrowAndTime": "Tomorrow at {0}",
"L_RelativeDateTime_YesterdayAndTime": "Yesterday at {0}",
"L_RelativeDateTime_XHoursFuture": "In {0} hour||In {0} hours",
"L_RelativeDateTime_XHours": "{0} hour ago||{0} hours ago",
"L_RelativeDateTime_XHoursFutureIntervals": "1||2-",
"L_RelativeDateTime_XHoursIntervals": "1||2-",
"L_RelativeDateTime_DayAndTime": "{0} at {1}",
"L_RelativeDateTime_XDaysFuture": "{0} day from now||{0} days from now",
"L_RelativeDateTime_XDays": "{0} day ago||{0} days ago",
"L_RelativeDateTime_XDaysFutureIntervals": "1||2-",
"L_RelativeDateTime_XDaysIntervals": "1||2-",
"L_RelativeDateTime_Today": "Today"
},
NewFolderNamePlaceholder: "Enter your folder name",
FolderFilterBoxPlaceholder: "Filter folders by name",
FolderExplorerLoading: "Loading folders...",
FolderExplorerNoItems: "This folder doesn't have any subfolders.",
IncorrectGuidValidationMessage: "Please enter a valid GUID",
SelectedLabel: "Selected",
SelectIcon: "Select icon",
CloseButton: "Close"
}
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Aplicar",
"ImportButtonLabel": "Importación",
"ExportButtonLabel": "exportar",
"FormatCodeButtonLabel": "Código de formato",
"JsonFileRequiredMessage": "Cargue un archivo json",
"SaveButtonLabel": "Salvar",
"CancelButtonLabel": "Cancelar",
"PeoplePickerSuggestedContacts": "Personas sugeridas",
"PeoplePickerSuggestedGroups": "Grupos sugeridos",
"PeoplePickerSuggestedCombined": "Personas y grupos sugeridos",
"PeoplePickerNoResults": "No se ha encontrado ningún resultado",
"PeoplePickerLoading": "Cargando resultados ...",
"DatePickerMonthLongJanuary": "Enero",
"DatePickerMonthShortJanuary": "Enero",
"DatePickerMonthLongFebruary": "Febrero",
"DatePickerMonthShortFebruary": "Febrero",
"DatePickerMonthLongMarch": "Marzo",
"DatePickerMonthShortMarch": "Marzo",
"DatePickerMonthLongApril": "Abril",
"DatePickerMonthShortApril": "Abril",
"DatePickerMonthLongMay": "Mayo",
"DatePickerMonthShortMay": "Mayo",
"DatePickerMonthLongJune": "Junio",
"DatePickerMonthShortJune": "Junio",
"DatePickerMonthLongJuly": "Julio",
"DatePickerMonthShortJuly": "Jul",
"DatePickerMonthLongAugust": "Agosto",
"DatePickerMonthShortAugust": "Agosto",
"DatePickerMonthLongSeptember": "Septiembre",
"DatePickerMonthShortSeptember": "Siete",
"DatePickerMonthLongOctober": "Octubre",
"DatePickerMonthShortOctober": "Octubre",
"DatePickerMonthLongNovember": "Noviembre",
"DatePickerMonthShortNovember": "Noviembre",
"DatePickerMonthLongDecember": "Diciembre",
"DatePickerMonthShortDecember": "Diciembre",
"DatePickerDayLongSunday": "Domingo",
"DatePickerDayShortSunday": "Sol",
"DatePickerDayLongMonday": "Lunes",
"DatePickerDayShortMonday": "Mi",
"DatePickerDayLongTuesday": "Martes",
"DatePickerDayShortTuesday": "Mar",
"DatePickerDayLongWednesday": "Miércoles",
"DatePickerDayShortWednesday": "Mié",
"DatePickerDayLongThursday": "Jueves",
"DatePickerDayShortThursday": "Jue",
"DatePickerDayLongFriday": "Viernes",
"DatePickerDayShortFriday": "Vie",
"DatePickerDayLongSaturday": "Sábado",
"DatePickerDayShortSaturday": "Sentado",
"DatepickerGoToToday": "Hoy",
"DateTimePickerDate": "Fecha",
"DateTimePickerTime": "Hora",
"ColorPickerButtonTitle": "Elegir un color",
"NotNumberValidationMessage": "El valor debe ser un número, real es:",
"MinimumNumberValidationMessage": "El valor debe ser mayor o igual que:",
"MaximumNumberValidationMessage": "El valor debe ser menor o igual que:",
"TermPickerNoTerms": "El conjunto de términos no contiene términos",
"TermPickerExpandTitle": "Expanda este conjunto de términos",
"TermPickerExpandNode": "Expanda este nodo",
"TermPickerMenuTermSet": "Menú para conjunto de términos",
"TermPickerMenuGroup": "Menú para Grupo De Términos",
"TermPickerInLabel": "En",
"TermPickerTermSetLabel": "Conjunto de términos",
"propertyFieldMultiSelectNoOptions": "No hay opciones para seleccionar",
"CollectionDataEmptyFields": "No se proporcionaron campos para los datos de recopilación.",
"CollectionDataEmptyValue": "No hay datos en su colección.",
"CollectionAddRowButtonLabel": "Añadir datos a la colección",
"CollectionDeleteRowButtonLabel": "Eliminar la fila actual",
"CollectionSaveAndAddButtonLabel": "Añadir y guardar",
"CollectionDataItemShowErrorsLabel": "Mostrar errores de fila",
"CollectionDataItemFieldRequiredLabel": "El campo es obligatorio.",
"InvalidUrlError": "La URL proporcionada no es válida",
"DescriptionLabel": "Descripción",
"MoreInfoLabel": "Más información",
"AboutGroupLabel": "acerca de",
"SitePickerSearchBoxPlaceholder": "Búsqueda...",
"SitePickerNoResults": "Sin resultados de búsqueda",
"SitePickerSitesChosen": "Sitio(s) web(s) seleccionado(s)",
"TeamPickerSearchBoxPlaceholder": "Búsqueda...",
"TeamPickerNoResults": "Sin resultados de búsqueda",
"TeamPickerSitesChosen": "Equipos seleccionados",
"AddFileButtonLabel": "Añadir archivo",
"AddImageButtonLabel": "Añadir imagen",
"AriaCellValue": "{0} columna, {1}",
"FilePickerCancelButtonLabel": "Cancelar",
"CantValidateValidationMessage": "No pudimos verificar este enlace. Compruebe el enlace e inténtelo de nuevo.",
"ChangeFileLinkLabel": "Cambiar archivo",
"ChangeImageLinkLabel": "Cambiar imagen",
"ChooseFileLinkLabel": "Elija el archivo",
"ChooseImageLinkLabel": "Elija la imagen",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Usted es responsable de respetar los derechos de los demás, incluidos los derechos de autor.",
"CreativeCommonsMessage": "Estos resultados se etiquetan con licencias Creative Commons. Revise las licencias para asegurarse de que cumple.",
"DateFormat": "MM/DD/AAAA hh:mm A",
"DocumentLabelTemplate": "{0}, Documento, {1} modificada, editado por {2}, Privado",
"DocumentLibraries": "Bibliotecas de documentos",
"EditedByNamePlate": "editado por ",
"EmptyFileSize": "0 bytes",
"FilePickerHeader": "Selector de archivos",
"FileSizeField": "Tamaño del archivo",
"FolderAltText": "Carpeta",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Carpeta, {1} modificada, editada por {2}, elementos {3}, Privado",
"FromLinkLinkLabel": "Desde un enlace",
"ImageAltText": ". {0} Imagen",
"ImageAriaLabelTemplate": ". {0} Imagen",
"ImageLayoutPlaceholderText": "Diseño",
"ImageSizePlaceholderText": "Tamaño de imagen",
"ItemChildCountField": "Recuento de niños de artículos",
"LayoutOptionAll": "todo",
"LayoutOptionSquare": "Cuadrado",
"LayoutOptionTall": "Alto",
"LayoutOptionWide": "extenso",
"LearnMoreLink": "Aprende más.",
"LicenseOptionAll": "todo",
"LicenseOptionAny": "Creative Commons solamente",
"LicensePlaceholderText": "Licencia",
"LinkFileInstructions": "Pegue un vínculo a un archivo en OneDrive para la Empresa o SharePoint Online",
"LinkHeader": "Desde un enlace",
"LinkImageInstructions": "Pegue un vínculo a una imagen en OneDrive para la Empresa o SharePoint Online",
"ListLayoutAriaLabel": "Ver opciones. {0} {1} .",
"ListLayoutCompact": "Vista compacta",
"ListLayoutCompactDescription": "Ver elementos y detalles en una lista compacta",
"ListLayoutList": "Vista de lista",
"ListLayoutListDescrition": "Ver elementos y detalles en una lista",
"ListLayoutTile": "Vista de mosaico",
"ListLayoutTileDescription": "Ver elementos con vistas previas de mosaicos",
"ListOptionsAlt": "Ver opciones. {0} seleccionado .",
"ListOptionsTitle": "Abra el menú de opciones de vista",
"Loading": "Carga...",
"ModifiedByField": "Modificado por",
"ModifiedField": "Fecha de modificación",
"NameField": "Nombre",
"No": "No",
"ProvidedValueIsInvalid": "Siempre que el valor no sea válido",
"NoExternalLinksValidationMessage": "Solo admitimos la vinculación a archivos de su propia organización.",
"NoImageValidationMessage": "Esto no es un enlace a un tipo de archivo que admitimos. Solo puede vincular a una imagen.",
"NoRecentFiles": "No hay archivos recientes",
"NoRecentFilesDescription": "Intenta seleccionar un archivo de tu sitio o cargar uno desde tu dispositivo.",
"NoResultsBadEnglish": "No se ha encontrado ningún resultado. Intente cambiar las opciones de filtro",
"ODModifiedField": "Modificado",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Modified {2}, editado por {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Este elemento es del sitio de OneDrive. Los archivos y carpetas de OneDrive son privados a menos que los comparta. ¿Ha compartido este archivo con los miembros de su sitio para que puedan ccesss?",
"OneDriveConfirmDialogTitle": "Sólo comprobando...",
"OneDriveEmptyFolderAlt": "Carpeta vacía",
"OneDriveEmptyFolderDescription": "Para agregar archivos, vaya a OneDrive. También puede agregar archivos a esta carpeta mediante la aplicación OneDrive para el equipo.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Esta carpeta está vacía",
"OneDriveRootFolderName": "Archivos",
"OpenButtonLabel": "Abierto",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Imágenes y archivos proporcionados por su organización",
"PoweredByBing": "Desarrollado por Bing",
"RecentDocumentsHeader": "Documentos recientes",
"RecentImagesHeader": "Imágenes recientes",
"RecentLinkLabel": "Reciente",
"SearchBoxPlaceholder": "Búsqueda web",
"SearchResultAlt": "Resultado de la imagen para {0}.",
"SearchResultAriaLabel": "Pulse Intro para abrir el origen de la imagen en una pestaña nueva.",
"Selected": "Seleccionado",
"SharingField": "Compartir",
"SharingPrivate": "Privado",
"SharingShared": "Compartido",
"SiteLinkLabel": "Sitio",
"SizeOptionAll": "todo",
"SizeOptionExtraLarge": "Extra Grande",
"SizeOptionLarge": "Grande",
"SizeOptionMedium": "Medio",
"SizeOptionSmall": "Pequeño",
"SizeUnit": [
"Bytes",
"Kb",
"Mb",
"Gb",
"Tb",
"Pb",
"Eb",
"Eg",
"Yb"
],
"SorryWebSearch": "Lo sentimos, esta función no se implementa en este ejemplo, porque requeriría una clave de Bing API.",
"SortedAscending": "Ordenado de la A a la Z",
"SortedDescending": "Ordenado de Z a A",
"TypeAriaLabel": "Operaciones de columna para Tipo de archivo, Pulse para ordenar en Tipo de archivo",
"UploadFileHeader": "Cargar archivo",
"UploadImageHeader": "Subir imagen",
"UploadLinkLabel": "Subir",
"WebSearchLinkLabel": "Búsqueda web",
"Yes": "Sí",
"StockImagesLinkLabel": "Imágenes de stock",
"StockImagesHeader": "Imágenes de stock",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "En pocos segundos",
"L_RelativeDateTime_AFewSeconds": "Hace unos segundos",
"L_RelativeDateTime_AboutAMinuteFuture": "En aproximadamente un minuto",
"L_RelativeDateTime_AboutAMinute": "Hace un minuto",
"L_RelativeDateTime_XMinutesFuture": "En {0} minuto En {0} minutos",
"L_RelativeDateTime_XMinutes": "{0} minutos de hace? hace {0} minutos",
"L_RelativeDateTime_XMinutesFutureIntervals": "1o 2-",
"L_RelativeDateTime_XMinutesIntervals": "1o 2-",
"L_RelativeDateTime_AboutAnHourFuture": "En aproximadamente una hora",
"L_RelativeDateTime_AboutAnHour": "Hace una hora",
"L_RelativeDateTime_Tomorrow": "Mañana",
"L_RelativeDateTime_Yesterday": "Ayer",
"L_RelativeDateTime_TomorrowAndTime": "Mañana a las {0}",
"L_RelativeDateTime_YesterdayAndTime": "Ayer en {0}",
"L_RelativeDateTime_XHoursFuture": "En {0} hora de En {0} horas",
"L_RelativeDateTime_XHours": "{0} horas de hace una hora. {0} horas",
"L_RelativeDateTime_XHoursFutureIntervals": "1o 2-",
"L_RelativeDateTime_XHoursIntervals": "1o 2-",
"L_RelativeDateTime_DayAndTime": "{0} en {1}",
"L_RelativeDateTime_XDaysFuture": "{0} días a partir de ahora. {0} días a partir de ahora",
"L_RelativeDateTime_XDays": "{0} día de hace? {0} días atrás",
"L_RelativeDateTime_XDaysFutureIntervals": "1o 2-",
"L_RelativeDateTime_XDaysIntervals": "1o 2-",
"L_RelativeDateTime_Today": "Hoy"
},
"NewFolderNamePlaceholder": "Introduzca el nombre de la carpeta",
"FolderFilterBoxPlaceholder": "Filtrar carpetas por nombre",
"FolderExplorerLoading": "Cargando carpetas...",
"FolderExplorerNoItems": "Esta carpeta no tiene subcarpetas.",
"IncorrectGuidValidationMessage": "Introduzca un GUID válido"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Kohaldata",
"ImportButtonLabel": "Impordi",
"ExportButtonLabel": "Ekspordi",
"FormatCodeButtonLabel": "Vormingu tähis",
"JsonFileRequiredMessage": "Palun laadige json faili",
"SaveButtonLabel": "Salvestada",
"CancelButtonLabel": "Tühistada",
"PeoplePickerSuggestedContacts": "Soovitatud inimesed",
"PeoplePickerSuggestedGroups": "Soovitatud rühmad",
"PeoplePickerSuggestedCombined": "Soovitatud inimesed ja rühmad",
"PeoplePickerNoResults": "Tulemust ei leitud",
"PeoplePickerLoading": "Tulemuste laadimine ...",
"DatePickerMonthLongJanuary": "Jaanuar",
"DatePickerMonthShortJanuary": "Jaanuar",
"DatePickerMonthLongFebruary": "Veebruar",
"DatePickerMonthShortFebruary": "Veebruar",
"DatePickerMonthLongMarch": "Märts",
"DatePickerMonthShortMarch": "Märts",
"DatePickerMonthLongApril": "Aprill",
"DatePickerMonthShortApril": "Aprill",
"DatePickerMonthLongMay": "Mai",
"DatePickerMonthShortMay": "Mai",
"DatePickerMonthLongJune": "Juuni",
"DatePickerMonthShortJune": "Juuni",
"DatePickerMonthLongJuly": "Juuli",
"DatePickerMonthShortJuly": "Juuli",
"DatePickerMonthLongAugust": "August",
"DatePickerMonthShortAugust": "August",
"DatePickerMonthLongSeptember": "September",
"DatePickerMonthShortSeptember": "Seitse",
"DatePickerMonthLongOctober": "Oktoober",
"DatePickerMonthShortOctober": "Okt",
"DatePickerMonthLongNovember": "November",
"DatePickerMonthShortNovember": "Nov",
"DatePickerMonthLongDecember": "Detsember",
"DatePickerMonthShortDecember": "Dets",
"DatePickerDayLongSunday": "Pühapäev",
"DatePickerDayShortSunday": "Pühap",
"DatePickerDayLongMonday": "Esmaspäev",
"DatePickerDayShortMonday": "Minu",
"DatePickerDayLongTuesday": "Teisipäev",
"DatePickerDayShortTuesday": "T",
"DatePickerDayLongWednesday": "Kolmapäev",
"DatePickerDayShortWednesday": "K",
"DatePickerDayLongThursday": "Neljapäev",
"DatePickerDayShortThursday": "N",
"DatePickerDayLongFriday": "Reede",
"DatePickerDayShortFriday": "Reede",
"DatePickerDayLongSaturday": "Laupäev",
"DatePickerDayShortSaturday": "L",
"DatepickerGoToToday": "Täna",
"DateTimePickerDate": "Kuupäev",
"DateTimePickerTime": "Aeg",
"ColorPickerButtonTitle": "Vali värv",
"NotNumberValidationMessage": "Väärtus peaks olema arv, tegelik on:",
"MinimumNumberValidationMessage": "Väärtus peab olema suurem või võrdne:",
"MaximumNumberValidationMessage": "Väärtus peaks olema väiksem või võrdne:",
"TermPickerNoTerms": "Terminikomplekt ei sisalda ühtegi terminit",
"TermPickerExpandTitle": "Laienda see terminikomplekt",
"TermPickerExpandNode": "Laienda see sõlm",
"TermPickerMenuTermSet": "Terminikomplekti menüü",
"TermPickerMenuGroup": "Terminigrupi menüü",
"TermPickerInLabel": "Sisse",
"TermPickerTermSetLabel": "Terminikomplekt",
"propertyFieldMultiSelectNoOptions": "Valikuid pole",
"CollectionDataEmptyFields": "Kogumisandmete jaoks ei esitatud ühtegi välja.",
"CollectionDataEmptyValue": "Teie kogus pole andmeid.",
"CollectionAddRowButtonLabel": "Andmete lisamine kogumisse",
"CollectionDeleteRowButtonLabel": "Kustuta praegune rida",
"CollectionSaveAndAddButtonLabel": "Lisamine ja salvestamine",
"CollectionDataItemShowErrorsLabel": "Reatõrgete näitamine",
"CollectionDataItemFieldRequiredLabel": "Väli on nõutav.",
"InvalidUrlError": "Esitatud URL ei sobi",
"DescriptionLabel": "Kirjeldus",
"MoreInfoLabel": "Rohkem infot",
"AboutGroupLabel": "Umbes",
"SitePickerSearchBoxPlaceholder": "Otsing...",
"SitePickerNoResults": "Otsingutulemeid pole",
"SitePickerSitesChosen": "Valitud veebisait (veebisaidid)",
"TeamPickerSearchBoxPlaceholder": "Otsing...",
"TeamPickerNoResults": "Otsingutulemeid pole",
"TeamPickerSitesChosen": "Valitud meeskonnad",
"AddFileButtonLabel": "Lisa fail",
"AddImageButtonLabel": "Lisa pilt",
"AriaCellValue": "{0} veerg, {1}",
"FilePickerCancelButtonLabel": "Tühistada",
"CantValidateValidationMessage": "Me ei saanud seda linki kinnitada. Kontrollige linki ja proovige uuesti.",
"ChangeFileLinkLabel": "Muuda faili",
"ChangeImageLinkLabel": "Muuda pilti",
"ChooseFileLinkLabel": "Vali fail",
"ChooseImageLinkLabel": "Vali pilt",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Teie vastutate teiste õiguste, sealhulgas autoriõiguse austamise eest.",
"CreativeCommonsMessage": "Need tulemused on sildistatud Creative Commons i litsentsidega. Vaadake litsentsid üle, et tagada nende järgimine.",
"DateFormat": "KK/PP/AAAA hh:mm A",
"DocumentLabelTemplate": "{0}, Dokument, Muudetud {1}, redigeeritud {2}, Private",
"DocumentLibraries": "Dokumenditeegid",
"EditedByNamePlate": "toimetanud: ",
"EmptyFileSize": "0 baiti",
"FilePickerHeader": "Faili valija",
"FileSizeField": "Faili suurus",
"FolderAltText": "Kausta",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Kaust, Muudetud {1}, toimetanud {2}, {3} üksused, Privaatne",
"FromLinkLinkLabel": "Lingilt",
"ImageAltText": ". {0} pilt",
"ImageAriaLabelTemplate": ". {0} pilt",
"ImageLayoutPlaceholderText": "Paigutus",
"ImageSizePlaceholderText": "Pildi suurus",
"ItemChildCountField": "Üksuste tütarloendus",
"LayoutOptionAll": "Kõik",
"LayoutOptionSquare": "Square",
"LayoutOptionTall": "Pikk",
"LayoutOptionWide": "Lai",
"LearnMoreLink": "Lisateave.",
"LicenseOptionAll": "Kõik",
"LicenseOptionAny": "Ainult creative commons",
"LicensePlaceholderText": "Litsentsi",
"LinkFileInstructions": "Faili lingi kleepimine oneDrive for Businessis või SharePoint Online'is",
"LinkHeader": "Lingilt",
"LinkImageInstructions": "Pildi lingi kleepimine OneDrive for Businessis või SharePoint Online'is",
"ListLayoutAriaLabel": "Saate vaadata valikuid. {0} {1} .",
"ListLayoutCompact": "Kompaktne vaade",
"ListLayoutCompactDescription": "Üksuste ja üksikasjade kuvamine kompaktses loendis",
"ListLayoutList": "Loendi vaade",
"ListLayoutListDescrition": "Loendi üksuste ja üksikasjade kuvamine",
"ListLayoutTile": "Paani vaade",
"ListLayoutTileDescription": "Paani eelvaadetega üksuste kuvamine",
"ListOptionsAlt": "Saate vaadata valikuid. {0} valitud .",
"ListOptionsTitle": "Vaatesuvandite menüü avamine",
"Loading": "Laadimise...",
"ModifiedByField": "Muudetud",
"ModifiedField": "Muutmise kuupäev",
"NameField": "Nimi",
"No": "Ei",
"ProvidedValueIsInvalid": "Esitatud väärtus ei sobi",
"NoExternalLinksValidationMessage": "Toetame linkimist ainult teie organisatsiooni failidega.",
"NoImageValidationMessage": "See ei ole link failitüübile, mida toetame. Saate linkida ainult pildiga.",
"NoRecentFiles": "Viimaseid faile pole",
"NoRecentFilesDescription": "Proovige oma saidilt fail valida või selle oma seadmest üles laadida.",
"NoResultsBadEnglish": "Tulemust ei leitud. Proovige muuta filtrisuvandeid",
"ODModifiedField": "Muudetud",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Muudetud {2}, muutnud {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "See üksus pärineb teie OneDrive'i saidilt. OneDrive'i failid ja kaustad on privaatsed, kui te neid ei jaga. Kas olete seda faili oma saidi liikmetega jaganud, et nad saaksid seda ccess?",
"OneDriveConfirmDialogTitle": "Lihtsalt kontrollin...",
"OneDriveEmptyFolderAlt": "Tühi kaust",
"OneDriveEmptyFolderDescription": "Failide lisamiseks avage oma OneDrive. Sellesse kausta saate faile lisada ka oma arvuti OneDrive'i rakenduse abil.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "See kaust on tühi",
"OneDriveRootFolderName": "Faile",
"OpenButtonLabel": "Avatud",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Teie organisatsiooni pakutavad pildid ja failid",
"PoweredByBing": "Tootja Bing",
"RecentDocumentsHeader": "Hiljutised dokumendid",
"RecentImagesHeader": "Viimased pildid",
"RecentLinkLabel": "Viimased",
"SearchBoxPlaceholder": "Veebiotsing",
"SearchResultAlt": "Pildi tulemus {0}.",
"SearchResultAriaLabel": "Pildiallika avamiseks uuele vahekaardile vajutage sisestusklahvi (Enter).",
"Selected": "Valitud",
"SharingField": "Jagamine",
"SharingPrivate": "Avalikes",
"SharingShared": "Ühiskasutusega",
"SiteLinkLabel": "Saidi",
"SizeOptionAll": "Kõik",
"SizeOptionExtraLarge": "Eriti suur",
"SizeOptionLarge": "Suur",
"SizeOptionMedium": "Keskmine",
"SizeOptionSmall": "Väike",
"SizeUnit": [
"Baiti",
"Kb",
"Mb",
"Gb",
"Tb",
"Pb",
"Eb",
"Nt",
"Yb"
],
"SorryWebSearch": "Kahjuks ei rakendata seda funktsiooni selles näites, kuna see nõuaks BingAPI võtit.",
"SortedAscending": "Sorditud A kuni Z",
"SortedDescending": "Sorditud Z kuni A",
"TypeAriaLabel": "Failitüübi veerutoimingud, vajutage failitüübi sortimiseks",
"UploadFileHeader": "Faili üleslaadimine",
"UploadImageHeader": "Laadi pilt üles",
"UploadLinkLabel": "Laadida",
"WebSearchLinkLabel": "Veebiotsing",
"Yes": "Jah",
"StockImagesLinkLabel": "Laospildid",
"StockImagesHeader": "Laos pildid",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Mõne sekundi pärast",
"L_RelativeDateTime_AFewSeconds": "Paar sekundit tagasi",
"L_RelativeDateTime_AboutAMinuteFuture": "Umbes minuti pärast",
"L_RelativeDateTime_AboutAMinute": "Umbes minut tagasi",
"L_RelativeDateTime_XMinutesFuture": "{0} minuti pärast|| {0} minuti pärast",
"L_RelativeDateTime_XMinutes": "{0} minut tagasi|| {0} 12 minutit tagasi",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Umbes tunni aja pärast",
"L_RelativeDateTime_AboutAnHour": "Umbes tund aega tagasi",
"L_RelativeDateTime_Tomorrow": "Homme",
"L_RelativeDateTime_Yesterday": "Eile",
"L_RelativeDateTime_TomorrowAndTime": "Homme kell {0}",
"L_RelativeDateTime_YesterdayAndTime": "Eile kell {0}",
"L_RelativeDateTime_XHoursFuture": "{0} tunnis|| {0} tunni jooksul",
"L_RelativeDateTime_XHours": "{0} tund tagasi|| {0} tundi tagasi",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} asutuses {1}",
"L_RelativeDateTime_XDaysFuture": "{0} päeva pärast|| {0} päeva pärast",
"L_RelativeDateTime_XDays": "{0} päev tagasi|| {0} päeva tagasi",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Täna"
},
"NewFolderNamePlaceholder": "Sisestage oma kausta nimi",
"FolderFilterBoxPlaceholder": "Filtreeri kaustad nime järgi",
"FolderExplorerLoading": "Kaustade laadimine...",
"FolderExplorerNoItems": "Sellel kaustal pole ühtegi alamkausta.",
"IncorrectGuidValidationMessage": "Sisestage sobiv GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Soveltaa",
"ImportButtonLabel": "Tuoda",
"ExportButtonLabel": "Vienti",
"FormatCodeButtonLabel": "Muotoile koodi",
"JsonFileRequiredMessage": "Lataa json-tiedosto",
"SaveButtonLabel": "Tallenna",
"CancelButtonLabel": "Peruuta",
"PeoplePickerSuggestedContacts": "Ehdotetut henkilöt",
"PeoplePickerSuggestedGroups": "Ehdotetut ryhmät",
"PeoplePickerSuggestedCombined": "Ehdotetut henkilöt ja ryhmät",
"PeoplePickerNoResults": "Tulosta ei löytynyt",
"PeoplePickerLoading": "Ladataan tuloksia ...",
"DatePickerMonthLongJanuary": "Tammikuu",
"DatePickerMonthShortJanuary": "Tammikuu",
"DatePickerMonthLongFebruary": "Helmikuu",
"DatePickerMonthShortFebruary": "Helmikuu",
"DatePickerMonthLongMarch": "Maaliskuu",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "Huhtikuu",
"DatePickerMonthShortApril": "Huhtikuu",
"DatePickerMonthLongMay": "Toukokuu",
"DatePickerMonthShortMay": "Toukokuu",
"DatePickerMonthLongJune": "Kesäkuu",
"DatePickerMonthShortJune": "Jun",
"DatePickerMonthLongJuly": "Heinäkuu",
"DatePickerMonthShortJuly": "Heinäkuu",
"DatePickerMonthLongAugust": "Elokuu",
"DatePickerMonthShortAugust": "Elokuu",
"DatePickerMonthLongSeptember": "Syyskuu",
"DatePickerMonthShortSeptember": "Seitsemän",
"DatePickerMonthLongOctober": "Lokakuu",
"DatePickerMonthShortOctober": "Lokakuu",
"DatePickerMonthLongNovember": "Marraskuu",
"DatePickerMonthShortNovember": "Marraskuu",
"DatePickerMonthLongDecember": "Joulukuu",
"DatePickerMonthShortDecember": "Joulukuu",
"DatePickerDayLongSunday": "Sunnuntai",
"DatePickerDayShortSunday": "Sun",
"DatePickerDayLongMonday": "Maanantai",
"DatePickerDayShortMonday": "Minun",
"DatePickerDayLongTuesday": "Tiistai",
"DatePickerDayShortTuesday": "Ti",
"DatePickerDayLongWednesday": "Keskiviikko",
"DatePickerDayShortWednesday": "Ke",
"DatePickerDayLongThursday": "Torstai",
"DatePickerDayShortThursday": "To",
"DatePickerDayLongFriday": "Perjantai",
"DatePickerDayShortFriday": "Pe",
"DatePickerDayLongSaturday": "Lauantai",
"DatePickerDayShortSaturday": "Lauantai",
"DatepickerGoToToday": "Tänään",
"DateTimePickerDate": "Päivämäärä",
"DateTimePickerTime": "Aika",
"ColorPickerButtonTitle": "Valitse väri",
"NotNumberValidationMessage": "Arvon on oltava luku, todellinen on:",
"MinimumNumberValidationMessage": "Arvon on oltava suurempi tai yhtä suuri kuin:",
"MaximumNumberValidationMessage": "Arvon on oltava pienempi tai yhtä suuri kuin:",
"TermPickerNoTerms": "Termijoukko ei sisällä termejä",
"TermPickerExpandTitle": "Laajenna tämä termijoukko",
"TermPickerExpandNode": "Laajenna tämä solmu",
"TermPickerMenuTermSet": "Termijoukon valikko",
"TermPickerMenuGroup": "Termiryhmän valikko",
"TermPickerInLabel": "Tuumaa",
"TermPickerTermSetLabel": "Termijoukko",
"propertyFieldMultiSelectNoOptions": "Ei valittaa vaihtoehtoja",
"CollectionDataEmptyFields": "Keräystiedoista ei annettu kenttiä.",
"CollectionDataEmptyValue": "Kokoelmassa ei ole tietoja.",
"CollectionAddRowButtonLabel": "Tietojen lisääminen kokoelmaan",
"CollectionDeleteRowButtonLabel": "Poista nykyinen rivi",
"CollectionSaveAndAddButtonLabel": "Lisää ja tallenna",
"CollectionDataItemShowErrorsLabel": "Näytä rivivirheet",
"CollectionDataItemFieldRequiredLabel": "Kenttä on pakollinen.",
"InvalidUrlError": "Annettu URL-osoite ei kelpaa",
"DescriptionLabel": "Kuvaus",
"MoreInfoLabel": "Lisää infoa",
"AboutGroupLabel": "Noin",
"SitePickerSearchBoxPlaceholder": "Etsi...",
"SitePickerNoResults": "Ei hakutuloksia",
"SitePickerSitesChosen": "Valitut verkkosivustot",
"TeamPickerSearchBoxPlaceholder": "Etsi...",
"TeamPickerNoResults": "Ei hakutuloksia",
"TeamPickerSitesChosen": "Valitut ryhmät",
"AddFileButtonLabel": "Lisää tiedosto",
"AddImageButtonLabel": "Lisää kuva",
"AriaCellValue": "{0} sarake, {1}",
"FilePickerCancelButtonLabel": "Peruuta",
"CantValidateValidationMessage": "Emme voineet vahvistaa tätä linkkiä. Tarkista linkki ja yritä uudelleen.",
"ChangeFileLinkLabel": "Muuta tiedostoa",
"ChangeImageLinkLabel": "Vaihda kuvaa",
"ChooseFileLinkLabel": "Valitse tiedosto",
"ChooseImageLinkLabel": "Valitse kuva",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Olet vastuussa muiden oikeuksien, myös tekijänoikeuksien, kunnioittamisesta.",
"CreativeCommonsMessage": "Nämä tulokset on merkitty Creative Commons -lisensseillä. Tarkista käyttöoikeudet varmistaaksesi, että noudatat sääntöjä.",
"DateFormat": "KK/PP/VVVV hh:mm A",
"DocumentLabelTemplate": "{0}, Asiakirja, Muokattu {1}, muokannut {2}, Yksityinen",
"DocumentLibraries": "Asiakirjakirjastojen",
"EditedByNamePlate": "muokannut ",
"EmptyFileSize": "0 tavua",
"FilePickerHeader": "Tiedoston valitsin",
"FileSizeField": "Tiedoston koko",
"FolderAltText": "Kansio",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Kansio, Muokattu {1}, muokannut {2}, {3} kohteet, Yksityinen",
"FromLinkLinkLabel": "Linkistä",
"ImageAltText": ". {0} Kuva",
"ImageAriaLabelTemplate": ". {0} Kuva",
"ImageLayoutPlaceholderText": "Asettelu",
"ImageSizePlaceholderText": "Kuvan koko",
"ItemChildCountField": "Nimikkeen alimäärä",
"LayoutOptionAll": "Kaikki",
"LayoutOptionSquare": "Square",
"LayoutOptionTall": "Pitkä",
"LayoutOptionWide": "Laaja",
"LearnMoreLink": "Opi lisää.",
"LicenseOptionAll": "Kaikki",
"LicenseOptionAny": "Creative Commons vain",
"LicensePlaceholderText": "Lisenssi",
"LinkFileInstructions": "Linkin liittäminen tiedostoon OneDrive for Businessissa tai SharePoint Onlinessa",
"LinkHeader": "Linkistä",
"LinkImageInstructions": "Linkin liittäminen kuvaan OneDrive for Businessissa tai SharePoint Onlinessa",
"ListLayoutAriaLabel": "Näytä asetukset. {0} {1} .",
"ListLayoutCompact": "Kompakti näkymä",
"ListLayoutCompactDescription": "Kohteiden ja tietojen tarkasteleminen tiivistetyssä luettelossa",
"ListLayoutList": "Luettelo-näkymä",
"ListLayoutListDescrition": "Luettelon kohteiden ja tietojen tarkasteleminen",
"ListLayoutTile": "Ruutunäkymä",
"ListLayoutTileDescription": "Kohteiden tarkasteleminen ruutujen esikatseluilla",
"ListOptionsAlt": "Näytä asetukset. {0} valittu .",
"ListOptionsTitle": "Avaa näkymän asetusvalikko",
"Loading": "Lastaus...",
"ModifiedByField": "Muokannut",
"ModifiedField": "Muokkauspäivämäärä",
"NameField": "Nimi",
"No": "Ei",
"ProvidedValueIsInvalid": "Annettu arvo ei kelpaa",
"NoExternalLinksValidationMessage": "Tuemme vain linkittämistä oman organisaatiosi tiedostoihin.",
"NoImageValidationMessage": "Tämä ei ole linkki tukemaamme tiedostotyyppiin. Voit linkittää vain kuvaan.",
"NoRecentFiles": "Ei viimeisimpiä tiedostoja",
"NoRecentFilesDescription": "Valitse tiedosto sivustostasi tai lataa tiedosto laitteestasi.",
"NoResultsBadEnglish": "Tulosta ei löytynyt. Yritä muuttaa suodatinasetuksia",
"ODModifiedField": "Muutettu",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Muokattu {2}, muokannut {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Tämä kohde on peräisin OneDrive-sivustosta. OneDriven tiedostot ja kansiot ovat yksityisiä, ellet jaa niitä. Oletko jakanut tämän tiedoston sivuston jäsenille, jotta he voivat ccess se?",
"OneDriveConfirmDialogTitle": "Tarkistan vain...",
"OneDriveEmptyFolderAlt": "Tyhjä kansio",
"OneDriveEmptyFolderDescription": "Jos haluat lisätä tiedostoja, siirry OneDriveen. Voit myös lisätä tiedostoja tähän kansioon tietokoneen OneDrive-sovelluksella.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Tämä kansio on tyhjä",
"OneDriveRootFolderName": "Tiedostot",
"OpenButtonLabel": "Avaa",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Organisaation toimittamat kuvat ja tiedostot",
"PoweredByBing": "Tuen toimitti Bing",
"RecentDocumentsHeader": "Viimeisimmät asiakirjat",
"RecentImagesHeader": "Viimeisimmät kuvat",
"RecentLinkLabel": "Tähän hotelliin",
"SearchBoxPlaceholder": "Web-haku",
"SearchResultAlt": "Kuvan tulos {0}.",
"SearchResultAriaLabel": "Avaa kuvalähde uudessa välilehdessä painamalla Enter-näppäintä.",
"Selected": "Valittu",
"SharingField": "Jakaminen",
"SharingPrivate": "Yksityiset",
"SharingShared": "Jaettu",
"SiteLinkLabel": "Sivuston",
"SizeOptionAll": "Kaikki",
"SizeOptionExtraLarge": "Erittäin suuri",
"SizeOptionLarge": "Suuri",
"SizeOptionMedium": "Keskiverto",
"SizeOptionSmall": "Pieni",
"SizeUnit": [
"Tavua",
"Kt",
"Mb",
"Gb",
"Tb",
"Pb",
"Eb",
"Esim",
"Yb"
],
"SorryWebSearch": "Anteeksi, tämä toiminto ei ole toteutettu tässä näytteessä, koska se vaatisi Bing API avain.",
"SortedAscending": "Lajiteltu A:sta Ö:hen",
"SortedDescending": "Lajiteltu Z:sta A:ta",
"TypeAriaLabel": "Saraketoiminnot tiedostotyypille, Lajittele tiedostotyypissä painamalla",
"UploadFileHeader": "Lataa tiedosto",
"UploadImageHeader": "Lataa kuva",
"UploadLinkLabel": "Ladata",
"WebSearchLinkLabel": "Web-haku",
"Yes": "Kyllä",
"StockImagesLinkLabel": "Arkistokuvat",
"StockImagesHeader": "Arkistokuvat",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Muutamassa sekunnissa",
"L_RelativeDateTime_AFewSeconds": "Muutama sekunti sitten.",
"L_RelativeDateTime_AboutAMinuteFuture": "Noin minuutin päästä.",
"L_RelativeDateTime_AboutAMinute": "Noin minuutti sitten",
"L_RelativeDateTime_XMinutesFuture": "{0} minuutti|| {0} minuuttia",
"L_RelativeDateTime_XMinutes": "{0} hetki sitten|| {0} 18 minuuttia sitten",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Noin tunnin päästä",
"L_RelativeDateTime_AboutAnHour": "Noin tunti sitten",
"L_RelativeDateTime_Tomorrow": "Huomenna",
"L_RelativeDateTime_Yesterday": "Eilen",
"L_RelativeDateTime_TomorrowAndTime": "Huomenna {0}",
"L_RelativeDateTime_YesterdayAndTime": "Eilen {0}",
"L_RelativeDateTime_XHoursFuture": "{0} tunnin|| {0} tunnin kuluttua",
"L_RelativeDateTime_XHours": "{0} tunti sitten|| {0} 10 tuntia sitten",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} yrityksessä {1}",
"L_RelativeDateTime_XDaysFuture": "{0} päivän päästä|| {0} päivän päästä",
"L_RelativeDateTime_XDays": "{0} päivä sitten|| {0} päivää sitten",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Tänään"
},
"NewFolderNamePlaceholder": "Kirjoita kansion nimi",
"FolderFilterBoxPlaceholder": "Kansioiden suodattaminen nimen mukaan",
"FolderExplorerLoading": "Ladataan kansioita...",
"FolderExplorerNoItems": "Tässä kansiossa ei ole alikansioita.",
"IncorrectGuidValidationMessage": "Anna kelvollinen GUID-tunnus"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Appliquer",
"ImportButtonLabel": "Importation",
"ExportButtonLabel": "Exportation",
"FormatCodeButtonLabel": "Format Code",
"JsonFileRequiredMessage": "Sil vous plaît télécharger un fichier json",
"SaveButtonLabel": "Sauvegarder",
"CancelButtonLabel": "Annuler",
"PeoplePickerSuggestedContacts": "Personnes suggérées",
"PeoplePickerSuggestedGroups": "Groupes suggérés",
"PeoplePickerSuggestedCombined": "Personnes et groupes suggérés",
"PeoplePickerNoResults": "Aucun résultat trouvé",
"PeoplePickerLoading": "Chargement des résultats ...",
"DatePickerMonthLongJanuary": "Janvier",
"DatePickerMonthShortJanuary": "Jan.",
"DatePickerMonthLongFebruary": "Février",
"DatePickerMonthShortFebruary": "Fev.",
"DatePickerMonthLongMarch": "Mars",
"DatePickerMonthShortMarch": "Mar.",
"DatePickerMonthLongApril": "Avril",
"DatePickerMonthShortApril": "Avr.",
"DatePickerMonthLongMay": "Mai",
"DatePickerMonthShortMay": "Mai",
"DatePickerMonthLongJune": "Juin",
"DatePickerMonthShortJune": "Juin",
"DatePickerMonthLongJuly": "Juillet",
"DatePickerMonthShortJuly": "Jul.",
"DatePickerMonthLongAugust": "Août",
"DatePickerMonthShortAugust": "Août",
"DatePickerMonthLongSeptember": "Septembre",
"DatePickerMonthShortSeptember": "Sept.",
"DatePickerMonthLongOctober": "Octobre",
"DatePickerMonthShortOctober": "Oct.",
"DatePickerMonthLongNovember": "Novembre",
"DatePickerMonthShortNovember": "Nov.",
"DatePickerMonthLongDecember": "Decembre",
"DatePickerMonthShortDecember": "Dec.",
"DatePickerDayLongSunday": "Dimanche",
"DatePickerDayShortSunday": "Dim",
"DatePickerDayLongMonday": "Lundi",
"DatePickerDayShortMonday": "Lun",
"DatePickerDayLongTuesday": "Mardi",
"DatePickerDayShortTuesday": "Mar",
"DatePickerDayLongWednesday": "Mercredi",
"DatePickerDayShortWednesday": "Mer",
"DatePickerDayLongThursday": "Jeudi",
"DatePickerDayShortThursday": "Jeu",
"DatePickerDayLongFriday": "Vendredi",
"DatePickerDayShortFriday": "Ven",
"DatePickerDayLongSaturday": "Samedi",
"DatePickerDayShortSaturday": "Sam",
"DatepickerGoToToday": "Aujourd'hui",
"DateTimePickerDate": "Date",
"DateTimePickerTime": "Temps",
"ColorPickerButtonTitle": "Choisis une couleur",
"NotNumberValidationMessage": "La valeur doit être un nombre, la valeur actuel est :",
"MinimumNumberValidationMessage": "La valeur doit être supérieure à :",
"MaximumNumberValidationMessage": "La valeur doit être inférieure à :",
"TermPickerNoTerms": "L'ensemble de termes ne contient aucun terme",
"TermPickerExpandTitle": "Développer cet ensemble de termes",
"TermPickerExpandNode": "Développer ce nœud",
"TermPickerMenuTermSet": "Menu pour l'ensemble de termes",
"TermPickerMenuGroup": "Menu pour l'ensemble de termes",
"TermPickerInLabel": "dans",
"TermPickerTermSetLabel": "Ensemble de termes",
"propertyFieldMultiSelectNoOptions": "Aucune option à sélectionner",
"CollectionDataEmptyFields": "Aucun champ n'a été fourni pour la collection de données.",
"CollectionDataEmptyValue": "Aucune donnée dans votre collection.",
"CollectionAddRowButtonLabel": "Ajouter des données à la collection",
"CollectionDeleteRowButtonLabel": "Supprimer la ligne",
"CollectionSaveAndAddButtonLabel": "Ajouter et sauvegarder",
"CollectionDataItemShowErrorsLabel": "Afficher les erreurs de ligne",
"CollectionDataItemFieldRequiredLabel": "Champ obligatoire",
"InvalidUrlError": "L'URL fournie n'est pas valide",
"DescriptionLabel": "La description",
"MoreInfoLabel": "Plus d'informations",
"AboutGroupLabel": "Sur",
"SitePickerSearchBoxPlaceholder": "rechercher...",
"SitePickerNoResults": "Aucun résultat de recherche",
"SitePickerSitesChosen": "Site(s) website(s) sélectionné(s)",
"TeamPickerSearchBoxPlaceholder": "rechercher...",
"TeamPickerNoResults": "Aucun résultat de recherche",
"TeamPickerSitesChosen": "Équipes sélectionnées",
"AddFileButtonLabel": "Ajouter un fichier",
"AddImageButtonLabel": "Ajouter une image",
"AriaCellValue": "{0} colonne, {1}",
"FilePickerCancelButtonLabel": "Annuler",
"CantValidateValidationMessage": "Nous navons pas pu vérifier ce lien. Sil vous plaît vérifier le lien et essayer à nouveau.",
"ChangeFileLinkLabel": "Modifier le fichier",
"ChangeImageLinkLabel": "Modifier limage",
"ChooseFileLinkLabel": "Choisir le fichier",
"ChooseImageLinkLabel": "Choisir limage",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Vous êtes responsable du respect des droits des autres, y compris le droit dauteur.",
"CreativeCommonsMessage": "Ces résultats sont marqués avec les licences Creative Commons. Examinez les licences pour vous assurer de vous conformer.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Document, Modified {1}, édité par {2}, Private",
"DocumentLibraries": "Bibliothèques de documents",
"EditedByNamePlate": "édité par ",
"EmptyFileSize": "0 octets",
"FilePickerHeader": "Sélecteur de fichiers",
"FileSizeField": "Taille du fichier",
"FolderAltText": "Dossier",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Dossier, {1} modifié, édité par {2}, {3}, Private",
"FromLinkLinkLabel": "À partir dun lien",
"ImageAltText": ". {0} Image",
"ImageAriaLabelTemplate": ". {0} Image",
"ImageLayoutPlaceholderText": "Disposition",
"ImageSizePlaceholderText": "Taille de limage",
"ItemChildCountField": "Nombre denfants darticle",
"LayoutOptionAll": "Tous",
"LayoutOptionSquare": "Carré",
"LayoutOptionTall": "Grand",
"LayoutOptionWide": "Large",
"LearnMoreLink": "Pour en savoir plus.",
"LicenseOptionAll": "Tous",
"LicenseOptionAny": "Creative Commons uniquement",
"LicensePlaceholderText": "Licence",
"LinkFileInstructions": "Coller un lien vers un fichier dans OneDrive Entreprise ou SharePoint Online",
"LinkHeader": "À partir dun lien",
"LinkImageInstructions": "Coller un lien vers une image dans OneDrive Entreprise ou SharePoint Online",
"ListLayoutAriaLabel": "Afficher les options. {0} {1} .",
"ListLayoutCompact": "Vue compacte",
"ListLayoutCompactDescription": "Afficher les éléments et les détails dans une liste compacte",
"ListLayoutList": "Affichage de liste",
"ListLayoutListDescrition": "Afficher les éléments et les détails dune liste",
"ListLayoutTile": "Vue de vignette",
"ListLayoutTileDescription": "Afficher les éléments avec des aperçus de vignettes",
"ListOptionsAlt": "Afficher les options. {0} sélectionnés .",
"ListOptionsTitle": "Ouvrir le menu Options daffichage",
"Loading": "Chargement...",
"ModifiedByField": "Modifié par",
"ModifiedField": "Date modifiée",
"NameField": "Nom",
"No": "non",
"ProvidedValueIsInvalid": "La valeur fournie nest pas valide",
"NoExternalLinksValidationMessage": "Nous prenons en charge uniquement les liens vers des fichiers de votre propre organisation.",
"NoImageValidationMessage": "Ce nest pas un lien vers un type de fichier que nous prenons en charge. Vous ne pouvez lier quà une image.",
"NoRecentFiles": "Pas de fichiers récents",
"NoRecentFilesDescription": "Essayez de sélectionner un fichier à partir de votre site ou téléchargez-en un à partir de votre appareil.",
"NoResultsBadEnglish": "Aucun résultat nest trouvé. Essayez de modifier les options de filtre",
"ODModifiedField": "Modifié",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Modified {2}, édité par {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Cet élément provit de votre site OneDrive. Les fichiers et dossiers de OneDrive sont privés, sauf si vous les partagez. Avez-vous partagé ce fichier avec les membres de votre site afin quils puissent le ccess?",
"OneDriveConfirmDialogTitle": "Il suffit de vérifier ...",
"OneDriveEmptyFolderAlt": "Dossier vide",
"OneDriveEmptyFolderDescription": "Pour ajouter des fichiers, accédez à votre OneDrive. Vous pouvez également ajouter des fichiers à ce dossier à laide de lapplication OneDrive pour votre ordinateur.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Ce dossier est vide",
"OneDriveRootFolderName": "Fichiers",
"OpenButtonLabel": "Ouvert",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Images et fichiers fournis par votre organisation",
"PoweredByBing": "Propulsé par Bing",
"RecentDocumentsHeader": "Documents récents",
"RecentImagesHeader": "Images récentes",
"RecentLinkLabel": "Récente",
"SearchBoxPlaceholder": "Recherche web",
"SearchResultAlt": "Résultat dimage pour {0}.",
"SearchResultAriaLabel": "Appuyez sur Entrée pour ouvrir la source dimage dans un nouvel onglet.",
"Selected": "Sélectionné",
"SharingField": "Partage",
"SharingPrivate": "Privé",
"SharingShared": "Partagé",
"SiteLinkLabel": "Site",
"SizeOptionAll": "Tous",
"SizeOptionExtraLarge": "Extra Large",
"SizeOptionLarge": "Grande",
"SizeOptionMedium": "Douleur moyenne",
"SizeOptionSmall": "Petit",
"SizeUnit": [
"Octets",
"Ko",
"Mb",
"Go",
"Tb",
"Pb",
"Eb",
"ZB",
"Yb"
],
"SorryWebSearch": "Désolé, cette fonction nest pas implémentée dans cet exemple, car elle nécessiterait une clé API Bing.",
"SortedAscending": "Trié de A à Z",
"SortedDescending": "Classé Z à A",
"TypeAriaLabel": "Opérations de colonne pour le type de fichier, appuyez sur pour trier sur le type de fichier",
"UploadFileHeader": "Télécharger le fichier",
"UploadImageHeader": "Télécharger limage",
"UploadLinkLabel": "Télécharger",
"WebSearchLinkLabel": "Recherche web",
"Yes": "Oui",
"StockImagesLinkLabel": "Images stock",
"StockImagesHeader": "Stock Images",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "En quelques secondes",
"L_RelativeDateTime_AFewSeconds": "Il y a quelques secondes",
"L_RelativeDateTime_AboutAMinuteFuture": "Dans environ une minute",
"L_RelativeDateTime_AboutAMinute": "Il y a environ une minute",
"L_RelativeDateTime_XMinutesFuture": "En {0} minute|| En {0} minutes",
"L_RelativeDateTime_XMinutes": "{0} minute il y a|| il y a {0} minutes",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Dans environ une heure",
"L_RelativeDateTime_AboutAnHour": "Il y a environ une heure",
"L_RelativeDateTime_Tomorrow": "Demain",
"L_RelativeDateTime_Yesterday": "Hier",
"L_RelativeDateTime_TomorrowAndTime": "Demain à {0}",
"L_RelativeDateTime_YesterdayAndTime": "Hier à {0}",
"L_RelativeDateTime_XHoursFuture": "En {0} heure|| En {0} heures",
"L_RelativeDateTime_XHours": "il y a {0} heure|| il y a {0} heures",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} à {1}",
"L_RelativeDateTime_XDaysFuture": "{0} jour à partir de maintenant|| {0} jours à partir de maintenant",
"L_RelativeDateTime_XDays": "{0} il y a un jour|| il y a {0} jours",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Aujourdhui"
},
"NewFolderNamePlaceholder": "Entrez le nom de votre dossier",
"FolderFilterBoxPlaceholder": "Filtrer les dossiers par nom",
"FolderExplorerLoading": "Chargement de dossiers...",
"FolderExplorerNoItems": "Ce dossier na pas de sous-dossiers.",
"IncorrectGuidValidationMessage": "Veuillez entrer un GUID valide"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Applicare",
"ImportButtonLabel": "Importazione",
"ExportButtonLabel": "Esportazione",
"FormatCodeButtonLabel": "Codice formato",
"JsonFileRequiredMessage": "Si prega di caricare un file json",
"SaveButtonLabel": "Salvare",
"CancelButtonLabel": "Annulla",
"PeoplePickerSuggestedContacts": "Persone suggerite",
"PeoplePickerSuggestedGroups": "Gruppi suggeriti",
"PeoplePickerSuggestedCombined": "Persone e gruppi suggeriti",
"PeoplePickerNoResults": "Nessun risultato trovato",
"PeoplePickerLoading": "Caricamento dei risultati in corso...",
"DatePickerMonthLongJanuary": "Gennaio",
"DatePickerMonthShortJanuary": "Gennaio",
"DatePickerMonthLongFebruary": "Febbraio",
"DatePickerMonthShortFebruary": "Febbraio",
"DatePickerMonthLongMarch": "Marzo",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "Aprile",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Maggio",
"DatePickerMonthShortMay": "Maggio",
"DatePickerMonthLongJune": "Giugno",
"DatePickerMonthShortJune": "Giu",
"DatePickerMonthLongJuly": "Luglio",
"DatePickerMonthShortJuly": "Lug",
"DatePickerMonthLongAugust": "Agosto",
"DatePickerMonthShortAugust": "Agosto",
"DatePickerMonthLongSeptember": "Settembre",
"DatePickerMonthShortSeptember": "Sette",
"DatePickerMonthLongOctober": "Ottobre",
"DatePickerMonthShortOctober": "Ottobre",
"DatePickerMonthLongNovember": "Novembre",
"DatePickerMonthShortNovember": "Novembre",
"DatePickerMonthLongDecember": "Dicembre",
"DatePickerMonthShortDecember": "Dicembre",
"DatePickerDayLongSunday": "Domenica",
"DatePickerDayShortSunday": "sole",
"DatePickerDayLongMonday": "Lunedì",
"DatePickerDayShortMonday": "Mio",
"DatePickerDayLongTuesday": "Martedì",
"DatePickerDayShortTuesday": "Mar",
"DatePickerDayLongWednesday": "Mercoledì",
"DatePickerDayShortWednesday": "Mercoledì",
"DatePickerDayLongThursday": "Giovedì",
"DatePickerDayShortThursday": "Thu",
"DatePickerDayLongFriday": "Venerdì",
"DatePickerDayShortFriday": "Ven",
"DatePickerDayLongSaturday": "Sabato",
"DatePickerDayShortSaturday": "Sab",
"DatepickerGoToToday": "Oggi",
"DateTimePickerDate": "Data",
"DateTimePickerTime": "Ore",
"ColorPickerButtonTitle": "Scegliere un colore",
"NotNumberValidationMessage": "Il valore deve essere un numero, effettivo è:",
"MinimumNumberValidationMessage": "Il valore deve essere maggiore o uguale a:",
"MaximumNumberValidationMessage": "Il valore deve essere minore o uguale a:",
"TermPickerNoTerms": "Il set di termini non contiene termini",
"TermPickerExpandTitle": "Espandi questo set di termini",
"TermPickerExpandNode": "Espandi questo nodo",
"TermPickerMenuTermSet": "Menu per set di termini",
"TermPickerMenuGroup": "Menu per gruppo di termini",
"TermPickerInLabel": "Pollici",
"TermPickerTermSetLabel": "Set di termini",
"propertyFieldMultiSelectNoOptions": "Nessuna opzione da selezionare",
"CollectionDataEmptyFields": "Non sono stati forniti campi per i dati di raccolta.",
"CollectionDataEmptyValue": "Nessun dato nella raccolta.",
"CollectionAddRowButtonLabel": "Aggiungere dati alla raccolta",
"CollectionDeleteRowButtonLabel": "Eliminare la riga corrente",
"CollectionSaveAndAddButtonLabel": "Aggiungere e salvare",
"CollectionDataItemShowErrorsLabel": "Mostra errori di riga",
"CollectionDataItemFieldRequiredLabel": "Il campo è obbligatorio.",
"InvalidUrlError": "L'URL fornito non è valido",
"DescriptionLabel": "Descrizione",
"MoreInfoLabel": "Maggiori informazioni",
"AboutGroupLabel": "Circa",
"SitePickerSearchBoxPlaceholder": "Ricerca...",
"SitePickerNoResults": "Nessun risultato di ricerca",
"SitePickerSitesChosen": "Siti web selezionati",
"TeamPickerSearchBoxPlaceholder": "Ricerca...",
"TeamPickerNoResults": "Nessun risultato di ricerca",
"TeamPickerSitesChosen": "Team selezionati",
"AddFileButtonLabel": "Aggiungi file",
"AddImageButtonLabel": "Aggiungi immagine",
"AriaCellValue": "{0} colonna, {1}",
"FilePickerCancelButtonLabel": "Annulla",
"CantValidateValidationMessage": "Non è stato possibile verificare questo collegamento. Controllare il collegamento e riprovare.",
"ChangeFileLinkLabel": "Cambia file",
"ChangeImageLinkLabel": "Cambia immagine",
"ChooseFileLinkLabel": "Scegli file",
"ChooseImageLinkLabel": "Scegli immagine",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "L'utente è responsabile del rispetto dei diritti al di per gli altri, incluso il diritto d'autore.",
"CreativeCommonsMessage": "Questi risultati sono contrassegnati con licenze Creative Commons. Esaminare le licenze per assicurarsi che siano conformi.",
"DateFormat": "MM/GG/AAAA hh:mm A",
"DocumentLabelTemplate": "{0}, Documento, {1} modificato, {2} da",
"DocumentLibraries": "Raccolte documenti",
"EditedByNamePlate": "a modifica di ",
"EmptyFileSize": "0 byte",
"FilePickerHeader": "Selezione file",
"FileSizeField": "Dimensioni file",
"FolderAltText": "Cartella",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Cartella, {1} modificato, modificato da {2}, {3} elementi, Privato",
"FromLinkLinkLabel": "Da un link",
"ImageAltText": ". {0} immagine",
"ImageAriaLabelTemplate": ". {0} immagine",
"ImageLayoutPlaceholderText": "Layout",
"ImageSizePlaceholderText": "Dimensioni dell'immagine",
"ItemChildCountField": "Conteggio figlio elemento",
"LayoutOptionAll": "Tutti",
"LayoutOptionSquare": "Piazza",
"LayoutOptionTall": "Alto",
"LayoutOptionWide": "Ampia",
"LearnMoreLink": "Ulteriori informazioni.",
"LicenseOptionAll": "Tutti",
"LicenseOptionAny": "Solo Creative Commons",
"LicensePlaceholderText": "Licenza",
"LinkFileInstructions": "Incollare un collegamento a un file in OneDrive for Business o SharePoint Online",
"LinkHeader": "Da un link",
"LinkImageInstructions": "Incollare un collegamento a un'immagine in OneDrive for Business o SharePoint Online",
"ListLayoutAriaLabel": "Opzioni di visualizzazione. {0} {1} .",
"ListLayoutCompact": "Vista compatta",
"ListLayoutCompactDescription": "Visualizzare elementi e dettagli in un elenco compatto",
"ListLayoutList": "Visualizzazione elenco",
"ListLayoutListDescrition": "Visualizzare elementi e dettagli in un elenco",
"ListLayoutTile": "Visualizzazione affiancata",
"ListLayoutTileDescription": "Visualizzare gli elementi con le anteprime dei riquadri",
"ListOptionsAlt": "Opzioni di visualizzazione. {0} selezionato .",
"ListOptionsTitle": "Aprire il menu delle opzioni di visualizzazione",
"Loading": "Caricamento...",
"ModifiedByField": "Modificato da",
"ModifiedField": "Data di modifica",
"NameField": "Nome",
"No": "No",
"ProvidedValueIsInvalid": "Il valore fornito non è valido",
"NoExternalLinksValidationMessage": "Supportiamo solo il collegamento ai file nella tua organizzazione.",
"NoImageValidationMessage": "Questo non è un link a un tipo di file che supportiamo. È possibile creare un collegamento a un'immagine solo.",
"NoRecentFiles": "Nessun file recente",
"NoRecentFilesDescription": "Prova a selezionare un file dal tuo sito o a caricarne uno dal dispositivo.",
"NoResultsBadEnglish": "Non è stato trovato alcun risultato. Provare a modificare le opzioni di filtro",
"ODModifiedField": "Volta",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, modificato {2}, modificato da {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Questo elemento proviene dal sito di OneDrive. I file e le cartelle in OneDrive sono privati a meno che non vengano condivisi. Hai condiviso questo file con i membri del tuo sito in modo che possano farlo?",
"OneDriveConfirmDialogTitle": "Sto solo controllando...",
"OneDriveEmptyFolderAlt": "Cartella vuota",
"OneDriveEmptyFolderDescription": "Per aggiungere file, passare a OneDrive. È anche possibile aggiungere file a questa cartella usando l'app OneDrive per il computer.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Questa cartella è vuota",
"OneDriveRootFolderName": "file",
"OpenButtonLabel": "Aperto",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Immagini e file forniti dall'organizzazione",
"PoweredByBing": "Alimentato da Bing",
"RecentDocumentsHeader": "Documenti recenti",
"RecentImagesHeader": "Immagini recenti",
"RecentLinkLabel": "Recente",
"SearchBoxPlaceholder": "Ricerca sul Web",
"SearchResultAlt": "Risultato dell'immagine per {0}.",
"SearchResultAriaLabel": "Premere INVIO per aprire l'origine dell'immagine in una nuova scheda.",
"Selected": "Selezionato",
"SharingField": "Condivisione",
"SharingPrivate": "Privato",
"SharingShared": "condiviso",
"SiteLinkLabel": "Sito",
"SizeOptionAll": "Tutti",
"SizeOptionExtraLarge": "Extra Grande",
"SizeOptionLarge": "Grande",
"SizeOptionMedium": "Medio",
"SizeOptionSmall": "Piccolo",
"SizeUnit": [
"Byte",
"Ko",
"Mb",
"Andare",
"Tb",
"Pb",
"Eb",
"Ad esempio",
"Yb"
],
"SorryWebSearch": "Spiacenti, questa funzione non è implementata in questo esempio, perché richiederebbe una chiave API Bing.",
"SortedAscending": "Ordinati dalla A alla z",
"SortedDescending": "Ordinato dalla , alla A",
"TypeAriaLabel": "Operazioni di colonna per Tipo di file, Premere per ordinare in base al tipo di file",
"UploadFileHeader": "Carica file",
"UploadImageHeader": "Carica immagine",
"UploadLinkLabel": "Caricare",
"WebSearchLinkLabel": "Ricerca sul Web",
"Yes": "Sì",
"StockImagesLinkLabel": "Immagini stock",
"StockImagesHeader": "Immagini stock",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "In pochi secondi",
"L_RelativeDateTime_AFewSeconds": "Pochi secondi fa",
"L_RelativeDateTime_AboutAMinuteFuture": "In circa un minuto",
"L_RelativeDateTime_AboutAMinute": "Circa un minuto fa",
"L_RelativeDateTime_XMinutesFuture": "In {0} minuto In {0} minuti",
"L_RelativeDateTime_XMinutes": "{0} minuto fa {0} minuti fa",
"L_RelativeDateTime_XMinutesFutureIntervals": "1o 2-",
"L_RelativeDateTime_XMinutesIntervals": "1o 2-",
"L_RelativeDateTime_AboutAnHourFuture": "In circa un'ora",
"L_RelativeDateTime_AboutAnHour": "Circa un'ora fa",
"L_RelativeDateTime_Tomorrow": "Domani",
"L_RelativeDateTime_Yesterday": "Qui",
"L_RelativeDateTime_TomorrowAndTime": "Domani alle {0}",
"L_RelativeDateTime_YesterdayAndTime": "Ieri a {0}",
"L_RelativeDateTime_XHoursFuture": "In {0} ora In {0} ore",
"L_RelativeDateTime_XHours": "{0}'ora fa {0} ore fa",
"L_RelativeDateTime_XHoursFutureIntervals": "1o 2-",
"L_RelativeDateTime_XHoursIntervals": "1o 2-",
"L_RelativeDateTime_DayAndTime": "{0} a {1}",
"L_RelativeDateTime_XDaysFuture": "{0} giorno d'ora in ora in cui {0} giorni da oggi",
"L_RelativeDateTime_XDays": "{0} un giorno fa {0} giorni fa",
"L_RelativeDateTime_XDaysFutureIntervals": "1o 2-",
"L_RelativeDateTime_XDaysIntervals": "1o 2-",
"L_RelativeDateTime_Today": "Oggi"
},
"NewFolderNamePlaceholder": "Immettere il nome della cartella",
"FolderFilterBoxPlaceholder": "Filtrare le cartelle per nome",
"FolderExplorerLoading": "Caricamento delle cartelle in corso...",
"FolderExplorerNoItems": "Questa cartella non contiene sottocartelle.",
"IncorrectGuidValidationMessage": "Immettere un GUID valido"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "適用",
"ImportButtonLabel": "インポート",
"ExportButtonLabel": "エクスポート",
"FormatCodeButtonLabel": "フォーマット コード",
"JsonFileRequiredMessage": "json ファイルをアップロードしてください",
"SaveButtonLabel": "保存",
"CancelButtonLabel": "キャンセル",
"PeoplePickerSuggestedContacts": "提案された人々",
"PeoplePickerSuggestedGroups": "推奨されるグループ",
"PeoplePickerSuggestedCombined": "提案されたユーザーとグループ",
"PeoplePickerNoResults": "結果が見つかりません",
"PeoplePickerLoading": "結果を読み込む..",
"DatePickerMonthLongJanuary": "1 月",
"DatePickerMonthShortJanuary": "月",
"DatePickerMonthLongFebruary": "2 月",
"DatePickerMonthShortFebruary": "Feb",
"DatePickerMonthLongMarch": "3 月",
"DatePickerMonthShortMarch": "03 月",
"DatePickerMonthLongApril": "4 月",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "5 月",
"DatePickerMonthShortMay": "5 月",
"DatePickerMonthLongJune": "6 月",
"DatePickerMonthShortJune": "6 月",
"DatePickerMonthLongJuly": "7 月",
"DatePickerMonthShortJuly": "7 月",
"DatePickerMonthLongAugust": "8 月",
"DatePickerMonthShortAugust": "8 月",
"DatePickerMonthLongSeptember": "9 月",
"DatePickerMonthShortSeptember": "7",
"DatePickerMonthLongOctober": "10 月",
"DatePickerMonthShortOctober": "10 月",
"DatePickerMonthLongNovember": "11 月",
"DatePickerMonthShortNovember": "11 月",
"DatePickerMonthLongDecember": "12 月",
"DatePickerMonthShortDecember": "12 月",
"DatePickerDayLongSunday": "日曜日",
"DatePickerDayShortSunday": "日",
"DatePickerDayLongMonday": "月曜日",
"DatePickerDayShortMonday": "私の",
"DatePickerDayLongTuesday": "火曜日",
"DatePickerDayShortTuesday": "火",
"DatePickerDayLongWednesday": "水曜日",
"DatePickerDayShortWednesday": "水",
"DatePickerDayLongThursday": "木曜日",
"DatePickerDayShortThursday": "木",
"DatePickerDayLongFriday": "金曜日",
"DatePickerDayShortFriday": "金",
"DatePickerDayLongSaturday": "土曜日",
"DatePickerDayShortSaturday": "土",
"DatepickerGoToToday": "今日",
"DateTimePickerDate": "日付",
"DateTimePickerTime": "時間",
"ColorPickerButtonTitle": "色を選択する",
"NotNumberValidationMessage": "値は数値で、実際は次のようになります。",
"MinimumNumberValidationMessage": "値は次の値以上である必要があります。",
"MaximumNumberValidationMessage": "値は次の値以下の値以下でなければなりません。",
"TermPickerNoTerms": "用語セットに用語が含まれていません",
"TermPickerExpandTitle": "この用語セットを展開する",
"TermPickerExpandNode": "このノードを展開",
"TermPickerMenuTermSet": "用語セットのメニュー",
"TermPickerMenuGroup": "用語グループのメニュー",
"TermPickerInLabel": "インチ",
"TermPickerTermSetLabel": "用語セット",
"propertyFieldMultiSelectNoOptions": "選択するオプションはありません",
"CollectionDataEmptyFields": "コレクション データにフィールドが指定されていません。",
"CollectionDataEmptyValue": "コレクションにデータがありません。",
"CollectionAddRowButtonLabel": "コレクションにデータを追加する",
"CollectionDeleteRowButtonLabel": "現在の行を削除する",
"CollectionSaveAndAddButtonLabel": "追加と保存",
"CollectionDataItemShowErrorsLabel": "行エラーの表示",
"CollectionDataItemFieldRequiredLabel": "フィールドは必須です。",
"InvalidUrlError": "指定された URL は無効です",
"DescriptionLabel": "説明",
"MoreInfoLabel": "詳細",
"AboutGroupLabel": "に関しては",
"SitePickerSearchBoxPlaceholder": "検索。。。",
"SitePickerNoResults": "検索結果なし",
"SitePickerSitesChosen": "選択したウェブサイト",
"TeamPickerSearchBoxPlaceholder": "検索。。。",
"TeamPickerNoResults": "検索結果なし",
"TeamPickerSitesChosen": "選択されたチーム",
"AddFileButtonLabel": "ファイルの追加",
"AddImageButtonLabel": "画像を追加する",
"AriaCellValue": "{0}列、{1}",
"FilePickerCancelButtonLabel": "キャンセル",
"CantValidateValidationMessage": "このリンクを確認できませんでした。リンクを確認して、もう一度やり直してください。",
"ChangeFileLinkLabel": "ファイルの変更",
"ChangeImageLinkLabel": "画像の変更",
"ChooseFileLinkLabel": "ファイルの選択",
"ChooseImageLinkLabel": "画像を選択",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "著作権を含め、他人の権利を尊重する責任があります。",
"CreativeCommonsMessage": "これらの結果にはクリエイティブ・コモンズのライセンスがタグ付けされます。ライセンスを確認して、準拠していることを確認します。",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, ドキュメント, 修正{1}, 編集: {2}, プライベート",
"DocumentLibraries": "ドキュメント ライブラリ",
"EditedByNamePlate": "編集日時:",
"EmptyFileSize": "0 バイト",
"FilePickerHeader": "ファイル ピッカー",
"FileSizeField": "ファイルサイズ",
"FolderAltText": "フォルダー",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}、フォルダ、変更{1}、{2}編集、{3}アイテム、プライベート",
"FromLinkLinkLabel": "リンクから",
"ImageAltText": ".{0}画像",
"ImageAriaLabelTemplate": ".{0}画像",
"ImageLayoutPlaceholderText": "レイアウト",
"ImageSizePlaceholderText": "画像サイズ",
"ItemChildCountField": "アイテムの子カウント",
"LayoutOptionAll": "すべての",
"LayoutOptionSquare": "広場",
"LayoutOptionTall": "背",
"LayoutOptionWide": "広い",
"LearnMoreLink": "詳細情報。",
"LicenseOptionAll": "すべての",
"LicenseOptionAny": "クリエイティブ・コモンズのみ",
"LicensePlaceholderText": "ライセンス",
"LinkFileInstructions": "ビジネスまたは SharePoint オンラインの OneDrive のファイルへのリンクを貼り付ける",
"LinkHeader": "リンクから",
"LinkImageInstructions": "ビジネスまたは SharePoint オンラインの OneDrive のイメージへのリンクを貼り付ける",
"ListLayoutAriaLabel": "オプションを表示します。{0} {1} .",
"ListLayoutCompact": "コンパクトビュー",
"ListLayoutCompactDescription": "コンパクトなリストでアイテムと詳細を表示する",
"ListLayoutList": "リスト ビュー",
"ListLayoutListDescrition": "リスト内のアイテムと詳細を表示する",
"ListLayoutTile": "タイルビュー",
"ListLayoutTileDescription": "タイルプレビューでアイテムを表示する",
"ListOptionsAlt": "オプションを表示します。{0}選択されています。",
"ListOptionsTitle": "表示オプションメニューを開く",
"Loading": "読み込み。。。",
"ModifiedByField": "更新者",
"ModifiedField": "更新日",
"NameField": "名前",
"No": "いいえ",
"ProvidedValueIsInvalid": "指定された値が無効です",
"NoExternalLinksValidationMessage": "私たちは、あなた自身の組織のファイルへのリンクのみをサポートしています。",
"NoImageValidationMessage": "これは、サポートするファイルの種類へのリンクではありません。画像へのリンクのみ可能です。",
"NoRecentFiles": "最近のファイルはありません",
"NoRecentFilesDescription": "サイトからファイルを選択するか、デバイスからファイルをアップロードしてみてください。",
"NoResultsBadEnglish": "結果が見つかりません。フィルタ オプションを変更する",
"ODModifiedField": "変更",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}、{1}、修正{2}、{3}、{4}、{5}によって編集",
"OneDriveConfirmDialogBody": "このアイテムは OneDrive サイトからのものです。OneDrive のファイルとフォルダーは、共有しない限りプライベートです。このファイルをサイトのメンバーと共有して、ccess を使用できるようにしますか?",
"OneDriveConfirmDialogTitle": "ちょっと聞いてみただけです。。。",
"OneDriveEmptyFolderAlt": "空のフォルダ",
"OneDriveEmptyFolderDescription": "ファイルを追加するには、OneDrive に移動します。コンピューターの OneDrive アプリを使用して、このフォルダーにファイルを追加することもできます。",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "このフォルダは空です",
"OneDriveRootFolderName": "ファイル",
"OpenButtonLabel": "開く",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "組織から提供されるイメージとファイル",
"PoweredByBing": "Bingによって動力を与えられる",
"RecentDocumentsHeader": "最近のドキュメント",
"RecentImagesHeader": "最近の画像",
"RecentLinkLabel": "最近",
"SearchBoxPlaceholder": "ウェブ検索",
"SearchResultAlt": "{0}の画像結果。",
"SearchResultAriaLabel": "Enter キーを押して、新しいタブでイメージ ソースを開きます。",
"Selected": "選択",
"SharingField": "共有",
"SharingPrivate": "プライベート",
"SharingShared": "共有",
"SiteLinkLabel": "サイト",
"SizeOptionAll": "すべての",
"SizeOptionExtraLarge": "特大",
"SizeOptionLarge": "大きな",
"SizeOptionMedium": "中程度",
"SizeOptionSmall": "小さな",
"SizeUnit": [
"バイト",
"島",
"Mb",
"行く",
"Tb",
"Pb",
"Eb",
"例えば",
"Yb"
],
"SorryWebSearch": "この関数はBing API キーを必要とするため、このサンプルでは実装されていません。",
"SortedAscending": "A から Z に並べ替え",
"SortedDescending": "Z を A に並べ替えた",
"TypeAriaLabel": "ファイルタイプの列操作、ファイルタイプでソートするために押す",
"UploadFileHeader": "ファイルのアップロード",
"UploadImageHeader": "画像をアップロードする",
"UploadLinkLabel": "アップロード",
"WebSearchLinkLabel": "ウェブ検索",
"Yes": "はい",
"StockImagesLinkLabel": "ストック画像",
"StockImagesHeader": "ストック画像",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "秒単位",
"L_RelativeDateTime_AFewSeconds": "数秒前",
"L_RelativeDateTime_AboutAMinuteFuture": "約1分で",
"L_RelativeDateTime_AboutAMinute": "1分ほど前",
"L_RelativeDateTime_XMinutesFuture": "{0}分で{0}分で",
"L_RelativeDateTime_XMinutes": "{0}分前{0}分前",
"L_RelativeDateTime_XMinutesFutureIntervals": "1||2-",
"L_RelativeDateTime_XMinutesIntervals": "1||2-",
"L_RelativeDateTime_AboutAnHourFuture": "約1時間で",
"L_RelativeDateTime_AboutAnHour": "約1時間前",
"L_RelativeDateTime_Tomorrow": "明日",
"L_RelativeDateTime_Yesterday": "ここは",
"L_RelativeDateTime_TomorrowAndTime": "明日の{0}",
"L_RelativeDateTime_YesterdayAndTime": "昨日の{0}",
"L_RelativeDateTime_XHoursFuture": "{0}時間で{0}時間",
"L_RelativeDateTime_XHours": "{0}時間前{0} 時間前",
"L_RelativeDateTime_XHoursFutureIntervals": "1||2-",
"L_RelativeDateTime_XHoursIntervals": "1||2-",
"L_RelativeDateTime_DayAndTime": "{1}に{0}",
"L_RelativeDateTime_XDaysFuture": "これから{0}日今から{0}日",
"L_RelativeDateTime_XDays": "一日前に{0}{0}日前",
"L_RelativeDateTime_XDaysFutureIntervals": "1||2-",
"L_RelativeDateTime_XDaysIntervals": "1||2-",
"L_RelativeDateTime_Today": "今日"
},
"NewFolderNamePlaceholder": "フォルダ名を入力してください",
"FolderFilterBoxPlaceholder": "フォルダを名前でフィルタする",
"FolderExplorerLoading": "フォルダーを読み込んでいます。",
"FolderExplorerNoItems": "このフォルダにはサブフォルダがありません。",
"IncorrectGuidValidationMessage": "有効な GUID を入力してください"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Taikyti",
"ImportButtonLabel": "Importo",
"ExportButtonLabel": "Eksporto",
"FormatCodeButtonLabel": "Formato kodas",
"JsonFileRequiredMessage": "Įkelkite json failą",
"SaveButtonLabel": "Išsaugoti",
"CancelButtonLabel": "Atšaukti",
"PeoplePickerSuggestedContacts": "Siūlomi žmonės",
"PeoplePickerSuggestedGroups": "Siūlomos grupės",
"PeoplePickerSuggestedCombined": "Siūlomi žmonės ir grupės",
"PeoplePickerNoResults": "Rezultato nerasta",
"PeoplePickerLoading": "Įkeliami rezultatai ...",
"DatePickerMonthLongJanuary": "Sausis",
"DatePickerMonthShortJanuary": "Sausis",
"DatePickerMonthLongFebruary": "Vasaris",
"DatePickerMonthShortFebruary": "Vasaris",
"DatePickerMonthLongMarch": "Kovas",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "Balandis",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Gegužė",
"DatePickerMonthShortMay": "Gegužė",
"DatePickerMonthLongJune": "Birželis",
"DatePickerMonthShortJune": "Birželis",
"DatePickerMonthLongJuly": "Liepa",
"DatePickerMonthShortJuly": "Jul",
"DatePickerMonthLongAugust": "Rugpjūtis",
"DatePickerMonthShortAugust": "Rugpjūtis",
"DatePickerMonthLongSeptember": "Rugsėjis",
"DatePickerMonthShortSeptember": "Septyni",
"DatePickerMonthLongOctober": "Spalis",
"DatePickerMonthShortOctober": "Spalis",
"DatePickerMonthLongNovember": "Lapkritis",
"DatePickerMonthShortNovember": "Lapkritis",
"DatePickerMonthLongDecember": "Gruodis",
"DatePickerMonthShortDecember": "Gruodis",
"DatePickerDayLongSunday": "Sekmadienis",
"DatePickerDayShortSunday": "Saulės",
"DatePickerDayLongMonday": "Pirmadienis",
"DatePickerDayShortMonday": "Mano",
"DatePickerDayLongTuesday": "Antradienis",
"DatePickerDayShortTuesday": "Tue",
"DatePickerDayLongWednesday": "Trečiadienis",
"DatePickerDayShortWednesday": "Tr",
"DatePickerDayLongThursday": "Ketvirtadienis",
"DatePickerDayShortThursday": "K",
"DatePickerDayLongFriday": "Penktadienis",
"DatePickerDayShortFriday": "Fri",
"DatePickerDayLongSaturday": "Šeštadienis",
"DatePickerDayShortSaturday": "Šeštadienis",
"DatepickerGoToToday": "Šiandien",
"DateTimePickerDate": "Data",
"DateTimePickerTime": "Laikas",
"ColorPickerButtonTitle": "Pasirinkti spalvą",
"NotNumberValidationMessage": "Reikšmė turi būti skaičius, faktinis yra:",
"MinimumNumberValidationMessage": "Vertė turi būti didesnė arba lygi:",
"MaximumNumberValidationMessage": "Vertė turi būti mažesnė arba lygi:",
"TermPickerNoTerms": "Terminų rinkinyje nėra jokių sąlygų",
"TermPickerExpandTitle": "Išplėsti šį terminų rinkinį",
"TermPickerExpandNode": "Išplėsti šį mazgą",
"TermPickerMenuTermSet": "Terminų rinkinio meniu",
"TermPickerMenuGroup": "Terminų grupės meniu",
"TermPickerInLabel": "In",
"TermPickerTermSetLabel": "Terminų rinkinys",
"propertyFieldMultiSelectNoOptions": "Nėra parinkčių pasirinkti",
"CollectionDataEmptyFields": "Rinkimo duomenims nebuvo pateikta jokių laukų.",
"CollectionDataEmptyValue": "Jūsų rinkinyje nėra duomenų.",
"CollectionAddRowButtonLabel": "Duomenų įtraukimas į rinkinį",
"CollectionDeleteRowButtonLabel": "Naikinti dabartinę eilutę",
"CollectionSaveAndAddButtonLabel": "Pridėti ir įrašyti",
"CollectionDataItemShowErrorsLabel": "Rodyti eilutės klaidas",
"CollectionDataItemFieldRequiredLabel": "Laukas yra būtinas.",
"InvalidUrlError": "Pateiktas URL neleistinas",
"DescriptionLabel": "Aprašymas / kontrolė",
"MoreInfoLabel": "Daugiau informacijos",
"AboutGroupLabel": "Apie",
"SitePickerSearchBoxPlaceholder": "Paieškos...",
"SitePickerNoResults": "Nėra ieškos rezultatų",
"SitePickerSitesChosen": "Pasirinkta (-os) interneto svetainė (-ės)",
"TeamPickerSearchBoxPlaceholder": "Paieškos...",
"TeamPickerNoResults": "Nėra ieškos rezultatų",
"TeamPickerSitesChosen": "Atrinktos (-os) komandos (-os)",
"AddFileButtonLabel": "Pridėti failą",
"AddImageButtonLabel": "Pridėti vaizdą",
"AriaCellValue": "{0} stulpelis {1}",
"FilePickerCancelButtonLabel": "Atšaukti",
"CantValidateValidationMessage": "Nepavyko patikrinti šios nuorodos. Patikrinkite saitą ir bandykite dar kartą.",
"ChangeFileLinkLabel": "Keisti failą",
"ChangeImageLinkLabel": "Keisti vaizdą",
"ChooseFileLinkLabel": "Pasirinkite failą",
"ChooseImageLinkLabel": "Pasirinkite vaizdą",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Jūs esate atsakingi už pagarbą kitų teisėms, įskaitant autorių teises.",
"CreativeCommonsMessage": "Šie rezultatai pažymėti Creative Commons licencijomis. Peržiūrėkite licencijas, kad įsitikintumėte, jog laikotės reikalavimų.",
"DateFormat": "MM/DD/MMMM:mm A",
"DocumentLabelTemplate": "{0}, dokumentas, modifikuotas {1}, redaguotas {2}, Privatus",
"DocumentLibraries": "Dokumentų bibliotekos",
"EditedByNamePlate": "redagavo ",
"EmptyFileSize": "0 baitų",
"FilePickerHeader": "Failų parinkiklis",
"FileSizeField": "Failo dydis",
"FolderAltText": "Aplanką",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, aplankas, modifikuotas {1}, redaguotas {2}, {3} elementus,",
"FromLinkLinkLabel": "Iš nuorodos",
"ImageAltText": ". {0} vaizdas",
"ImageAriaLabelTemplate": ". {0} vaizdas",
"ImageLayoutPlaceholderText": "Išdėstymą",
"ImageSizePlaceholderText": "Vaizdo dydis",
"ItemChildCountField": "Antrinių prekių skaičius",
"LayoutOptionAll": "Visus",
"LayoutOptionSquare": "Kvadratinių",
"LayoutOptionTall": "Aukščio",
"LayoutOptionWide": "Platus",
"LearnMoreLink": "sužinoti daugiau, sužinok daugiau.",
"LicenseOptionAll": "Visus",
"LicenseOptionAny": "Tik kūrybinės commons",
"LicensePlaceholderText": "Licencijos",
"LinkFileInstructions": "Saito į failą įklijavimas \"OneDrive\" verslui arba \"SharePoint Online\"",
"LinkHeader": "Iš nuorodos",
"LinkImageInstructions": "Saito į vaizdą įklijavimas \"OneDrive\" verslui arba \"SharePoint Online\"",
"ListLayoutAriaLabel": "Peržiūrėti parinktis. {0} {1} .",
"ListLayoutCompact": "Kompaktiškas vaizdas",
"ListLayoutCompactDescription": "Elementų ir išsamios informacijos peržiūra kompaktiškame sąraše",
"ListLayoutList": "Sąrašo rodinys",
"ListLayoutListDescrition": "Sąrašo elementų ir išsamios informacijos peržiūra",
"ListLayoutTile": "Plytelių rodinys",
"ListLayoutTileDescription": "Elementų peržiūra naudojant plytelių peržiūras",
"ListOptionsAlt": "Peržiūrėti parinktis. {0} pasirinktas .",
"ListOptionsTitle": "Atidaryti rodinio parinkčių meniu",
"Loading": "Pakrovimo...",
"ModifiedByField": "Modifikavo",
"ModifiedField": "Modifikavimo data",
"NameField": "vardas, pavadinimas",
"No": "ne",
"ProvidedValueIsInvalid": "Pateikta reikšmė neleistina",
"NoExternalLinksValidationMessage": "Mes palaikome tik susiejimą su failais jūsų organizacijoje.",
"NoImageValidationMessage": "Tai nėra saitas su failo tipu, o mes palaikome. Galite susieti tik su vaizdu.",
"NoRecentFiles": "Nėra naujausių failų",
"NoRecentFilesDescription": "Pabandykite pasirinkti failą iš svetainės arba nusiųsti failą iš įrenginio.",
"NoResultsBadEnglish": "Rezultatų nerasta. Pabandykite pakeisti filtro parinktis",
"ODModifiedField": "Modifikuotas",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, modifikuotas {2}, redaguotas {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Šis elementas yra iš \"OneDrive\" svetainės. \"OneDrive\" failai ir aplankai yra privatūs, nebent juos bendrinate. Ar bendrinote šį failą su savo svetainės nariais, kad jie galėtų jį naudoti?",
"OneDriveConfirmDialogTitle": "Tik patikrinsiu...",
"OneDriveEmptyFolderAlt": "Tuščias aplankas",
"OneDriveEmptyFolderDescription": "Norėdami įtraukti failų, eikite į \"OneDrive\". Taip pat galite įtraukti failus į šį aplanką naudodami \"OneDrive\" programėlę, skirtą jūsų kompiuteriui.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Šis aplankas tuščias",
"OneDriveRootFolderName": "Failus",
"OpenButtonLabel": "Atidaryti",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Jūsų organizacijos pateikti vaizdai ir failai",
"PoweredByBing": "Parengta pagal \"Bing\"",
"RecentDocumentsHeader": "Naujausi dokumentai",
"RecentImagesHeader": "Naujausi vaizdai",
"RecentLinkLabel": "Neseniai",
"SearchBoxPlaceholder": "Žiniatinklio ieška",
"SearchResultAlt": "{0} vaizdo rezultatas.",
"SearchResultAriaLabel": "Paspauskite Enter, kad atidarytumėte vaizdo šaltinį naujame skirtuke.",
"Selected": "Pasirinktas",
"SharingField": "Bendrinimas",
"SharingPrivate": "Privataus",
"SharingShared": "Bendra",
"SiteLinkLabel": "Svetainės",
"SizeOptionAll": "Visus",
"SizeOptionExtraLarge": "Itin didelis",
"SizeOptionLarge": "Didelis",
"SizeOptionMedium": "Vidutinis",
"SizeOptionSmall": "Mažas",
"SizeUnit": [
"Baitų",
"Ko (Didžioji",
"Mb",
"Eiti",
"Tb",
"Pb",
"Eb",
"Pvz",
"Yb"
],
"SorryWebSearch": "Atsiprašome, ši funkcija nėra įdiegta šiame pavyzdyje, nes ji reikalauja Bing API raktą.",
"SortedAscending": "Surūšiuota nuo A iki Z",
"SortedDescending": "Surūšiuota nuo Z iki A",
"TypeAriaLabel": "Failo tipo stulpelių operacijos, Paspauskite, jei norite rūšiuoti pagal failo tipą",
"UploadFileHeader": "Įkelti failą",
"UploadImageHeader": "Įkelti vaizdą",
"UploadLinkLabel": "Įkelti",
"WebSearchLinkLabel": "Žiniatinklio ieška",
"Yes": "taip",
"StockImagesLinkLabel": "Išteklių vaizdai",
"StockImagesHeader": "Ištekliai Vaizdai",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Per kelias sekundes",
"L_RelativeDateTime_AFewSeconds": "Prieš kelias sekundes",
"L_RelativeDateTime_AboutAMinuteFuture": "Maždaug per minutę",
"L_RelativeDateTime_AboutAMinute": "Maždaug prieš minutę",
"L_RelativeDateTime_XMinutesFuture": "Per {0} minučių Per {0} minutes",
"L_RelativeDateTime_XMinutes": "{0} min. {0} mėn.",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Maždaug per valandą",
"L_RelativeDateTime_AboutAnHour": "Maždaug prieš valandą",
"L_RelativeDateTime_Tomorrow": "Rytoj",
"L_RelativeDateTime_Yesterday": "čia",
"L_RelativeDateTime_TomorrowAndTime": "Rytoj {0}",
"L_RelativeDateTime_YesterdayAndTime": "Vakar {0}",
"L_RelativeDateTime_XHoursFuture": "Per {0} valandą Per {0} valandas",
"L_RelativeDateTime_XHours": "{0} prieš valandą {0} prieš kelias valandas",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} į {1}",
"L_RelativeDateTime_XDaysFuture": "{0} dieną nuo dabar {0} dienų nuo dabar",
"L_RelativeDateTime_XDays": "{0} prieš dieną {0} prieš dienas",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Šiandien"
},
"NewFolderNamePlaceholder": "Įveskite aplanko pavadinimą",
"FolderFilterBoxPlaceholder": "Filtruokite aplankus pagal pavadinimą",
"FolderExplorerLoading": "Įkeliami aplankai...",
"FolderExplorerNoItems": "Šiame aplanke nėra poaplankių.",
"IncorrectGuidValidationMessage": "Įveskite tinkamą GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Lietot",
"ImportButtonLabel": "Importa",
"ExportButtonLabel": "Eksporta",
"FormatCodeButtonLabel": "Formāta kods",
"JsonFileRequiredMessage": "Lūdzu, augšupielādējiet json failu",
"SaveButtonLabel": "Saglabāt",
"CancelButtonLabel": "Atcelt",
"PeoplePickerSuggestedContacts": "Ieteicamie cilvēki",
"PeoplePickerSuggestedGroups": "Ieteicamās grupas",
"PeoplePickerSuggestedCombined": "Ieteicamie lietotāji un grupas",
"PeoplePickerNoResults": "Rezultāts nav atrasts",
"PeoplePickerLoading": "Notiek rezultātu ielāde ...",
"DatePickerMonthLongJanuary": "Janvāris",
"DatePickerMonthShortJanuary": "Jan Jan",
"DatePickerMonthLongFebruary": "Februāris",
"DatePickerMonthShortFebruary": "Februāris",
"DatePickerMonthLongMarch": "Marts",
"DatePickerMonthShortMarch": "Marts",
"DatePickerMonthLongApril": "Aprīlis",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Maijs",
"DatePickerMonthShortMay": "Maijs",
"DatePickerMonthLongJune": "Jūnijs",
"DatePickerMonthShortJune": "Jūnijs",
"DatePickerMonthLongJuly": "Jūlijs",
"DatePickerMonthShortJuly": "Jūlijs",
"DatePickerMonthLongAugust": "Augusts",
"DatePickerMonthShortAugust": "Augusts",
"DatePickerMonthLongSeptember": "Septembris",
"DatePickerMonthShortSeptember": "Septiņi",
"DatePickerMonthLongOctober": "Oktobris",
"DatePickerMonthShortOctober": "Oktobris",
"DatePickerMonthLongNovember": "Novembris",
"DatePickerMonthShortNovember": "Novembris",
"DatePickerMonthLongDecember": "Decembris",
"DatePickerMonthShortDecember": "Decembris",
"DatePickerDayLongSunday": "Svētdiena",
"DatePickerDayShortSunday": "Saule",
"DatePickerDayLongMonday": "Pirmdiena",
"DatePickerDayShortMonday": "Manu",
"DatePickerDayLongTuesday": "Otrdiena",
"DatePickerDayShortTuesday": "Tue",
"DatePickerDayLongWednesday": "Trešdiena",
"DatePickerDayShortWednesday": "Wed",
"DatePickerDayLongThursday": "Ceturtdiena",
"DatePickerDayShortThursday": "Thu",
"DatePickerDayLongFriday": "Piektdiena",
"DatePickerDayShortFriday": "Fri",
"DatePickerDayLongSaturday": "Sestdiena",
"DatePickerDayShortSaturday": "Sestdiena",
"DatepickerGoToToday": "Šodien",
"DateTimePickerDate": "Datumu",
"DateTimePickerTime": "Laiks",
"ColorPickerButtonTitle": "Izvēlieties krāsu",
"NotNumberValidationMessage": "Vērtībai jābūt faktiskais skaitlis ir:",
"MinimumNumberValidationMessage": "Vērtībai jābūt lielākai vai vienādai ar:",
"MaximumNumberValidationMessage": "Vērtībai jābūt mazākai vai vienādai ar:",
"TermPickerNoTerms": "Terminu kopā nav noteikumu",
"TermPickerExpandTitle": "Izvērst šo terminu kopu",
"TermPickerExpandNode": "Izvērst šo mezglu",
"TermPickerMenuTermSet": "Terminu kopas izvēlne",
"TermPickerMenuGroup": "Terminu grupas izvēlne",
"TermPickerInLabel": "Collas",
"TermPickerTermSetLabel": "Terminu kopa",
"propertyFieldMultiSelectNoOptions": "Nav opciju, ko atlasīt",
"CollectionDataEmptyFields": "Apkopošanas datiem netika norādīts neviens lauki.",
"CollectionDataEmptyValue": "Jūsu kolekcijā nav datu.",
"CollectionAddRowButtonLabel": "Datu pievienošana kolekcijai",
"CollectionDeleteRowButtonLabel": "Dzēst pašreizējo rindu",
"CollectionSaveAndAddButtonLabel": "Pievienošana un saglabāšana",
"CollectionDataItemShowErrorsLabel": "Rādīt rindu kļūdas",
"CollectionDataItemFieldRequiredLabel": "Ir nepieciešams lauks.",
"InvalidUrlError": "Norādītais URL nav derīgs",
"DescriptionLabel": "Apraksts",
"MoreInfoLabel": "Vairāk informācijas",
"AboutGroupLabel": "Par",
"SitePickerSearchBoxPlaceholder": "Meklēšanas...",
"SitePickerNoResults": "Nav meklēšanas rezultātu",
"SitePickerSitesChosen": "Atlasītā(-ās) tīmekļa vietne(-as)",
"TeamPickerSearchBoxPlaceholder": "Meklēšanas...",
"TeamPickerNoResults": "Nav meklēšanas rezultātu",
"TeamPickerSitesChosen": "Atlasītās komandas",
"AddFileButtonLabel": "Pievienot failu",
"AddImageButtonLabel": "Pievienot attēlu",
"AriaCellValue": "{0} kolonna, {1}",
"FilePickerCancelButtonLabel": "Atcelt",
"CantValidateValidationMessage": "Šo saiti nevarēja pārbaudīt. Lūdzu, pārbaudiet saiti un mēģiniet vēlreiz.",
"ChangeFileLinkLabel": "Mainīt failu",
"ChangeImageLinkLabel": "Mainīt attēlu",
"ChooseFileLinkLabel": "Izvēlieties failu",
"ChooseImageLinkLabel": "Izvēlieties attēlu",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Jūs esat atbildīgs par citu tiesību, tostarp autortiesību, ievērošanu.",
"CreativeCommonsMessage": "Šie rezultāti ir atzīmēti ar Creative Commons licencēm. Pārskatiet licences, lai nodrošinātu atbilstību.",
"DateFormat": "MM/DD/GGGG hh:mm A",
"DocumentLabelTemplate": "{0}, dokuments, modificēts {1}, rediģējis {2}, Privāts",
"DocumentLibraries": "Dokumentu bibliotēkas",
"EditedByNamePlate": "rediģējis ",
"EmptyFileSize": "0 baiti",
"FilePickerHeader": "Failu atlasītājs",
"FileSizeField": "Faila lielums",
"FolderAltText": "Mapi",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Mape, modificēts {1}, rediģējis {2}, {3} vienumi, Private",
"FromLinkLinkLabel": "No saites",
"ImageAltText": ". {0} attēls",
"ImageAriaLabelTemplate": ". {0} attēls",
"ImageLayoutPlaceholderText": "Izkārtojumu",
"ImageSizePlaceholderText": "Attēla lielums",
"ItemChildCountField": "Vienumu bērnelementu skaits",
"LayoutOptionAll": "Visas",
"LayoutOptionSquare": "Kvadrātveida",
"LayoutOptionTall": "Augsts",
"LayoutOptionWide": "Plaša",
"LearnMoreLink": "apgūt vairāk.",
"LicenseOptionAll": "Visas",
"LicenseOptionAny": "Tikai Creative Commons",
"LicensePlaceholderText": "Licences",
"LinkFileInstructions": "Saites uz failu ielīmēšana pakalpojumā OneDrive darbam vai SharePoint Online",
"LinkHeader": "No saites",
"LinkImageInstructions": "Saites ielīmēšana uz attēlu pakalpojumā OneDrive darbam vai SharePoint Online",
"ListLayoutAriaLabel": "Skatīt opcijas. {0} {1} .",
"ListLayoutCompact": "Kompakts skats",
"ListLayoutCompactDescription": "Vienumu un detaļu skatīšana kompaktajā sarakstā",
"ListLayoutList": "Saraksta skats",
"ListLayoutListDescrition": "Vienumu un detaļu skatīšana sarakstā",
"ListLayoutTile": "Mozaīkas skats",
"ListLayoutTileDescription": "Vienumu ar mozaīkas priekšskatījumu skatīšana",
"ListOptionsAlt": "Skatīt opcijas. {0} atlasīts .",
"ListOptionsTitle": "Atvērt skata opciju izvēlni",
"Loading": "Iekraušanas...",
"ModifiedByField": "Modificējis",
"ModifiedField": "Modificēšanas datums",
"NameField": "vārds",
"No": "nē",
"ProvidedValueIsInvalid": "Norādītā vērtība nav derīga",
"NoExternalLinksValidationMessage": "Mēs atbalstām saistīšanu tikai ar failiem jūsu organizācijā.",
"NoImageValidationMessage": "Šī nav saite uz mūsu atbalstīto faila tipu. Var izveidot saiti tikai uz attēlu.",
"NoRecentFiles": "Nav pēdējo failu",
"NoRecentFilesDescription": "Mēģiniet atlasīt failu no savas vietnes vai augšupielādējiet to no savas ierīces.",
"NoResultsBadEnglish": "Nav atrasts rezultāts. Mēģiniet mainīt filtra opcijas",
"ODModifiedField": "Modificēt",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, modified {2}, edited by {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Šis vienums ir no jūsu OneDrive vietnes. Faili un mapes pakalpojumā OneDrive ir privāti, ja vien tos nekopīgojat. Vai esat kopīgojis šo failu ar jūsu vietnes dalībniekiem, lai viņi varētu ccess to?",
"OneDriveConfirmDialogTitle": "Tikai pārbaude ...",
"OneDriveEmptyFolderAlt": "Tukša mape",
"OneDriveEmptyFolderDescription": "Lai pievienotu failus, atveriet savu OneDrive. Varat arī pievienot failus šai mapei, izmantojot datora programmu OneDrive.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Šī mape ir tukša",
"OneDriveRootFolderName": "Failus",
"OpenButtonLabel": "Atvērt",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Uzņēmuma nodrošinātie attēli un faili",
"PoweredByBing": "Powered by Bing",
"RecentDocumentsHeader": "Jaunākie dokumenti",
"RecentImagesHeader": "Jaunākie attēli",
"RecentLinkLabel": "Nesen",
"SearchBoxPlaceholder": "Meklēšana tīmeklī",
"SearchResultAlt": "Attēla rezultāts {0}.",
"SearchResultAriaLabel": "Nospiediet taustiņu Enter, lai atvērtu attēla avotu jaunā cilnē.",
"Selected": "Atlasīto",
"SharingField": "Koplietošanas",
"SharingPrivate": "Privāto",
"SharingShared": "Koplietojamo",
"SiteLinkLabel": "Vietnes",
"SizeOptionAll": "Visas",
"SizeOptionExtraLarge": "Īpaši liels",
"SizeOptionLarge": "Lielu",
"SizeOptionMedium": "Vidējas intensitātes sāpes",
"SizeOptionSmall": "Nelielu",
"SizeUnit": [
"Baiti",
"Ko Ko",
"Mb",
"Iet",
"Tb",
"Pb",
"Eb",
"Piemēram",
"Yb"
],
"SorryWebSearch": "Atvainojiet, šī funkcija nav ieviesta šajā paraugā, jo tai būtu nepieciešama Bing API atslēga.",
"SortedAscending": "Sakārtoti no A līdz Z",
"SortedDescending": "Kārtots no Z līdz A",
"TypeAriaLabel": "Kolonnas darbības faila tipam, nospiediet, lai kārtotu pēc faila tipa",
"UploadFileHeader": "Augšupielādēt failu",
"UploadImageHeader": "Augšupielādēt attēlu",
"UploadLinkLabel": "Augšupielādēt",
"WebSearchLinkLabel": "Meklēšana tīmeklī",
"Yes": "jā",
"StockImagesLinkLabel": "Akciju attēli",
"StockImagesHeader": "Akciju attēli",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Sekundēs",
"L_RelativeDateTime_AFewSeconds": "1hour ago",
"L_RelativeDateTime_AboutAMinuteFuture": "Apmēram pēc minūtes",
"L_RelativeDateTime_AboutAMinute": "Apmēram pirms minūtes",
"L_RelativeDateTime_XMinutesFuture": "- {0} minūti {0} minūtēs",
"L_RelativeDateTime_XMinutes": "{0} brīdis pirms {0} pirms 12 minūtēm",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Apmēram pēc stundas",
"L_RelativeDateTime_AboutAnHour": "Apmēram pirms stundas",
"L_RelativeDateTime_Tomorrow": "Rīt",
"L_RelativeDateTime_Yesterday": "šeit",
"L_RelativeDateTime_TomorrowAndTime": "Rīt plkst{0}",
"L_RelativeDateTime_YesterdayAndTime": "Vakar {0}",
"L_RelativeDateTime_XHoursFuture": "{0} stundā {0} stundās",
"L_RelativeDateTime_XHours": "{0} hour ago {0} hours ago",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} dienu no šī brīža {0} dienas pēc šī brīža",
"L_RelativeDateTime_XDays": "{0} pirms dienas {0} pirms 10 dienām",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Šodien"
},
"NewFolderNamePlaceholder": "Ievadiet mapes nosaukumu",
"FolderFilterBoxPlaceholder": "Filtrēt mapes pēc nosaukuma",
"FolderExplorerLoading": "Notiek mapju ielāde...",
"FolderExplorerNoItems": "Šai mapei nav apakšmapes.",
"IncorrectGuidValidationMessage": "Lūdzu , ievadiet derīgu GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Bruke",
"ImportButtonLabel": "Importere",
"ExportButtonLabel": "Eksportere",
"FormatCodeButtonLabel": "Formater kode",
"JsonFileRequiredMessage": "Last opp en json-fil",
"SaveButtonLabel": "Lagre",
"CancelButtonLabel": "Avbryte",
"PeoplePickerSuggestedContacts": "Foreslåtte personer",
"PeoplePickerSuggestedGroups": "Foreslåtte grupper",
"PeoplePickerSuggestedCombined": "Foreslåtte personer og grupper",
"PeoplePickerNoResults": "Ingen resultat funnet",
"PeoplePickerLoading": "Laster resultater ...",
"DatePickerMonthLongJanuary": "Januar",
"DatePickerMonthShortJanuary": "Januar",
"DatePickerMonthLongFebruary": "Februar",
"DatePickerMonthShortFebruary": "Februar",
"DatePickerMonthLongMarch": "Mars",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "April",
"DatePickerMonthShortApril": "April",
"DatePickerMonthLongMay": "Mai",
"DatePickerMonthShortMay": "Mai",
"DatePickerMonthLongJune": "Juni",
"DatePickerMonthShortJune": "Juni",
"DatePickerMonthLongJuly": "Juli",
"DatePickerMonthShortJuly": "Juli",
"DatePickerMonthLongAugust": "August",
"DatePickerMonthShortAugust": "August",
"DatePickerMonthLongSeptember": "September",
"DatePickerMonthShortSeptember": "Sytten",
"DatePickerMonthLongOctober": "Oktober",
"DatePickerMonthShortOctober": "Oktober",
"DatePickerMonthLongNovember": "November",
"DatePickerMonthShortNovember": "November",
"DatePickerMonthLongDecember": "Desember",
"DatePickerMonthShortDecember": "Desember",
"DatePickerDayLongSunday": "Søndag",
"DatePickerDayShortSunday": "Solen",
"DatePickerDayLongMonday": "Mandag",
"DatePickerDayShortMonday": "Min",
"DatePickerDayLongTuesday": "Tirsdag",
"DatePickerDayShortTuesday": "Tue",
"DatePickerDayLongWednesday": "Onsdag",
"DatePickerDayShortWednesday": "Ons",
"DatePickerDayLongThursday": "Torsdag",
"DatePickerDayShortThursday": "Thu",
"DatePickerDayLongFriday": "Fredag",
"DatePickerDayShortFriday": "Fr",
"DatePickerDayLongSaturday": "Lørdag",
"DatePickerDayShortSaturday": "Satt",
"DatepickerGoToToday": "I dag",
"DateTimePickerDate": "Dato",
"DateTimePickerTime": "Tid",
"ColorPickerButtonTitle": "Velg en farge",
"NotNumberValidationMessage": "Verdien skal være et tall, faktisk er:",
"MinimumNumberValidationMessage": "Verdien skal være større enn eller lik:",
"MaximumNumberValidationMessage": "Verdien skal være lavere enn eller lik:",
"TermPickerNoTerms": "Termsett inneholder ingen vilkår",
"TermPickerExpandTitle": "Utvid dette termsettet",
"TermPickerExpandNode": "Utvid denne noden",
"TermPickerMenuTermSet": "Meny for termsett",
"TermPickerMenuGroup": "Meny for Term Group",
"TermPickerInLabel": "I",
"TermPickerTermSetLabel": "Term sett",
"propertyFieldMultiSelectNoOptions": "Ingen alternativer å velge",
"CollectionDataEmptyFields": "Det ble ikke gitt noen felt for innsamlingsdataene.",
"CollectionDataEmptyValue": "Ingen data i samlingen din.",
"CollectionAddRowButtonLabel": "Legge til data i samlingen",
"CollectionDeleteRowButtonLabel": "Slett gjeldende rad",
"CollectionSaveAndAddButtonLabel": "Legge til og lagre",
"CollectionDataItemShowErrorsLabel": "Vis radfeil",
"CollectionDataItemFieldRequiredLabel": "Feltet er obligatorisk.",
"InvalidUrlError": "Den angitte URL-adressen er ikke gyldig",
"DescriptionLabel": "Beskrivelse",
"MoreInfoLabel": "Mer info",
"AboutGroupLabel": "Om",
"SitePickerSearchBoxPlaceholder": "Søk...",
"SitePickerNoResults": "Ingen søkeresultater",
"SitePickerSitesChosen": "Nettsted(er) valgt",
"TeamPickerSearchBoxPlaceholder": "Søk...",
"TeamPickerNoResults": "Ingen søkeresultater",
"TeamPickerSitesChosen": "Lag(er) valgt",
"AddFileButtonLabel": "Legg til fil",
"AddImageButtonLabel": "Legg til bilde",
"AriaCellValue": "{0} kolonne, {1}",
"FilePickerCancelButtonLabel": "Avbryte",
"CantValidateValidationMessage": "Vi kunne ikke bekrefte denne linken. Kontroller koblingen, og prøv på nytt.",
"ChangeFileLinkLabel": "Endre fil",
"ChangeImageLinkLabel": "Endre bilde",
"ChooseFileLinkLabel": "Velg fil",
"ChooseImageLinkLabel": "Velg bilde",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Du er ansvarlig for å respektere andres rettigheter, inkludert opphavsrett.",
"CreativeCommonsMessage": "Disse resultatene er merket med Creative Commons-lisenser. Se gjennom lisensene for å sikre at du overholder reglene.",
"DateFormat": "MM/DD/ÅYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Dokument, {1}, redigert av {2}, Privat",
"DocumentLibraries": "Dokumentbiblioteker",
"EditedByNamePlate": "redigert av ",
"EmptyFileSize": "0 byte",
"FilePickerHeader": "Filvelker",
"FileSizeField": "Filstørrelse",
"FolderAltText": "Mappen",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Mappe, {1}, redigert av {2}, {3} elementer, Privat",
"FromLinkLinkLabel": "Fra en kobling",
"ImageAltText": ". {0} bilde",
"ImageAriaLabelTemplate": ". {0} bilde",
"ImageLayoutPlaceholderText": "Oppsett",
"ImageSizePlaceholderText": "Bildestørrelse",
"ItemChildCountField": "Vare underordnet antall",
"LayoutOptionAll": "Alle",
"LayoutOptionSquare": "Square",
"LayoutOptionTall": "Høye",
"LayoutOptionWide": "Bredt",
"LearnMoreLink": "få mer informasjon.",
"LicenseOptionAll": "Alle",
"LicenseOptionAny": "Kun Creative Commons",
"LicensePlaceholderText": "Lisens",
"LinkFileInstructions": "Lime inn en kobling til en fil i OneDrive for Business eller SharePoint Online",
"LinkHeader": "Fra en kobling",
"LinkImageInstructions": "Lime inn en kobling til et bilde i OneDrive for Business eller SharePoint Online",
"ListLayoutAriaLabel": "Vis alternativer. {0} {1} .",
"ListLayoutCompact": "Kompakt visning",
"ListLayoutCompactDescription": "Vise elementer og detaljer i en kompakt liste",
"ListLayoutList": "Listevisning",
"ListLayoutListDescrition": "Vise elementer og detaljer i en liste",
"ListLayoutTile": "Flisvisning",
"ListLayoutTileDescription": "Vise elementer med forhåndsvisninger av fliser",
"ListOptionsAlt": "Vis alternativer. {0} valgt .",
"ListOptionsTitle": "Åpne menyen for visningsalternativer",
"Loading": "Lasting...",
"ModifiedByField": "Endret av",
"ModifiedField": "Dato endret",
"NameField": "navn",
"No": "nei",
"ProvidedValueIsInvalid": "Forutsatt at verdien er ugyldig",
"NoExternalLinksValidationMessage": "Vi støtter bare kobling til filer i din egen organisasjon.",
"NoImageValidationMessage": "Dette er ikke en kobling til en filtype vi støtter. Du kan bare koble til et bilde.",
"NoRecentFiles": "Ingen nylige filer",
"NoRecentFilesDescription": "Prøv å velge en fil fra nettstedet ditt, eller last opp en fra enheten.",
"NoResultsBadEnglish": "Det er ikke noe resultat funnet. Prøv å endre filteralternativene",
"ODModifiedField": "Endret",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Endret {2}, redigert av {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Dette elementet er fra OneDrive-området. Filer og mapper i OneDrive er private med mindre du deler dem. Har du delt denne filen med medlemmer av nettstedet ditt slik at de kan ccess den?",
"OneDriveConfirmDialogTitle": "Bare sjekker ...",
"OneDriveEmptyFolderAlt": "Tom mappe",
"OneDriveEmptyFolderDescription": "Hvis du vil legge til filer, går du til OneDrive. Du kan også legge til filer i denne mappen ved hjelp av OneDrive-appen for datamaskinen.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Denne mappen er tom",
"OneDriveRootFolderName": "Filer",
"OpenButtonLabel": "Åpne",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Bilder og filer fra organisasjonen",
"PoweredByBing": "Drevet av Bing",
"RecentDocumentsHeader": "Nylige dokumenter",
"RecentImagesHeader": "Nylige bilder",
"RecentLinkLabel": "Siste",
"SearchBoxPlaceholder": "Nettsøk",
"SearchResultAlt": "Bilderesultat for {0}.",
"SearchResultAriaLabel": "Trykk enter for å åpne bildekilden i en ny fane.",
"Selected": "Valgte",
"SharingField": "Deler",
"SharingPrivate": "Privat",
"SharingShared": "Delte",
"SiteLinkLabel": "Nettstedet",
"SizeOptionAll": "Alle",
"SizeOptionExtraLarge": "Ekstra stor",
"SizeOptionLarge": "Store",
"SizeOptionMedium": "Middels",
"SizeOptionSmall": "Liten",
"SizeUnit": [
"Byte",
"Ko",
"Mb",
"Gå",
"Tb",
"Pb",
"Eb",
"F.eks",
"Yb"
],
"SorryWebSearch": "Beklager, denne funksjonen er ikke implementert i dette eksemplet, fordi det ville kreve en Bing API-nøkkel.",
"SortedAscending": "Sortert A til Å",
"SortedDescending": "Sortert Z til A",
"TypeAriaLabel": "Kolonneoperasjoner for Filtype, Trykk for å sortere etter filtype",
"UploadFileHeader": "Last opp fil",
"UploadImageHeader": "Last opp bilde",
"UploadLinkLabel": "Laste opp",
"WebSearchLinkLabel": "Nettsøk",
"Yes": "ja",
"StockImagesLinkLabel": "Arkivbilder",
"StockImagesHeader": "Arkivbilder",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "I løpet av sekunder",
"L_RelativeDateTime_AFewSeconds": "For noen sekunder siden",
"L_RelativeDateTime_AboutAMinuteFuture": "På omtrent et minutt",
"L_RelativeDateTime_AboutAMinute": "For omtrent et minutt siden",
"L_RelativeDateTime_XMinutesFuture": "På {0} minutter På {0} minutter",
"L_RelativeDateTime_XMinutes": "{0} minutter siden {0} minutter siden",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "På omtrent en time",
"L_RelativeDateTime_AboutAnHour": "For omtrent en time siden",
"L_RelativeDateTime_Tomorrow": "Morgen",
"L_RelativeDateTime_Yesterday": "her",
"L_RelativeDateTime_TomorrowAndTime": "I morgen kl {0}",
"L_RelativeDateTime_YesterdayAndTime": "I går i {0}",
"L_RelativeDateTime_XHoursFuture": "På {0} time På {0} timer",
"L_RelativeDateTime_XHours": "{0} timer siden {0} timer siden",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} fra nå av {0} dager fra nå",
"L_RelativeDateTime_XDays": "{0} for en dag siden {0} dager siden",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "I dag"
},
"NewFolderNamePlaceholder": "Skriv inn mappenavnet ditt",
"FolderFilterBoxPlaceholder": "Filtrere mapper etter navn",
"FolderExplorerLoading": "Laster inn mapper...",
"FolderExplorerNoItems": "Denne mappen har ingen undermapper.",
"IncorrectGuidValidationMessage": "Angi en gyldig GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Bevestig",
"ImportButtonLabel": "Importeer",
"ExportButtonLabel": "Exporteer",
"FormatCodeButtonLabel": "Code opmaken",
"JsonFileRequiredMessage": "Alleen JSON files toegestaan",
"SaveButtonLabel": "Opslaan",
"CancelButtonLabel": "Annuleren",
"PeoplePickerSuggestedContacts": "Voorgestelde personen",
"PeoplePickerSuggestedGroups": "Voorgestelde groepen",
"PeoplePickerSuggestedCombined": "Voorgestelde personen en groepen",
"PeoplePickerNoResults": "Geen resultaten gevonden",
"PeoplePickerLoading": "Resultaten laden ...",
"DatePickerMonthLongJanuary": "Januari",
"DatePickerMonthShortJanuary": "Januari",
"DatePickerMonthLongFebruary": "Februari",
"DatePickerMonthShortFebruary": "Februari",
"DatePickerMonthLongMarch": "Maart",
"DatePickerMonthShortMarch": "Maa",
"DatePickerMonthLongApril": "April",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Mei",
"DatePickerMonthShortMay": "Mei",
"DatePickerMonthLongJune": "Juni",
"DatePickerMonthShortJune": "Jr",
"DatePickerMonthLongJuly": "Juli",
"DatePickerMonthShortJuly": "Jul",
"DatePickerMonthLongAugust": "Augustus",
"DatePickerMonthShortAugust": "Augustus",
"DatePickerMonthLongSeptember": "September",
"DatePickerMonthShortSeptember": "Zeven",
"DatePickerMonthLongOctober": "Oktober",
"DatePickerMonthShortOctober": "Okt",
"DatePickerMonthLongNovember": "November",
"DatePickerMonthShortNovember": "November",
"DatePickerMonthLongDecember": "December",
"DatePickerMonthShortDecember": "Dec",
"DatePickerDayLongSunday": "Zondag",
"DatePickerDayShortSunday": "Zon",
"DatePickerDayLongMonday": "Maandag",
"DatePickerDayShortMonday": "Maa",
"DatePickerDayLongTuesday": "Dinsdag",
"DatePickerDayShortTuesday": "Din",
"DatePickerDayLongWednesday": "Woensdag",
"DatePickerDayShortWednesday": "Woe",
"DatePickerDayLongThursday": "Donderdag",
"DatePickerDayShortThursday": "Don",
"DatePickerDayLongFriday": "Vrijdag",
"DatePickerDayShortFriday": "Vri",
"DatePickerDayLongSaturday": "Zaterdag",
"DatePickerDayShortSaturday": "Zat",
"DatepickerGoToToday": "Vandaag",
"DateTimePickerDate": "Dag",
"DateTimePickerTime": "Tijd",
"ColorPickerButtonTitle": "Kies een kleur",
"NotNumberValidationMessage": "De waarde moet een nummer zijn. Huidige waarde is:",
"MinimumNumberValidationMessage": "De waarde moet groter zijn dan of gelijk zijn aan:",
"MaximumNumberValidationMessage": "De waarde moet kleiner zijn dan of gelijk zijn aan:",
"TermPickerNoTerms": "De termen set heeft geen termen beschikbaar",
"TermPickerExpandTitle": "Vouw deze termen set uit",
"TermPickerExpandNode": "Vouw deze node uit",
"TermPickerMenuTermSet": "Menu voor de termen set",
"TermPickerMenuGroup": "Menu voor de groep",
"TermPickerInLabel": "Inch",
"TermPickerTermSetLabel": "Termen set",
"propertyFieldMultiSelectNoOptions": "Geen opties om te selecteren",
"CollectionDataEmptyFields": "Er zijn geen velden opgegeven voor de data collectie control.",
"CollectionDataEmptyValue": "Er is geen data in de collectie.",
"CollectionAddRowButtonLabel": "Voeg data toe aan de collectie",
"CollectionDeleteRowButtonLabel": "Verwijder de huidige rij",
"CollectionSaveAndAddButtonLabel": "Voeg toe en sla op",
"CollectionDataItemShowErrorsLabel": "Problemen tonen",
"CollectionDataItemFieldRequiredLabel": "Veld is verplicht.",
"InvalidUrlError": "De huidige URL is niet geldig",
"DescriptionLabel": "Beschrijving",
"MoreInfoLabel": "Meer info",
"AboutGroupLabel": "Over",
"SitePickerSearchBoxPlaceholder": "Zoek...",
"SitePickerNoResults": "Geen zoekresultaten",
"SitePickerSitesChosen": "Website(s) geselecteerd",
"TeamPickerSearchBoxPlaceholder": "Zoek...",
"TeamPickerNoResults": "Geen zoekresultaten",
"TeamPickerSitesChosen": "Teams(en) geselecteerd",
"AddFileButtonLabel": "Bestand toevoegen",
"AddImageButtonLabel": "Afbeelding toevoegen",
"AriaCellValue": "{0} column, {1}",
"FilePickerCancelButtonLabel": "Annuleren",
"CantValidateValidationMessage": "We konden deze link niet verifiëren. Controleer de link en probeer het opnieuw.",
"ChangeFileLinkLabel": "Bestand wijzigen",
"ChangeImageLinkLabel": "Afbeelding wijzigen",
"ChooseFileLinkLabel": "Bestand kiezen",
"ChooseImageLinkLabel": "Afbeelding kiezen",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "U bent verantwoordelijk voor de eerbiediging van de rechten van anderen, inclusief het auteursrecht.",
"CreativeCommonsMessage": "Deze resultaten zijn gelabeld met Creative Commons-licenties. Controleer de licenties om ervoor te zorgen dat u voldoet.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Document, Gewijzigd {1}, bewerkt door {2}, Privé",
"DocumentLibraries": "Documentbibliotheken",
"EditedByNamePlate": "bewerkt door ",
"EmptyFileSize": "0 bytes",
"FilePickerHeader": "Bestandenkiezer",
"FileSizeField": "Bestandsgrootte",
"FolderAltText": "Map",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Map, Gewijzigde {1}, bewerkt door {2}, {3} items, Privé",
"FromLinkLinkLabel": "Van een link",
"ImageAltText": ". afbeelding {0}",
"ImageAriaLabelTemplate": ". afbeelding {0}",
"ImageLayoutPlaceholderText": "Indeling",
"ImageSizePlaceholderText": "Afbeeldingsgrootte",
"ItemChildCountField": "Aantal onderliggende objecten",
"LayoutOptionAll": "Alle",
"LayoutOptionSquare": "Square",
"LayoutOptionTall": "Lang",
"LayoutOptionWide": "Breed",
"LearnMoreLink": "Meer informatie.",
"LicenseOptionAll": "Alle",
"LicenseOptionAny": "Alleen Creative Commons",
"LicensePlaceholderText": "Licentie",
"LinkFileInstructions": "Een koppeling naar een bestand plakken in OneDrive voor Bedrijven of SharePoint Online",
"LinkHeader": "Van een link",
"LinkImageInstructions": "Een koppeling naar een afbeelding plakken in OneDrive voor Bedrijven of SharePoint Online",
"ListLayoutAriaLabel": "Opties weergeven. {0} {1} .",
"ListLayoutCompact": "Compacte weergave",
"ListLayoutCompactDescription": "Items en details weergeven in een compacte lijst",
"ListLayoutList": "Lijstweergave",
"ListLayoutListDescrition": "Items en details in een lijst weergeven",
"ListLayoutTile": "Tegelweergave",
"ListLayoutTileDescription": "Items weergeven met tegelvoorbeelden",
"ListOptionsAlt": "Opties weergeven. {0} geselecteerd .",
"ListOptionsTitle": "Het menu weergaveopties openen",
"Loading": "Laden...",
"ModifiedByField": "Gewijzigd door",
"ModifiedField": "Datum gewijzigd",
"NameField": "Naam",
"No": "№",
"ProvidedValueIsInvalid": "De opgegeven waarde is ongeldig",
"NoExternalLinksValidationMessage": "Wij ondersteunen alleen het koppelen aan bestanden in uw eigen organisatie.",
"NoImageValidationMessage": "Dit is geen link naar een bestandstype dat we ondersteunen. U alleen een koppeling maken naar een afbeelding.",
"NoRecentFiles": "Geen recente bestanden",
"NoRecentFilesDescription": "Probeer een bestand van uw site te selecteren of upload er een vanaf uw apparaat.",
"NoResultsBadEnglish": "Er is geen resultaat gevonden. Probeer de filteropties te wijzigen",
"ODModifiedField": "Bewerkt",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Gewijzigd {2}, bewerkt door {3}, {4} {5}",
"OneDriveConfirmDialogBody": "Dit item is van uw OneDrive-site. Bestanden en mappen in OneDrive zijn privé, tenzij u ze deelt. Heb je dit bestand gedeeld met je siteleden, zodat ze het kunnen ccess?",
"OneDriveConfirmDialogTitle": "Gewoon controleren ...",
"OneDriveEmptyFolderAlt": "Lege map",
"OneDriveEmptyFolderDescription": "Als u bestanden wilt toevoegen, gaat u naar uw OneDrive. U ook bestanden aan deze map toevoegen met de OneDrive-app voor uw computer.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Deze map is leeg",
"OneDriveRootFolderName": "Bestanden",
"OpenButtonLabel": "Open",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Afbeeldingen en bestanden die door uw organisatie worden geleverd",
"PoweredByBing": "Aangedreven door Bing",
"RecentDocumentsHeader": "Recente documenten",
"RecentImagesHeader": "Recente afbeeldingen",
"RecentLinkLabel": "Recente",
"SearchBoxPlaceholder": "Zoeken op het web",
"SearchResultAlt": "Beeldresultaat voor {0}.",
"SearchResultAriaLabel": "Druk op enter om de afbeeldingsbron in een nieuw tabblad te openen.",
"Selected": "Geselecteerde",
"SharingField": "Delen",
"SharingPrivate": "Privé",
"SharingShared": "Gedeelde",
"SiteLinkLabel": "Site",
"SizeOptionAll": "Alle",
"SizeOptionExtraLarge": "Extra groot",
"SizeOptionLarge": "Grote",
"SizeOptionMedium": "Gemiddeld",
"SizeOptionSmall": "Kleine",
"SizeUnit": [
"Bytes",
"Ko",
"Mb",
"Gaan",
"Tb",
"Pb (Pb)",
"Eb",
"Bijv.",
"Yb"
],
"SorryWebSearch": "Deze functie wordt niet geïmplementeerd in dit voorbeeld, omdat hiervoor een Bing API-sleutel nodig is.",
"SortedAscending": "Gesorteerd van A tot Z",
"SortedDescending": "Gesorteerde Z naar A",
"TypeAriaLabel": "Kolombewerkingen voor bestandstype, Druk op sorteren op Bestandstype",
"UploadFileHeader": "Bestand uploaden",
"UploadImageHeader": "Afbeelding uploaden",
"UploadLinkLabel": "Uploaden",
"WebSearchLinkLabel": "Zoeken op het web",
"Yes": "Ja",
"StockImagesLinkLabel": "Stockafbeeldingen",
"StockImagesHeader": "Stockafbeeldingen",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "In enkele seconden",
"L_RelativeDateTime_AFewSeconds": "Een paar seconden geleden",
"L_RelativeDateTime_AboutAMinuteFuture": "In ongeveer een minuut",
"L_RelativeDateTime_AboutAMinute": "Ongeveer een minuut geleden",
"L_RelativeDateTime_XMinutesFuture": "In {0} minuut In {0} minuten",
"L_RelativeDateTime_XMinutes": "{0} minuut geleden. {0} minuten geleden",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "In ongeveer een uur",
"L_RelativeDateTime_AboutAnHour": "Ongeveer een uur geleden",
"L_RelativeDateTime_Tomorrow": "Morgen",
"L_RelativeDateTime_Yesterday": "Hier",
"L_RelativeDateTime_TomorrowAndTime": "Morgen om {0}",
"L_RelativeDateTime_YesterdayAndTime": "Gisteren in {0}",
"L_RelativeDateTime_XHoursFuture": "In {0} uur In {0} uur",
"L_RelativeDateTime_XHours": "{0} uur geleden. {0} uur geleden",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} dag vanaf nu {0} dagen vanaf nu",
"L_RelativeDateTime_XDays": "{0} een dag geleden. {0} dagen geleden",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Vandaag"
},
"NewFolderNamePlaceholder": "Voer de naam van uw map in",
"FolderFilterBoxPlaceholder": "Mappen filteren op naam",
"FolderExplorerLoading": "Mappen laden...",
"FolderExplorerNoItems": "Deze map heeft geen submappen.",
"IncorrectGuidValidationMessage": "Voer een geldige GUID in"
};
});

View File

@ -0,0 +1,80 @@
define([], function() {
return {
ApplyButtonLabel: "Anvende",
ImportButtonLabel: "Importere",
ExportButtonLabel: "Eksportere",
JsonFileRequiredMessage: "Vennligst last opp en json fil",
SaveButtonLabel: "Lagre",
CancelButtonLabel: "Avbryt",
PeoplePickerSuggestedContacts: "Foreslåtte personer",
PeoplePickerSuggestedGroups: "Foreslåtte grupper",
PeoplePickerSuggestedCombined: "Foreslåtte personer og grupper",
PeoplePickerNoResults: "Ingen result funnet",
PeoplePickerLoading: "Laster resultater ...",
DatePickerMonthLongJanuary: "Januar",
DatePickerMonthShortJanuary: "Jan",
DatePickerMonthLongFebruary: "Februar",
DatePickerMonthShortFebruary: "Feb",
DatePickerMonthLongMarch: "Mars",
DatePickerMonthShortMarch: "Mar",
DatePickerMonthLongApril: "April",
DatePickerMonthShortApril: "Apr",
DatePickerMonthLongMay: "Mai",
DatePickerMonthShortMay: "Mai",
DatePickerMonthLongJune: "Juni",
DatePickerMonthShortJune: "Jun",
DatePickerMonthLongJuly: "Juli",
DatePickerMonthShortJuly: "Jul",
DatePickerMonthLongAugust: "August",
DatePickerMonthShortAugust: "Aug",
DatePickerMonthLongSeptember: "September",
DatePickerMonthShortSeptember: "Sep",
DatePickerMonthLongOctober: "Oktober",
DatePickerMonthShortOctober: "Okt",
DatePickerMonthLongNovember: "November",
DatePickerMonthShortNovember: "Nov",
DatePickerMonthLongDecember: "Desember",
DatePickerMonthShortDecember: "Des",
DatePickerDayLongSunday: "Søndag",
DatePickerDayShortSunday: "Søn",
DatePickerDayLongMonday: "Mandag",
DatePickerDayShortMonday: "Man",
DatePickerDayLongTuesday: "Tirsdag",
DatePickerDayShortTuesday: "Tir",
DatePickerDayLongWednesday: "Onsdag",
DatePickerDayShortWednesday: "Ons",
DatePickerDayLongThursday: "Torsdag",
DatePickerDayShortThursday: "Tor",
DatePickerDayLongFriday: "Fredag",
DatePickerDayShortFriday: "Fre",
DatePickerDayLongSaturday: "Lørdag",
DatePickerDayShortSaturday: "Lør",
DatepickerGoToToday: "I dag",
DateTimePickerDate: "Dato",
DateTimePickerTime: "Tid",
ColorPickerButtonTitle: "Velg en farge",
NotNumberValidationMessage: "Verdien skal være et nummer, men er:",
MinimumNumberValidationMessage: "Verdien skal være større enn:",
MaximumNumberValidationMessage: "Verdien skal være mindre enn:",
TermPickerNoTerms: "Term settet inneholder ingen termer",
TermPickerExpandTitle: "Utvid dette termsettet",
TermPickerExpandNode: "Ekspander denne noden",
TermPickerMenuTermSet: "Meny for Termsettet",
TermPickerMenuGroup: "Meny for Termsettet",
TermPickerInLabel: "inn",
TermPickerTermSetLabel: "Termset",
propertyFieldMultiSelectNoOptions: "Ingen alternativer å velge",
CollectionDataEmptyFields: "Ingen felt ble angitt for samlingen av data.",
CollectionDataEmptyValue: "Ingen data i samlingen din.",
CollectionAddRowButtonLabel: "Legg data i samlingen",
CollectionDeleteRowButtonLabel: "Slett den gjeldene raden",
CollectionSaveAndAddButtonLabel: "Legg til og lagre",
CollectionDataItemShowErrorsLabel: "Vis radfeil",
CollectionDataItemFieldRequiredLabel: "Feltet er påkrevet.",
InvalidUrlError: "Den angitte nettadressen er ikke gyldig",
DescriptionLabel: "Beskrivelse",
MoreInfoLabel: "Mer informasjon",
AboutGroupLabel: "Om",
}
});

View File

@ -0,0 +1,231 @@
define([], () => {
return {
"ApplyButtonLabel": "Zastosować",
"ImportButtonLabel": "Importu",
"ExportButtonLabel": "Eksportu",
"FormatCodeButtonLabel": "Kod formatu",
"JsonFileRequiredMessage": "Prześlij plik json",
"SaveButtonLabel": "Zapisz",
"CancelButtonLabel": "Anuluj",
"PeoplePickerSuggestedContacts": "Sugerowane osoby",
"PeoplePickerSuggestedGroups": "Sugerowane grupy",
"PeoplePickerSuggestedCombined": "Sugerowane osoby i grupy",
"PeoplePickerNoResults": "Nie znaleziono wyniku",
"PeoplePickerLoading": "Trwa ładowanie wyników ...",
"DatePickerMonthLongJanuary": "Styczeń",
"DatePickerMonthShortJanuary": "Jan",
"DatePickerMonthLongFebruary": "Luty",
"DatePickerMonthShortFebruary": "Lutego",
"DatePickerMonthLongMarch": "Marzec",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "Kwiecień",
"DatePickerMonthShortApril": "Kwiecień",
"DatePickerMonthLongMay": "Maj",
"DatePickerMonthShortMay": "Maj",
"DatePickerMonthLongJune": "Czerwiec",
"DatePickerMonthShortJune": "Czerwiec",
"DatePickerMonthLongJuly": "Lipiec",
"DatePickerMonthShortJuly": "Lip",
"DatePickerMonthLongAugust": "Sierpień",
"DatePickerMonthShortAugust": "Sierpnia",
"DatePickerMonthLongSeptember": "Wrzesień",
"DatePickerMonthShortSeptember": "Siedem",
"DatePickerMonthLongOctober": "Październik",
"DatePickerMonthShortOctober": "Października",
"DatePickerMonthLongNovember": "Listopad",
"DatePickerMonthShortNovember": "Listopada",
"DatePickerMonthLongDecember": "Grudzień",
"DatePickerMonthShortDecember": "Grudnia",
"DatePickerDayLongSunday": "Niedziela",
"DatePickerDayShortSunday": "Słońce",
"DatePickerDayLongMonday": "Poniedziałek",
"DatePickerDayShortMonday": "Mój",
"DatePickerDayLongTuesday": "Wtorek",
"DatePickerDayShortTuesday": "Wt",
"DatePickerDayLongWednesday": "Środa",
"DatePickerDayShortWednesday": "Śr",
"DatePickerDayLongThursday": "Czwartek",
"DatePickerDayShortThursday": "Czw",
"DatePickerDayLongFriday": "Piątek",
"DatePickerDayShortFriday": "Pt",
"DatePickerDayLongSaturday": "Sobota",
"DatePickerDayShortSaturday": "Sat",
"DatepickerGoToToday": "Dzisiaj",
"DateTimePickerDate": "Data",
"DateTimePickerTime": "Godzina",
"ColorPickerButtonTitle": "Wybieranie koloru",
"NotNumberValidationMessage": "Wartość powinna być liczbą, rzeczywista jest:",
"MinimumNumberValidationMessage": "Wartość powinna być większa lub równa:",
"MaximumNumberValidationMessage": "Wartość powinna być niższa lub równa:",
"TermPickerNoTerms": "Zestaw terminów nie zawiera żadnych terminów",
"TermPickerExpandTitle": "Rozwiń ten zestaw terminów",
"TermPickerExpandNode": "Rozwiń ten węzeł",
"TermPickerMenuTermSet": "Menu dla zestawu terminów",
"TermPickerMenuTerm": "Menu dla terminów",
"TermPickerMenuGroup": "Menu dla grupy termów",
"TermPickerInLabel": "Cala",
"TermPickerTermSetLabel": "Zestaw terminów",
"propertyFieldMultiSelectNoOptions": "Brak opcji wyboru",
"CollectionDataEmptyFields": "Nie podano żadnych pól dla danych zbierania.",
"CollectionDataEmptyValue": "Brak danych w kolekcji.",
"CollectionAddRowButtonLabel": "Dodawanie danych do kolekcji",
"CollectionDeleteRowButtonLabel": "Usuwanie bieżącego wiersza",
"CollectionSaveAndAddButtonLabel": "Dodawanie i zapisywanie",
"CollectionDataItemShowErrorsLabel": "Pokaż błędy wierszy",
"CollectionDataItemFieldRequiredLabel": "Pole jest wymagane.",
"InvalidUrlError": "Podany adres URL jest nieprawidłowy",
"DescriptionLabel": "Opis",
"MoreInfoLabel": "Więcej informacji",
"AboutGroupLabel": "O",
"SitePickerSearchBoxPlaceholder": "Szukaj...",
"SitePickerNoResults": "Brak wyników wyszukiwania",
"SitePickerSitesChosen": "Wybrane strony internetowe",
"TeamPickerSearchBoxPlaceholder": "Szukaj...",
"TeamPickerNoResults": "Brak wyników wyszukiwania",
"TeamPickerSitesChosen": "Wybrane zespoły",
"AddFileButtonLabel": "Dodaj plik",
"AddImageButtonLabel": "Dodawanie obrazu",
"AriaCellValue": "kolumna {0}, {1}",
"FilePickerCancelButtonLabel": "Anuluj",
"CantValidateValidationMessage": "Nie udało nam się zweryfikować tego linku. Sprawdź link i spróbuj ponownie.",
"ChangeFileLinkLabel": "Zmień plik",
"ChangeImageLinkLabel": "Zmienianie obrazu",
"ChooseFileLinkLabel": "Wybierz plik",
"ChooseImageLinkLabel": "Wybierz obraz",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Użytkownik jest odpowiedzialny za poszanowanie praw innych osób, w tym praw autorskich.",
"CreativeCommonsMessage": "Wyniki te są oznaczone licencjami Creative Commons. Przejrzyj licencje, aby upewnić się, że są zgodne.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Dokument, Zmodyfikowana {1}, edytowana przez {2},",
"DocumentLibraries": "Biblioteki dokumentów",
"EditedByNamePlate": "edytowane przez ",
"EmptyFileSize": "0 bajtów",
"FilePickerHeader": "Selektor plików",
"FileSizeField": "Rozmiar pliku",
"FolderAltText": "Folder",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Folder, Zmodyfikowana {1}, edytowana przez {2}, {3} elementy,",
"FromLinkLinkLabel": "Z linku",
"ImageAltText": ". {0} obraz",
"ImageAriaLabelTemplate": ". {0} obraz",
"ImageLayoutPlaceholderText": "Układ",
"ImageSizePlaceholderText": "Rozmiar obrazu",
"ItemChildCountField": "Liczba elementów podrzędnych",
"LayoutOptionAll": "Wszystkie",
"LayoutOptionSquare": "Placu",
"LayoutOptionTall": "Wysoki",
"LayoutOptionWide": "Szeroki",
"LearnMoreLink": "Dowiedz się więcej.",
"LicenseOptionAll": "Wszystkie",
"LicenseOptionAny": "Tylko Creative Commons",
"LicensePlaceholderText": "Licencji",
"LinkFileInstructions": "Wklejanie łącza do pliku w usłudze OneDrive dla Firm lub usłudze SharePoint Online",
"LinkHeader": "Z linku",
"LinkImageInstructions": "Wklejanie łącza do obrazu w usłudze OneDrive dla Firm lub usłudze SharePoint Online",
"ListLayoutAriaLabel": "Opcje wyświetlania. {0} {1} .",
"ListLayoutCompact": "Widok kompaktowy",
"ListLayoutCompactDescription": "Wyświetlanie elementów i szczegółów na liście kompaktowej",
"ListLayoutList": "Widok listy",
"ListLayoutListDescrition": "Wyświetlanie elementów i szczegółów na liście",
"ListLayoutTile": "Widok kafelków",
"ListLayoutTileDescription": "Wyświetlanie elementów z podglądem kafelków",
"ListOptionsAlt": "Opcje wyświetlania. {0} wybrane .",
"ListOptionsTitle": "Otwieranie menu opcji widoku",
"Loading": "Ładowania...",
"ModifiedByField": "Zmodyfikowany przez",
"ModifiedField": "Data modyfikacji",
"NameField": "Nazwa",
"No": "Nie",
"ProvidedValueIsInvalid": "Podana wartość jest nieprawidłowa",
"NoExternalLinksValidationMessage": "Obsługujemy tylko łączenie się z plikami w twojej organizacji.",
"NoImageValidationMessage": "To nie jest łącze do typu pliku, który obsługujemy. Możesz tylko połączyć się z obrazem.",
"NoRecentFiles": "Brak ostatnich plików",
"NoRecentFilesDescription": "Spróbuj wybrać plik z witryny lub prześlij go z urządzenia.",
"NoResultsBadEnglish": "Nie znaleziono żadnego wyniku. Spróbuj zmienić opcje filtru",
"ODModifiedField": "Zmodyfikowano",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, zmodyfikowana {2}, redakcja: {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Ten element pochodzi z witryny usługi OneDrive. Pliki i foldery w usłudze OneDrive są prywatne, chyba że je udostępnisz. Czy udostępniłeś ten plik członkom witryny, aby mogli go dzielić?",
"OneDriveConfirmDialogTitle": "Wystarczy sprawdzić...",
"OneDriveEmptyFolderAlt": "Pusty folder",
"OneDriveEmptyFolderDescription": "Aby dodać pliki, przejdź do usługi OneDrive. Pliki można również dodawać do tego folderu za pomocą aplikacji OneDrive dla komputera.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Ten folder jest pusty",
"OneDriveRootFolderName": "Pliki",
"OpenButtonLabel": "Otwórz",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Obrazy i pliki dostarczane przez organizację",
"PoweredByBing": "Zasilany przez Bing",
"RecentDocumentsHeader": "Ostatnie dokumenty",
"RecentImagesHeader": "Najnowsze obrazy",
"RecentLinkLabel": "Którzy niedawno się tam",
"SearchBoxPlaceholder": "Wyszukiwanie w internecie",
"SearchResultAlt": "Wynik obrazu dla {0}.",
"SearchResultAriaLabel": "Naciśnij klawisz Enter, aby otworzyć źródło obrazu na nowej karcie.",
"Selected": "Wybrane",
"SharingField": "Udostępnianie",
"SharingPrivate": "Prywatny",
"SharingShared": "Udostępnionych",
"SiteLinkLabel": "Witryny",
"SizeOptionAll": "Wszystkie",
"SizeOptionExtraLarge": "Bardzo duży",
"SizeOptionLarge": "Dużych",
"SizeOptionMedium": "Średni",
"SizeOptionSmall": "Małe",
"SizeUnit": [
"Bajtów",
"Ko",
"Mb",
"Przejdź",
"Tb",
"Pb (Pb)",
"Eb",
"Przykład.",
"Yb"
],
"SorryWebSearch": "Niestety ta funkcja nie jest zaimplementowana w tym przykładzie, ponieważ wymagałoby klucza interfejsu API Bing.",
"SortedAscending": "Posortowane od A do Z",
"SortedDescending": "Posortowane od Z do A",
"TypeAriaLabel": "Operacje kolumny dla typu pliku, naciśnij, aby posortować typ pliku",
"UploadFileHeader": "Przekaż plik",
"UploadImageHeader": "Prześlij obraz",
"UploadLinkLabel": "Przesłać",
"WebSearchLinkLabel": "Wyszukiwanie w internecie",
"Yes": "Tak",
"StockImagesLinkLabel": "Obrazów",
"StockImagesHeader": "Obrazów",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "W kilka sekund",
"L_RelativeDateTime_AFewSeconds": "Kilka sekund temu",
"L_RelativeDateTime_AboutAMinuteFuture": "Za około minutę",
"L_RelativeDateTime_AboutAMinute": "Około minuty temu",
"L_RelativeDateTime_XMinutesFuture": "W {0} minucie W {0} min.",
"L_RelativeDateTime_XMinutes": "{0} minutę temu. {0} minut temu",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Za około godzinę",
"L_RelativeDateTime_AboutAnHour": "Około godziny temu",
"L_RelativeDateTime_Tomorrow": "Rano",
"L_RelativeDateTime_Yesterday": "Tutaj",
"L_RelativeDateTime_TomorrowAndTime": "Jutro o {0}",
"L_RelativeDateTime_YesterdayAndTime": "Wczoraj w {0}",
"L_RelativeDateTime_XHoursFuture": "O {0} a.{0} m.",
"L_RelativeDateTime_XHours": "{0} godzin temu. {0} godziny temu",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} dzień od teraz {0} dni od teraz",
"L_RelativeDateTime_XDays": "{0} dzień temu. {0} dni temu",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Dzisiaj"
},
"NewFolderNamePlaceholder": "Wprowadź nazwę folderu",
"FolderFilterBoxPlaceholder": "Filtrowanie folderów według nazwy",
"FolderExplorerLoading": "Trwa ładowanie folderów...",
"FolderExplorerNoItems": "Ten folder nie ma żadnych podfolderów.",
"IncorrectGuidValidationMessage": "Wprowadź prawidłowy identyfikator GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Aplicar",
"ImportButtonLabel": "Importação",
"ExportButtonLabel": "Exportação",
"FormatCodeButtonLabel": "Código de Formato",
"JsonFileRequiredMessage": "Por favor, carre faça upload de um ficheiro json",
"SaveButtonLabel": "Salvar",
"CancelButtonLabel": "Cancelar",
"PeoplePickerSuggestedContacts": "Pessoas sugeridas",
"PeoplePickerSuggestedGroups": "Grupos sugeridos",
"PeoplePickerSuggestedCombined": "Pessoas e grupos sugeridos",
"PeoplePickerNoResults": "Nenhum resultado encontrado",
"PeoplePickerLoading": "A carregar resultados...",
"DatePickerMonthLongJanuary": "Janeiro",
"DatePickerMonthShortJanuary": "Jan",
"DatePickerMonthLongFebruary": "Fevereiro",
"DatePickerMonthShortFebruary": "Fev",
"DatePickerMonthLongMarch": "Março",
"DatePickerMonthShortMarch": "Rio Mar",
"DatePickerMonthLongApril": "Abril",
"DatePickerMonthShortApril": "Abr",
"DatePickerMonthLongMay": "Maio",
"DatePickerMonthShortMay": "Maio",
"DatePickerMonthLongJune": "Junho",
"DatePickerMonthShortJune": "Jun",
"DatePickerMonthLongJuly": "Julho",
"DatePickerMonthShortJuly": "Jul",
"DatePickerMonthLongAugust": "Agosto",
"DatePickerMonthShortAugust": "Ago",
"DatePickerMonthLongSeptember": "Setembro",
"DatePickerMonthShortSeptember": "Sete",
"DatePickerMonthLongOctober": "Outubro",
"DatePickerMonthShortOctober": "Out",
"DatePickerMonthLongNovember": "Novembro",
"DatePickerMonthShortNovember": "Nov",
"DatePickerMonthLongDecember": "Dezembro",
"DatePickerMonthShortDecember": "Dez",
"DatePickerDayLongSunday": "Domingo",
"DatePickerDayShortSunday": "Sol",
"DatePickerDayLongMonday": "Segunda-feira",
"DatePickerDayShortMonday": "A minha",
"DatePickerDayLongTuesday": "Terça-feira",
"DatePickerDayShortTuesday": "Rio Tue",
"DatePickerDayLongWednesday": "Quarta-feira",
"DatePickerDayShortWednesday": "Casamos",
"DatePickerDayLongThursday": "Quinta-feira",
"DatePickerDayShortThursday": "Rio Thu",
"DatePickerDayLongFriday": "Sexta-feira",
"DatePickerDayShortFriday": "Fri",
"DatePickerDayLongSaturday": "Sábado",
"DatePickerDayShortSaturday": "Sáb",
"DatepickerGoToToday": "Hoje",
"DateTimePickerDate": "Data",
"DateTimePickerTime": "Hora",
"ColorPickerButtonTitle": "Escolha uma cor",
"NotNumberValidationMessage": "O valor deve ser um número, real é:",
"MinimumNumberValidationMessage": "O valor deve ser superior ou igual a:",
"MaximumNumberValidationMessage": "O valor deve ser inferior ou igual a:",
"TermPickerNoTerms": "Conjunto de prazos não contém quaisquer termos",
"TermPickerExpandTitle": "Expandir este conjunto de prazos",
"TermPickerExpandNode": "Expandir este nó",
"TermPickerMenuTermSet": "Menu para conjunto de prazos",
"TermPickerMenuGroup": "Menu para Grupo Term",
"TermPickerInLabel": "em",
"TermPickerTermSetLabel": "Conjunto de prazos",
"propertyFieldMultiSelectNoOptions": "Sem opções para selecionar",
"CollectionDataEmptyFields": "Não foram fornecidos campos para os dados de recolha.",
"CollectionDataEmptyValue": "Não há dados na sua coleção.",
"CollectionAddRowButtonLabel": "Adicionar dados à coleção",
"CollectionDeleteRowButtonLabel": "Eliminar a linha atual",
"CollectionSaveAndAddButtonLabel": "Adicionar e salvar",
"CollectionDataItemShowErrorsLabel": "Mostrar erros de linha",
"CollectionDataItemFieldRequiredLabel": "O campo é necessário.",
"InvalidUrlError": "O URL fornecido não é válido",
"DescriptionLabel": "Descrição",
"MoreInfoLabel": "Mais informações",
"AboutGroupLabel": "Sobre",
"SitePickerSearchBoxPlaceholder": "Procurar...",
"SitePickerNoResults": "Sem resultados de pesquisa",
"SitePickerSitesChosen": "Website(s) selecionado",
"TeamPickerSearchBoxPlaceholder": "Procurar...",
"TeamPickerNoResults": "Sem resultados de pesquisa",
"TeamPickerSitesChosen": "Equipas selecionadas",
"AddFileButtonLabel": "Adicionar ficheiro",
"AddImageButtonLabel": "Adicionar imagem",
"AriaCellValue": "{0} coluna, {1}",
"FilePickerCancelButtonLabel": "Cancelar",
"CantValidateValidationMessage": "Não conseguimos verificar esta ligação. Por favor, verifique a ligação e tente de novo.",
"ChangeFileLinkLabel": "Alterar ficheiro",
"ChangeImageLinkLabel": "Alterar imagem",
"ChooseFileLinkLabel": "Escolha o arquivo",
"ChooseImageLinkLabel": "Escolha a imagem",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "É responsável pelo respeito pelos direitos dos outros, incluindo direitos de autor.",
"CreativeCommonsMessage": "Estes resultados estão marcados com licenças Creative Commons. Reveja as licenças para garantir que cumpre.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Documento, {1} Modificado, editado por {2}, Private",
"DocumentLibraries": "Bibliotecas documentais",
"EditedByNamePlate": "editado por ",
"EmptyFileSize": "0 bytes",
"FilePickerHeader": "Picker de ficheiros",
"FileSizeField": "Tamanho do arquivo",
"FolderAltText": "Pasta",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Pasta, {1} Modificado, editado por {2}, {3} itens, Privado",
"FromLinkLinkLabel": "De um link",
"ImageAltText": ". imagem {0}",
"ImageAriaLabelTemplate": ". imagem {0}",
"ImageLayoutPlaceholderText": "Layout",
"ImageSizePlaceholderText": "Tamanho da imagem",
"ItemChildCountField": "Contagem de crianças de item",
"LayoutOptionAll": "Todos os",
"LayoutOptionSquare": "Praça",
"LayoutOptionTall": "Alto",
"LayoutOptionWide": "Largo",
"LearnMoreLink": "Saiba mais.",
"LicenseOptionAll": "Todos os",
"LicenseOptionAny": "Apenas Comuns Criativos",
"LicensePlaceholderText": "Licença",
"LinkFileInstructions": "Cole um link para um ficheiro no OneDrive para Negócios ou SharePoint Online",
"LinkHeader": "De um link",
"LinkImageInstructions": "Cole um link para uma imagem no OneDrive para Business ou SharePoint Online",
"ListLayoutAriaLabel": "Ver opções. {0} {1} .",
"ListLayoutCompact": "Vista compacta",
"ListLayoutCompactDescription": "Ver itens e detalhes numa lista compacta",
"ListLayoutList": "Vista da lista",
"ListLayoutListDescrition": "Ver itens e detalhes numa lista",
"ListLayoutTile": "Vista de azulejos",
"ListLayoutTileDescription": "Ver itens com pré-visualizações de azulejos",
"ListOptionsAlt": "Ver opções. {0} selecionados.",
"ListOptionsTitle": "Abra o menu de opções de visualização",
"Loading": "A carregar...",
"ModifiedByField": "Modificado por",
"ModifiedField": "Data Modificada",
"NameField": "Nome",
"No": "Não",
"ProvidedValueIsInvalid": "Desde que o valor seja inválido",
"NoExternalLinksValidationMessage": "Só apoiamos a ligação a ficheiros na sua própria organização.",
"NoImageValidationMessage": "Isto não é um link para um tipo de ficheiro que apoiamos. Só se pode ligar a uma imagem.",
"NoRecentFiles": "Sem ficheiros recentes",
"NoRecentFilesDescription": "Tente selecionar um ficheiro do seu site ou faça o upload de um do seu dispositivo.",
"NoResultsBadEnglish": "Não há nenhum resultado encontrado. Tente alterar as opções do filtro",
"ODModifiedField": "Modificado",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, {2} Modificada, editado por {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Este item é do seu site OneDrive. Os ficheiros e pastas no OneDrive são privados a menos que os partilhe. Partilhou este ficheiro com os membros do seu site para que possam adcê-lo?",
"OneDriveConfirmDialogTitle": "Estou só a perguntar...",
"OneDriveEmptyFolderAlt": "Pasta vazia",
"OneDriveEmptyFolderDescription": "Para adicionar ficheiros, vá ao seu OneDrive. Também pode adicionar ficheiros a esta pasta utilizando a aplicação OneDrive para o seu computador.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Esta pasta está vazia.",
"OneDriveRootFolderName": "Ficheiros",
"OpenButtonLabel": "Aberto",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Imagens e ficheiros fornecidos pela sua organização",
"PoweredByBing": "Alimentado por Bing",
"RecentDocumentsHeader": "Documentos recentes",
"RecentImagesHeader": "Imagens recentes",
"RecentLinkLabel": "Recente",
"SearchBoxPlaceholder": "Pesquisa na Web",
"SearchResultAlt": "Resultado da imagem para {0}.",
"SearchResultAriaLabel": "Prima a entrada para abrir a fonte de imagem num novo separador.",
"Selected": "selecionado",
"SharingField": "Partilha",
"SharingPrivate": "Privado",
"SharingShared": "Compartilhado",
"SiteLinkLabel": "Site",
"SizeOptionAll": "Todos os",
"SizeOptionExtraLarge": "Extra Grande",
"SizeOptionLarge": "Grande",
"SizeOptionMedium": "Média",
"SizeOptionSmall": "Pequeno",
"SizeUnit": [
"Bytes",
"Rio Ko",
"Mb",
"Vai",
"Tb",
"Pb (Pb)",
"Eb",
"Por exemplo,",
"Yb"
],
"SorryWebSearch": "Desculpe, esta função não é implementada nesta amostra, porque requer uma chave Bing API.",
"SortedAscending": "Classificado A a Z",
"SortedDescending": "Classificado de Z a A",
"TypeAriaLabel": "Operações de coluna para tipo de ficheiro, prima para classificar no tipo de ficheiro",
"UploadFileHeader": "Ficheiro de upload",
"UploadImageHeader": "Imagem de upload",
"UploadLinkLabel": "Upload",
"WebSearchLinkLabel": "Pesquisa na Web",
"Yes": "Sim, é o seu",
"StockImagesLinkLabel": "Imagens de stock",
"StockImagesHeader": "Imagens de Stock",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Em segundos",
"L_RelativeDateTime_AFewSeconds": "Há alguns segundos.",
"L_RelativeDateTime_AboutAMinuteFuture": "Em cerca de um minuto",
"L_RelativeDateTime_AboutAMinute": "Há cerca de um minuto.",
"L_RelativeDateTime_XMinutesFuture": "Em {0} minutos em {0} minutos",
"L_RelativeDateTime_XMinutes": "{0} minuto atrás. {0} minutos atrás",
"L_RelativeDateTime_XMinutesFutureIntervals": "1/ 2-",
"L_RelativeDateTime_XMinutesIntervals": "1/ 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Em cerca de uma hora",
"L_RelativeDateTime_AboutAnHour": "Há cerca de uma hora.",
"L_RelativeDateTime_Tomorrow": "Manhã",
"L_RelativeDateTime_Yesterday": "Aqui",
"L_RelativeDateTime_TomorrowAndTime": "Amanhã às {0}",
"L_RelativeDateTime_YesterdayAndTime": "Ontem em {0}",
"L_RelativeDateTime_XHoursFuture": "A {0} a.{0} m.",
"L_RelativeDateTime_XHours": "há {0} horas. há {0} horas",
"L_RelativeDateTime_XHoursFutureIntervals": "1/ 2-",
"L_RelativeDateTime_XHoursIntervals": "1/ 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} dia a partir de agora {0} dias a partir de agora",
"L_RelativeDateTime_XDays": "{0} há um dia. {0} dias atrás",
"L_RelativeDateTime_XDaysFutureIntervals": "1/ 2-",
"L_RelativeDateTime_XDaysIntervals": "1/ 2-",
"L_RelativeDateTime_Today": "Hoje"
},
"NewFolderNamePlaceholder": "Insira o nome da sua pasta",
"FolderFilterBoxPlaceholder": "Pastas de filtro pelo nome",
"FolderExplorerLoading": "Pastas de carregamento...",
"FolderExplorerNoItems": "Esta pasta não tem sub-dobradores.",
"IncorrectGuidValidationMessage": "Introduza um GUID válido"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Aplica",
"ImportButtonLabel": "Import",
"ExportButtonLabel": "Export",
"FormatCodeButtonLabel": "Formatare cod",
"JsonFileRequiredMessage": "Vă rugăm să încărcați un fișier json",
"SaveButtonLabel": "Salva",
"CancelButtonLabel": "Anula",
"PeoplePickerSuggestedContacts": "Persoane sugerate",
"PeoplePickerSuggestedGroups": "Grupuri sugerate",
"PeoplePickerSuggestedCombined": "Persoane și grupuri sugerate",
"PeoplePickerNoResults": "Nu s-a găsit niciun rezultat",
"PeoplePickerLoading": "Loading...",
"DatePickerMonthLongJanuary": "Ianuarie",
"DatePickerMonthShortJanuary": "Ianuarie",
"DatePickerMonthLongFebruary": "Februarie",
"DatePickerMonthShortFebruary": "Februarie",
"DatePickerMonthLongMarch": "Martie",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "Aprilie",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Mai",
"DatePickerMonthShortMay": "Mai",
"DatePickerMonthLongJune": "Iunie",
"DatePickerMonthShortJune": "Iun",
"DatePickerMonthLongJuly": "Iulie",
"DatePickerMonthShortJuly": "Iul",
"DatePickerMonthLongAugust": "August",
"DatePickerMonthShortAugust": "Aug",
"DatePickerMonthLongSeptember": "Septembrie",
"DatePickerMonthShortSeptember": "Șapte",
"DatePickerMonthLongOctober": "Octombrie",
"DatePickerMonthShortOctober": "Octombrie",
"DatePickerMonthLongNovember": "Noiembrie",
"DatePickerMonthShortNovember": "Noiembrie",
"DatePickerMonthLongDecember": "Decembrie",
"DatePickerMonthShortDecember": "Decembrie",
"DatePickerDayLongSunday": "Duminică",
"DatePickerDayShortSunday": "Sun",
"DatePickerDayLongMonday": "Luni",
"DatePickerDayShortMonday": "Meu",
"DatePickerDayLongTuesday": "Marți",
"DatePickerDayShortTuesday": "Marti",
"DatePickerDayLongWednesday": "Miercuri",
"DatePickerDayShortWednesday": "Miercuri",
"DatePickerDayLongThursday": "Joi",
"DatePickerDayShortThursday": "Joi",
"DatePickerDayLongFriday": "Vineri",
"DatePickerDayShortFriday": "Vineri",
"DatePickerDayLongSaturday": "Sâmbătă",
"DatePickerDayShortSaturday": "Sâmbătă",
"DatepickerGoToToday": "Azi",
"DateTimePickerDate": "Data",
"DateTimePickerTime": "Oră",
"ColorPickerButtonTitle": "Alegeți o culoare",
"NotNumberValidationMessage": "Valoarea ar trebui să fie un număr, real este:",
"MinimumNumberValidationMessage": "Valoarea trebuie să fie mai mare sau egală cu:",
"MaximumNumberValidationMessage": "Valoarea trebuie să fie mai mică sau egală cu:",
"TermPickerNoTerms": "Setul de termeni nu conține termeni",
"TermPickerExpandTitle": "Extindeți acest set de termeni",
"TermPickerExpandNode": "Extindere nod",
"TermPickerMenuTermSet": "Meniu pentru set de termeni",
"TermPickerMenuGroup": "Meniu pentru grup de termeni",
"TermPickerInLabel": "In",
"TermPickerTermSetLabel": "Set de termeni",
"propertyFieldMultiSelectNoOptions": "Fără opțiuni de selectat",
"CollectionDataEmptyFields": "Nu s-au furnizat câmpuri pentru datele de colectare.",
"CollectionDataEmptyValue": "Nu există date în colecția dvs.",
"CollectionAddRowButtonLabel": "Adăugarea datelor la colecție",
"CollectionDeleteRowButtonLabel": "Ștergerea rândului curent",
"CollectionSaveAndAddButtonLabel": "Adăugare și salvare",
"CollectionDataItemShowErrorsLabel": "Afișare erori rând",
"CollectionDataItemFieldRequiredLabel": "Câmpul este necesar.",
"InvalidUrlError": "URL-ul furnizat nu este valid",
"DescriptionLabel": "Descrierea /",
"MoreInfoLabel": "Mai multe informații",
"AboutGroupLabel": "Despre",
"SitePickerSearchBoxPlaceholder": "Căutaţi...",
"SitePickerNoResults": "Fără rezultate ale căutării",
"SitePickerSitesChosen": "Site-uri web selectate",
"TeamPickerSearchBoxPlaceholder": "Căutaţi...",
"TeamPickerNoResults": "Fără rezultate ale căutării",
"TeamPickerSitesChosen": "Echipe selectate",
"AddFileButtonLabel": "Adăugare fișier",
"AddImageButtonLabel": "Adăugare imagine",
"AriaCellValue": "coloana {0}, {1}",
"FilePickerCancelButtonLabel": "Anula",
"CantValidateValidationMessage": "Nu am putut verifica acest link. Verificați linkul și încercați din nou.",
"ChangeFileLinkLabel": "Modificare fișier",
"ChangeImageLinkLabel": "Modificare imagine",
"ChooseFileLinkLabel": "Alegere fișier",
"ChooseImageLinkLabel": "Alegere imagine",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Sunteți responsabil pentru respectarea drepturilor altora, inclusiv a drepturilor de autor.",
"CreativeCommonsMessage": "Aceste rezultate sunt etichetate cu licențe Creative Commons. Examinați licențele pentru a vă asigura că le respectați.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Document, {1} modificat, editat de {2}, Privat",
"DocumentLibraries": "Biblioteci de documente",
"EditedByNamePlate": "editat de ",
"EmptyFileSize": "0 octeți",
"FilePickerHeader": "Selector fișier",
"FileSizeField": "Dimensiune fișier",
"FolderAltText": "Folderul",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Folder, {1} modificat, editat de {2}, elemente {3}, Privat",
"FromLinkLinkLabel": "Dintr-un link",
"ImageAltText": ". Imagine {0}",
"ImageAriaLabelTemplate": ". Imagine {0}",
"ImageLayoutPlaceholderText": "Aspect",
"ImageSizePlaceholderText": "Dimensiune imagine",
"ItemChildCountField": "Contor fiu element",
"LayoutOptionAll": "Toate",
"LayoutOptionSquare": "Pătrat",
"LayoutOptionTall": "Înalt",
"LayoutOptionWide": "Largă",
"LearnMoreLink": "află mai multe.",
"LicenseOptionAll": "Toate",
"LicenseOptionAny": "Numai Creative Commons",
"LicensePlaceholderText": "Licenţă",
"LinkFileInstructions": "Lipirea unui link la un fișier în OneDrive pentru business sau SharePoint Online",
"LinkHeader": "Dintr-un link",
"LinkImageInstructions": "Lipirea unui link la o imagine în OneDrive pentru business sau SharePoint Online",
"ListLayoutAriaLabel": "Vizualizați opțiunile. {0} {1} .",
"ListLayoutCompact": "Vizualizare compactă",
"ListLayoutCompactDescription": "Vizualizarea elementelor și detaliilor dintr-o listă compactă",
"ListLayoutList": "Vizualizare listă",
"ListLayoutListDescrition": "Vizualizarea elementelor și detaliilor dintr-o listă",
"ListLayoutTile": "Vizualizare dală",
"ListLayoutTileDescription": "Vizualizarea elementelor cu previzualizări de dale",
"ListOptionsAlt": "Vizualizați opțiunile. {0} selectat .",
"ListOptionsTitle": "Deschiderea meniului de opțiuni pentru vizualizare",
"Loading": "Încărcare...",
"ModifiedByField": "Modificat de",
"ModifiedField": "Data modificării",
"NameField": "nume",
"No": "nu",
"ProvidedValueIsInvalid": "Valoarea furnizată nu este validă",
"NoExternalLinksValidationMessage": "Acceptăm doar conectarea la fișiere din propria organizație.",
"NoImageValidationMessage": "Acesta nu este un link către un tip de fișier pe care îl sprijinim. Aveți posibilitatea să legați numai la o imagine.",
"NoRecentFiles": "Niciun fișier recent",
"NoRecentFilesDescription": "Încercați să selectați un fișier de pe site sau încărcați unul de pe dispozitiv.",
"NoResultsBadEnglish": "Nu s-a găsit niciun rezultat. Încercați să modificați opțiunile de filtrare",
"ODModifiedField": "Modificat",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, {2} modificat, editat de {3}, {4} {5}",
"OneDriveConfirmDialogBody": "Acest element este de pe site-ul OneDrive. Fișierele și folderele din OneDrive sunt private, cu excepția cazului în care le partajați. Ați împărtășit acest fișier cu membrii site-ului dvs., astfel încât acestea să poată ccess ea?",
"OneDriveConfirmDialogTitle": "Verificam...",
"OneDriveEmptyFolderAlt": "Golire folder",
"OneDriveEmptyFolderDescription": "Pentru a adăuga fișiere, accesați OneDrive. De asemenea, puteți adăuga fișiere la acest folder utilizând aplicația OneDrive pentru computer.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Acest folder este gol",
"OneDriveRootFolderName": "Fişierele",
"OpenButtonLabel": "Deschide",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Imagini și fișiere furnizate de organizația dvs.",
"PoweredByBing": "Realizat de Bing",
"RecentDocumentsHeader": "Documente recente",
"RecentImagesHeader": "Imagini recente",
"RecentLinkLabel": "Recentă",
"SearchBoxPlaceholder": "Căutare pe Web",
"SearchResultAlt": "Rezultatul imaginii pentru {0}.",
"SearchResultAriaLabel": "Apăsați enter pentru a deschide sursa imaginii într-o filă nouă.",
"Selected": "Selectat",
"SharingField": "Partajare",
"SharingPrivate": "Privat",
"SharingShared": "Partajate",
"SiteLinkLabel": "Site",
"SizeOptionAll": "Toate",
"SizeOptionExtraLarge": "Foarte mare",
"SizeOptionLarge": "Mare",
"SizeOptionMedium": "Medie",
"SizeOptionSmall": "Mici",
"SizeUnit": [
"Octeţi",
"Ko",
"Mb",
"Merge",
"Tb",
"Pb (Pb)",
"Eb",
"Exemplu.",
"Yb"
],
"SorryWebSearch": "Ne pare rău, această funcție nu este implementată în acest eșantion, deoarece ar necesita o cheie Bing API.",
"SortedAscending": "Sortate de la A la Z",
"SortedDescending": "Sortate de la Z la A",
"TypeAriaLabel": "Operațiuni coloană pentru tip fișier, Apăsați pentru a sorta pe tip fișier",
"UploadFileHeader": "Încărcare fișier",
"UploadImageHeader": "Încărcare imagine",
"UploadLinkLabel": "Încărcaţi",
"WebSearchLinkLabel": "Căutare pe Web",
"Yes": "da",
"StockImagesLinkLabel": "Imagini de stoc",
"StockImagesHeader": "Imagini stoc",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "În câteva secunde",
"L_RelativeDateTime_AFewSeconds": "Acum câteva secunde.",
"L_RelativeDateTime_AboutAMinuteFuture": "În aproximativ un minut",
"L_RelativeDateTime_AboutAMinute": "Acum un minut.",
"L_RelativeDateTime_XMinutesFuture": "În {0} minut în {0} minute",
"L_RelativeDateTime_XMinutes": "{0} minut. {0} minute în urmă",
"L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XMinutesIntervals": "1|| 2-",
"L_RelativeDateTime_AboutAnHourFuture": "În aproximativ o oră",
"L_RelativeDateTime_AboutAnHour": "Acum o oră.",
"L_RelativeDateTime_Tomorrow": "Dimineață",
"L_RelativeDateTime_Yesterday": "aici",
"L_RelativeDateTime_TomorrowAndTime": "Mâine la {0}",
"L_RelativeDateTime_YesterdayAndTime": "Ieri în {0}",
"L_RelativeDateTime_XHoursFuture": "La {0} a.{0} m.",
"L_RelativeDateTime_XHours": "{0} de ore. {0} de ore în urmă",
"L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XHoursIntervals": "1|| 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} zi de acum {0} zile de acum",
"L_RelativeDateTime_XDays": "{0} acum o zi. {0} zile în urmă",
"L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-",
"L_RelativeDateTime_XDaysIntervals": "1|| 2-",
"L_RelativeDateTime_Today": "Azi"
},
"NewFolderNamePlaceholder": "Introduceți numele folderului",
"FolderFilterBoxPlaceholder": "Filtrarea folderelor după nume",
"FolderExplorerLoading": "Se încarcă folderele...",
"FolderExplorerNoItems": "Acest folder nu are subfoldere.",
"IncorrectGuidValidationMessage": "Introduceți un GUID valid"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Применить",
"ImportButtonLabel": "Импорт",
"ExportButtonLabel": "Экспорт",
"FormatCodeButtonLabel": "Код формата",
"JsonFileRequiredMessage": "Пожалуйста, добавьте файл json",
"SaveButtonLabel": "Сохранить",
"CancelButtonLabel": "Отмена",
"PeoplePickerSuggestedContacts": "Предложенные пользователи",
"PeoplePickerSuggestedGroups": "Предложенные группы",
"PeoplePickerSuggestedCombined": "Предложенные пользователи и группы",
"PeoplePickerNoResults": "Нет результатов, удовлетворяющих условиям",
"PeoplePickerLoading": "Загрузка результатов...",
"DatePickerMonthLongJanuary": "Январь",
"DatePickerMonthShortJanuary": "Янв",
"DatePickerMonthLongFebruary": "Февраль",
"DatePickerMonthShortFebruary": "Фев",
"DatePickerMonthLongMarch": "Март",
"DatePickerMonthShortMarch": "Мар",
"DatePickerMonthLongApril": "Апрель",
"DatePickerMonthShortApril": "Апр",
"DatePickerMonthLongMay": "Май",
"DatePickerMonthShortMay": "Май",
"DatePickerMonthLongJune": "Июнь",
"DatePickerMonthShortJune": "Июн",
"DatePickerMonthLongJuly": "Июль",
"DatePickerMonthShortJuly": "Июл",
"DatePickerMonthLongAugust": "Август",
"DatePickerMonthShortAugust": "Авг",
"DatePickerMonthLongSeptember": "Сентябрь",
"DatePickerMonthShortSeptember": "Сен",
"DatePickerMonthLongOctober": "Октябрь",
"DatePickerMonthShortOctober": "Окт",
"DatePickerMonthLongNovember": "Ноябрь",
"DatePickerMonthShortNovember": "Ноя",
"DatePickerMonthLongDecember": "Декабрь",
"DatePickerMonthShortDecember": "Дек",
"DatePickerDayLongSunday": "Воскресенье",
"DatePickerDayShortSunday": "Вс",
"DatePickerDayLongMonday": "Понедельник",
"DatePickerDayShortMonday": "Пн",
"DatePickerDayLongTuesday": "Вторник",
"DatePickerDayShortTuesday": "Вт",
"DatePickerDayLongWednesday": "Среда",
"DatePickerDayShortWednesday": "Ср",
"DatePickerDayLongThursday": "Четверг",
"DatePickerDayShortThursday": "Чт",
"DatePickerDayLongFriday": "Пятница",
"DatePickerDayShortFriday": "Пт",
"DatePickerDayLongSaturday": "Суббота",
"DatePickerDayShortSaturday": "Сб",
"DatepickerGoToToday": "Сегодня",
"DateTimePickerDate": "Дата",
"DateTimePickerTime": "Время",
"ColorPickerButtonTitle": "Выберите цвет",
"NotNumberValidationMessage": "Значение должно быть числом, текущее значение:",
"MinimumNumberValidationMessage": "Значение должно быть больше, чем:",
"MaximumNumberValidationMessage": "Значение должно быть меньше, чем:",
"TermPickerNoTerms": "Данный набор терминов пуст",
"TermPickerExpandTitle": "Развернуть этот набор терминов",
"TermPickerExpandNode": "Развернуть этот узел",
"TermPickerMenuTermSet": "Меню для набора терминов",
"TermPickerMenuGroup": "Меню для группы терминов",
"TermPickerInLabel": "в",
"TermPickerTermSetLabel": "Набор терминов",
"propertyFieldMultiSelectNoOptions": "Нет элементов для выбора",
"CollectionDataEmptyFields": "Набор данных не содержит полей.",
"CollectionDataEmptyValue": "Набор данных пуст.",
"CollectionAddRowButtonLabel": "Добавить данные в набор",
"CollectionDeleteRowButtonLabel": "Удалить данную строку",
"CollectionSaveAndAddButtonLabel": "Добавить и сохранить",
"CollectionDataItemShowErrorsLabel": "Отобразить ошибки для строки",
"CollectionDataItemFieldRequiredLabel": "Это поле не может быть пустым.",
"InvalidUrlError": "Заданное значение не является корректной ссылкой",
"DescriptionLabel": "Описание",
"MoreInfoLabel": "Подробнее",
"AboutGroupLabel": "Справка",
"SitePickerSearchBoxPlaceholder": "Поиск...",
"SitePickerNoResults": "Нет результатов поиска",
"SitePickerSitesChosen": "Выбранный веб-сайт (ы)",
"TeamPickerSearchBoxPlaceholder": "Поиск...",
"TeamPickerNoResults": "Нет результатов поиска",
"TeamPickerSitesChosen": "Выбранные команды (ы)",
"AddFileButtonLabel": "Добавить файл",
"AddImageButtonLabel": "Добавить изображение",
"AriaCellValue": "{0} колонка, {1}",
"FilePickerCancelButtonLabel": "Отмена",
"CantValidateValidationMessage": "Мы не смогли проверить эту ссылку. Пожалуйста, проверьте ссылку и попробуйте еще раз.",
"ChangeFileLinkLabel": "Файл изменения",
"ChangeImageLinkLabel": "Изменение изображения",
"ChooseFileLinkLabel": "Выберите файл",
"ChooseImageLinkLabel": "Выберите изображение",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Вы несете ответственность за соблюдение прав других, включая авторское право.",
"CreativeCommonsMessage": "Эти результаты помечены лицензиями Creative Commons. Просмотрите лицензии, чтобы убедиться, что вы соблюдаете.",
"DateFormat": "ММ/ДД/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Документ, Измененные {1}, под редакцией {2}, Частные",
"DocumentLibraries": "Библиотеки документов",
"EditedByNamePlate": "под редакцией ",
"EmptyFileSize": "0 байтов",
"FilePickerHeader": "Сборщик файлов",
"FileSizeField": "Размер файла",
"FolderAltText": "Папку",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Folder, модифицированные {1}, под редакцией {2}, {3} элементов, частных",
"FromLinkLinkLabel": "По ссылке",
"ImageAltText": ". {0} изображение",
"ImageAriaLabelTemplate": ". {0} изображение",
"ImageLayoutPlaceholderText": "Макет",
"ImageSizePlaceholderText": "Размер изображения",
"ItemChildCountField": "Пункт Детское граф",
"LayoutOptionAll": "Все",
"LayoutOptionSquare": "Площади",
"LayoutOptionTall": "Высокий",
"LayoutOptionWide": "Широкий",
"LearnMoreLink": "Подробнее.",
"LicenseOptionAll": "Все",
"LicenseOptionAny": "Creative Commons только",
"LicensePlaceholderText": "Лицензии",
"LinkFileInstructions": "Вставьте ссылку на файл в OneDrive для бизнеса или SharePoint Online",
"LinkHeader": "По ссылке",
"LinkImageInstructions": "Вставьте ссылку на изображение в OneDrive для бизнеса или SharePoint Online",
"ListLayoutAriaLabel": "Просмотр опций. {0} {1} .",
"ListLayoutCompact": "Компактный вид",
"ListLayoutCompactDescription": "Просмотр элементов и деталей в компактном списке",
"ListLayoutList": "Представление списка",
"ListLayoutListDescrition": "Просмотр элементов и деталей в списке",
"ListLayoutTile": "Вид плитки",
"ListLayoutTileDescription": "Просмотр элементов с просмотром плитки",
"ListOptionsAlt": "Просмотр опций. {0} выбран.",
"ListOptionsTitle": "Откройте меню вариантов представления",
"Loading": "Загрузка...",
"ModifiedByField": "Изменено",
"ModifiedField": "Дата изменена",
"NameField": "Имя",
"No": "Нет",
"ProvidedValueIsInvalid": "Предоставленная стоимость недействительна",
"NoExternalLinksValidationMessage": "Мы поддерживаем ссылки только на файлы в вашей собственной организации.",
"NoImageValidationMessage": "Это не ссылка на тип файла, который мы поддерживаем. Вы можете ссылаться только на изображение.",
"NoRecentFiles": "Нет последних файлов",
"NoRecentFilesDescription": "Попробуйте выбрать файл с вашего сайта или загрузить его с вашего устройства.",
"NoResultsBadEnglish": "Результат не найден. Попробуйте изменить параметры фильтра",
"ODModifiedField": "Изменения",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Модифицированные {2}, под редакцией {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Этот пункт с вашего сайта OneDrive. Файлы и папки в OneDrive являются частными, если вы не делитесь ими. Вы поделились этим файлом с членами вашего сайта, чтобы они могли ccess его?",
"OneDriveConfirmDialogTitle": "Проверяю...",
"OneDriveEmptyFolderAlt": "Пустая папка",
"OneDriveEmptyFolderDescription": "Чтобы добавить файлы, перейдите на OneDrive. Вы также можете добавить файлы в эту папку с помощью приложения OneDrive для вашего компьютера.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Эта папка пуста",
"OneDriveRootFolderName": "Файлы",
"OpenButtonLabel": "Открыть",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Изображения и файлы, предоставленные вашей организацией",
"PoweredByBing": "Работает на Bing",
"RecentDocumentsHeader": "Последние документы",
"RecentImagesHeader": "Последние изображения",
"RecentLinkLabel": "Последние",
"SearchBoxPlaceholder": "Веб-поиск",
"SearchResultAlt": "Результат изображения для {0}.",
"SearchResultAriaLabel": "Нажмите введите, чтобы открыть источник изображения в новой вкладке.",
"Selected": "Выбранного",
"SharingField": "Обмена",
"SharingPrivate": "Частная",
"SharingShared": "Общий",
"SiteLinkLabel": "Сайта",
"SizeOptionAll": "Все",
"SizeOptionExtraLarge": "Дополнительные большие",
"SizeOptionLarge": "Большой",
"SizeOptionMedium": "Терпимая",
"SizeOptionSmall": "Маленький",
"SizeUnit": [
"Байт",
"Ко",
"Мб",
"Пойти",
"Тб",
"Pb (Pb)",
"Eb",
"Например.",
"Yb"
],
"SorryWebSearch": "К сожалению, эта функция не реализована в этом примере, потому что для этого потребуется ключ Bing API.",
"SortedAscending": "Сортировка от А до Я",
"SortedDescending": "Отсортировано от А до А",
"TypeAriaLabel": "Операции столбца для типа файла, Нажмите, чтобы сортировать по типу файла",
"UploadFileHeader": "Загрузить файл",
"UploadImageHeader": "Загрузить изображение",
"UploadLinkLabel": "Загрузить",
"WebSearchLinkLabel": "Веб-поиск",
"Yes": "Да",
"StockImagesLinkLabel": "Сток изображения",
"StockImagesHeader": "Сток изображения",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "В считанные секунды",
"L_RelativeDateTime_AFewSeconds": "Несколько секунд назад",
"L_RelativeDateTime_AboutAMinuteFuture": "Примерно через минуту",
"L_RelativeDateTime_AboutAMinute": "Около минуты назад",
"L_RelativeDateTime_XMinutesFuture": "За {0} минуту {0} минут",
"L_RelativeDateTime_XMinutes": "{0} минуту назад. {0} минут назад",
"L_RelativeDateTime_XMinutesFutureIntervals": "От 1 до 1 евро 2-",
"L_RelativeDateTime_XMinutesIntervals": "От 1 до 1 евро 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Примерно через час",
"L_RelativeDateTime_AboutAnHour": "Около часа назад",
"L_RelativeDateTime_Tomorrow": "Утро",
"L_RelativeDateTime_Yesterday": "Здесь",
"L_RelativeDateTime_TomorrowAndTime": "Завтра в {0}",
"L_RelativeDateTime_YesterdayAndTime": "Вчера в {0}",
"L_RelativeDateTime_XHoursFuture": "В {0} утра {0} утра.",
"L_RelativeDateTime_XHours": "{0} часов назад. {0} часов назад",
"L_RelativeDateTime_XHoursFutureIntervals": "От 1 до 1 евро 2-",
"L_RelativeDateTime_XHoursIntervals": "От 1 до 1 евро 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} через {0} через несколько дней",
"L_RelativeDateTime_XDays": "{0} день назад. {0} дней назад",
"L_RelativeDateTime_XDaysFutureIntervals": "От 1 до 1 евро 2-",
"L_RelativeDateTime_XDaysIntervals": "От 1 до 1 евро 2-",
"L_RelativeDateTime_Today": "Сегодня"
},
"NewFolderNamePlaceholder": "Введите имя папки",
"FolderFilterBoxPlaceholder": "Фильтр папки по имени",
"FolderExplorerLoading": "Загрузка папок...",
"FolderExplorerNoItems": "Эта папка не имеет субфолдеров.",
"IncorrectGuidValidationMessage": "Пожалуйста, введите действительный GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Použiť",
"ImportButtonLabel": "Dovozné",
"ExportButtonLabel": "Vývoz",
"FormatCodeButtonLabel": "Formátovať kód",
"JsonFileRequiredMessage": "Prosím, nahrajte json súbor",
"SaveButtonLabel": "Uložiť",
"CancelButtonLabel": "Zrušiť",
"PeoplePickerSuggestedContacts": "Navrhol ľudí",
"PeoplePickerSuggestedGroups": "Navrhované skupiny",
"PeoplePickerSuggestedCombined": "Navrhovaní ľudia a skupiny",
"PeoplePickerNoResults": "Nenašiel sa žiadny výsledok",
"PeoplePickerLoading": "Načítavajú sa výsledky...",
"DatePickerMonthLongJanuary": "Január",
"DatePickerMonthShortJanuary": "Január",
"DatePickerMonthLongFebruary": "Február",
"DatePickerMonthShortFebruary": "Február",
"DatePickerMonthLongMarch": "Marec",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "Apríl",
"DatePickerMonthShortApril": "Apríla",
"DatePickerMonthLongMay": "Máj",
"DatePickerMonthShortMay": "Máj",
"DatePickerMonthLongJune": "Jún",
"DatePickerMonthShortJune": "Júna",
"DatePickerMonthLongJuly": "Júl",
"DatePickerMonthShortJuly": "Júl",
"DatePickerMonthLongAugust": "August",
"DatePickerMonthShortAugust": "Augusta",
"DatePickerMonthLongSeptember": "September",
"DatePickerMonthShortSeptember": "Sedem",
"DatePickerMonthLongOctober": "Október",
"DatePickerMonthShortOctober": "Október",
"DatePickerMonthLongNovember": "November",
"DatePickerMonthShortNovember": "Novembra",
"DatePickerMonthLongDecember": "December",
"DatePickerMonthShortDecember": "Decembra",
"DatePickerDayLongSunday": "Nedeľa",
"DatePickerDayShortSunday": "Slnko",
"DatePickerDayLongMonday": "Pondelok",
"DatePickerDayShortMonday": "Môj",
"DatePickerDayLongTuesday": "Utorok",
"DatePickerDayShortTuesday": "Tue",
"DatePickerDayLongWednesday": "Streda",
"DatePickerDayShortWednesday": "St",
"DatePickerDayLongThursday": "Štvrtok",
"DatePickerDayShortThursday": "Št",
"DatePickerDayLongFriday": "Piatok",
"DatePickerDayShortFriday": "Pi",
"DatePickerDayLongSaturday": "Sobota",
"DatePickerDayShortSaturday": "Sedel",
"DatepickerGoToToday": "Dnes",
"DateTimePickerDate": "Dátum",
"DateTimePickerTime": "Čas",
"ColorPickerButtonTitle": "Vyberte farbu",
"NotNumberValidationMessage": "Hodnota by mala byť číslo, skutočná je:",
"MinimumNumberValidationMessage": "Hodnota by mala byť väčšia alebo rovná:",
"MaximumNumberValidationMessage": "Hodnota by mala byť nižšia alebo rovná:",
"TermPickerNoTerms": "Množina výrazov neobsahuje žiadne výrazy",
"TermPickerExpandTitle": "Rozbaliť túto množinu výrazov",
"TermPickerExpandNode": "Rozbaľte tento uzol",
"TermPickerMenuTermSet": "Ponuka pre množinu výrazov",
"TermPickerMenuGroup": "Ponuka pre skupinu výrazov",
"TermPickerInLabel": "Palcov",
"TermPickerTermSetLabel": "Množina výrazov",
"propertyFieldMultiSelectNoOptions": "Nie sú k dispozícii žiadne možnosti na výber",
"CollectionDataEmptyFields": "Pre údaje o zhromažďovaní neboli poskytnuté žiadne polia.",
"CollectionDataEmptyValue": "Žiadne údaje vo vašej zbierke.",
"CollectionAddRowButtonLabel": "Pridanie údajov do kolekcie",
"CollectionDeleteRowButtonLabel": "Odstránenie aktuálneho riadka",
"CollectionSaveAndAddButtonLabel": "Pridanie a uloženie",
"CollectionDataItemShowErrorsLabel": "Zobraziť chyby riadkov",
"CollectionDataItemFieldRequiredLabel": "Pole je povinné.",
"InvalidUrlError": "Za predpokladu, že adresa URL nie je platná",
"DescriptionLabel": "Popis / kontrol",
"MoreInfoLabel": "Ďalšie informácie",
"AboutGroupLabel": "O",
"SitePickerSearchBoxPlaceholder": "Hľadať...",
"SitePickerNoResults": "Žiadne výsledky vyhľadávania",
"SitePickerSitesChosen": "Vybraná webová stránka (webové stránky)",
"TeamPickerSearchBoxPlaceholder": "Hľadať...",
"TeamPickerNoResults": "Žiadne výsledky vyhľadávania",
"TeamPickerSitesChosen": "Vybrané tímy",
"AddFileButtonLabel": "Pridať súbor",
"AddImageButtonLabel": "Pridať obrázok",
"AriaCellValue": "{0} stĺpec, {1}",
"FilePickerCancelButtonLabel": "Zrušiť",
"CantValidateValidationMessage": "Tento odkaz sa nám nepodarilo overiť. Skontrolujte prepojenie a skúste to znova.",
"ChangeFileLinkLabel": "Zmeniť súbor",
"ChangeImageLinkLabel": "Zmeniť obrázok",
"ChooseFileLinkLabel": "Výber súboru",
"ChooseImageLinkLabel": "Vybrať obrázok",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Ste zodpovední za rešpektovanie práv iných vrátane autorských práv.",
"CreativeCommonsMessage": "Tieto výsledky sú označené licenciami Creative Commons. Skontrolujte licencie, aby ste sa uistili, že spĺňate požiadavky.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Dokument, {1}, editoval {2}, Súkromné",
"DocumentLibraries": "Knižnice dokumentov",
"EditedByNamePlate": "editoval ",
"EmptyFileSize": "0 podjedál",
"FilePickerHeader": "Výber súborov",
"FileSizeField": "Veľkosť súboru",
"FolderAltText": "Priečinok",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Priečinok, {1}, upravené {2}, {3} položky, Súkromné",
"FromLinkLinkLabel": "Z prepojenia",
"ImageAltText": ". {0} Obrázok",
"ImageAriaLabelTemplate": ". {0} Obrázok",
"ImageLayoutPlaceholderText": "Rozloženie",
"ImageSizePlaceholderText": "Veľkosť obrázka",
"ItemChildCountField": "Počet podradených položiek tovaru",
"LayoutOptionAll": "Všetky",
"LayoutOptionSquare": "Námestie",
"LayoutOptionTall": "Vysoký",
"LayoutOptionWide": "Široký",
"LearnMoreLink": "zistiť viac.",
"LicenseOptionAll": "Všetky",
"LicenseOptionAny": "Iba Creative Commons",
"LicensePlaceholderText": "Licencie",
"LinkFileInstructions": "Prilepiť prepojenie na súbor vo OneDrive for Business alebo SharePointe Online",
"LinkHeader": "Z prepojenia",
"LinkImageInstructions": "Prilepiť prepojenie na obrázok vo OneDrive for Business alebo SharePointe Online",
"ListLayoutAriaLabel": "Zobraziť možnosti. {0} {1} .",
"ListLayoutCompact": "Kompaktné zobrazenie",
"ListLayoutCompactDescription": "Zobrazenie položiek a podrobností v kompaktnom zozname",
"ListLayoutList": "Zobrazenie zoznamu",
"ListLayoutListDescrition": "Zobrazenie položiek a podrobností v zozname",
"ListLayoutTile": "Zobrazenie dlaždíc",
"ListLayoutTileDescription": "Zobrazenie položiek s ukážkami dlaždíc",
"ListOptionsAlt": "Zobraziť možnosti. {0} vybratá možnosť .",
"ListOptionsTitle": "Otvorenie ponuky možností zobrazenia",
"Loading": "Nakládky...",
"ModifiedByField": "Upravené podľa",
"ModifiedField": "Dátum úpravy",
"NameField": "meno",
"No": "nie",
"ProvidedValueIsInvalid": "Za predpokladu, že hodnota je neplatná",
"NoExternalLinksValidationMessage": "Podporujeme iba prepojenie na súbory vo vašej vlastnej organizácii.",
"NoImageValidationMessage": "Toto nie je prepojenie na typ súboru, ktorý podporujeme. Môžete len odkaz na obrázok.",
"NoRecentFiles": "Žiadne nedávne súbory",
"NoRecentFilesDescription": "Skúste vybrať súbor z lokality alebo ho nahrať zo zariadenia.",
"NoResultsBadEnglish": "Nenašiel sa žiadny výsledok. Skúste zmeniť možnosti filtra",
"ODModifiedField": "Upravené",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Upravené {2}, upravené {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Táto položka pochádza z lokality OneDrive. Súbory a priečinky vo OneDrive sú súkromné, pokiaľ ich nezdieľate. Už ste zdieľali tento súbor s členmi webu, aby mohli ccess to?",
"OneDriveConfirmDialogTitle": "Len kontrola ...",
"OneDriveEmptyFolderAlt": "Prázdny priečinok",
"OneDriveEmptyFolderDescription": "Ak chcete pridať súbory, prejdite do OneDrivu. Do tohto priečinka môžete pridať aj súbory pomocou aplikácie OneDrive pre váš počítač.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Tento priečinok je prázdny",
"OneDriveRootFolderName": "Súbory",
"OpenButtonLabel": "Otvoriť",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Obrázky a súbory poskytnuté vašou organizáciou",
"PoweredByBing": "Beží na Bing",
"RecentDocumentsHeader": "Najnovšie dokumenty",
"RecentImagesHeader": "Nedávne obrázky",
"RecentLinkLabel": "Nedávne",
"SearchBoxPlaceholder": "Vyhľadávanie na webe",
"SearchResultAlt": "Výsledok obrázka pre {0}.",
"SearchResultAriaLabel": "Stlačením klávesu Enter otvorte zdroj obrázka na novej karte.",
"Selected": "Vybrané",
"SharingField": "Zdieľanie",
"SharingPrivate": "Súkromné",
"SharingShared": "Zdieľané",
"SiteLinkLabel": "Stránky",
"SizeOptionAll": "Všetky",
"SizeOptionExtraLarge": "Extra veľké",
"SizeOptionLarge": "Veľké",
"SizeOptionMedium": "Stredná",
"SizeOptionSmall": "Malé",
"SizeUnit": [
"Bajtov",
"Ak chcete",
"Mb",
"Ísť",
"Tb",
"Pb (Pb)",
"Eb",
"Napríklad.",
"Yb (Yb)"
],
"SorryWebSearch": "Ľutujeme, táto funkcia nie je implementovaná v tejto vzorke, pretože by vyžadovala kľúč rozhrania API Bing.",
"SortedAscending": "Zoradené od A po Z",
"SortedDescending": "Zoradené od Z po A",
"TypeAriaLabel": "Operácie stĺpcov pre typ súboru, Stlačením tlačidla zoradíte typ súboru",
"UploadFileHeader": "Nahrať súbor",
"UploadImageHeader": "Nahrať obrázok",
"UploadLinkLabel": "Nahrať",
"WebSearchLinkLabel": "Vyhľadávanie na webe",
"Yes": "áno",
"StockImagesLinkLabel": "Obrázky akcií",
"StockImagesHeader": "Sklad Obrázky",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "V priebehu niekoľkých sekúnd",
"L_RelativeDateTime_AFewSeconds": "Pred niekoľkými sekundami",
"L_RelativeDateTime_AboutAMinuteFuture": "Asi za minútu",
"L_RelativeDateTime_AboutAMinute": "Asi pred minútou.",
"L_RelativeDateTime_XMinutesFuture": "{0} minút za {0} minúty",
"L_RelativeDateTime_XMinutes": "{0} minútou. {0} minútami.",
"L_RelativeDateTime_XMinutesFutureIntervals": "1 až 1 euro 2-",
"L_RelativeDateTime_XMinutesIntervals": "1 až 1 euro 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Asi za hodinu",
"L_RelativeDateTime_AboutAnHour": "Asi pred hodinou",
"L_RelativeDateTime_Tomorrow": "Ráno",
"L_RelativeDateTime_Yesterday": "Tu",
"L_RelativeDateTime_TomorrowAndTime": "Zajtra o {0}",
"L_RelativeDateTime_YesterdayAndTime": "Včera v {0}",
"L_RelativeDateTime_XHoursFuture": "{0} ráno {0} ráno.",
"L_RelativeDateTime_XHours": "{0} hodinami. {0} hodinami.",
"L_RelativeDateTime_XHoursFutureIntervals": "1 až 1 euro 2-",
"L_RelativeDateTime_XHoursIntervals": "1 až 1 euro 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} v {0} za pár dní.",
"L_RelativeDateTime_XDays": "{0} dňami. {0} dni",
"L_RelativeDateTime_XDaysFutureIntervals": "1 až 1 euro 2-",
"L_RelativeDateTime_XDaysIntervals": "1 až 1 euro 2-",
"L_RelativeDateTime_Today": "Dnes"
},
"NewFolderNamePlaceholder": "Zadajte názov priečinka",
"FolderFilterBoxPlaceholder": "Filtrovanie priečinkov podľa názvu",
"FolderExplorerLoading": "Načítavajú sa priečinky...",
"FolderExplorerNoItems": "Tento priečinok nemá žiadne podpriečinky.",
"IncorrectGuidValidationMessage": "Zadajte platný identifikátor GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Primenite",
"ImportButtonLabel": "Uvoz",
"ExportButtonLabel": "Izvoz",
"FormatCodeButtonLabel": "Kôd formata",
"JsonFileRequiredMessage": "Otpremite json fajl",
"SaveButtonLabel": "Sačuvaj",
"CancelButtonLabel": "Otkaži",
"PeoplePickerSuggestedContacts": "Predloženi ljudi",
"PeoplePickerSuggestedGroups": "Predložene grupe",
"PeoplePickerSuggestedCombined": "Predložene osobe i grupe",
"PeoplePickerNoResults": "Nije pronađen nijedan rezultat",
"PeoplePickerLoading": "Učitavanje rezultata...",
"DatePickerMonthLongJanuary": "januar",
"DatePickerMonthShortJanuary": "Jan",
"DatePickerMonthLongFebruary": "februar",
"DatePickerMonthShortFebruary": "Feb",
"DatePickerMonthLongMarch": "mart",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "april",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "maj",
"DatePickerMonthShortMay": "maj",
"DatePickerMonthLongJune": "jun",
"DatePickerMonthShortJune": "Dћun",
"DatePickerMonthLongJuly": "Jul",
"DatePickerMonthShortJuly": "Jul",
"DatePickerMonthLongAugust": "avgust",
"DatePickerMonthShortAugust": "Aug",
"DatePickerMonthLongSeptember": "septembar",
"DatePickerMonthShortSeptember": "Sedam",
"DatePickerMonthLongOctober": "oktobar",
"DatePickerMonthShortOctober": "Oct",
"DatePickerMonthLongNovember": "novembar",
"DatePickerMonthShortNovember": "Nov",
"DatePickerMonthLongDecember": "decembar",
"DatePickerMonthShortDecember": "Dec",
"DatePickerDayLongSunday": "Subota",
"DatePickerDayShortSunday": "Sunce",
"DatePickerDayLongMonday": "Ponedeljak",
"DatePickerDayShortMonday": "Moj",
"DatePickerDayLongTuesday": "Utorak",
"DatePickerDayShortTuesday": "Uto",
"DatePickerDayLongWednesday": "Sreda",
"DatePickerDayShortWednesday": "Wed",
"DatePickerDayLongThursday": "Četvrtak",
"DatePickerDayShortThursday": "Čet",
"DatePickerDayLongFriday": "Petak",
"DatePickerDayShortFriday": "Fri",
"DatePickerDayLongSaturday": "Subota",
"DatePickerDayShortSaturday": "Sedeo",
"DatepickerGoToToday": "Danas",
"DateTimePickerDate": "Datum",
"DateTimePickerTime": "Vreme",
"ColorPickerButtonTitle": "Izaberi boju",
"NotNumberValidationMessage": "Vrednost bi trebalo da bude broj, a stvarna je:",
"MinimumNumberValidationMessage": "Vrednost bi trebalo da bude veća ili jednaka:",
"MaximumNumberValidationMessage": "Vrednost bi trebalo da bude niža ili jednaka:",
"TermPickerNoTerms": "Skup termina ne sadrži uslove",
"TermPickerExpandTitle": "Razvij ovaj skup termina",
"TermPickerExpandNode": "Razvij ovaj broj",
"TermPickerMenuTermSet": "Meni za skup termina",
"TermPickerMenuGroup": "Meni za grupu termina",
"TermPickerInLabel": "Inča",
"TermPickerTermSetLabel": "Skup termina",
"propertyFieldMultiSelectNoOptions": "Nema opcija za izbor",
"CollectionDataEmptyFields": "Za podatke o prikupljanju nisu obezbeđena nijedna polja.",
"CollectionDataEmptyValue": "Nema podataka u vašoj kolekciji.",
"CollectionAddRowButtonLabel": "Dodavanje podataka u kolekciju",
"CollectionDeleteRowButtonLabel": "Brisanje trenutnog reda",
"CollectionSaveAndAddButtonLabel": "Dodavanje i čuvanje",
"CollectionDataItemShowErrorsLabel": "Prikaži greške u redovima",
"CollectionDataItemFieldRequiredLabel": "Polje je obavezno.",
"InvalidUrlError": "Navedena URL adresa nije važeća",
"DescriptionLabel": "Opis",
"MoreInfoLabel": "Više informacija",
"AboutGroupLabel": "O",
"SitePickerSearchBoxPlaceholder": "Pretrage...",
"SitePickerNoResults": "Nema rezultata pretrage",
"SitePickerSitesChosen": "Web lokacije izabrane",
"TeamPickerSearchBoxPlaceholder": "Pretrage...",
"TeamPickerNoResults": "Nema rezultata pretrage",
"TeamPickerSitesChosen": "Odabrani timovi",
"AddFileButtonLabel": "Dodaj datoteku",
"AddImageButtonLabel": "Dodaj sliku",
"AriaCellValue": "{0}, {1}",
"FilePickerCancelButtonLabel": "Otkaži",
"CantValidateValidationMessage": "Nismo mogli da potvrdimo ovu vezu. Proverite vezu i pokušajte ponovo.",
"ChangeFileLinkLabel": "Promeni datoteku",
"ChangeImageLinkLabel": "Promeni sliku",
"ChooseFileLinkLabel": "Odaberi datoteku",
"ChooseImageLinkLabel": "Odaberi sliku",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Vi ste odgovorni za poštovanje tuđih prava, uključujući autorska prava.",
"CreativeCommonsMessage": "Ovi rezultati su označeni Creative Commons licencama. Pregledajte licence da biste se uverili da se pridržavate.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Dokument, Izmenjeni {1}, koje je uredio {2}, Privatni",
"DocumentLibraries": "Biblioteke dokumenata",
"EditedByNamePlate": "uredio ",
"EmptyFileSize": "0 bajta",
"FilePickerHeader": "Odabirač datoteka",
"FileSizeField": "Veličina datoteke",
"FolderAltText": "Fasciklu",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Fascikla, {1}, koje su uredile {2}, {3} stavke, Privatno",
"FromLinkLinkLabel": "Iz veze",
"ImageAltText": ". {0} slike",
"ImageAriaLabelTemplate": ". {0} slike",
"ImageLayoutPlaceholderText": "Raspored",
"ImageSizePlaceholderText": "Veličina slike",
"ItemChildCountField": "Broj dete artikla",
"LayoutOptionAll": "Sve",
"LayoutOptionSquare": "Kvadratnih",
"LayoutOptionTall": "Visok",
"LayoutOptionWide": "Љirom",
"LearnMoreLink": "Uči više.",
"LicenseOptionAll": "Sve",
"LicenseOptionAny": "Samo kreativni commons",
"LicensePlaceholderText": "Dozvolu",
"LinkFileInstructions": "Lepljenje veze ka datoteci u usluzi OneDrive for Business ili SharePoint Online",
"LinkHeader": "Iz veze",
"LinkImageInstructions": "Lepljenje veze ka slici u usluzi OneDrive for Business ili SharePoint Online",
"ListLayoutAriaLabel": "Prikažite opcije. {0} {1} .",
"ListLayoutCompact": "Sažeti prikaz",
"ListLayoutCompactDescription": "Prikazivanje stavki i detalja na sažetoj listi",
"ListLayoutList": "Prikaz liste",
"ListLayoutListDescrition": "Prikazivanje stavki i detalja na listi",
"ListLayoutTile": "Prikaz pločica",
"ListLayoutTileDescription": "Prikazivanje stavki sa pregledima pločica",
"ListOptionsAlt": "Prikažite opcije. {0} izabran .",
"ListOptionsTitle": "Otvaranje menija sa opcijama prikaza",
"Loading": "Učitavanje...",
"ModifiedByField": "Izmenio",
"ModifiedField": "Datum izmene",
"NameField": "Ime",
"No": "Ne",
"ProvidedValueIsInvalid": "Obezbeđena vrednost je nevažeća",
"NoExternalLinksValidationMessage": "Podržavamo samo povezivanje sa datotekama u vašoj organizaciji.",
"NoImageValidationMessage": "Ovo nije veza sa tipom datoteke koji podržavamo. Možete da se povežete samo sa slikom.",
"NoRecentFiles": "Nema skorašnjih datoteka",
"NoRecentFilesDescription": "Pokušajte da izaberete datoteku sa lokacije ili da je otpremite sa uređaja.",
"NoResultsBadEnglish": "Rezultat nije pronađen. Pokušajte da promenite opcije filtera",
"ODModifiedField": "Izmenio",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Izmenjeno {2}, koje je uredio {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Ova stavka je sa OneDrive lokacije. Datoteke i fascikle u usluzi OneDrive su privatne, osim ako ih ne delite. Da li ste delili ovu datoteku sa članovima vaše lokacije da bi mogli da je uokaze?",
"OneDriveConfirmDialogTitle": "Samo proveravam...",
"OneDriveEmptyFolderAlt": "Isprazni fasciklu",
"OneDriveEmptyFolderDescription": "Da biste dodali datoteke, idite u OneDrive. U ovu fasciklu možete dodati i datoteke pomoću OneDrive aplikacije za računar.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Ova fascikla je prazna",
"OneDriveRootFolderName": "Datoteke",
"OpenButtonLabel": "Otvorite",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Slike i datoteke koje obezbeđuje vaša organizacija",
"PoweredByBing": "Napajanje usluge Bing",
"RecentDocumentsHeader": "Nedavni dokumenti",
"RecentImagesHeader": "Nedavne slike",
"RecentLinkLabel": "Nedavne",
"SearchBoxPlaceholder": "Web pretraga",
"SearchResultAlt": "Rezultat slike za {0}.",
"SearchResultAriaLabel": "Pritisnite taster Enter da biste otvorili izvor slike na novoj kartici.",
"Selected": "Izabrali",
"SharingField": "Deljenje",
"SharingPrivate": "Privatni",
"SharingShared": "Deljene",
"SiteLinkLabel": "Lokacije",
"SizeOptionAll": "Sve",
"SizeOptionExtraLarge": "Veoma veliko",
"SizeOptionLarge": "Velike",
"SizeOptionMedium": "Srednje jak",
"SizeOptionSmall": "Mali",
"SizeUnit": [
"Bajtova",
"Da",
"Mb",
"Idi",
"Tb",
"Pb (Pb)",
"Eb",
"Na primer.",
"Yb"
],
"SorryWebSearch": "Žao mi je, ova funkcija nije primenjena u ovom uzorku, jer bi zahtevala Bing API ključ.",
"SortedAscending": "Sortirano od A do Š",
"SortedDescending": "Sortirano od Z do A",
"TypeAriaLabel": "Operacije kolone za tip datoteke, pritisnite da biste sortirali po tipu datoteke",
"UploadFileHeader": "Otpremanje datoteke",
"UploadImageHeader": "Otpremanje slike",
"UploadLinkLabel": "Otpremanje",
"WebSearchLinkLabel": "Web pretraga",
"Yes": "Da",
"StockImagesLinkLabel": "Berzanske slike",
"StockImagesHeader": "Slike akcija",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Za nekoliko sekundi",
"L_RelativeDateTime_AFewSeconds": "Pre par sekundi",
"L_RelativeDateTime_AboutAMinuteFuture": "Za oko minut",
"L_RelativeDateTime_AboutAMinute": "Pre oko minut.",
"L_RelativeDateTime_XMinutesFuture": "{0} minuta za {0} minuta",
"L_RelativeDateTime_XMinutes": "{0} minut. {0} dva minuta.",
"L_RelativeDateTime_XMinutesFutureIntervals": "1 do 1 evro 2-",
"L_RelativeDateTime_XMinutesIntervals": "1 do 1 evro 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Za oko sat vremena",
"L_RelativeDateTime_AboutAnHour": "Pre sat vremena",
"L_RelativeDateTime_Tomorrow": "Jutro",
"L_RelativeDateTime_Yesterday": "Ovde",
"L_RelativeDateTime_TomorrowAndTime": "Sutra u {0}",
"L_RelativeDateTime_YesterdayAndTime": "Juče u {0}",
"L_RelativeDateTime_XHoursFuture": "{0} ujutru {0} ujutru.",
"L_RelativeDateTime_XHours": "{0} sata. {0} sata.",
"L_RelativeDateTime_XHoursFutureIntervals": "1 do 1 evro 2-",
"L_RelativeDateTime_XHoursIntervals": "1 do 1 evro 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} u {0} za nekoliko dana.",
"L_RelativeDateTime_XDays": "{0} dana. {0} dana",
"L_RelativeDateTime_XDaysFutureIntervals": "1 do 1 evro 2-",
"L_RelativeDateTime_XDaysIntervals": "1 do 1 evro 2-",
"L_RelativeDateTime_Today": "Danas"
},
"NewFolderNamePlaceholder": "Unesite ime fascikle",
"FolderFilterBoxPlaceholder": "Filtriranje fascikli po imenu",
"FolderExplorerLoading": "Učitavanje fascikli...",
"FolderExplorerNoItems": "Ova fascikla nema potfascikle.",
"IncorrectGuidValidationMessage": "Unesite važeći GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Tillämpa",
"ImportButtonLabel": "Importera",
"ExportButtonLabel": "Exportera",
"FormatCodeButtonLabel": "Formatera kod",
"JsonFileRequiredMessage": "Vänligen ladda upp en json-fil",
"SaveButtonLabel": "Spara",
"CancelButtonLabel": "Avbryt",
"PeoplePickerSuggestedContacts": "Förslag på personer",
"PeoplePickerSuggestedGroups": "Föreslagna grupper",
"PeoplePickerSuggestedCombined": "Förslag på personer och grupper",
"PeoplePickerNoResults": "Inget resultat hittades",
"PeoplePickerLoading": "Laddar resultat ...",
"DatePickerMonthLongJanuary": "januari",
"DatePickerMonthShortJanuary": "Januari",
"DatePickerMonthLongFebruary": "februari",
"DatePickerMonthShortFebruary": "Februari",
"DatePickerMonthLongMarch": "mars",
"DatePickerMonthShortMarch": "Mars",
"DatePickerMonthLongApril": "april",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "maj",
"DatePickerMonthShortMay": "maj",
"DatePickerMonthLongJune": "juni",
"DatePickerMonthShortJune": "Jun",
"DatePickerMonthLongJuly": "juli",
"DatePickerMonthShortJuly": "Juli",
"DatePickerMonthLongAugust": "augusti",
"DatePickerMonthShortAugust": "Augusti",
"DatePickerMonthLongSeptember": "september",
"DatePickerMonthShortSeptember": "sju",
"DatePickerMonthLongOctober": "oktober",
"DatePickerMonthShortOctober": "Oktober",
"DatePickerMonthLongNovember": "november",
"DatePickerMonthShortNovember": "November",
"DatePickerMonthLongDecember": "december",
"DatePickerMonthShortDecember": "December",
"DatePickerDayLongSunday": "söndag",
"DatePickerDayShortSunday": "Sol",
"DatePickerDayLongMonday": "måndag",
"DatePickerDayShortMonday": "Min",
"DatePickerDayLongTuesday": "tisdag",
"DatePickerDayShortTuesday": "Tis",
"DatePickerDayLongWednesday": "onsdag",
"DatePickerDayShortWednesday": "Ons",
"DatePickerDayLongThursday": "torsdag",
"DatePickerDayShortThursday": "Tors",
"DatePickerDayLongFriday": "fredag",
"DatePickerDayShortFriday": "Fre",
"DatePickerDayLongSaturday": "lördag",
"DatePickerDayShortSaturday": "Lör",
"DatepickerGoToToday": "I dag",
"DateTimePickerDate": "Datum",
"DateTimePickerTime": "Tid",
"ColorPickerButtonTitle": "Välj en färg",
"NotNumberValidationMessage": "Värdet ska vara ett tal, faktiskt är:",
"MinimumNumberValidationMessage": "Värdet bör vara större än eller lika med:",
"MaximumNumberValidationMessage": "Värdet bör vara lägre än eller lika med:",
"TermPickerNoTerms": "Termuppsättning innehåller inga villkor",
"TermPickerExpandTitle": "Expandera den här termuppsättningen",
"TermPickerExpandNode": "Expandera denna Nod",
"TermPickerMenuTermSet": "Meny för termuppsättning",
"TermPickerMenuGroup": "Meny för Term Group",
"TermPickerInLabel": "I",
"TermPickerTermSetLabel": "Termuppsättning",
"propertyFieldMultiSelectNoOptions": "Inga alternativ att välja",
"CollectionDataEmptyFields": "Inga fält lämnades för insamlingsdata.",
"CollectionDataEmptyValue": "Inga data i din samling.",
"CollectionAddRowButtonLabel": "Lägga till data i samlingen",
"CollectionDeleteRowButtonLabel": "Ta bort den aktuella raden",
"CollectionSaveAndAddButtonLabel": "Lägg till och spara",
"CollectionDataItemShowErrorsLabel": "Visa radfel",
"CollectionDataItemFieldRequiredLabel": "Fält är obligatoriskt.",
"InvalidUrlError": "Den medföljande webbadressen är inte giltig",
"DescriptionLabel": "Beskrivning",
"MoreInfoLabel": "Mer info",
"AboutGroupLabel": "Om",
"SitePickerSearchBoxPlaceholder": "Sök...",
"SitePickerNoResults": "Inga sökresultat",
"SitePickerSitesChosen": "Webbplats(er) vald",
"TeamPickerSearchBoxPlaceholder": "Sök...",
"TeamPickerNoResults": "Inga sökresultat",
"TeamPickerSitesChosen": "Lag(er) utvalda",
"AddFileButtonLabel": "Lägg till fil",
"AddImageButtonLabel": "Lägg till bild",
"AriaCellValue": "{0}, {1}",
"FilePickerCancelButtonLabel": "Avbryt",
"CantValidateValidationMessage": "Vi kunde inte verifiera den här länken. Vänligen kontrollera länken och försök igen.",
"ChangeFileLinkLabel": "Ändra fil",
"ChangeImageLinkLabel": "Ändra bild",
"ChooseFileLinkLabel": "Välj fil",
"ChooseImageLinkLabel": "Välj bild",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Du ansvarar för att andras rättigheter respekteras, inklusive upphovsrätt.",
"CreativeCommonsMessage": "Dessa resultat är märkta med Creative Commons-licenser. Granska licenserna för att säkerställa att du följer reglerna.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Dokument, Ändrad {1}, redigerad av {2}, Privat",
"DocumentLibraries": "Dokumentbibliotek",
"EditedByNamePlate": "redigerad av ",
"EmptyFileSize": "0 byte",
"FilePickerHeader": "Filväljare",
"FileSizeField": "Filstorlek",
"FolderAltText": "Mappen",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Mapp, Ändrad {1}, redigerad av {2}, {3} objekt, Privat",
"FromLinkLinkLabel": "Från en länk",
"ImageAltText": ". {0} Bild",
"ImageAriaLabelTemplate": ". {0} Bild",
"ImageLayoutPlaceholderText": "Layout",
"ImageSizePlaceholderText": "Bildstorlek",
"ItemChildCountField": "Artikel under, under, antal",
"LayoutOptionAll": "Alla",
"LayoutOptionSquare": "Square",
"LayoutOptionTall": "Lång",
"LayoutOptionWide": "Brett",
"LearnMoreLink": "Lära sig mer.",
"LicenseOptionAll": "Alla",
"LicenseOptionAny": "Endast Creative Commons",
"LicensePlaceholderText": "Licens",
"LinkFileInstructions": "Klistra in en länk till en fil i OneDrive för företag eller SharePoint Online",
"LinkHeader": "Från en länk",
"LinkImageInstructions": "Klistra in en länk till en bild i OneDrive för företag eller SharePoint Online",
"ListLayoutAriaLabel": "Visa alternativ. {0} {1} .",
"ListLayoutCompact": "Kompakt vy",
"ListLayoutCompactDescription": "Visa objekt och detaljer i en kompakt lista",
"ListLayoutList": "Listvy",
"ListLayoutListDescrition": "Visa objekt och detaljer i en lista",
"ListLayoutTile": "Vyn Sida vid sida",
"ListLayoutTileDescription": "Visa objekt med panelförhandsgranskningar",
"ListOptionsAlt": "Visa alternativ. {0} markerad .",
"ListOptionsTitle": "Öppna menyn visa alternativ",
"Loading": "Laddar...",
"ModifiedByField": "Ändrad av",
"ModifiedField": "Datum ändrat",
"NameField": "Namn",
"No": "Nej",
"ProvidedValueIsInvalid": "Förutsatt värde är ogiltigt",
"NoExternalLinksValidationMessage": "Vi stöder endast länkning till filer i din egen organisation.",
"NoImageValidationMessage": "Det här är ingen länk till en filtyp som vi stöder. Du kan bara länka till en bild.",
"NoRecentFiles": "Inga senaste filer",
"NoRecentFilesDescription": "Prova att välja en fil från webbplatsen, eller ladda upp en från enheten.",
"NoResultsBadEnglish": "Det finns inget resultat hittades. Försök att ändra filteralternativen",
"ODModifiedField": "Ändrade",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Ändrad {2}, redigerad av {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Det här objektet kommer från din OneDrive-webbplats. Filer och mappar i OneDrive är privata om du inte delar dem. Har du delat den här filen med din webbplats medlemmar så att de kan ccess det?",
"OneDriveConfirmDialogTitle": "Bara kolla...",
"OneDriveEmptyFolderAlt": "Tom mapp",
"OneDriveEmptyFolderDescription": "Om du vill lägga till filer går du till din OneDrive. Du kan också lägga till filer i den här mappen med hjälp av OneDrive-appen för datorn.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Den här mappen är tom",
"OneDriveRootFolderName": "filer",
"OpenButtonLabel": "Öppna",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Bilder och filer som tillhandahålls av din organisation",
"PoweredByBing": "Drivs av Bing",
"RecentDocumentsHeader": "Senaste dokumenten",
"RecentImagesHeader": "Färska bilder",
"RecentLinkLabel": "Senaste",
"SearchBoxPlaceholder": "Webbsökning",
"SearchResultAlt": "Bildresultat för {0}.",
"SearchResultAriaLabel": "Tryck på retur för att öppna bildkällan i en ny flik.",
"Selected": "Markerade",
"SharingField": "Dela",
"SharingPrivate": "Privat",
"SharingShared": "Delade",
"SiteLinkLabel": "Webbplats",
"SizeOptionAll": "Alla",
"SizeOptionExtraLarge": "Extra Stor",
"SizeOptionLarge": "Stora",
"SizeOptionMedium": "Medium",
"SizeOptionSmall": "Liten",
"SizeUnit": [
"Byte",
"Att",
"Mb",
"Gå",
"Tb",
"Pb (Pb)",
"Eb",
"Till exempel.",
"Yb"
],
"SorryWebSearch": "Tyvärr, denna funktion implementeras inte i det här provet, eftersom det skulle kräva en Bing API-nyckel.",
"SortedAscending": "Sorterat A till Ö",
"SortedDescending": "Sorterad Z till A",
"TypeAriaLabel": "Kolumnåtgärder för Filtyp, Tryck för att sortera på Filtyp",
"UploadFileHeader": "Ladda upp fil",
"UploadImageHeader": "Ladda upp bild",
"UploadLinkLabel": "Uppladdning",
"WebSearchLinkLabel": "Webbsökning",
"Yes": "Ja",
"StockImagesLinkLabel": "Arkivbilder",
"StockImagesHeader": "Lager Bilder",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "På några sekunder",
"L_RelativeDateTime_AFewSeconds": "För några sekunder sedan",
"L_RelativeDateTime_AboutAMinuteFuture": "På ungefär en minut",
"L_RelativeDateTime_AboutAMinute": "För en minut sen.",
"L_RelativeDateTime_XMinutesFuture": "{0} minuter i {0} minut",
"L_RelativeDateTime_XMinutes": "{0} minut sedan. {0} minuter sedan.",
"L_RelativeDateTime_XMinutesFutureIntervals": "1 till 1 euro 2-",
"L_RelativeDateTime_XMinutesIntervals": "1 till 1 euro 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Om ungefär en timme",
"L_RelativeDateTime_AboutAnHour": "För ungefär en timme sedan",
"L_RelativeDateTime_Tomorrow": "morgon",
"L_RelativeDateTime_Yesterday": "Här inne",
"L_RelativeDateTime_TomorrowAndTime": "I morgon på {0}",
"L_RelativeDateTime_YesterdayAndTime": "Igår i {0}",
"L_RelativeDateTime_XHoursFuture": "{0} på {0}.00.",
"L_RelativeDateTime_XHours": "{0} timmar sen. {0} timmar sen.",
"L_RelativeDateTime_XHoursFutureIntervals": "1 till 1 euro 2-",
"L_RelativeDateTime_XHoursIntervals": "1 till 1 euro 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} om {0} om några dagar.",
"L_RelativeDateTime_XDays": "{0} dag sen. {0} dagar sedan",
"L_RelativeDateTime_XDaysFutureIntervals": "1 till 1 euro 2-",
"L_RelativeDateTime_XDaysIntervals": "1 till 1 euro 2-",
"L_RelativeDateTime_Today": "I dag"
},
"NewFolderNamePlaceholder": "Ange ditt mappnamn",
"FolderFilterBoxPlaceholder": "Filtrera mappar efter namn",
"FolderExplorerLoading": "Läser in mappar...",
"FolderExplorerNoItems": "Den här mappen har inga undermappar.",
"IncorrectGuidValidationMessage": "Ange ett giltigt GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Uygulamak",
"ImportButtonLabel": "Ithalat",
"ExportButtonLabel": "Ihracat",
"FormatCodeButtonLabel": "Biçim Kodu",
"JsonFileRequiredMessage": "Lütfen bir json dosyası yükleyin",
"SaveButtonLabel": "Kaydetmek",
"CancelButtonLabel": "İptal",
"PeoplePickerSuggestedContacts": "Önerilen kişiler",
"PeoplePickerSuggestedGroups": "Önerilen gruplar",
"PeoplePickerSuggestedCombined": "Önerilen kişi ve gruplar",
"PeoplePickerNoResults": "Sonuç bulunamadı",
"PeoplePickerLoading": "Yükleme sonuçları ...",
"DatePickerMonthLongJanuary": "Ocak",
"DatePickerMonthShortJanuary": "Ocak",
"DatePickerMonthLongFebruary": "Şubat",
"DatePickerMonthShortFebruary": "Şubat",
"DatePickerMonthLongMarch": "Mart",
"DatePickerMonthShortMarch": "Mart",
"DatePickerMonthLongApril": "Nisan",
"DatePickerMonthShortApril": "Nisan",
"DatePickerMonthLongMay": "Mayıs",
"DatePickerMonthShortMay": "Mayıs",
"DatePickerMonthLongJune": "Haziran",
"DatePickerMonthShortJune": "Haziran",
"DatePickerMonthLongJuly": "Temmuz",
"DatePickerMonthShortJuly": "Temmuz",
"DatePickerMonthLongAugust": "Ağustos",
"DatePickerMonthShortAugust": "Ağustos",
"DatePickerMonthLongSeptember": "Eylül",
"DatePickerMonthShortSeptember": "Yedi",
"DatePickerMonthLongOctober": "Ekim",
"DatePickerMonthShortOctober": "Ekim",
"DatePickerMonthLongNovember": "Kasım",
"DatePickerMonthShortNovember": "Kasım",
"DatePickerMonthLongDecember": "Aralık",
"DatePickerMonthShortDecember": "Aralık",
"DatePickerDayLongSunday": "Pazar",
"DatePickerDayShortSunday": "Güneş",
"DatePickerDayLongMonday": "Pazartesi",
"DatePickerDayShortMonday": "Benim",
"DatePickerDayLongTuesday": "Salı",
"DatePickerDayShortTuesday": "Sal",
"DatePickerDayLongWednesday": "Çarşamba",
"DatePickerDayShortWednesday": "Çrş",
"DatePickerDayLongThursday": "Perşembe",
"DatePickerDayShortThursday": "Perşembe",
"DatePickerDayLongFriday": "Cuma",
"DatePickerDayShortFriday": "Fri",
"DatePickerDayLongSaturday": "Cumartesi",
"DatePickerDayShortSaturday": "Sat",
"DatepickerGoToToday": "Bugün",
"DateTimePickerDate": "Tarih",
"DateTimePickerTime": "Saat",
"ColorPickerButtonTitle": "Renk Seçin",
"NotNumberValidationMessage": "Değer bir sayı olmalıdır, gerçek:",
"MinimumNumberValidationMessage": "Değer aşağıdakilerden büyük veya eşit olmalıdır:",
"MaximumNumberValidationMessage": "Değer aşağıdakilerden daha düşük veya eşit olmalıdır:",
"TermPickerNoTerms": "Terim kümesi herhangi bir koşul içermez",
"TermPickerExpandTitle": "Bu Terim Kümesini Genişlet",
"TermPickerExpandNode": "Bu Düğümü Genişlet",
"TermPickerMenuTermSet": "Dönem Seti Menüsü",
"TermPickerMenuGroup": "Dönem Grubu Menüsü",
"TermPickerInLabel": "Inç",
"TermPickerTermSetLabel": "Dönem Seti",
"propertyFieldMultiSelectNoOptions": "Seçilecek seçenek yok",
"CollectionDataEmptyFields": "Toplama verileri için alan sağlanmadı.",
"CollectionDataEmptyValue": "Koleksiyonunuzda veri yok.",
"CollectionAddRowButtonLabel": "Koleksiyona veri ekleme",
"CollectionDeleteRowButtonLabel": "Geçerli satırı silme",
"CollectionSaveAndAddButtonLabel": "Ekle ve kaydet",
"CollectionDataItemShowErrorsLabel": "Satır hatalarını göster",
"CollectionDataItemFieldRequiredLabel": "Alan gereklidir.",
"InvalidUrlError": "Sağlanan URL geçerli değil",
"DescriptionLabel": "Açıklama",
"MoreInfoLabel": "Daha fazla bilgi",
"AboutGroupLabel": "Hakkı -nda",
"SitePickerSearchBoxPlaceholder": "Arama...",
"SitePickerNoResults": "Arama sonucu yok",
"SitePickerSitesChosen": "Web sitesi(ler) seçildi",
"TeamPickerSearchBoxPlaceholder": "Arama...",
"TeamPickerNoResults": "Arama sonucu yok",
"TeamPickerSitesChosen": "Takımlar(lar) seçildi",
"AddFileButtonLabel": "Dosya ekleme",
"AddImageButtonLabel": "Resim ekleme",
"AriaCellValue": "{0} sütun, {1}",
"FilePickerCancelButtonLabel": "İptal",
"CantValidateValidationMessage": "Bu bağlantıyı doğrulayamadık. Lütfen bağlantıyı kontrol edin ve yeniden deneyin.",
"ChangeFileLinkLabel": "Dosyayı değiştirme",
"ChangeImageLinkLabel": "Görüntüyü değiştirme",
"ChooseFileLinkLabel": "Dosyayı seçin",
"ChooseImageLinkLabel": "Resmi seçin",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Telif hakkı da dahil olmak üzere başkalarının haklarına saygı göstermeksizin sorumlusunuz.",
"CreativeCommonsMessage": "Bu sonuçlar Creative Commons lisansları ile etiketlenir. Uymanızı sağlamak için lisansları gözden geçirin.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Belge, Değiştirilmiş {1}, {2}, Özel",
"DocumentLibraries": "Belge kitaplıkları",
"EditedByNamePlate": "tarafından düzenlendi ",
"EmptyFileSize": "0 bayt",
"FilePickerHeader": "Dosya Seçici",
"FileSizeField": "Dosya Boyutu",
"FolderAltText": "Klasör",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Klasör, Modifiye {1}, {2}, {3} öğeleri, Özel tarafından düzenlenen",
"FromLinkLinkLabel": "Bir bağlantıdan",
"ImageAltText": ". {0} Görüntü",
"ImageAriaLabelTemplate": ". {0} Görüntü",
"ImageLayoutPlaceholderText": "Düzen",
"ImageSizePlaceholderText": "Görüntü boyutu",
"ItemChildCountField": "Öğe Çocuk Sayısı",
"LayoutOptionAll": "Tüm",
"LayoutOptionSquare": "Meydanı",
"LayoutOptionTall": "Uzun",
"LayoutOptionWide": "Geniş",
"LearnMoreLink": "Daha fazla bilgi edinin.",
"LicenseOptionAll": "Tüm",
"LicenseOptionAny": "Yalnızca Creative Commons",
"LicensePlaceholderText": "Lisans",
"LinkFileInstructions": "OneDrive for Business veya SharePoint Online'da bir dosyaya bağlantı yapıştır",
"LinkHeader": "Bir bağlantıdan",
"LinkImageInstructions": "OneDrive for Business veya SharePoint Online'daki bir resme bağlantı yapıştır",
"ListLayoutAriaLabel": "Seçenekleri görüntüleyin. {0} {1} .",
"ListLayoutCompact": "Kompakt görünüm",
"ListLayoutCompactDescription": "Öğeleri ve ayrıntıları kompakt bir listede görüntüleme",
"ListLayoutList": "Liste görünümü",
"ListLayoutListDescrition": "Öğeleri ve ayrıntıları listede görüntüleme",
"ListLayoutTile": "Döşeme görünümü",
"ListLayoutTileDescription": "Öğeleri döşeme önizlemeleriyle görüntüleme",
"ListOptionsAlt": "Seçenekleri görüntüleyin. {0} seçilir.",
"ListOptionsTitle": "Görünüm seçenekleri menüsünü açma",
"Loading": "Yükleme...",
"ModifiedByField": "Tarafından Modifiye",
"ModifiedField": "Değiştirilen Tarih",
"NameField": "Adı",
"No": "№",
"ProvidedValueIsInvalid": "Sağlanan değer geçersiz",
"NoExternalLinksValidationMessage": "Yalnızca kendi kuruluşunuzdaki dosyalara bağlantı etmeyi destekliyoruz.",
"NoImageValidationMessage": "Bu, desteklediğimiz bir dosya türüne bağlantı değildir. Yalnızca bir resme bağlantı kurabilirsiniz.",
"NoRecentFiles": "Son dosya yok",
"NoRecentFilesDescription": "Sitenizden bir dosya seçmeyi deneyin veya cihazınızdan bir dosya yükleyin.",
"NoResultsBadEnglish": "Sonuç bulunamadı. Filtre seçeneklerini değiştirmeyi deneyin",
"ODModifiedField": "Değiştirilmiş",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Modifiye {2}, {3}, {4}, {5} tarafından düzenlendi",
"OneDriveConfirmDialogBody": "Bu öğe OneDrive sitenizden dir. OneDrive'daki dosya ve klasörler siz paylaşmadığınız sürece özeldir. Bu dosyayı site üyelerinizle paylaştınız mı?",
"OneDriveConfirmDialogTitle": "Sadece kontrol ...",
"OneDriveEmptyFolderAlt": "Boş klasör",
"OneDriveEmptyFolderDescription": "Dosya eklemek için OneDrive'ınıza gidin. Ayrıca, bilgisayarınız için OneDrive uygulamasını kullanarak bu klasöre dosya ekleyebilirsiniz.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Bu klasör boş",
"OneDriveRootFolderName": "Dosyaları",
"OpenButtonLabel": "Açık",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Kuruluşunuz tarafından sağlanan resimler ve dosyalar",
"PoweredByBing": "Bing tarafından desteklenmektedir",
"RecentDocumentsHeader": "Son belgeler",
"RecentImagesHeader": "Son görüntüler",
"RecentLinkLabel": "Son",
"SearchBoxPlaceholder": "Web arama",
"SearchResultAlt": "{0} için görüntü sonucu.",
"SearchResultAriaLabel": "Yeni bir sekmede resim kaynağını açmak için enter tuşuna basın.",
"Selected": "Seçili",
"SharingField": "Paylaşım",
"SharingPrivate": "Özel",
"SharingShared": "Paylaşılan",
"SiteLinkLabel": "Site",
"SizeOptionAll": "Tüm",
"SizeOptionExtraLarge": "Ekstra Büyük",
"SizeOptionLarge": "Büyük",
"SizeOptionMedium": "Orta",
"SizeOptionSmall": "Küçük",
"SizeUnit": [
"Bayt",
"Hedef",
"Mb",
"Git",
"Tb",
"Pb (Pb)",
"Eb",
"Mesela.",
"Yb"
],
"SorryWebSearch": "Üzgünüz, bu işlev bu örnekte uygulanmaz, çünkü bir Bing API anahtarı gerektirir.",
"SortedAscending": "A'dan Z'ye Sıralanmış",
"SortedDescending": "Z'yi A'ya sıraladı",
"TypeAriaLabel": "Dosya türü için sütun işlemleri, Dosya türünde sıralamak için basın",
"UploadFileHeader": "Dosya yükle",
"UploadImageHeader": "Resim yükle",
"UploadLinkLabel": "Yüklemek",
"WebSearchLinkLabel": "Web arama",
"Yes": "Evet",
"StockImagesLinkLabel": "Stok görüntüleri",
"StockImagesHeader": "Stok Görselleri",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Saniyeler içinde",
"L_RelativeDateTime_AFewSeconds": "Birkaç saniye önce",
"L_RelativeDateTime_AboutAMinuteFuture": "Bir dakika içinde",
"L_RelativeDateTime_AboutAMinute": "Bir dakika kadar önce.",
"L_RelativeDateTime_XMinutesFuture": "{0} dakikada {0} dakika",
"L_RelativeDateTime_XMinutes": "{0} dakika önce. {0} dakika önce.",
"L_RelativeDateTime_XMinutesFutureIntervals": "1 - 1 euro 2-",
"L_RelativeDateTime_XMinutesIntervals": "1 - 1 euro 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Bir saat içinde",
"L_RelativeDateTime_AboutAnHour": "Yaklaşık bir saat önce",
"L_RelativeDateTime_Tomorrow": "Sabah",
"L_RelativeDateTime_Yesterday": "Burada",
"L_RelativeDateTime_TomorrowAndTime": "Yarın {0}'da",
"L_RelativeDateTime_YesterdayAndTime": "Dün {0}",
"L_RelativeDateTime_XHoursFuture": "{0} {0}.00.00",
"L_RelativeDateTime_XHours": "{0} saat önce. {0} saat önce.",
"L_RelativeDateTime_XHoursFutureIntervals": "1 - 1 euro 2-",
"L_RelativeDateTime_XHoursIntervals": "1 - 1 euro 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "birkaç gün içinde {0}'da {0}.",
"L_RelativeDateTime_XDays": "{0} gün önce. {0} gün önce",
"L_RelativeDateTime_XDaysFutureIntervals": "1 - 1 euro 2-",
"L_RelativeDateTime_XDaysIntervals": "1 - 1 euro 2-",
"L_RelativeDateTime_Today": "Bugün"
},
"NewFolderNamePlaceholder": "Klasör adınızı girin",
"FolderFilterBoxPlaceholder": "Klasörleri ada göre filtreleme",
"FolderExplorerLoading": "Klasörleri yükleme...",
"FolderExplorerNoItems": "Bu klasörde alt klasör yok.",
"IncorrectGuidValidationMessage": "Lütfen geçerli bir GUID girin"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "Áp dụng",
"ImportButtonLabel": "Nhập khẩu",
"ExportButtonLabel": "Xuất khẩu",
"FormatCodeButtonLabel": "Mã Định dạng",
"JsonFileRequiredMessage": "Vui lòng tải lên tệp json",
"SaveButtonLabel": "Lưu",
"CancelButtonLabel": "Hủy bỏ",
"PeoplePickerSuggestedContacts": "Người được đề xuất",
"PeoplePickerSuggestedGroups": "Nhóm được đề xuất",
"PeoplePickerSuggestedCombined": "Người và nhóm được đề xuất",
"PeoplePickerNoResults": "Không tìm thấy kết quả",
"PeoplePickerLoading": "Đang tải kết quả ...",
"DatePickerMonthLongJanuary": "Tháng 1",
"DatePickerMonthShortJanuary": "Jan",
"DatePickerMonthLongFebruary": "Tháng hai",
"DatePickerMonthShortFebruary": "Tháng 2",
"DatePickerMonthLongMarch": "Tháng 3",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "Tháng 4",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Tháng 5",
"DatePickerMonthShortMay": "Tháng 5",
"DatePickerMonthLongJune": "Tháng 6",
"DatePickerMonthShortJune": "Jun",
"DatePickerMonthLongJuly": "Tháng 7",
"DatePickerMonthShortJuly": "Tháng Bảy",
"DatePickerMonthLongAugust": "Tháng 8",
"DatePickerMonthShortAugust": "Tháng tám",
"DatePickerMonthLongSeptember": "Tháng 9",
"DatePickerMonthShortSeptember": "Bảy",
"DatePickerMonthLongOctober": "Tháng 10",
"DatePickerMonthShortOctober": "Tháng Mười",
"DatePickerMonthLongNovember": "Tháng 11",
"DatePickerMonthShortNovember": "Ngày",
"DatePickerMonthLongDecember": "Tháng 12",
"DatePickerMonthShortDecember": "Tháng mười hai",
"DatePickerDayLongSunday": "Chủ nhật",
"DatePickerDayShortSunday": "Sun",
"DatePickerDayLongMonday": "Thứ hai",
"DatePickerDayShortMonday": "Của tôi",
"DatePickerDayLongTuesday": "Thứ ba",
"DatePickerDayShortTuesday": "Thứ sáu",
"DatePickerDayLongWednesday": "Thứ tư",
"DatePickerDayShortWednesday": "Thứ tư",
"DatePickerDayLongThursday": "Thứ năm",
"DatePickerDayShortThursday": "Thứ Năm",
"DatePickerDayLongFriday": "Thứ sáu",
"DatePickerDayShortFriday": "Thứ sáu",
"DatePickerDayLongSaturday": "Thứ bảy",
"DatePickerDayShortSaturday": "Ngồi",
"DatepickerGoToToday": "Hôm nay",
"DateTimePickerDate": "Ngày",
"DateTimePickerTime": "Thời gian",
"ColorPickerButtonTitle": "Chọn một màu",
"NotNumberValidationMessage": "Giá trị phải là một số, thực tế là:",
"MinimumNumberValidationMessage": "Giá trị phải lớn hơn hoặc bằng:",
"MaximumNumberValidationMessage": "Giá trị phải thấp hơn hoặc bằng:",
"TermPickerNoTerms": "Tập hợp thuật ngữ không chứa bất kỳ điều khoản nào",
"TermPickerExpandTitle": "rộng Tập Hợp Thuật ngữ này",
"TermPickerExpandNode": "rộng Nút này",
"TermPickerMenuTermSet": "Menu cho Tập Hợp Thuật ngữ",
"TermPickerMenuGroup": "Menu cho Nhóm Thuật ngữ",
"TermPickerInLabel": "In",
"TermPickerTermSetLabel": "Tập Hợp Thuật ngữ",
"propertyFieldMultiSelectNoOptions": "Không có tùy chọn để chọn",
"CollectionDataEmptyFields": "Không có trường nào được cung cấp cho dữ liệu thu thập.",
"CollectionDataEmptyValue": "Không có dữ liệu trong bộ sưu tập của bạn.",
"CollectionAddRowButtonLabel": "Thêm dữ liệu vào bộ sưu tập",
"CollectionDeleteRowButtonLabel": "Xóa hàng hiện tại",
"CollectionSaveAndAddButtonLabel": "Thêm và lưu",
"CollectionDataItemShowErrorsLabel": "Hiện lỗi hàng",
"CollectionDataItemFieldRequiredLabel": "Trường là bắt buộc.",
"InvalidUrlError": "URL được cung cấp không hợp lệ",
"DescriptionLabel": "Mô tả",
"MoreInfoLabel": "Xem thêm thông tin",
"AboutGroupLabel": "Về",
"SitePickerSearchBoxPlaceholder": "Tìm...",
"SitePickerNoResults": "Không có kết quả tìm kiếm",
"SitePickerSitesChosen": "(Các) trang web được chọn",
"TeamPickerSearchBoxPlaceholder": "Tìm...",
"TeamPickerNoResults": "Không có kết quả tìm kiếm",
"TeamPickerSitesChosen": "(Các) đội được chọn",
"AddFileButtonLabel": "Thêm tệp",
"AddImageButtonLabel": "Thêm ảnh",
"AriaCellValue": "{0}, {1}",
"FilePickerCancelButtonLabel": "Hủy bỏ",
"CantValidateValidationMessage": "Chúng tôi không thể xác minh liên kết này. Vui lòng kiểm tra liên kết và thử lại.",
"ChangeFileLinkLabel": "Thay đổi tệp",
"ChangeImageLinkLabel": "Thay đổi hình ảnh",
"ChooseFileLinkLabel": "Chọn tệp",
"ChooseImageLinkLabel": "Chọn hình ảnh",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "Bạn có trách nhiệm tôn trọng quyền của người khác, bao gồm cả bản quyền.",
"CreativeCommonsMessage": "Những kết quả này được gắn thẻ với giấy phép Creative Commons. Xem lại giấy phép để đảm bảo bạn tuân thủ.",
"DateFormat": "MM/DD/YYYY hh:mm A",
"DocumentLabelTemplate": "{0}, Tài liệu, Sửa đổi {1}, chỉnh sửa bởi {2}, Riêng tư",
"DocumentLibraries": "Thư viện tài liệu",
"EditedByNamePlate": "chỉnh sửa bởi ",
"EmptyFileSize": "0 byte",
"FilePickerHeader": "Bộ chọn Tệp",
"FileSizeField": "Kích cỡ Tệp",
"FolderAltText": "Thư mục",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0}, Thư mục, Sửa đổi {1}, chỉnh sửa bởi {2}, {3} mục, Riêng tư",
"FromLinkLinkLabel": "Từ một liên kết",
"ImageAltText": ". {0} ảnh",
"ImageAriaLabelTemplate": ". {0} ảnh",
"ImageLayoutPlaceholderText": "Bố trí",
"ImageSizePlaceholderText": "Kích cỡ ảnh",
"ItemChildCountField": "Số lượng Con Khoản mục",
"LayoutOptionAll": "Tất cả",
"LayoutOptionSquare": "Square",
"LayoutOptionTall": "Cao",
"LayoutOptionWide": "Rộng",
"LearnMoreLink": "Tìm hiểu thêm.",
"LicenseOptionAll": "Tất cả",
"LicenseOptionAny": "Chỉ Creative Commons",
"LicensePlaceholderText": "Giấy phép",
"LinkFileInstructions": "Dán nối kết đến tệp trong OneDrive for Business hoặc SharePoint Online",
"LinkHeader": "Từ một liên kết",
"LinkImageInstructions": "Dán nối kết đến ảnh trong OneDrive for Business hoặc SharePoint Online",
"ListLayoutAriaLabel": "Xem tùy chọn. {0} {1} .",
"ListLayoutCompact": "Dạng xem thu gọn",
"ListLayoutCompactDescription": "Xem các mục và chi tiết trong danh sách nhỏ gọn",
"ListLayoutList": "Dạng xem danh sách",
"ListLayoutListDescrition": "Xem mục và chi tiết trong danh sách",
"ListLayoutTile": "Dạng xem lát xếp",
"ListLayoutTileDescription": "Xem các mục có bản xem trước hình xếp",
"ListOptionsAlt": "Xem tùy chọn. {0} chọn .",
"ListOptionsTitle": "Mở menu tùy chọn dạng xem",
"Loading": "Tải...",
"ModifiedByField": "Sửa đổi bởi",
"ModifiedField": "Ngày Sửa đổi",
"NameField": "Tên",
"No": "Không",
"ProvidedValueIsInvalid": "Giá trị được cung cấp không hợp lệ",
"NoExternalLinksValidationMessage": "Chúng tôi chỉ hỗ trợ liên kết đến các tệp trong tổ chức của riêng bạn.",
"NoImageValidationMessage": "Đây không phải là liên kết đến loại tệp mà chúng tôi hỗ trợ. Bạn chỉ có thể liên kết đến một hình ảnh.",
"NoRecentFiles": "Không có tệp gần đây",
"NoRecentFilesDescription": "Thử chọn tệp từ trang web của bạn hoặc tải tệp lên từ thiết bị của bạn.",
"NoResultsBadEnglish": "Không tìm thấy kết quả. Cố gắng thay đổi các tùy chọn bộ lọc",
"ODModifiedField": "Lần",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}, {1}, Sửa đổi {2}, chỉnh sửa bởi {3}, {4}, {5}",
"OneDriveConfirmDialogBody": "Mục này đến từ site OneDrive của bạn. Tệp và thư mục trong OneDrive là riêng tư trừ khi bạn chia sẻ chúng. Bạn đã chia sẻ tệp này với các thành viên site của bạn để họ có thể truy xuất nó chưa?",
"OneDriveConfirmDialogTitle": "Chỉ cần kiểm tra...",
"OneDriveEmptyFolderAlt": "Làm rỗng cặp",
"OneDriveEmptyFolderDescription": "Để thêm tệp, hãy đi tới OneDrive của bạn. Bạn cũng có thể thêm tệp vào thư mục này bằng ứng dụng OneDrive cho máy tính của mình.",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "Cặp này rỗng",
"OneDriveRootFolderName": "Tập tin",
"OpenButtonLabel": "Mở",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "Hình ảnh và tệp do tổ chức của bạn cung cấp",
"PoweredByBing": "Được hỗ trợ bởi Bing",
"RecentDocumentsHeader": "Tài liệu gần đây",
"RecentImagesHeader": "Hình ảnh gần đây",
"RecentLinkLabel": "Gần đây",
"SearchBoxPlaceholder": "Tìm kiếm trên web",
"SearchResultAlt": "Kết quả hình ảnh cho {0}.",
"SearchResultAriaLabel": "Nhấn Enter để mở nguồn ảnh trong tab mới.",
"Selected": "Chọn",
"SharingField": "Chia sẻ",
"SharingPrivate": "Riêng",
"SharingShared": "Chia sẻ",
"SiteLinkLabel": "Trang web",
"SizeOptionAll": "Tất cả",
"SizeOptionExtraLarge": "Cực lớn",
"SizeOptionLarge": "Lớn",
"SizeOptionMedium": "Đau vừa",
"SizeOptionSmall": "Nhỏ",
"SizeUnit": [
"Byte",
"Để",
"Mb",
"Đi",
"Tb",
"Pb (Pb) là gì ?",
"Eb",
"Ví dụ.",
"Yb"
],
"SorryWebSearch": "Rất tiếc, chức năng này không được triển khai trong mẫu này, vì nó sẽ yêu cầu khóa API Bing.",
"SortedAscending": "Đã sắp xếp từ A đến Z",
"SortedDescending": "Đã sắp xếp từ Z đến A",
"TypeAriaLabel": "Thao tác cột cho Loại tệp, Nhấn để sắp xếp theo loại Tệp",
"UploadFileHeader": "Tải tệp lên",
"UploadImageHeader": "Tải ảnh lên",
"UploadLinkLabel": "Tải lên",
"WebSearchLinkLabel": "Tìm kiếm trên web",
"Yes": "Có",
"StockImagesLinkLabel": "Hình ảnh chứng khoán",
"StockImagesHeader": "Hình ảnh chứng khoán",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "Chỉ trong vài giây",
"L_RelativeDateTime_AFewSeconds": "Một vài giây trước",
"L_RelativeDateTime_AboutAMinuteFuture": "Trong khoảng một phút",
"L_RelativeDateTime_AboutAMinute": "Khoảng một phút trước.",
"L_RelativeDateTime_XMinutesFuture": "{0} phút trong {0} phút",
"L_RelativeDateTime_XMinutes": "{0} phút trước. {0} phút trước.",
"L_RelativeDateTime_XMinutesFutureIntervals": "1 đến 1 euro 2-",
"L_RelativeDateTime_XMinutesIntervals": "1 đến 1 euro 2-",
"L_RelativeDateTime_AboutAnHourFuture": "Trong khoảng một giờ",
"L_RelativeDateTime_AboutAnHour": "Khoảng một giờ trước",
"L_RelativeDateTime_Tomorrow": "Buổi sáng",
"L_RelativeDateTime_Yesterday": "Ở đây",
"L_RelativeDateTime_TomorrowAndTime": "Ngày mai lúc {0}",
"L_RelativeDateTime_YesterdayAndTime": "Hôm qua ở {0}",
"L_RelativeDateTime_XHoursFuture": "{0} sáng {0} sáng.",
"L_RelativeDateTime_XHours": "{0} giờ trước. {0} giờ trước.",
"L_RelativeDateTime_XHoursFutureIntervals": "1 đến 1 euro 2-",
"L_RelativeDateTime_XHoursIntervals": "1 đến 1 euro 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} trong {0} trong một vài ngày.",
"L_RelativeDateTime_XDays": "{0} ngày trước. {0} ngày trước",
"L_RelativeDateTime_XDaysFutureIntervals": "1 đến 1 euro 2-",
"L_RelativeDateTime_XDaysIntervals": "1 đến 1 euro 2-",
"L_RelativeDateTime_Today": "Hôm nay"
},
"NewFolderNamePlaceholder": "Nhập tên thư mục của bạn",
"FolderFilterBoxPlaceholder": "Lọc thư mục theo tên",
"FolderExplorerLoading": "Đang nạp cặp...",
"FolderExplorerNoItems": "Cặp này không có bất kỳ cặp con nào.",
"IncorrectGuidValidationMessage": "Vui lòng nhập GUID hợp lệ"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "应用",
"ImportButtonLabel": "导入",
"ExportButtonLabel": "导出",
"FormatCodeButtonLabel": "格式代码",
"JsonFileRequiredMessage": "请上传Json文件",
"SaveButtonLabel": "保存",
"CancelButtonLabel": "取消",
"PeoplePickerSuggestedContacts": "匹配的人员",
"PeoplePickerSuggestedGroups": "匹配的组",
"PeoplePickerSuggestedCombined": "匹配的组和人员",
"PeoplePickerNoResults": "没有找到",
"PeoplePickerLoading": "加载中 ...",
"DatePickerMonthLongJanuary": "一月",
"DatePickerMonthShortJanuary": "一月",
"DatePickerMonthLongFebruary": "二月",
"DatePickerMonthShortFebruary": "二月",
"DatePickerMonthLongMarch": "三月",
"DatePickerMonthShortMarch": "三月",
"DatePickerMonthLongApril": "四月",
"DatePickerMonthShortApril": "四月",
"DatePickerMonthLongMay": "五月",
"DatePickerMonthShortMay": "五月",
"DatePickerMonthLongJune": "六月",
"DatePickerMonthShortJune": "六月",
"DatePickerMonthLongJuly": "七月",
"DatePickerMonthShortJuly": "七月",
"DatePickerMonthLongAugust": "八月",
"DatePickerMonthShortAugust": "八月",
"DatePickerMonthLongSeptember": "九月",
"DatePickerMonthShortSeptember": "九月",
"DatePickerMonthLongOctober": "十月",
"DatePickerMonthShortOctober": "十月",
"DatePickerMonthLongNovember": "十一月",
"DatePickerMonthShortNovember": "十一月",
"DatePickerMonthLongDecember": "十二月",
"DatePickerMonthShortDecember": "十二月",
"DatePickerDayLongSunday": "星期天",
"DatePickerDayShortSunday": "周天",
"DatePickerDayLongMonday": "星期一",
"DatePickerDayShortMonday": "周一",
"DatePickerDayLongTuesday": "星期二",
"DatePickerDayShortTuesday": "周二",
"DatePickerDayLongWednesday": "星期三",
"DatePickerDayShortWednesday": "周三",
"DatePickerDayLongThursday": "星期四",
"DatePickerDayShortThursday": "周四",
"DatePickerDayLongFriday": "星期五",
"DatePickerDayShortFriday": "周五",
"DatePickerDayLongSaturday": "星期六",
"DatePickerDayShortSaturday": "周六",
"DatepickerGoToToday": "今天",
"DateTimePickerDate": "日期",
"DateTimePickerTime": "时间",
"ColorPickerButtonTitle": "选择颜色",
"NotNumberValidationMessage": "值必须为数字, 实际是:",
"MinimumNumberValidationMessage": "值应该大于:",
"MaximumNumberValidationMessage": "值应该小于:",
"TermPickerNoTerms": "术语集中不包含任何术语",
"TermPickerExpandTitle": "展开此术语集",
"TermPickerExpandNode": "展开节点",
"TermPickerMenuTermSet": "术语集菜单",
"TermPickerMenuGroup": "术语集菜单",
"TermPickerInLabel": "在",
"TermPickerTermSetLabel": "一组术语",
"propertyFieldMultiSelectNoOptions": "没有可供选择的项",
"CollectionDataEmptyFields": "集合中没有字段信息.",
"CollectionDataEmptyValue": "集合中没有数据",
"CollectionAddRowButtonLabel": "添加数据到集合",
"CollectionDeleteRowButtonLabel": "删除当前项",
"CollectionSaveAndAddButtonLabel": "添加并保存",
"CollectionDataItemShowErrorsLabel": "显示数据项错误信息",
"CollectionDataItemFieldRequiredLabel": "必填项",
"InvalidUrlError": "链接地址不正确",
"DescriptionLabel": "简介",
"MoreInfoLabel": "更多信息",
"AboutGroupLabel": "关于",
"SitePickerSearchBoxPlaceholder": "搜索。。。",
"SitePickerNoResults": "无搜索结果",
"SitePickerSitesChosen": "已选择网站",
"TeamPickerSearchBoxPlaceholder": "搜索。。。",
"TeamPickerNoResults": "无搜索结果",
"TeamPickerSitesChosen": "所选团队",
"AddFileButtonLabel": "添加文件",
"AddImageButtonLabel": "添加图像",
"AriaCellValue": "{0}列, {1}",
"FilePickerCancelButtonLabel": "取消",
"CantValidateValidationMessage": "无法验证此链接。请检查链接,然后重试。",
"ChangeFileLinkLabel": "更改文件",
"ChangeImageLinkLabel": "更改图像",
"ChooseFileLinkLabel": "选择文件",
"ChooseImageLinkLabel": "选择图像",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx",
"CopyrightWarning": "您有责任尊重他人的权利,包括版权。",
"CreativeCommonsMessage": "这些结果使用知识共享许可证进行标记。查看许可证以确保符合要求。",
"DateFormat": "毫米/DD/YYYY hhmm A",
"DocumentLabelTemplate": "{0} 文档, 修改{1} 编辑, {2} 私人",
"DocumentLibraries": "文档库",
"EditedByNamePlate": "编辑者",
"EmptyFileSize": "0 字节",
"FilePickerHeader": "文件选取器",
"FileSizeField": "文件大小",
"FolderAltText": "文件夹",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg",
"FolderLabelTemplate": "{0} 文件夹, 修改{1} 由{2}编辑, {3} 私人",
"FromLinkLinkLabel": "从链接",
"ImageAltText": ".{0}图像",
"ImageAriaLabelTemplate": ".{0}图像",
"ImageLayoutPlaceholderText": "布局",
"ImageSizePlaceholderText": "图像大小",
"ItemChildCountField": "项目子计数",
"LayoutOptionAll": "所有",
"LayoutOptionSquare": "广场",
"LayoutOptionTall": "高",
"LayoutOptionWide": "宽",
"LearnMoreLink": "了解更多信息。",
"LicenseOptionAll": "所有",
"LicenseOptionAny": "仅知识共享",
"LicensePlaceholderText": "许可证",
"LinkFileInstructions": "将指向\"企业\"或\"共享点联机\"中的文件的链接粘贴",
"LinkHeader": "从链接",
"LinkImageInstructions": "在 OneDrive 中粘贴指向图像的链接,用于业务或共享点联机",
"ListLayoutAriaLabel": "查看选项。{0} {1} .",
"ListLayoutCompact": "紧凑视图",
"ListLayoutCompactDescription": "在紧凑列表中查看项目和详细信息",
"ListLayoutList": "列表视图",
"ListLayoutListDescrition": "查看列表中的项目和详细信息",
"ListLayoutTile": "磁贴视图",
"ListLayoutTileDescription": "查看包含磁贴预览的项目",
"ListOptionsAlt": "查看选项。{0}已选择 。",
"ListOptionsTitle": "打开视图选项菜单",
"Loading": "加载。。。",
"ModifiedByField": "修改者",
"ModifiedField": "修改日期",
"NameField": "名字",
"No": "不",
"ProvidedValueIsInvalid": "提供的值无效",
"NoExternalLinksValidationMessage": "我们仅支持链接到您自己组织中的文件。",
"NoImageValidationMessage": "这不是指向我们支持的文件类型的链接。您只能链接到图像。",
"NoRecentFiles": "没有最近的文件",
"NoRecentFilesDescription": "尝试从您的网站中选择文件,或从设备上传一个文件。",
"NoResultsBadEnglish": "未找到任何结果。尝试更改筛选器选项",
"ODModifiedField": "改 性",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png",
"ODRowArialLabelTemplate": "{0}{1},修改{2},由{3}{4}{5}",
"OneDriveConfirmDialogBody": "此项目来自您的 OneDrive 站点。除非共享 OneDrive 中的文件和文件夹,否则它们都是私有的。您是否与网站成员共享此文件,以便他们可以访问该文件?",
"OneDriveConfirmDialogTitle": "只是检查一下...",
"OneDriveEmptyFolderAlt": "空文件夹",
"OneDriveEmptyFolderDescription": "要添加文件,请转到 OneDrive。您还可以使用计算机的 OneDrive 应用将文件添加到此文件夹。",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg",
"OneDriveEmptyFolderTitle": "此文件夹为空",
"OneDriveRootFolderName": "文件",
"OpenButtonLabel": "打开",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png",
"OrgAssetsTabLabel": "您的组织提供的图像和文件",
"PoweredByBing": "由必应提供",
"RecentDocumentsHeader": "最近的文档",
"RecentImagesHeader": "最近的图像",
"RecentLinkLabel": "最近",
"SearchBoxPlaceholder": "网络搜索",
"SearchResultAlt": "图像结果{0}。",
"SearchResultAriaLabel": "按 Enter 可打开新选项卡中的图像源。",
"Selected": "选择",
"SharingField": "共享",
"SharingPrivate": "私人",
"SharingShared": "共享",
"SiteLinkLabel": "网站",
"SizeOptionAll": "所有",
"SizeOptionExtraLarge": "特大型",
"SizeOptionLarge": "大",
"SizeOptionMedium": "中等",
"SizeOptionSmall": "小",
"SizeUnit": [
"字节",
"自",
"M b",
"去",
"结核病",
"Pb Pb",
"Eb",
"例如。",
"Yb"
],
"SorryWebSearch": "很抱歉,此示例中未实现此函数,因为它需要必应 BING API 密钥。",
"SortedAscending": "将 A 排序到 Z",
"SortedDescending": "将 Z 排序到 A",
"TypeAriaLabel": "文件类型的列操作,按 以对文件类型进行排序",
"UploadFileHeader": "上传文件",
"UploadImageHeader": "上传图像",
"UploadLinkLabel": "上传",
"WebSearchLinkLabel": "网络搜索",
"Yes": "是的",
"StockImagesLinkLabel": "库存图像",
"StockImagesHeader": "库存图片",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "在几秒钟内",
"L_RelativeDateTime_AFewSeconds": "几秒钟前",
"L_RelativeDateTime_AboutAMinuteFuture": "大约一分钟后",
"L_RelativeDateTime_AboutAMinute": "大约一分钟前",
"L_RelativeDateTime_XMinutesFuture": "{0}分钟{0}分钟",
"L_RelativeDateTime_XMinutes": "{0}一分钟前{0}分钟前",
"L_RelativeDateTime_XMinutesFutureIntervals": "1 至 1 欧元 2-",
"L_RelativeDateTime_XMinutesIntervals": "1 至 1 欧元 2-",
"L_RelativeDateTime_AboutAnHourFuture": "大约一小时后",
"L_RelativeDateTime_AboutAnHour": "大约一小时前",
"L_RelativeDateTime_Tomorrow": "上午",
"L_RelativeDateTime_Yesterday": "在这里",
"L_RelativeDateTime_TomorrowAndTime": "明天在{0}",
"L_RelativeDateTime_YesterdayAndTime": "昨天在{0}",
"L_RelativeDateTime_XHoursFuture": "{0}{0}分",
"L_RelativeDateTime_XHours": "{0}小时前{0}小时前",
"L_RelativeDateTime_XHoursFutureIntervals": "1 至 1 欧元 2-",
"L_RelativeDateTime_XHoursIntervals": "1 至 1 欧元 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0}{0}一天就到样了。",
"L_RelativeDateTime_XDays": "{0}天前{0}天前",
"L_RelativeDateTime_XDaysFutureIntervals": "1 至 1 欧元 2-",
"L_RelativeDateTime_XDaysIntervals": "1 至 1 欧元 2-",
"L_RelativeDateTime_Today": "今天"
},
"NewFolderNamePlaceholder": "输入文件夹名称",
"FolderFilterBoxPlaceholder": "按名称筛选文件夹",
"FolderExplorerLoading": "正在加载文件夹...",
"FolderExplorerNoItems": "此文件夹没有任何子文件夹。",
"IncorrectGuidValidationMessage": "请输入有效的 GUID"
};
});

View File

@ -0,0 +1,230 @@
define([], () => {
return {
"ApplyButtonLabel": "應用。",
"ImportButtonLabel": "進口。",
"ExportButtonLabel": "出口。",
"FormatCodeButtonLabel": "格式代碼。",
"JsonFileRequiredMessage": "請上傳 json 檔。",
"SaveButtonLabel": "救。",
"CancelButtonLabel": "取消。",
"PeoplePickerSuggestedContacts": "推薦人員。",
"PeoplePickerSuggestedGroups": "建議的組。",
"PeoplePickerSuggestedCombined": "建議的些人和團體。",
"PeoplePickerNoResults": "未找到結果。",
"PeoplePickerLoading": "載入結果中...",
"DatePickerMonthLongJanuary": "一月。",
"DatePickerMonthShortJanuary": "1月。",
"DatePickerMonthLongFebruary": "二月。",
"DatePickerMonthShortFebruary": "2 月。",
"DatePickerMonthLongMarch": "三月。",
"DatePickerMonthShortMarch": "三月。",
"DatePickerMonthLongApril": "四月。",
"DatePickerMonthShortApril": "四月。",
"DatePickerMonthLongMay": "五月。",
"DatePickerMonthShortMay": "五月。",
"DatePickerMonthLongJune": "六月。",
"DatePickerMonthShortJune": "君。",
"DatePickerMonthLongJuly": "七月。",
"DatePickerMonthShortJuly": "七月。",
"DatePickerMonthLongAugust": "八月。",
"DatePickerMonthShortAugust": "八月。",
"DatePickerMonthLongSeptember": "九月。",
"DatePickerMonthShortSeptember": "七。",
"DatePickerMonthLongOctober": "十月。",
"DatePickerMonthShortOctober": "10 月。",
"DatePickerMonthLongNovember": "十一月。",
"DatePickerMonthShortNovember": "11 月。",
"DatePickerMonthLongDecember": "十二月。",
"DatePickerMonthShortDecember": "12 月。",
"DatePickerDayLongSunday": "星期日。",
"DatePickerDayShortSunday": "太陽。",
"DatePickerDayLongMonday": "星期一。",
"DatePickerDayShortMonday": "我。",
"DatePickerDayLongTuesday": "星期二。",
"DatePickerDayShortTuesday": "星期二。",
"DatePickerDayLongWednesday": "星期三。",
"DatePickerDayShortWednesday": "結婚。",
"DatePickerDayLongThursday": "星期四。",
"DatePickerDayShortThursday": "星期四。",
"DatePickerDayLongFriday": "星期五。",
"DatePickerDayShortFriday": "週五。",
"DatePickerDayLongSaturday": "星期六。",
"DatePickerDayShortSaturday": "坐。",
"DatepickerGoToToday": "今天。",
"DateTimePickerDate": "日期。",
"DateTimePickerTime": "時間。",
"ColorPickerButtonTitle": "選擇顏色。",
"NotNumberValidationMessage": "該值應為數字,實際值為:",
"MinimumNumberValidationMessage": "該值應大於或等於:",
"MaximumNumberValidationMessage": "該值應低於或等於:",
"TermPickerNoTerms": "術語集不包含任何術語。",
"TermPickerExpandTitle": "展開此術語集。",
"TermPickerExpandNode": "展開此節點。",
"TermPickerMenuTermSet": "術語集功能表。",
"TermPickerMenuGroup": "術語組的功能表。",
"TermPickerInLabel": "在。",
"TermPickerTermSetLabel": "術語集。",
"propertyFieldMultiSelectNoOptions": "沒有要選擇的選項。",
"CollectionDataEmptyFields": "沒有為收集數據提供欄位。",
"CollectionDataEmptyValue": "集合中沒有數據。",
"CollectionAddRowButtonLabel": "將數據添加到集合中。",
"CollectionDeleteRowButtonLabel": "刪除當前行。",
"CollectionSaveAndAddButtonLabel": "添加和保存。",
"CollectionDataItemShowErrorsLabel": "顯示行錯誤。",
"CollectionDataItemFieldRequiredLabel": "欄位是必需的。",
"InvalidUrlError": "提供的 URL 無效。",
"DescriptionLabel": "描述。",
"MoreInfoLabel": "更多資訊。",
"AboutGroupLabel": "關於。",
"SitePickerSearchBoxPlaceholder": "搜索。。。",
"SitePickerNoResults": "無搜尋結果。",
"SitePickerSitesChosen": "已選擇網站。",
"TeamPickerSearchBoxPlaceholder": "搜索。。。",
"TeamPickerNoResults": "無搜尋結果",
"TeamPickerSitesChosen": "所選團隊",
"AddFileButtonLabel": "添加檔。",
"AddImageButtonLabel": "添加圖像。",
"AriaCellValue": "{0}列, {1}",
"FilePickerCancelButtonLabel": "取消。",
"CantValidateValidationMessage": "無法驗證此連結。請檢查鏈接,然後重試。",
"ChangeFileLinkLabel": "更改檔。",
"ChangeImageLinkLabel": "更改圖像。",
"ChooseFileLinkLabel": "選擇檔案。",
"ChooseImageLinkLabel": "選擇圖像。",
"CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx。",
"CopyrightWarning": "您有責任尊重他人的權利,包括版權。",
"CreativeCommonsMessage": "這些結果使用知識共用許可證進行標記。查看許可證以確保符合要求。",
"DateFormat": "毫米/DD/YYYY hh:mm A。",
"DocumentLabelTemplate": "{0}, 文檔, 修改{1}, 編輯, {2}, 私人。",
"DocumentLibraries": "文檔庫。",
"EditedByNamePlate": "編輯者。",
"EmptyFileSize": "0 位元組。",
"FilePickerHeader": "檔案選取器。",
"FileSizeField": "檔大小。",
"FolderAltText": "資料夾。",
"FolderBackPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_backplate.svg。",
"FolderFrontPlate": "https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/foldericons/folder-large_frontplate_nopreview.svg。",
"FolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20/folder.svg。",
"FolderLabelTemplate": "{0}, 資料夾, 修改{1}, 由{2}編輯, {3}, 私人。",
"FromLinkLinkLabel": "從連結。",
"ImageAltText": ".{0}圖像。",
"ImageAriaLabelTemplate": ".{0}圖像。",
"ImageLayoutPlaceholderText": "佈局。",
"ImageSizePlaceholderText": "圖像大小。",
"ItemChildCountField": "專案子計數。",
"LayoutOptionAll": "所有。",
"LayoutOptionSquare": "廣場。",
"LayoutOptionTall": "高。",
"LayoutOptionWide": "寬。",
"LearnMoreLink": "瞭解更多資訊。",
"LicenseOptionAll": "所有。",
"LicenseOptionAny": "僅知識共用。",
"LicensePlaceholderText": "許可證。",
"LinkFileInstructions": "將指向「企業」或「共用點連線」中的檔的連結粘貼。",
"LinkHeader": "從連結。",
"LinkImageInstructions": "在 OneDrive 中貼貼指向圖像的連結,用於業務或共用點連線。",
"ListLayoutAriaLabel": "查看選項。{0} {1} .",
"ListLayoutCompact": "緊湊視圖。",
"ListLayoutCompactDescription": "在緊湊清單中查看專案和詳細資訊。",
"ListLayoutList": "清單檢視。",
"ListLayoutListDescrition": "查看清單中的項目和詳細資訊。",
"ListLayoutTile": "磁貼視圖。",
"ListLayoutTileDescription": "查看包含磁貼預覽的專案。",
"ListOptionsAlt": "查看選項。{0}已選擇 。",
"ListOptionsTitle": "打開視圖選項功能表。",
"Loading": "載入。。。",
"ModifiedByField": "修改者。",
"ModifiedField": "修改日期。",
"NameField": "名字。",
"No": "不。",
"ProvidedValueIsInvalid": "提供的值無效。",
"NoExternalLinksValidationMessage": "我們僅支援連結到您自己組織中的檔。",
"NoImageValidationMessage": "這不是指向我們支援的文件類型的連結。您只能連結到圖像。",
"NoRecentFiles": "沒有最近的檔。",
"NoRecentFilesDescription": "嘗試從您的網站中選擇檔,或從設備上傳一個檔。",
"NoResultsBadEnglish": "未找到任何結果。嘗試更改篩選器選項。",
"ODModifiedField": "改性。",
"ODPhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/itemtypes/16_2x/photo.png。",
"ODRowArialLabelTemplate": "{0},{1},修改{2},由{3},{4},{5}",
"OneDriveConfirmDialogBody": "此項目來自您的 OneDrive 網站。除非共用 OneDrive 中的檔和資料夾,否則它們都是私有的。您是否與網站成員共用此檔,以便他們可以造訪該檔?",
"OneDriveConfirmDialogTitle": "只是檢查一下...",
"OneDriveEmptyFolderAlt": "空資料夾。",
"OneDriveEmptyFolderDescription": "要添加檔,請轉到 OneDrive。您還可以使用電腦的 OneDrive 應用程式將檔案加入此資料夾。",
"OneDriveEmptyFolderIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-18_20190124.001/odsp-media/images/emptyfolder/empty_folder.svg。",
"OneDriveEmptyFolderTitle": "此資料夾為空。",
"OneDriveRootFolderName": "檔。",
"OpenButtonLabel": "打開。",
"PhotoIconUrl": "https://spoprod-a.akamaihd.net/files/odsp-next-prod_2019-01-11_20190116.001/odsp-media/images/itemtypes/20_2x/photo.png。",
"OrgAssetsTabLabel": "您的組織提供的圖像和檔。",
"PoweredByBing": "由必應提供。",
"RecentDocumentsHeader": "最近的文檔。",
"RecentImagesHeader": "最近的圖像。",
"RecentLinkLabel": "最近。",
"SearchBoxPlaceholder": "網路搜索。",
"SearchResultAlt": "圖像結果{0}。",
"SearchResultAriaLabel": "按 Enter 可打開新選項卡中的影像來源。",
"Selected": "選擇。",
"SharingField": "共用。",
"SharingPrivate": "私人。",
"SharingShared": "共用。",
"SiteLinkLabel": "網站。",
"SizeOptionAll": "所有。",
"SizeOptionExtraLarge": "特大型。",
"SizeOptionLarge": "大。",
"SizeOptionMedium": "中等。",
"SizeOptionSmall": "小。",
"SizeUnit": [
"位元組。",
"自。",
"M b。",
"去。",
"結核病。",
"Pb (Pb)",
"Eb。",
"例如。",
"Yb。"
],
"SorryWebSearch": "很抱歉,此示例中未實現此函數,因為它需要必應 BING API 密鑰。",
"SortedAscending": "將 A 排序到 Z。",
"SortedDescending": "將 Z 排序到 A。",
"TypeAriaLabel": "檔案類型的列操作,按 以對檔案類型進行排序。",
"UploadFileHeader": "上傳檔。",
"UploadImageHeader": "上傳圖像。",
"UploadLinkLabel": "上傳。",
"WebSearchLinkLabel": "網路搜索。",
"Yes": "是的。",
"StockImagesLinkLabel": "庫存圖像",
"StockImagesHeader": "庫存圖片",
"DateTime": {
"L_RelativeDateTime_AFewSecondsFuture": "在幾秒鐘內。",
"L_RelativeDateTime_AFewSeconds": "幾秒鐘前。",
"L_RelativeDateTime_AboutAMinuteFuture": "大約一分鐘后。",
"L_RelativeDateTime_AboutAMinute": "大約一分鐘前。",
"L_RelativeDateTime_XMinutesFuture": "{0}分鐘{0}分鐘。",
"L_RelativeDateTime_XMinutes": "{0}一分鐘前{0}分鐘前。",
"L_RelativeDateTime_XMinutesFutureIntervals": "1 至 1 歐元 2-",
"L_RelativeDateTime_XMinutesIntervals": "1 至 1 歐元 2-",
"L_RelativeDateTime_AboutAnHourFuture": "大約一小時後。",
"L_RelativeDateTime_AboutAnHour": "大約一小時前。",
"L_RelativeDateTime_Tomorrow": "上午。",
"L_RelativeDateTime_Yesterday": "在這裡。",
"L_RelativeDateTime_TomorrowAndTime": "明天在{0}",
"L_RelativeDateTime_YesterdayAndTime": "昨天在{0}",
"L_RelativeDateTime_XHoursFuture": "{0} {0}分。",
"L_RelativeDateTime_XHours": "{0}小時前{0}小時前。",
"L_RelativeDateTime_XHoursFutureIntervals": "1 至 1 歐元 2-",
"L_RelativeDateTime_XHoursIntervals": "1 至 1 歐元 2-",
"L_RelativeDateTime_DayAndTime": "{0} {1}",
"L_RelativeDateTime_XDaysFuture": "{0} {0}一天就到樣了。",
"L_RelativeDateTime_XDays": "{0}天前{0}天前。",
"L_RelativeDateTime_XDaysFutureIntervals": "1 至 1 歐元 2-",
"L_RelativeDateTime_XDaysIntervals": "1 至 1 歐元 2-",
"L_RelativeDateTime_Today": "今天。"
},
"NewFolderNamePlaceholder": "輸入資料夾名稱。",
"FolderFilterBoxPlaceholder": "按名稱篩選資料夾。",
"FolderExplorerLoading": "載入資料夾中...",
"FolderExplorerNoItems": "此文件無子資料夾。",
"IncorrectGuidValidationMessage": "請輸入有效的 GUID"
};
});

View File

@ -0,0 +1,10 @@
define([], function() {
return {
PropertyPaneDescription: "Description",
BasicGroupName: "Group Name",
DescriptionFieldLabel: "Description Field",
StyleToggle: "Style",
AuthorToggle: "Author",
sites: "Sites"
}
});

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,116 @@
{
"bundles": {
"share-point-news-webpart": {
"dependencies": [
{
"componentId": "f9e737b7-f0df-4597-ba8c-3060f82380db",
"componentName": "@microsoft/sp-property-pane",
"componentVersion": "1.12.1",
"isDirectDependency": true
},
{
"componentId": "1c6c9123-7aac-41f3-a376-3caea41ed83f",
"componentName": "@microsoft/sp-loader",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "8217e442-8ed3-41fd-957d-b112e841286a",
"componentName": "@ms/sp-telemetry",
"componentVersion": "0.19.2",
"isDirectDependency": false
},
{
"componentId": "e40f8203-b39d-425a-a957-714852e33b79",
"componentName": "@microsoft/sp-dynamic-data",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a",
"componentName": "@microsoft/sp-lodash-subset",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b",
"componentName": "@microsoft/sp-core-library",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "01c4df03-e775-48cb-aa14-171ee5199a15",
"componentName": "tslib",
"componentVersion": "1.10.0",
"isDirectDependency": false
},
{
"componentId": "2e09fb9b-13bb-48f2-859f-97d6fff71176",
"componentName": "@ms/odsp-core-bundle",
"componentVersion": "1.1.13",
"isDirectDependency": false
},
{
"componentId": "78359e4b-07c2-43c6-8d0b-d060b4d577e8",
"componentName": "@microsoft/sp-diagnostics",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8",
"componentName": "@microsoft/sp-page-context",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "229b8d08-79f3-438b-8c21-4613fc877abd",
"componentName": "@microsoft/load-themed-styles",
"componentVersion": "0.1.2",
"isDirectDependency": false
},
{
"componentId": "c07208f0-ea3b-4c1a-9965-ac1b825211a6",
"componentName": "@microsoft/sp-http",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "974a7777-0990-4136-8fa6-95d80114c2e0",
"componentName": "@microsoft/sp-webpart-base",
"componentVersion": "1.12.1",
"isDirectDependency": true
},
{
"componentId": "467dc675-7cc5-4709-8aac-78e3b71bd2f6",
"componentName": "@microsoft/sp-component-base",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"componentName": "react",
"componentVersion": "16.9.0",
"isDirectDependency": false
},
{
"componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"componentName": "react",
"componentVersion": "16.8.5",
"isDirectDependency": true
},
{
"componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"componentName": "react-dom",
"componentVersion": "16.9.0",
"isDirectDependency": false
},
{
"componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"componentName": "react-dom",
"componentVersion": "16.8.5",
"isDirectDependency": true
}
]
}
}
}

View File

@ -0,0 +1,116 @@
{
"bundles": {
"react-news-webpart": {
"dependencies": [
{
"componentId": "f9e737b7-f0df-4597-ba8c-3060f82380db",
"componentName": "@microsoft/sp-property-pane",
"componentVersion": "1.12.1",
"isDirectDependency": true
},
{
"componentId": "1c6c9123-7aac-41f3-a376-3caea41ed83f",
"componentName": "@microsoft/sp-loader",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "8217e442-8ed3-41fd-957d-b112e841286a",
"componentName": "@ms/sp-telemetry",
"componentVersion": "0.19.2",
"isDirectDependency": false
},
{
"componentId": "e40f8203-b39d-425a-a957-714852e33b79",
"componentName": "@microsoft/sp-dynamic-data",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a",
"componentName": "@microsoft/sp-lodash-subset",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b",
"componentName": "@microsoft/sp-core-library",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "01c4df03-e775-48cb-aa14-171ee5199a15",
"componentName": "tslib",
"componentVersion": "1.10.0",
"isDirectDependency": false
},
{
"componentId": "2e09fb9b-13bb-48f2-859f-97d6fff71176",
"componentName": "@ms/odsp-core-bundle",
"componentVersion": "1.1.13",
"isDirectDependency": false
},
{
"componentId": "78359e4b-07c2-43c6-8d0b-d060b4d577e8",
"componentName": "@microsoft/sp-diagnostics",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8",
"componentName": "@microsoft/sp-page-context",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "229b8d08-79f3-438b-8c21-4613fc877abd",
"componentName": "@microsoft/load-themed-styles",
"componentVersion": "0.1.2",
"isDirectDependency": false
},
{
"componentId": "c07208f0-ea3b-4c1a-9965-ac1b825211a6",
"componentName": "@microsoft/sp-http",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "974a7777-0990-4136-8fa6-95d80114c2e0",
"componentName": "@microsoft/sp-webpart-base",
"componentVersion": "1.12.1",
"isDirectDependency": true
},
{
"componentId": "467dc675-7cc5-4709-8aac-78e3b71bd2f6",
"componentName": "@microsoft/sp-component-base",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"componentName": "react",
"componentVersion": "16.9.0",
"isDirectDependency": false
},
{
"componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"componentName": "react",
"componentVersion": "16.8.5",
"isDirectDependency": true
},
{
"componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"componentName": "react-dom",
"componentVersion": "16.9.0",
"isDirectDependency": false
},
{
"componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"componentName": "react-dom",
"componentVersion": "16.8.5",
"isDirectDependency": true
}
]
}
}
}

View File

@ -0,0 +1,116 @@
{
"bundles": {
"share-point-news-webpart-web-part": {
"dependencies": [
{
"componentId": "f9e737b7-f0df-4597-ba8c-3060f82380db",
"componentName": "@microsoft/sp-property-pane",
"componentVersion": "1.12.1",
"isDirectDependency": true
},
{
"componentId": "1c6c9123-7aac-41f3-a376-3caea41ed83f",
"componentName": "@microsoft/sp-loader",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "8217e442-8ed3-41fd-957d-b112e841286a",
"componentName": "@ms/sp-telemetry",
"componentVersion": "0.19.2",
"isDirectDependency": false
},
{
"componentId": "e40f8203-b39d-425a-a957-714852e33b79",
"componentName": "@microsoft/sp-dynamic-data",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a",
"componentName": "@microsoft/sp-lodash-subset",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b",
"componentName": "@microsoft/sp-core-library",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "01c4df03-e775-48cb-aa14-171ee5199a15",
"componentName": "tslib",
"componentVersion": "1.10.0",
"isDirectDependency": false
},
{
"componentId": "2e09fb9b-13bb-48f2-859f-97d6fff71176",
"componentName": "@ms/odsp-core-bundle",
"componentVersion": "1.1.13",
"isDirectDependency": false
},
{
"componentId": "78359e4b-07c2-43c6-8d0b-d060b4d577e8",
"componentName": "@microsoft/sp-diagnostics",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8",
"componentName": "@microsoft/sp-page-context",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "229b8d08-79f3-438b-8c21-4613fc877abd",
"componentName": "@microsoft/load-themed-styles",
"componentVersion": "0.1.2",
"isDirectDependency": false
},
{
"componentId": "c07208f0-ea3b-4c1a-9965-ac1b825211a6",
"componentName": "@microsoft/sp-http",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "974a7777-0990-4136-8fa6-95d80114c2e0",
"componentName": "@microsoft/sp-webpart-base",
"componentVersion": "1.12.1",
"isDirectDependency": true
},
{
"componentId": "467dc675-7cc5-4709-8aac-78e3b71bd2f6",
"componentName": "@microsoft/sp-component-base",
"componentVersion": "1.12.1",
"isDirectDependency": false
},
{
"componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"componentName": "react",
"componentVersion": "16.9.0",
"isDirectDependency": false
},
{
"componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"componentName": "react",
"componentVersion": "16.8.5",
"isDirectDependency": true
},
{
"componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"componentName": "react-dom",
"componentVersion": "16.9.0",
"isDirectDependency": false
},
{
"componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"componentName": "react-dom",
"componentVersion": "16.8.5",
"isDirectDependency": true
}
]
}
}
}

View File

@ -0,0 +1,114 @@
{
"id": "50f380a6-e5b2-4257-afa1-6d3a1c0ca358",
"alias": "ReactNewsWebpart",
"componentType": "WebPart",
"version": "0.0.1",
"manifestVersion": 2,
"requiresCustomScript": false,
"supportedHosts": [
"SharePointWebPart"
],
"preconfiguredEntries": [
{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70",
"group": {
"default": "Other"
},
"title": {
"default": "React-News-Webpart"
},
"description": {
"default": "React-News-Webpart description"
},
"officeFabricIconFontName": "News",
"properties": {
"description": "React-News-Webpart"
}
}
],
"loaderConfig": {
"internalModuleBaseUrls": [
"<!-- PATH TO CDN -->"
],
"entryModuleId": "react-news-webpart",
"scriptResources": {
"react-news-webpart": {
"type": "path",
"path": "react-news-webpart.js"
},
"@microsoft/sp-property-pane": {
"type": "component",
"id": "f9e737b7-f0df-4597-ba8c-3060f82380db",
"version": "1.12.1"
},
"ReactNewsWebpartStrings": {
"type": "path",
"path": "ReactNewsWebpartStrings_en-us.js"
},
"@microsoft/sp-lodash-subset": {
"type": "component",
"id": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a",
"version": "1.12.1"
},
"@microsoft/sp-core-library": {
"type": "component",
"id": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b",
"version": "1.12.1"
},
"@microsoft/sp-webpart-base": {
"type": "component",
"id": "974a7777-0990-4136-8fa6-95d80114c2e0",
"version": "1.12.1"
},
"react": {
"type": "component",
"id": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"version": "16.8.5"
},
"react-dom": {
"type": "component",
"id": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"version": "16.8.5"
},
"@microsoft/sp-http": {
"type": "component",
"id": "c07208f0-ea3b-4c1a-9965-ac1b825211a6",
"version": "1.12.1"
},
"PropertyControlStrings": {
"type": "localizedPath",
"paths": {
"bg-BG": "PropertyControlStrings_bg-bg.js",
"ca-ES": "PropertyControlStrings_ca-es.js",
"da-DK": "PropertyControlStrings_da-dk.js",
"de-DE": "PropertyControlStrings_de-de.js",
"el-GR": "PropertyControlStrings_el-gr.js",
"en-US": "PropertyControlStrings_en-us.js",
"es-ES": "PropertyControlStrings_es-es.js",
"et-EE": "PropertyControlStrings_et-ee.js",
"fi-FI": "PropertyControlStrings_fi-fi.js",
"fr-FR": "PropertyControlStrings_fr-fr.js",
"it-IT": "PropertyControlStrings_it-it.js",
"ja-JP": "PropertyControlStrings_ja-jp.js",
"lt-LT": "PropertyControlStrings_lt-lt.js",
"lv-LV": "PropertyControlStrings_lv-lv.js",
"nb-NO": "PropertyControlStrings_nb-no.js",
"nl-NL": "PropertyControlStrings_nl-nl.js",
"no": "PropertyControlStrings_no.js",
"pl-PL": "PropertyControlStrings_pl-pl.js",
"pt-PT": "PropertyControlStrings_pt-pt.js",
"ro-RO": "PropertyControlStrings_ro-ro.js",
"ru-RU": "PropertyControlStrings_ru-ru.js",
"sk-SK": "PropertyControlStrings_sk-sk.js",
"sr-Latn-RS": "PropertyControlStrings_sr-latn-rs.js",
"sv-SE": "PropertyControlStrings_sv-se.js",
"tr-TR": "PropertyControlStrings_tr-tr.js",
"vi-VN": "PropertyControlStrings_vi-vn.js",
"zh-CN": "PropertyControlStrings_zh-cn.js",
"zh-TW": "PropertyControlStrings_zh-tw.js"
},
"defaultPath": "PropertyControlStrings_en-us.js"
}
}
}
}

View File

@ -0,0 +1,114 @@
{
"id": "50f380a6-e5b2-4257-afa1-6d3a1c0ca358",
"alias": "ReactNewsWebpart",
"componentType": "WebPart",
"version": "0.0.1",
"manifestVersion": 2,
"requiresCustomScript": false,
"supportedHosts": [
"SharePointWebPart"
],
"preconfiguredEntries": [
{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70",
"group": {
"default": "Other"
},
"title": {
"default": "React-News-Webpart"
},
"description": {
"default": "React-News-Webpart description"
},
"officeFabricIconFontName": "News",
"properties": {
"description": "React-News-Webpart"
}
}
],
"loaderConfig": {
"internalModuleBaseUrls": [
"<!-- PATH TO CDN -->"
],
"entryModuleId": "react-news-webpart",
"scriptResources": {
"react-news-webpart": {
"type": "path",
"path": "react-news-webpart_a82dc6a09ff2adec49dd.js"
},
"@microsoft/sp-property-pane": {
"type": "component",
"id": "f9e737b7-f0df-4597-ba8c-3060f82380db",
"version": "1.12.1"
},
"ReactNewsWebpartStrings": {
"type": "path",
"path": "ReactNewsWebpartStrings_en-us_9c69b7524949cbd1c1bc277cc0857652.js"
},
"@microsoft/sp-lodash-subset": {
"type": "component",
"id": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a",
"version": "1.12.1"
},
"@microsoft/sp-core-library": {
"type": "component",
"id": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b",
"version": "1.12.1"
},
"@microsoft/sp-webpart-base": {
"type": "component",
"id": "974a7777-0990-4136-8fa6-95d80114c2e0",
"version": "1.12.1"
},
"react": {
"type": "component",
"id": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d",
"version": "16.8.5"
},
"react-dom": {
"type": "component",
"id": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a",
"version": "16.8.5"
},
"@microsoft/sp-http": {
"type": "component",
"id": "c07208f0-ea3b-4c1a-9965-ac1b825211a6",
"version": "1.12.1"
},
"PropertyControlStrings": {
"type": "localizedPath",
"paths": {
"bg-BG": "PropertyControlStrings_bg-bg_8ed72ece3685811017132eb844d74d2b.js",
"ca-ES": "PropertyControlStrings_ca-es_4584e999630b4da0f3943516915be8f0.js",
"da-DK": "PropertyControlStrings_da-dk_1d0932d33a05e1bfcf90ff2073389182.js",
"de-DE": "PropertyControlStrings_de-de_d40342425b678318d0419e6ad9dd6f70.js",
"el-GR": "PropertyControlStrings_el-gr_85080a0fd923b34329ed3afc8e24f0ca.js",
"en-US": "PropertyControlStrings_en-us_3770839de1f3a0bef2a56730368aab40.js",
"es-ES": "PropertyControlStrings_es-es_69e478d7c5043b45e6628ac2c9e2de4b.js",
"et-EE": "PropertyControlStrings_et-ee_598f724341a6fb38723922f994e302e0.js",
"fi-FI": "PropertyControlStrings_fi-fi_0f6d7d22b90096f65e849824ea36f036.js",
"fr-FR": "PropertyControlStrings_fr-fr_f17d1581e1807a854fa5df15365797bb.js",
"it-IT": "PropertyControlStrings_it-it_8f63bbadd3620640d822549f04da2ccb.js",
"ja-JP": "PropertyControlStrings_ja-jp_1ab0c1b344e245022153106fc5722a75.js",
"lt-LT": "PropertyControlStrings_lt-lt_1e9c7953e8515297e074b213288dfaaa.js",
"lv-LV": "PropertyControlStrings_lv-lv_56d7a5f081517fa938fa8bc2d903cd97.js",
"nb-NO": "PropertyControlStrings_nb-no_357d85cd6acd4c9cdfc5cc8c0b198986.js",
"nl-NL": "PropertyControlStrings_nl-nl_217fc5878d50553567c652e81c1b743c.js",
"no": "PropertyControlStrings_no_819bcb574a9a9b7bee923721da82f3af.js",
"pl-PL": "PropertyControlStrings_pl-pl_c233eab225f8a0a54bfd72e8cf26fcad.js",
"pt-PT": "PropertyControlStrings_pt-pt_4e8ff2c4c080c29048b237bec8d6c857.js",
"ro-RO": "PropertyControlStrings_ro-ro_5a1eb0ace969b2930de4c2b89f9791cc.js",
"ru-RU": "PropertyControlStrings_ru-ru_f2b220073240303d6e0a4693c7a95d24.js",
"sk-SK": "PropertyControlStrings_sk-sk_753cba40099869f50de2c9bc8d1f54e3.js",
"sr-Latn-RS": "PropertyControlStrings_sr-latn-rs_673d7d1f6c33e4e706753cf7dceb0655.js",
"sv-SE": "PropertyControlStrings_sv-se_5dbecd28947c574648adbe0516fa2b3b.js",
"tr-TR": "PropertyControlStrings_tr-tr_cda80038fa0f28a0926730ba014ef8d2.js",
"vi-VN": "PropertyControlStrings_vi-vn_e285a250de584da19f4d2bcda40cd095.js",
"zh-CN": "PropertyControlStrings_zh-cn_f54e63ffc9812984f622f4eef90882c9.js",
"zh-TW": "PropertyControlStrings_zh-tw_c48095a54869748740db4e3387cd8006.js"
},
"defaultPath": "PropertyControlStrings_en-us_3770839de1f3a0bef2a56730368aab40.js"
}
}
}
}

View File

@ -0,0 +1 @@
// A file is required to be in the root of the /src directory by the TypeScript compiler

View File

@ -0,0 +1,27 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
"id": "50f380a6-e5b2-4257-afa1-6d3a1c0ca358",
"alias": "ReactNewsWebpart",
"componentType": "WebPart",
// The "*" signifies that the version should be taken from the package.json
"version": "*",
"manifestVersion": 2,
// If true, the component can only be installed on sites where Custom Script is allowed.
// Components that allow authors to embed arbitrary script code should set this to true.
// https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f
"requiresCustomScript": false,
"supportedHosts": ["SharePointWebPart"],
"preconfiguredEntries": [{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
"group": { "default": "Other" },
"title": { "default": "React-News-Webpart" },
"description": { "default": "React-News-Webpart description" },
"officeFabricIconFontName": "News",
"properties": {
"description": "React-News-Webpart"
}
}]
}

View File

@ -0,0 +1,139 @@
import * as React from 'react';
import * as ReactDom from 'react-dom';
import { Version } from '@microsoft/sp-core-library';
import {
IPropertyPaneConfiguration,
IPropertyPaneDropdownOption,
PropertyPaneToggle
} from '@microsoft/sp-property-pane';
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
import * as strings from 'ReactNewsWebpartStrings';
import ReactNews from './components/ReactNewsWebpart';
import { IReactNewsWebpartProps } from './components/IReactNewsWebpartProps';
import { IPropertyFieldSite, PropertyFieldSitePicker } from '@pnp/spfx-property-controls/lib/PropertyFieldSitePicker';
export interface IReactNewsWebpartWebPartProps {
description: string;
StyleToggle: string;
AuthorToggle: string;
sites: IPropertyFieldSite[];
Site: any[];
}
export default class ReactNewsWebpart extends BaseClientSideWebPart <IReactNewsWebpartProps> {
public render(): void {
const element: React.ReactElement<IReactNewsWebpartProps> = React.createElement(
ReactNews,
{
description: this.properties.description,
StyleToggle: this.properties.StyleToggle,
sites: this.properties.sites,
context: this.context,
AuthorToggle: this.properties.AuthorToggle,
Site: this.properties.Site,
onChangeProperty: this.onChangeProperty
}
);
ReactDom.render(element, this.domElement);
}
protected onDispose(): void {
ReactDom.unmountComponentAtNode(this.domElement);
}
public async onInit(): Promise<void> {
return Promise.resolve();
}
/*
protected async onPropertyPaneFieldChanged(
propertyPath: string,
oldValue: unknown,
newValue: unknown
):Promise<void> {
if (propertyPath === "sites") {
const value:IPropertyFieldSite[] = newValue as IPropertyFieldSite[];
if (value && !value.length) {
this.context.propertyPane.refresh();
this.render()
return;
} else {
this.context.propertyPane.refresh();
}
}
}*/
protected async onPropertyPaneFieldChanged(
propertyPath: string,
oldValue: unknown,
newValue: any
):Promise<void> {
if (propertyPath === "sites") {
const value: IPropertyFieldSite[] = newValue as IPropertyFieldSite[];
if (value && !value.length) {
this.properties.Site = [];
this.context.propertyPane.refresh();
return;
} else {
this.properties.Site = newValue;
this.context.propertyPane.refresh();
return;
}
}
}
protected get dataVersion(): Version {
return Version.parse('1.0');
}
public async getSelectedListFields() {
if (this.properties.Site) {
this.context.propertyPane.refresh();
}
}
public onChangeProperty = (changeType: string, oldValue: any, newValue: any[]): void => {
this.getSelectedListFields();
}
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
return {
pages: [
{
header: {
description: strings.PropertyPaneDescription
},
groups: [
{
groupFields: [
PropertyPaneToggle('StyleToggle', {
onText: 'Stack',
offText: 'Single',
label: 'Style'
}),
PropertyPaneToggle('AuthorToggle', {
onText: 'Hidden',
offText: 'Shown',
label: 'Author'
}),
PropertyFieldSitePicker('sites', {
label: 'Select sites',
initialSites: this.properties.sites,
context: this.context,
deferredValidationTime: 200,
multiSelect: true,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: 'sitesFieldId'
})
]
}
]
}
]
};
}
}

View File

@ -0,0 +1,12 @@
import { IWebPartContext, WebPartContext } from "@microsoft/sp-webpart-base";
import { IPropertyFieldSite } from "@pnp/spfx-property-controls/lib/PropertyFieldSitePicker";
export interface IReactNewsWebpartProps {
description: string;
StyleToggle: string;
AuthorToggle: string;
sites: IPropertyFieldSite[];
context: WebPartContext;
Site: any[];
onChangeProperty: any;
}

View File

@ -0,0 +1,5 @@
export interface IReactNewsWebpartState {
SPGuid: string;
News: any[];
Reload: boolean;
}

View File

@ -0,0 +1,231 @@
@import "~office-ui-fabric-react/dist/sass/References.scss";
.reactNewsWebpart {
.container {
max-width: 700px;
margin: 0px auto;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
}
.row {
@include ms-Grid-row;
@include ms-fontColor-white;
background-color: $ms-color-themeDark;
padding: 20px;
}
.column {
@include ms-Grid-col;
@include ms-lg10;
@include ms-xl8;
@include ms-xlPush2;
@include ms-lgPush1;
}
.title {
@include ms-font-xl;
@include ms-fontColor-white;
}
.subTitle {
@include ms-font-l;
@include ms-fontColor-white;
}
.description {
@include ms-font-l;
@include ms-fontColor-white;
}
.button {
// Our button
text-decoration: none;
height: 32px;
// Primary Button
min-width: 80px;
background-color: $ms-color-themePrimary;
border-color: $ms-color-themePrimary;
color: $ms-color-white;
// Basic Button
outline: transparent;
position: relative;
font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system,
BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
font-size: $ms-font-size-m;
font-weight: $ms-font-weight-regular;
border-width: 0;
text-align: center;
cursor: pointer;
display: inline-block;
padding: 0 16px;
.label {
font-weight: $ms-font-weight-semibold;
font-size: $ms-font-size-m;
height: 32px;
line-height: 32px;
margin: 0 4px;
vertical-align: top;
display: inline-block;
}
}
}
.SingleStyle {
.SingleStyleContainer {
width: 100%;
}
.NewsContainer {
height: 173px;
margin-bottom: 15px;
}
.ImgContainer {
width: 276px;
height: 173px;
float: left;
overflow: hidden;
}
.Image {
object-fit: cover;
width: 100%;
height: 100%;
}
.NewsBody {
float: left;
margin-left: 20px;
}
.TitleContainer {
font-weight: 600;
font-size: 20px;
padding: 8px 0px;
}
.TitleStyling {
text-decoration: none;
}
.DescriptionContainer {
height: 72px;
overflow: hidden;
width: 418px;
padding: 7px 0px
}
.IconContainer {
float: right;
margin-top: 4px;
padding: 9px
}
.IconLabelStyling {
margin-left: 2px
}
.AuthorContainer {
float: left;
margin-top: 11px;
font-size: 12px;
}
.NavigationContainer {
width: 100%;
float: left;
height: 30px;
padding-bottom: 7px;
}
.NavigationLeftButtonStyling {
float: left;
padding: 20px;
border: none;
cursor: pointer;
}
.NavigationRightButtonStyling {
float: right;
padding: 20px;
border: none;
cursor: pointer;
}
.NavigationPageNumStyling {
text-align: center;
padding: 20px;
}
}
.StackStyle {
.StackStyleContainer {
width: 100%;
min-height: 420px;
}
.NewsContainer {
height: 352px;
width: 32.4%;
float: left;
border: 1px solid rgb(234, 234, 234);
border-radius: '2px';
}
.ImgContainer {
height: 144px;
overflow: hidden;
}
.Image {
object-fit: cover;
width: 100%;
height: 100%;
margin-left: 0.5px;
margin-right: 0.5px;
}
.NewsBody {
float: left;
height: 308px;
width: 100%;
}
.TitleContainer {
font-weight: 600;
font-size: 20px;
padding: 8px 12px;
overflow: hidden;
height: 27px;
}
.TitleStyling {
text-decoration: none;
}
.DescriptionContainer {
height: 85px;
overflow: hidden;
padding: 9px
}
.IconContainer {
float: right;
margin-top: 20px;
padding: 9px;
font-size: 12px;
}
.IconLabelStyling {
margin-left: 2px
}
.AuthorContainer {
float: left;
margin-top: 15px;
font-size: 12px;
padding: 9x;
margin-left: 9px;
}
.NavigationContainer {
width: 100%;
float: left;
height: 30px;
padding-top: 9px;
padding-bottom: 7px;
}
.NavigationLeftButtonStyling {
float: left;
padding: 20px;
border: none;
cursor: pointer;
}
.NavigationRightButtonStyling {
float: right;
padding: 20px;
border: none;
cursor: pointer;
}
.NavigationPageNumStyling {
text-align: center;
padding: 20px;
}
}

View File

@ -0,0 +1,106 @@
import * as React from 'react';
import { IReactNewsWebpartProps } from './IReactNewsWebpartProps';
import { IReactNewsWebpartState } from './IReactNewsWebpartState';
import SingleStyle from './SingleStyle';
import StackStyle from './StackStyle';
import spservices from './Service/SPServices';
export default class ReactNewsWebpart extends React.Component<IReactNewsWebpartProps, IReactNewsWebpartState> {
private _spservices: spservices;
constructor(props: IReactNewsWebpartProps, state: IReactNewsWebpartState) {
super(props);
this.state = {
SPGuid: '',
News: [],
Reload: false
};
this._spservices = new spservices(this.props.context);
}
public async componentDidMount() {
this.Get('Default');
}
public componentDidUpdate(prevProps: IReactNewsWebpartProps) {
if (prevProps.Site !== this.props.Site) {
this.props.onChangeProperty("Sites");
if (this.props.Site.length > 0) {
this.Get('Update');
}
else {
this.Get('Default');
}
this.setState({Reload: !this.state.Reload});
}
}
public async Get(Choice) {
var e: any[] = [];
var URL: any;
if (this.props.Site === undefined || this.props.Site.length < 1 || (Choice === 'Default' && this.props.Site.length < 1)) {
URL = this.props.context.pageContext.web.absoluteUrl;
const Posts = await this._spservices.getInfo(URL);
Posts.map(async Post => {
const Comments = await this._spservices.getComments(URL, Post.Id);
const Likes = await this._spservices.getLikes(URL, Post.Id);
e.push({
Author: Post.Author,
Title: Post.Title,
Description: Post.Description,
Id: Post.Id,
Created: Post.Created,
Thumbnail: Post.BannerImageUrl,
Url: Post.Url,
Comments: Comments,
Likes: Likes
});
if (this.state.Reload === true) {
this.setState({ News: e, Reload: false });
}
else {this.setState({ News: e });}
});
}
else {
this.props.Site.map(async site => {
URL = site.url;
const Info = await this._spservices.getInfo(URL);
Info.map(async Post => {
const Comments = await this._spservices.getComments(site.url, Post.Id);
const Likes = await this._spservices.getLikes(site.url, Post.Id);
e.push({
Author: Post.Author,
Title: Post.Title,
Description: Post.Description,
Id: Post.Id,
Created: Post.Created,
Thumbnail: Post.BannerImageUrl,
Url: Post.Url,
Comments: Comments,
Likes: Likes
});
if (this.state.Reload === true) {
this.setState({ News: e, Reload: false });
}
else {this.setState({ News: e });}
});
});
}
this.setState({ News: e });
}
/*
public Click() {
this.setState({Reload: true})
}*/
public render(): React.ReactElement<IReactNewsWebpartProps> {
return <div style={{ height: '100%', width: '100%' }}>
{/*<button style={{boxShadow: 'rgb(0 0 0 / 16%) 0px 1px 4px, rgb(0 0 0 / 10%) 0px 0px 40px', border: 'none', marginBottom: '7px', padding: '4px 14px'}} onClick={() => this.Click()}>Reload</button>*/}
{this.props.StyleToggle ?
<StackStyle News={this.state.News} AuthorToggle={this.props.AuthorToggle} Reload={this.state.Reload}></StackStyle> :
<SingleStyle News={this.state.News} AuthorToggle={this.props.AuthorToggle} Reload={this.state.Reload}></SingleStyle>}
</div>;
}
}

View File

@ -0,0 +1,71 @@
import { WebPartContext } from "@microsoft/sp-webpart-base";
import { sp, Web } from "@pnp/sp";
export default class spservices {
constructor(private context: WebPartContext) {
sp.setup({
spfxContext: this.context
});
this.onInit();
}
private async onInit() {
}
public async getInfo(site): Promise<any[]> {
try {
let siteWeb = new Web(site);
let Items: any = await siteWeb.lists.getByTitle("Site%20Pages").items
.select("id,Title,Description,BannerImageUrl,Created,Author/ID,Author/FirstName,Author/LastName,Author/Title,FileRef")
.filter('PromotedState eq 2')
.expand("Author/ID")
.get();
var Res = [];
Items.map(item => {
var Url = site.split('/sites/')[0] + item.FileRef;
var Date = item.Created.split('T')[0];
Res.push({
Author: item.Author.Title,
Title: item.Title,
Description: item.Description,
Id: item.Id,
Created: Date,
BannerImageUrl: item.BannerImageUrl.Url,
Url: Url
});
});
return Res;
}
catch (error) {
return Promise.reject(error);
}
}
public async getComments(Site, ID): Promise<any> {
try {
let siteWeb = new Web(Site);
let Comments: any = await siteWeb.lists.getByTitle("Site%20Pages").items.getById(ID).comments.get();
var AmmountofComments = Comments.length;
Comments.map(item => {
AmmountofComments += item.replyCount;
});
return AmmountofComments;
}
catch (error) {
return Promise.reject(error);
}
}
public async getLikes(Site, ID): Promise<any> {
try {
let siteWeb = new Web(Site);
let Likes: any = await siteWeb.lists.getByTitle("Site%20Pages").items.getById(ID).getLikedByInformation();
return Likes.likeCount;
}
catch (error) {
return Promise.reject(error);
}
}
}

View File

@ -0,0 +1,154 @@
import * as React from 'react';
import { StylingState, StylingProps } from './StylingPropsState';
import { Icon } from 'office-ui-fabric-react/lib/Icon';
import { mergeStyles } from 'office-ui-fabric-react/lib/Styling';
import styles from './ReactNewsWebpart.module.scss';
export const iconClass = mergeStyles({
fontSize: 15,
height: 15,
width: 15
});
export default class StackStyle extends React.Component<StylingProps, StylingState> {
constructor(props: StylingProps) {
super(props);
this.state = {
News: [],
RenderedNews: [],
UpdateCount: 0,
Next: 3,
Count: 1,
Reload: true
};
}
public Next(News) {
var array = [];
var count = 0;
var min = this.state.Next;
var max = min + 4;
News.map(Post => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
var newVal = this.state.Next + 3;
this.setState({ RenderedNews: array, Next: newVal, Count: this.state.Count + 1 });
}
public Back(News) {
var array = [];
var max, min;
min = this.state.Next - 6;
max = this.state.Next - 2;
var count = 0;
News.map((Post) => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
var newVal = this.state.Next - 3;
this.setState({ RenderedNews: array, Next: newVal, Count: this.state.Count - 1 });
}
public componentDidMount() {
var array = [];
var count = 0;
var min = 0;
var max = min + 4;
this.props.News.map(Post => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
this.setState({ RenderedNews: array, Next: 3, Count: 1, UpdateCount: 0 });
}
public componentDidUpdate(prevProps: StylingProps) {
var array = [];
var count = 0;
var min = 0;
var max = min + 4;
if (prevProps.News !== this.props.News) {
this.props.News.map(Post => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
this.setState({ RenderedNews: array, Next: 3, Count: 1, UpdateCount: 0 });
return true;
}
else if (this.props.News.length > 0 && this.props.News.length > this.state.RenderedNews.length && this.state.UpdateCount < 4) {
this.props.News.map(Post => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
this.setState({ RenderedNews: array, Next: 3, Count: 1, UpdateCount: this.state.UpdateCount + 1 });
return true;
}
}
public render(): React.ReactElement<StylingProps> {
var i = 0;
var Height: any;
switch (this.state.RenderedNews.length) {
case 1:
Height = '246px';
break;
case 2:
Height = '435px';
break;
case 3:
Height = '624px';
break;
}
return (<div className={styles.SingleStyle}>
<div className={styles.SingleStyleContainer} style={{ height: Height }}>
<div>{this.state.RenderedNews.map(Post => {
return <div className={styles.NewsContainer} style={{ boxShadow: 'rgb(0 0 0 / 16%) 0px 1px 4px, rgb(0 0 0 / 10%) 0px 0px 1px' }}>
<div className={styles.ImgContainer}>
<img src={Post.Thumbnail} className={styles.Image}></img></div>
<div className={styles.NewsBody}>
<div className={styles.TitleContainer}>
<a className={styles.TitleStyling} href={Post.Url}>{Post.Title}</a>
</div>
<div className={styles.DescriptionContainer}>{Post.Description}</div>
<div className={styles.IconContainer}>
<Icon className={iconClass} iconName="Like"></Icon>
<label className={styles.IconLabelStyling}>
{Post.Likes}
</label>
<Icon style={{ marginLeft: "10px" }} className={iconClass} iconName="Comment"></Icon>
<label className={styles.IconLabelStyling}>
{Post.Comments}
</label>
</div>
<div className={styles.AuthorContainer}>
{this.props.AuthorToggle ? <></> : Post.Author} Created {Post.Created}
</div>
</div>
</div>;
})}</div>
<div className={styles.NavigationContainer} >
<button
disabled={this.state.Next === 3}
style={{ boxShadow: '0 1px 4px rgb(0 0 0 / 30%), 0 0 40px rgb(0 0 0 / 10%)' }}
className={styles.NavigationLeftButtonStyling}
onClick={() => this.Back(this.props.News)}>Back</button>
<button
disabled={this.state.Next >= this.props.News.length}
style={{ boxShadow: '0 1px 4px rgb(0 0 0 / 30%), 0 0 40px rgb(0 0 0 / 10%)' }}
className={styles.NavigationRightButtonStyling}
onClick={() => this.Next(this.props.News)}>Next</button>
<div className={styles.NavigationPageNumStyling}>{this.state.Count} out of {Math.ceil(this.props.News.length / 3)}</div>
</div>
</div>
</div>
);
}
}

View File

@ -0,0 +1,165 @@
import * as React from "react";
import { StylingState, StylingProps } from "./StylingPropsState";
import { Icon } from "office-ui-fabric-react/lib/Icon";
import { mergeStyles } from "office-ui-fabric-react/lib/Styling";
import styles from "./ReactNewsWebpart.module.scss";
export const iconClass = mergeStyles({
fontSize: 15,
height: 15,
width: 15,
});
export default class StackStyle extends React.Component<
StylingProps,
StylingState
> {
constructor(props: StylingProps) {
super(props);
this.state = {
News: [],
RenderedNews: [],
UpdateCount: 0,
Next: 3,
Count: 1,
Reload: true
};
}
public Next(News) {
var array = [];
var count = 0;
var min = this.state.Next;
var max = min + 4;
News.map((Post) => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
var newVal = this.state.Next + 3;
this.setState({ RenderedNews: array, Next: newVal, Count: this.state.Count + 1 });
}
public Back(News) {
var array = [];
var max, min;
min = this.state.Next - 6;
max = this.state.Next - 2;
var count = 0;
News.map((Post) => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
var newVal = this.state.Next - 3;
this.setState({ RenderedNews: array, Next: newVal, Count: this.state.Count - 1 });
}
public componentDidMount() {
var array = [];
var count = 0;
var min = 0;
var max = min + 4;
this.props.News.map(Post => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
this.setState({ RenderedNews: array, Next: 3, Count: 1, UpdateCount: 0 });
}
public componentDidUpdate(prevProps: StylingProps) {
var array = [];
var count = 0;
var min = 0;
var max = min + 4;
if (prevProps.News !== this.props.News) {
this.props.News.map(Post => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
this.setState({ RenderedNews: array, Next: 3, Count: 1, UpdateCount: 0 });
return true;
}
else if (this.props.News.length > 0 && this.props.News.length > this.state.RenderedNews.length && this.state.UpdateCount < 4) {
this.props.News.map(Post => {
count = count + 1;
if (count > min && count < max) {
array.push(Post);
}
});
this.setState({ RenderedNews: array, Next: 3, Count: 1, UpdateCount: this.state.UpdateCount + 1 });
return true;
}
}
public render(): React.ReactElement<StylingProps> {
var i = 0;
return (
<div className={styles.StackStyle}>
<div className={styles.StackStyleContainer}>
<div>
{this.state.RenderedNews.map((Post) => {
i = i + 1;
return (
<div
className={styles.NewsContainer}
style={{ boxShadow: 'rgb(0 0 0 / 13%) 0px 1.6px 3.6px 0px, rgb(0 0 0 / 11%) 0px 0.3px 0.9px 0px', marginRight: `${i === 3 ? '0px' : '7px'}` }}>
<div className={styles.ImgContainer}>
<img src={Post.Thumbnail} className={styles.Image}></img>
</div>
<div className={styles.NewsBody}>
<div className={styles.TitleContainer}>
<a className={styles.TitleStyling} href={Post.Url}>
{Post.Title}</a>
</div>
<div className={styles.DescriptionContainer}>
{Post.Description ? Post.Description.substring(0,182) + '…': '…'}
</div>
<div className={styles.AuthorContainer}>
{this.props.AuthorToggle ? ( <></> ) : ( <div> {Post.Author} <br></br> </div> )}{" "}
{Post.Created}
</div>
<div className={styles.IconContainer}>
<Icon className={iconClass} iconName="Like"></Icon>
<label className={styles.IconLabelStyling}>
{Post.Likes}
</label>
<Icon
style={{ marginLeft: "10px" }}
className={iconClass}
iconName="Comment"
></Icon>
<label className={styles.IconLabelStyling}>
{Post.Comments}
</label>
</div>
</div>
</div>
);
})}
</div>
<br></br>
<div className={styles.NavigationContainer}>
<button
disabled={this.state.Next === 3}
style={{ boxShadow: '0 1px 4px rgb(0 0 0 / 30%), 0 0 40px rgb(0 0 0 / 10%)'}}
className={styles.NavigationLeftButtonStyling}
onClick={() => this.Back(this.props.News)}>Back</button>
<button
disabled={this.state.Next >= this.props.News.length}
style={{ boxShadow: '0 1px 4px rgb(0 0 0 / 30%), 0 0 40px rgb(0 0 0 / 10%)' }}
className={styles.NavigationRightButtonStyling}
onClick={() => this.Next(this.props.News)}>Next</button>
<div className={styles.NavigationPageNumStyling}>{this.state.Count} out of {Math.ceil(this.props.News.length / 3)}</div>
</div>
</div>
</div>
);
}
}

View File

@ -0,0 +1,2 @@
export interface StylingState { News: any[]; RenderedNews: any[]; UpdateCount: number; Next: number; Count: number; Reload: boolean;}
export interface StylingProps { News: any[]; AuthorToggle: string; Reload: boolean; }

View File

@ -0,0 +1,10 @@
define([], function() {
return {
PropertyPaneDescription: "Description",
BasicGroupName: "Group Name",
DescriptionFieldLabel: "Description Field",
StyleToggle: "Style",
AuthorToggle: "Author",
sites: "Sites"
}
});

View File

@ -0,0 +1,13 @@
declare interface IReactNewsWebpartStrings {
PropertyPaneDescription: string;
BasicGroupName: string;
DescriptionFieldLabel: string;
StyleToggle: string;
AuthorToggle: string;
sites: IPropertyFieldSite[];
}
declare module 'ReactNewsWebpartStrings' {
const strings: IReactNewsWebpartStrings;
export = strings;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,38 @@
{
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/includes/tsconfig-web.json",
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"outDir": "lib",
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"es6-promise",
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection"
]
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"lib"
]
}

View File

@ -0,0 +1,30 @@
{
"extends": "@microsoft/sp-tslint-rules/base-tslint.json",
"rules": {
"class-name": false,
"export-name": false,
"forin": false,
"label-position": false,
"member-access": true,
"no-arg": false,
"no-console": false,
"no-construct": false,
"no-duplicate-variable": true,
"no-eval": false,
"no-function-expression": true,
"no-internal-module": true,
"no-shadowed-variable": true,
"no-switch-case-fall-through": true,
"no-unnecessary-semicolons": true,
"no-unused-expression": true,
"no-use-before-declare": true,
"no-with-statement": true,
"semicolon": true,
"trailing-comma": false,
"typedef": false,
"typedef-whitespace": false,
"use-named-parameter": true,
"variable-name": false,
"whitespace": false
}
}