diff --git a/scripts/execute-translation.js b/scripts/execute-translation.js index c9d1d0f45..0b6c555d0 100644 --- a/scripts/execute-translation.js +++ b/scripts/execute-translation.js @@ -35,7 +35,7 @@ async function getAuthToken() { const options = { method: 'POST', - url: 'https://westeurope.api.cognitive.microsoft.com/sts/v1.0/issueToken', + url: 'https://api.cognitive.microsoft.com/sts/v1.0/issueToken', headers: { 'Ocp-Apim-Subscription-Key': subscriptionKey, 'Content-type': 'application/x-www-form-urlencoded', @@ -103,17 +103,22 @@ function compareTranslationKeys(srcObj, dstObj) { // Extract all the keys and set them in alpabetyical order let dstKeys = Object.keys(dstObj); - // Array let toTranslate = []; - dstKeys.forEach((locKey) => { - if (typeof srcObj[locKey] !== "string") { - // In case we have nested translation objects - toTranslate = toTranslate.concat(compareTranslationKeys(srcObj[locKey], dstObj[locKey])); - } else if (srcObj[locKey] === dstObj[locKey]) { - // In case the english value is the same as localized one, add it to translate - toTranslate.push(srcObj[locKey]); - } - }); + // Array + try { + dstKeys.forEach((locKey) => { + if (typeof srcObj[locKey] !== "string") { + // In case we have nested translation objects + toTranslate = toTranslate.concat(compareTranslationKeys(srcObj[locKey], dstObj[locKey])); + } else if (srcObj[locKey] === dstObj[locKey]) { + // In case the english value is the same as localized one, add it to translate + toTranslate.push(srcObj[locKey]); + } + }); + } catch (error) { + console.log(error.message); + } + return toTranslate; } diff --git a/src/loc/bg-bg.ts b/src/loc/bg-bg.ts index 91c042b69..3bc9d13fb 100644 --- a/src/loc/bg-bg.ts +++ b/src/loc/bg-bg.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "No comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Сайт за хляб", - "ListViewGroupEmptyLabel": "Празни", - "WebPartTitlePlaceholder": "Заглавие на уеб част", - "WebPartTitleLabel": "Добавяне на заглавие", - "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": "Днес" - }, - "SendEmailTo": "Изпращане на имейл до {0}", - "StartChatWith": "Започнете разговор с {0}", - "Contact": "Контакт", - "UpdateProfile": "Актуализиране на вашия профил", - "TaxonomyPickerNoTerms": "Набор от изрази не съдържа никакви условия", - "TaxonomyPickerExpandTitle": "Разгъване на този набор от изрази", - "TaxonomyPickerMenuTermSet": "Меню за набор от изрази", - "TaxonomyPickerInLabel": "Инча", - "TaxonomyPickerTermSetLabel": "Набор от изрази", - "peoplePickerComponentTooltipMessage": "Избор на хора", - "peoplePickerComponentErrorMessage": "Задължително поле", - "peoplePickerSuggestionsHeaderText": "Предложени хора", - "peoplePickerLoadingText": "Зареждане", - "PeoplePickerSearchText": "Извличане на потребители", - "PeoplePickerGroupNotFound": "Групата не може да бъде намерена.", - "genericNoResultsFoundText": "Не са намерени резултати", - "ListItemPickerSelectValue": "Изберете стойност", - "ListItemAttachmentsActionDeleteIconTitle": "Изтриете", - "ListItemAttachmentsactionDeleteTitle": "Изтриете", - "ListItemAttachmentsfileDeletedMsg": "Файлът {0} изтрит", - "ListItemAttachmentsfileDeleteError": "Грешка при изтриване на файл: {0}, причина {1}", - "ListItemAttachmentserrorLoadAttachments": "Грешка при зареждане на прикачен елемент от списък, причина: {0}", - "ListItemAttachmentsconfirmDelete": "Наистина ли искате да изпратите прикачения файл {0} в кошчето на сайта?", - "ListItemAttachmentsdialogTitle": "Прикачен файл към елемент от списък", - "ListItemAttachmentsdialogOKbuttonLabel": "OK", - "ListItemAttachmentsdialogCancelButtonLabel": "Отмените", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Изтриете", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Добавяне на прикачен файл", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Добавяне на прикачен файл", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Файлът не {0} прикачен, причина: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Добавяне на прикачен файл", - "ListItemAttachmentsloadingMessage": "Качване на файл...", - "ListItemAttachmentslPlaceHolderIconText": "Прикачен файл към елемент от списък", - "ListItemAttachmentslPlaceHolderDescription": "Моля, добавете прикачен файл", - "ListItemAttachmentslPlaceHolderButtonLabel": "Добавите", - "mapsErrorMessage": "Възникна грешка при зареждането на картата", - "mapsLoadingText": "Зареждане", - "mapsSearchButtonText": "Търсене", - "mapsTitlePrefix": "Карта на", - "ListViewFilterLabel": "Филтриране на списъка", - "HeaderNormalText": "Нормален текст", - "HeaderH2": "Функция 1", - "HeaderH3": "Функция 2", - "HeaderH4": "Функция 3", - "HeaderBlockQuote": "Изтегли цитат", - "AlignLeft": "Подравни отляво", - "AlignCenter": "Център", - "AlignRight": "Подравни отдясно", - "AlignJustify": "Оправдае", - "ListBullet": "Списък с водещи символи", - "ListNumbered": "Номериран списък", - "StyleTitle": "Стил", - "BoldTitle": "Удебелен шрифт (Ctrl + B)", - "ItalicTitle": "Курсив (Ctrl + I)", - "UnderlineTitle": "Подчертаване (Ctrl + U)", - "AlignTitle": "Подравняване", - "ListTitle": "Списък", - "LinkTitle": "Хипервръзка", - "MoreTitle": "Повече", - "FormattingPaneTitle": "Форматиране на текст", - "CloseButton": "Затворите", - "InsertLinkTitle": "Вмъкване на връзка", - "AddressFieldLabel": "Адрес", - "TextToDisplayLabel": "Текст за показване", - "SaveButtonLabel": "Запишете", - "CancelButtonLabel": "Отмените", - "RemoveLinkLabel": "Премахни връзката", - "ParagraphSectionTitle": "Параграф", - "HyperlinkSectionTitle": "Хипервръзка", - "UndoTitle": "Отмени (Ctrl + Z)", - "RedoTitle": "Връщане (CTRL + Y)", - "ClearFormattingTitle": "Изчистване на цялото форматиране", - "FontStyleTitle": "Стил на шрифта", - "FontSizeTitle": "Размер на шрифта", - "StrikethroughTitle": "Зачеркнат", - "SuperscriptTitle": "Горен", - "SubscriptTitle": "Долен индекс", - "FontColorLabel": "Цвят на шрифта", - "AutomaticFontColor": "Автоматично", - "HighlightColorLabel": "Цвят за осветяване", - "NoColorHighlightColor": "Няма цвят", - "IncreaseIndentTitle": "Увеличаване на отстъп", - "DecreaseIndentTitle": "Намаляване на отстъп", - "ThemeColorsGroupName": "Цветове на тема", - "HighlightColorsGroupName": "Цветове за осветяване", - "StandardColorsGroupName": "Стандартни цветове", - "CustomColorsGroupName": "Цветове по избор", - "ThemeColorDarker": "Тема по-тъмна", - "ThemeColorDark": "Тематична тъмнина", - "ThemeColorDarkAlt": "Тематичен тъмен алтернативен", - "ThemeColorPrimary": "Основна тема", - "ThemeColorSecondary": "Втора тема", - "ThemeColorTertiary": "Неутрален третичен", - "ThemeColorNeutralSecondary": "Неутрално вторично", - "ThemeColorNeutralPrimaryAlt": "Неутрален първичен алтернативен", - "ThemeColorNeutralPrimary": "Неутрален първичен", - "ThemeColorNeutralDark": "Неутрален мрак", - "HighlightColorYellow": "Жълто", - "HighlightColorGreen": "Зелен", - "HighlightColorAqua": "Аква", - "HighlightColorMagenta": "Магента", - "HighlightColorBlue": "Синьо", - "HighlightColorRed": "Червено", - "HighlightColorDarkblue": "Тъмносин", - "HighlightColorTeal": "Тийл", - "HighlightColorDarkgreen": "Тъмнозелено", - "HighlightColorPurple": "Лилаво", - "HighlightColorMaroon": "Maroon", - "HighlightColorGold": "Злато", - "HighlightColorDarkgrey": "Тъмносив", - "HighlightColorGrey": "Сив", - "HighlightColorBlack": "Черно", - "StandardColorDarkred": "Тъмночервен", - "StandardColorRed": "Червено", - "StandardColorOrange": "Оранжево", - "StandardColorYellow": "Жълто", - "StandardColorLightgreen": "Светлозелено", - "StandardColorGreen": "Зелен", - "StandardColorLightblue": "Светло синьо", - "StandardColorBlue": "Синьо", - "StandardColorDarkblue": "Тъмносин", - "StandardColorPurple": "Лилаво", - "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": "Днес", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Дата", - "DateTimePickerTime": "Време", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Неправилна стойност на час", - "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 Комънс. Прегледайте лицензите, за да сте сигурни, че спазвате изискванията.", - "DateFormat": "ММ/дд/гггг чч: мм а", - "DocumentLabelTemplate": "{0}, документ, модифициран {1}, редактиран от {2}, Private", - "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} елементи, Private", - "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": "Осъществено от Bing", - "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", - "Например", - "YB" - ], - "SorryWebSearch": "За съжаление тази функция не е изпълнена в тази извадка, защото ще изисква ключ за API на Bing.", - "SortedAscending": "Сортирани от а до я", - "SortedDescending": "Сортирани Z в", - "TypeAriaLabel": "Операции с колони за файлов тип, натиснете, за да сортирате по тип файл", - "UploadFileHeader": "Качване на файл", - "UploadImageHeader": "Качване на изображение", - "UploadLinkLabel": "Качите", - "WebSearchLinkLabel": "Търсене в уеб", - "Yes": "Да", - "SelectedLabel": "Избрани", - "SelectIcon": "Избор на икона", - "StockImagesLinkLabel": "Стокови изображения", - "StockImagesHeader": "Стокови изображения", - "OrgAssetsLinkLabel": "Вашата организация" - }; -}); + "Save": "Спасявам", + "Cancel": "Задрасквам", + "SiteBreadcrumbLabel": "Сайт за хляб", + "ListViewGroupEmptyLabel": "Празни", + "WebPartTitlePlaceholder": "Заглавие на уеб част", + "WebPartTitleLabel": "Добавяне на заглавие", + "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": "Днес" + }, + "SendEmailTo": "Изпращане на имейл до {0}", + "StartChatWith": "Започнете разговор с {0}", + "Contact": "Контакт", + "UpdateProfile": "Актуализиране на вашия профил", + "TaxonomyPickerNoTerms": "Набор от изрази не съдържа никакви условия", + "TaxonomyPickerExpandTitle": "Разгъване на този набор от изрази", + "TaxonomyPickerMenuTermSet": "Меню за набор от изрази", + "TaxonomyPickerInLabel": "Инча", + "TaxonomyPickerTermSetLabel": "Набор от изрази", + "TaxonomyPickerTermsNotFound": "Следващият(те) избран(и) термин(и) не може да бъде намерен(и) в хранилището на изрази: {0}", + "TaxonomyPickerInvalidTerms": "Моля, фиксирайте невалиден(и) термин(и): {0}", + "peoplePickerComponentTooltipMessage": "Избор на хора", + "peoplePickerComponentErrorMessage": "Задължително поле", + "peoplePickerSuggestionsHeaderText": "Предложени хора", + "peoplePickerLoadingText": "Зареждане", + "PeoplePickerSearchText": "Извличане на потребители", + "PeoplePickerGroupNotFound": "Групата не може да бъде намерена.", + "genericNoResultsFoundText": "Не са намерени резултати", + "ListItemPickerSelectValue": "Изберете стойност", + "ListItemAttachmentsActionDeleteIconTitle": "Изтриете", + "ListItemAttachmentsactionDeleteTitle": "Изтриете", + "ListItemAttachmentsfileDeletedMsg": "Файлът {0} изтрит", + "ListItemAttachmentsfileDeleteError": "Грешка при изтриване на файл: {0}, причина {1}", + "ListItemAttachmentserrorLoadAttachments": "Грешка при зареждане на прикачен елемент от списък, причина: {0}", + "ListItemAttachmentsconfirmDelete": "Наистина ли искате да изпратите прикачения файл {0} в кошчето на сайта?", + "ListItemAttachmentsdialogTitle": "Прикачен файл към елемент от списък", + "ListItemAttachmentsdialogOKbuttonLabel": "OK", + "ListItemAttachmentsdialogCancelButtonLabel": "Отмените", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Изтриете", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Добавяне на прикачен файл", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Добавяне на прикачен файл", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Файлът не {0} прикачен, причина: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Добавяне на прикачен файл", + "ListItemAttachmentsloadingMessage": "Качване на файл...", + "ListItemAttachmentslPlaceHolderIconText": "Прикачен файл към елемент от списък", + "ListItemAttachmentslPlaceHolderDescription": "Моля, добавете прикачен файл", + "ListItemAttachmentslPlaceHolderButtonLabel": "Добавите", + "mapsErrorMessage": "Възникна грешка при зареждането на картата", + "mapsLoadingText": "Зареждане", + "mapsSearchButtonText": "Търсене", + "mapsTitlePrefix": "Карта на", + "ListViewFilterLabel": "Филтриране на списъка", + "HeaderNormalText": "Нормален текст", + "HeaderH2": "Функция 1", + "HeaderH3": "Функция 2", + "HeaderH4": "Функция 3", + "HeaderBlockQuote": "Изтегли цитат", + "AlignLeft": "Подравни отляво", + "AlignCenter": "Център", + "AlignRight": "Подравни отдясно", + "AlignJustify": "Оправдае", + "ListBullet": "Списък с водещи символи", + "ListNumbered": "Номериран списък", + "StyleTitle": "Стил", + "BoldTitle": "Удебелен шрифт (Ctrl + B)", + "ItalicTitle": "Курсив (Ctrl + I)", + "UnderlineTitle": "Подчертаване (Ctrl + U)", + "AlignTitle": "Подравняване", + "ListTitle": "Списък", + "LinkTitle": "Хипервръзка", + "ImageTitle": "Изображение", + "MoreTitle": "Повече", + "FormattingPaneTitle": "Форматиране на текст", + "CloseButton": "Затворите", + "InsertLinkTitle": "Вмъкване на връзка", + "InsertImageTitle": "Вмъкване на изображение", + "AddressFieldLabel": "Адрес", + "TextToDisplayLabel": "Текст за показване", + "SaveButtonLabel": "Запишете", + "CancelButtonLabel": "Отмените", + "RemoveLinkLabel": "Премахни връзката", + "ParagraphSectionTitle": "Параграф", + "HyperlinkSectionTitle": "Хипервръзка", + "UndoTitle": "Отмени (Ctrl + Z)", + "RedoTitle": "Връщане (CTRL + Y)", + "ClearFormattingTitle": "Изчистване на цялото форматиране", + "FontStyleTitle": "Стил на шрифта", + "FontSizeTitle": "Размер на шрифта", + "StrikethroughTitle": "Зачеркнат", + "SuperscriptTitle": "Горен", + "SubscriptTitle": "Долен индекс", + "FontColorLabel": "Цвят на шрифта", + "AutomaticFontColor": "Автоматично", + "HighlightColorLabel": "Цвят за осветяване", + "NoColorHighlightColor": "Няма цвят", + "IncreaseIndentTitle": "Увеличаване на отстъп", + "DecreaseIndentTitle": "Намаляване на отстъп", + "ThemeColorsGroupName": "Цветове на тема", + "HighlightColorsGroupName": "Цветове за осветяване", + "StandardColorsGroupName": "Стандартни цветове", + "CustomColorsGroupName": "Цветове по избор", + "ThemeColorDarker": "Тема по-тъмна", + "ThemeColorDark": "Тематична тъмнина", + "ThemeColorDarkAlt": "Тематичен тъмен алтернативен", + "ThemeColorPrimary": "Основна тема", + "ThemeColorSecondary": "Втора тема", + "ThemeColorTertiary": "Неутрален третичен", + "ThemeColorNeutralSecondary": "Неутрално вторично", + "ThemeColorNeutralPrimaryAlt": "Неутрален първичен алтернативен", + "ThemeColorNeutralPrimary": "Неутрален първичен", + "ThemeColorNeutralDark": "Неутрален мрак", + "HighlightColorYellow": "Жълто", + "HighlightColorGreen": "Зелен", + "HighlightColorAqua": "Аква", + "HighlightColorMagenta": "Магента", + "HighlightColorBlue": "Синьо", + "HighlightColorRed": "Червено", + "HighlightColorDarkblue": "Тъмносин", + "HighlightColorTeal": "Тийл", + "HighlightColorDarkgreen": "Тъмнозелено", + "HighlightColorPurple": "Лилаво", + "HighlightColorMaroon": "Кестеняв", + "HighlightColorGold": "Злато", + "HighlightColorDarkgrey": "Тъмносив", + "HighlightColorGrey": "Сив", + "HighlightColorBlack": "Черно", + "StandardColorDarkred": "Тъмночервен", + "StandardColorRed": "Червено", + "StandardColorOrange": "Оранжево", + "StandardColorYellow": "Жълто", + "StandardColorLightgreen": "Светлозелено", + "StandardColorGreen": "Зелен", + "StandardColorLightblue": "Светло синьо", + "StandardColorBlue": "Синьо", + "StandardColorDarkblue": "Тъмносин", + "StandardColorPurple": "Лилаво", + "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": "Днес", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Дата", + "DateTimePickerTime": "Време", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Неправилна стойност на час", + "DateTimePickerMinuteValueInvalid": "Неправилна стойност на минута", + "DateTimePickerSecondValueInvalid": "Неправилна втора стойност", + "DateTimePickerTextErrorMessage": "Моля, въведете валидна дата", + "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 Комънс. Прегледайте лицензите, за да сте сигурни, че спазвате изискванията.", + "DateFormat": "ММ/дд/гггг чч: мм а", + "DocumentLabelTemplate": "{0}, документ, модифициран {1}, редактиран от {2}, Private", + "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} елементи, Private", + "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": "Осъществено от Bing", + "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", + "Например", + "YB" + ], + "SorryWebSearch": "За съжаление тази функция не е изпълнена в тази извадка, защото ще изисква ключ за API на Bing.", + "SortedAscending": "Сортирани от а до я", + "SortedDescending": "Сортирани Z в", + "TypeAriaLabel": "Операции с колони за файлов тип, натиснете, за да сортирате по тип файл", + "UploadFileHeader": "Качване на файл", + "UploadImageHeader": "Качване на изображение", + "UploadLinkLabel": "Качите", + "WebSearchLinkLabel": "Търсене в уеб", + "StockImagesLinkLabel": "Стокови изображения", + "StockImagesHeader": "Стокови изображения", + "Yes": "Да", + "NewFolderNamePlaceholder": "Въведете името на папката си", + "FolderFilterBoxPlaceholder": "Филтриране на папките по име", + "FolderExplorerLoading": "Зареждане на папки...", + "FolderExplorerNoItems": "Тази папка няма никакви подпапки.", + "NewFolderIncorrectSymbolsError": "Моля, въведете име, което не включва никой от тези знаци: \" * : < > ? / |.", + "SomethingWentWrong": "Нещо се обърка", + "SelectedLabel": "Избрани", + "SelectIcon": "Избор на икона", + "TreeViewExpandTitle": "Разгънете този елемент", + "TreeViewCollapseTitle": "Свиване на този елемент", + "CollectionDataEmptyFields": "Не са предоставени полета за данните за събирането.", + "CollectionDataEmptyValue": "Няма данни в колекцията ви.", + "CollectionAddRowButtonLabel": "Добавяне на данни към колекцията", + "CollectionDeleteRowButtonLabel": "Изтриване на текущия ред", + "CollectionSaveAndAddButtonLabel": "Добавяне и записване", + "CollectionDataItemShowErrorsLabel": "Показване на грешки в редовете", + "CollectionDataItemFieldRequiredLabel": "Полето е задължително.", + "CollectionDataItemMissingFields": "Колекцията полета е празна!", + "InvalidUrlError": "Предоставеният URL адрес не е валиден", + "CollectionDataSearch": "Търсене", + "MyTeamsLoadingMessage": "зареждане на вашите екипи", + "MyTeamsMessageError": "Нещо се обърка, докато зареждате екипите си, моля, опитайте по-късно или опреснете браузъра", + "MyTeamsNoTeamsMessage": "Нямаш отбори", + "MyTeamsTeamChannelPublicMessage": "Публични канали", + "MyTeamsTeamChannelTypeMessage": "Частни канали", + "TeamChannelPickerFontIconFavoriteText": "Любимите", + "TeamChannelPickerFontIconPrivateChannelTitle": "Частен канал", + "TeamChannelPickerSugestionHeaderText": "Предложени екипни канали", + "TeamPickerButtonRemoveTitle": "махам", + "TeamPickernoResultsFoundText": "Не са намерени Екипи", + "TeamPickerSugestionsHeaderText": "Предложени екипи", + "TeamsChannelPickerButtonRemoveTitle": "махам", + "TeamsChannelPickerNoresultsFoundText": "Няма намерени канали", + "ViewMore": "Преглед на повече", + "DynamicFormLoading": "Зареждане...", + "DynamicFormPleaseWait": "Моля, изчакайте...", + "DynamicFormRequiredErrorMessage": "Не можеш да оставиш това празно.", + "DynamicFormTermPanelTitle": "Изберете Термин", + "DynamicFormEnterURLPlaceholder": "Въведете URL адрес", + "DynamicFormEnterDescriptionPlaceholder": "Алтернативен текст", + "customDisplayName": "Използвайте това местоположение:", + "ListItemCommentDIalogDeleteSubText": "Наистина ли искате да изтриете този коментар?", + "ListItemCommentsDialogDeleteTitle": "Потвърдете Изтриване на коментар", + "ListItemCommentsLabel": "Коментари", + "ListItemCommentsNoCommentsLabel": "No comments", + "OrgAssetsLinkLabel": "Вашата организация", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/ca-es.ts b/src/loc/ca-es.ts index e0a105953..59b6cb42d 100644 --- a/src/loc/ca-es.ts +++ b/src/loc/ca-es.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "No comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Lloc web d'engruna", - "ListViewGroupEmptyLabel": "Buit", - "WebPartTitlePlaceholder": "Títol de l'element web", - "WebPartTitleLabel": "Afegir un títol", - "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": "fa {0} minut||fa {0} 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": "En {0} hora||En {0} hores", - "L_RelativeDateTime_XHours": "fa {0} hora||fa {0} hores", - "L_RelativeDateTime_XHoursFutureIntervals": "1||2-", - "L_RelativeDateTime_XHoursIntervals": "1||2-", - "L_RelativeDateTime_DayAndTime": "{0} a {1}", - "L_RelativeDateTime_XDaysFuture": "{0} dia a partir d'ara||{0} dies a partir d'ara", - "L_RelativeDateTime_XDays": "{0} fa un dia||fa {0} dies", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Avui" - }, - "SendEmailTo": "Enviar un correu electrònic a {0}", - "StartChatWith": "Iniciar un xat amb {0}", - "Contact": "Contacte", - "UpdateProfile": "Actualitza el teu perfil", - "TaxonomyPickerNoTerms": "El conjunt de termes no conté cap terme", - "TaxonomyPickerExpandTitle": "Expandeix aquest conjunt de termes", - "TaxonomyPickerMenuTermSet": "Menú per al conjunt de termes", - "TaxonomyPickerInLabel": "En", - "TaxonomyPickerTermSetLabel": "Conjunt de termes", - "peoplePickerComponentTooltipMessage": "Selector de persones", - "peoplePickerComponentErrorMessage": "Camp obligatori", - "peoplePickerSuggestionsHeaderText": "Persones suggerides", - "peoplePickerLoadingText": "Càrrega", - "PeoplePickerSearchText": "Obtenció d'usuaris", - "PeoplePickerGroupNotFound": "No s'ha pogut trobar el grup.", - "genericNoResultsFoundText": "No hi ha resultats trobats", - "ListItemPickerSelectValue": "Seleccioneu valor", - "ListItemAttachmentsActionDeleteIconTitle": "Suprimir", - "ListItemAttachmentsactionDeleteTitle": "Suprimir", - "ListItemAttachmentsfileDeletedMsg": "El fitxer {0} suprimit", - "ListItemAttachmentsfileDeleteError": "Error en suprimir arxiu: {0}, raó {1}", - "ListItemAttachmentserrorLoadAttachments": "Error en l'adjunció de l'element de la llista de càrrega, raó: {0}", - "ListItemAttachmentsconfirmDelete": "Esteu segur que voleu enviar el fitxer adjunt {0} a la Paperera de reciclatge del lloc?", - "ListItemAttachmentsdialogTitle": "Adjunció de l'element de llista", - "ListItemAttachmentsdialogOKbuttonLabel": "Correcte", - "ListItemAttachmentsdialogCancelButtonLabel": "Cancel·lar", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Suprimir", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Afegeix un fitxer adjunt", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Afegeix un fitxer adjunt", - "ListItemAttachmentsuploadAttachmentErrorMsg": "El fitxer no {0} adjuntat, motiu: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Afegeix un fitxer adjunt", - "ListItemAttachmentsloadingMessage": "Carregant fitxer...", - "ListItemAttachmentslPlaceHolderIconText": "Adjunció de l'element de llista", - "ListItemAttachmentslPlaceHolderDescription": "Afegiu un fitxer adjunt", - "ListItemAttachmentslPlaceHolderButtonLabel": "Afegir", - "mapsErrorMessage": "Hi ha hagut un error en carregar el mapa", - "mapsLoadingText": "Càrrega", - "mapsSearchButtonText": "Cerca", - "mapsTitlePrefix": "Mapa de", - "ListViewFilterLabel": "Filtrar la llista", - "HeaderNormalText": "Text normal", - "HeaderH2": "Encapçalament 1", - "HeaderH3": "Encapçalament 2", - "HeaderH4": "Encapçalament 3", - "HeaderBlockQuote": "Cita introductòria", - "AlignLeft": "Alinea a l'esquerra", - "AlignCenter": "Centre", - "AlignRight": "Alinea a la dreta", - "AlignJustify": "Justificar", - "ListBullet": "Llista amb vinyades", - "ListNumbered": "Llista numerada", - "StyleTitle": "Estil", - "BoldTitle": "Negreta (Control + B)", - "ItalicTitle": "Cursiva (Control + I)", - "UnderlineTitle": "Subratllat (Control + U)", - "AlignTitle": "Align", - "ListTitle": "Llista", - "LinkTitle": "Hipervincle", - "MoreTitle": "Més", - "FormattingPaneTitle": "Formatació de text", - "CloseButton": "Tancar", - "InsertLinkTitle": "Insereix un enllaç", - "AddressFieldLabel": "Adreça", - "TextToDisplayLabel": "Text per mostrar", - "SaveButtonLabel": "Salvar", - "CancelButtonLabel": "Cancel·lar", - "RemoveLinkLabel": "Suprimeix l'enllaç", - "ParagraphSectionTitle": "Paràgraf", - "HyperlinkSectionTitle": "Hipervincle", - "UndoTitle": "Desfés (Ctrl + Z)", - "RedoTitle": "Refés (Ctrl + Y)", - "ClearFormattingTitle": "Esborra tot el format", - "FontStyleTitle": "Estil de font", - "FontSizeTitle": "Mida de la lletra", - "StrikethroughTitle": "Marcat", - "SuperscriptTitle": "Superíndex", - "SubscriptTitle": "Subíndex", - "FontColorLabel": "Color de la font", - "AutomaticFontColor": "Automàtica", - "HighlightColorLabel": "Color de ressaltat", - "NoColorHighlightColor": "Sense color", - "IncreaseIndentTitle": "Augmenta la sagnia", - "DecreaseIndentTitle": "Disminueix la sagnia", - "ThemeColorsGroupName": "Colors temàtics", - "HighlightColorsGroupName": "Colors de ressaltat", - "StandardColorsGroupName": "Colors estàndard", - "CustomColorsGroupName": "Colors personalitzats", - "ThemeColorDarker": "Tema més fosc", - "ThemeColorDark": "Tema fosc", - "ThemeColorDarkAlt": "Tema fosc alternatiu", - "ThemeColorPrimary": "Tema primari", - "ThemeColorSecondary": "Tema secundari", - "ThemeColorTertiary": "Terciari neutre", - "ThemeColorNeutralSecondary": "Secundari neutre", - "ThemeColorNeutralPrimaryAlt": "Alternativa primària neutra", - "ThemeColorNeutralPrimary": "Primària neutra", - "ThemeColorNeutralDark": "Fosc neutre", - "HighlightColorYellow": "Groc", - "HighlightColorGreen": "Verd", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Blau", - "HighlightColorRed": "Vermell", - "HighlightColorDarkblue": "Blau fosc", - "HighlightColorTeal": "Xarxet", - "HighlightColorDarkgreen": "Verd fosc", - "HighlightColorPurple": "Porpra", - "HighlightColorMaroon": "Maroon", - "HighlightColorGold": "Or", - "HighlightColorDarkgrey": "Gris fosc", - "HighlightColorGrey": "Gris", - "HighlightColorBlack": "Negre", - "StandardColorDarkred": "Vermell fosc", - "StandardColorRed": "Vermell", - "StandardColorOrange": "Taronja", - "StandardColorYellow": "Groc", - "StandardColorLightgreen": "Verd clar", - "StandardColorGreen": "Verd", - "StandardColorLightblue": "Blau clar", - "StandardColorBlue": "Blau", - "StandardColorDarkblue": "Blau fosc", - "StandardColorPurple": "Porpra", - "DatePickerMonthLongJanuary": "Gener", - "DatePickerMonthShortJanuary": "Gener", - "DatePickerMonthLongFebruary": "Febrer", - "DatePickerMonthShortFebruary": "Febrer", - "DatePickerMonthLongMarch": "Març", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "Abril", - "DatePickerMonthShortApril": "Abr", - "DatePickerMonthLongMay": "Pot", - "DatePickerMonthShortMay": "Pot", - "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", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Data", - "DateTimePickerTime": "Temps", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Valor d'hora incorrecte", - "AddFileButtonLabel": "Afegeix un fitxer", - "AddImageButtonLabel": "Afegir imatge", - "AriaCellValue": "{0} columna, {1}", - "FilePickerCancelButtonLabel": "Cancel·lar", - "CantValidateValidationMessage": "No hem pogut verificar aquest enllaç. Consulteu l'enllaç i torneu-ho a provar.", - "ChangeFileLinkLabel": "Canvia el fitxer", - "ChangeImageLinkLabel": "Canviar imatge", - "ChooseFileLinkLabel": "Trieu fitxer", - "ChooseImageLinkLabel": "Trieu 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 les llicències Creative Commons. Revisar les llicències per assegurar-vos que compliu.", - "DateFormat": "MM/DD/AAAA hh: mm A", - "DocumentLabelTemplate": "{0}, document, {1} modificat, editat per {2},", - "DocumentLibraries": "Biblioteques de documents", - "EditedByNamePlate": "editat per ", - "EmptyFileSize": "0 bytes", - "FilePickerHeader": "Selector 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, {1} modificada, editada per {2}, {3} elements,", - "FromLinkLinkLabel": "Des d'un enllaç", - "ImageAltText": ". {0} imatge", - "ImageAriaLabelTemplate": ". {0} imatge", - "ImageLayoutPlaceholderText": "Disposició", - "ImageSizePlaceholderText": "Mida de la imatge", - "ItemChildCountField": "Element nen Comte", - "LayoutOptionAll": "Tots els", - "LayoutOptionSquare": "Plaça", - "LayoutOptionTall": "Alt", - "LayoutOptionWide": "Àmplia", - "LearnMoreLink": "Obtén més informació.", - "LicenseOptionAll": "Tots els", - "LicenseOptionAny": "Només Creative Commons", - "LicensePlaceholderText": "Llicència", - "LinkFileInstructions": "Enganxa un enllaç a un fitxer del OneDrive for Business o del SharePoint Online", - "LinkHeader": "Des d'un enllaç", - "LinkImageInstructions": "Enganxeu un enllaç a una imatge al OneDrive for Business o al SharePoint Online", - "ListLayoutAriaLabel": "Veure opcions. {0} {1}.", - "ListLayoutCompact": "Compact View", - "ListLayoutCompactDescription": "Veure articles i detalls en una llista compacta", - "ListLayoutList": "Vista de llista", - "ListLayoutListDescrition": "Veure els elements i els detalls d'una llista", - "ListLayoutTile": "Vista sobre el mosaic", - "ListLayoutTileDescription": "Veure elements amb visualitzacions prèvies de mosaic", - "ListOptionsAlt": "Veure opcions. {0} seleccionat.", - "ListOptionsTitle": "Obrir el menú Opcions de visualització", - "Loading": "Càrrega...", - "ModifiedByField": "Modificat per", - "ModifiedField": "Data de modificació", - "NameField": "Nom", - "No": "No", - "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 donem suport. Només podeu enllaçar a una imatge.", - "NoRecentFiles": "No hi ha fitxers recents", - "NoRecentFilesDescription": "Proveu de seleccionar un fitxer del vostre lloc web o carregueu-ne un del dispositiu.", - "NoResultsBadEnglish": "No hi ha cap resultat trobat. Proveu de canviar les opcions de 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}, {2} modificades, editat per {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Aquest element és del vostre lloc del OneDrive. Els fitxers i les carpetes del OneDrive són privats a menys que els compartiu. Heu compartit aquest fitxer amb els membres del vostre lloc perquè el puguin l?", - "OneDriveConfirmDialogTitle": "Només comprovant...", - "OneDriveEmptyFolderAlt": "Carpeta buida", - "OneDriveEmptyFolderDescription": "Per afegir fitxers, aneu al vostre 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 està buida", - "OneDriveRootFolderName": "Arxius", - "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": "Alimentat per Bing", - "RecentDocumentsHeader": "Documents recents", - "RecentImagesHeader": "Imatges recents", - "RecentLinkLabel": "Recent", - "SearchBoxPlaceholder": "Web Search", - "SearchResultAlt": "Resultat de la imatge de {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": "Extraordinàriament gran", - "SizeOptionLarge": "Gran", - "SizeOptionMedium": "Mitjà", - "SizeOptionSmall": "Petit", - "SizeUnit": [ - "Bytes", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Ex", - "YB" - ], - "SorryWebSearch": "Ho sentim, aquesta funció no s'implementa en aquesta mostra, ja que requeriria una clau d'API del Bing.", - "SortedAscending": "Ordenat a a Z", - "SortedDescending": "Ordenat Z a un", - "TypeAriaLabel": "Les operacions de columna per al tipus de fitxer, premeu per ordenar el tipus de fitxer", - "UploadFileHeader": "Carrega fitxer", - "UploadImageHeader": "Carrega la imatge", - "UploadLinkLabel": "Carregar", - "WebSearchLinkLabel": "Web Search", - "Yes": "Sí", - "SelectedLabel": "Seleccionat", - "SelectIcon": "Seleccionar icona", - "StockImagesLinkLabel": "Imatges en estoc", - "StockImagesHeader": "Imatges en estoc", - "OrgAssetsLinkLabel": "La vostra organització" - }; -}); + "Save": "Salvar", + "Cancel": "Cancel·lar", + "SiteBreadcrumbLabel": "Lloc web d'engruna", + "ListViewGroupEmptyLabel": "Buit", + "WebPartTitlePlaceholder": "Títol de l'element web", + "WebPartTitleLabel": "Afegir un títol", + "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": "fa {0} minut||fa {0} 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": "En {0} hora||En {0} hores", + "L_RelativeDateTime_XHours": "fa {0} hora||fa {0} hores", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{0} a {1}", + "L_RelativeDateTime_XDaysFuture": "{0} dia a partir d'ara||{0} dies a partir d'ara", + "L_RelativeDateTime_XDays": "{0} fa un dia||fa {0} dies", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Avui" + }, + "SendEmailTo": "Enviar un correu electrònic a {0}", + "StartChatWith": "Iniciar un xat amb {0}", + "Contact": "Contacte", + "UpdateProfile": "Actualitza el teu perfil", + "TaxonomyPickerNoTerms": "El conjunt de termes no conté cap terme", + "TaxonomyPickerExpandTitle": "Expandeix aquest conjunt de termes", + "TaxonomyPickerMenuTermSet": "Menú per al conjunt de termes", + "TaxonomyPickerInLabel": "En", + "TaxonomyPickerTermSetLabel": "Conjunt de termes", + "TaxonomyPickerTermsNotFound": "No s'han trobat els següents termes seleccionats al magatzem de termes: {0}", + "TaxonomyPickerInvalidTerms": "Corregiu els termes no vàlids: {0}", + "peoplePickerComponentTooltipMessage": "Selector de persones", + "peoplePickerComponentErrorMessage": "Camp obligatori", + "peoplePickerSuggestionsHeaderText": "Persones suggerides", + "peoplePickerLoadingText": "Càrrega", + "PeoplePickerSearchText": "Obtenció d'usuaris", + "PeoplePickerGroupNotFound": "No s'ha pogut trobar el grup.", + "genericNoResultsFoundText": "No hi ha resultats trobats", + "ListItemPickerSelectValue": "Seleccioneu valor", + "ListItemAttachmentsActionDeleteIconTitle": "Suprimir", + "ListItemAttachmentsactionDeleteTitle": "Suprimir", + "ListItemAttachmentsfileDeletedMsg": "El fitxer {0} suprimit", + "ListItemAttachmentsfileDeleteError": "Error en suprimir arxiu: {0}, raó {1}", + "ListItemAttachmentserrorLoadAttachments": "Error en l'adjunció de l'element de la llista de càrrega, raó: {0}", + "ListItemAttachmentsconfirmDelete": "Esteu segur que voleu enviar el fitxer adjunt {0} a la Paperera de reciclatge del lloc?", + "ListItemAttachmentsdialogTitle": "Adjunció de l'element de llista", + "ListItemAttachmentsdialogOKbuttonLabel": "Correcte", + "ListItemAttachmentsdialogCancelButtonLabel": "Cancel·lar", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Suprimir", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Afegeix un fitxer adjunt", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Afegeix un fitxer adjunt", + "ListItemAttachmentsuploadAttachmentErrorMsg": "El fitxer no {0} adjuntat, motiu: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Afegeix un fitxer adjunt", + "ListItemAttachmentsloadingMessage": "Carregant fitxer...", + "ListItemAttachmentslPlaceHolderIconText": "Adjunció de l'element de llista", + "ListItemAttachmentslPlaceHolderDescription": "Afegiu un fitxer adjunt", + "ListItemAttachmentslPlaceHolderButtonLabel": "Afegir", + "mapsErrorMessage": "Hi ha hagut un error en carregar el mapa", + "mapsLoadingText": "Càrrega", + "mapsSearchButtonText": "Cerca", + "mapsTitlePrefix": "Mapa de", + "ListViewFilterLabel": "Filtrar la llista", + "HeaderNormalText": "Text normal", + "HeaderH2": "Encapçalament 1", + "HeaderH3": "Encapçalament 2", + "HeaderH4": "Encapçalament 3", + "HeaderBlockQuote": "Cita introductòria", + "AlignLeft": "Alinea a l'esquerra", + "AlignCenter": "Centre", + "AlignRight": "Alinea a la dreta", + "AlignJustify": "Justificar", + "ListBullet": "Llista amb vinyades", + "ListNumbered": "Llista numerada", + "StyleTitle": "Estil", + "BoldTitle": "Negreta (Control + B)", + "ItalicTitle": "Cursiva (Control + I)", + "UnderlineTitle": "Subratllat (Control + U)", + "AlignTitle": "Alinear", + "ListTitle": "Llista", + "LinkTitle": "Hipervincle", + "ImageTitle": "Imatge", + "MoreTitle": "Més", + "FormattingPaneTitle": "Formatació de text", + "CloseButton": "Tancar", + "InsertLinkTitle": "Insereix un enllaç", + "InsertImageTitle": "Insereix una imatge", + "AddressFieldLabel": "Adreça", + "TextToDisplayLabel": "Text per mostrar", + "SaveButtonLabel": "Salvar", + "CancelButtonLabel": "Cancel·lar", + "RemoveLinkLabel": "Suprimeix l'enllaç", + "ParagraphSectionTitle": "Paràgraf", + "HyperlinkSectionTitle": "Hipervincle", + "UndoTitle": "Desfés (Ctrl + Z)", + "RedoTitle": "Refés (Ctrl + Y)", + "ClearFormattingTitle": "Esborra tot el format", + "FontStyleTitle": "Estil de font", + "FontSizeTitle": "Mida de la lletra", + "StrikethroughTitle": "Marcat", + "SuperscriptTitle": "Superíndex", + "SubscriptTitle": "Subíndex", + "FontColorLabel": "Color de la font", + "AutomaticFontColor": "Automàtica", + "HighlightColorLabel": "Color de ressaltat", + "NoColorHighlightColor": "Sense color", + "IncreaseIndentTitle": "Augmenta la sagnia", + "DecreaseIndentTitle": "Disminueix la sagnia", + "ThemeColorsGroupName": "Colors temàtics", + "HighlightColorsGroupName": "Colors de ressaltat", + "StandardColorsGroupName": "Colors estàndard", + "CustomColorsGroupName": "Colors personalitzats", + "ThemeColorDarker": "Tema més fosc", + "ThemeColorDark": "Tema fosc", + "ThemeColorDarkAlt": "Tema fosc alternatiu", + "ThemeColorPrimary": "Tema primari", + "ThemeColorSecondary": "Tema secundari", + "ThemeColorTertiary": "Terciari neutre", + "ThemeColorNeutralSecondary": "Secundari neutre", + "ThemeColorNeutralPrimaryAlt": "Alternativa primària neutra", + "ThemeColorNeutralPrimary": "Primària neutra", + "ThemeColorNeutralDark": "Fosc neutre", + "HighlightColorYellow": "Groc", + "HighlightColorGreen": "Verd", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Blau", + "HighlightColorRed": "Vermell", + "HighlightColorDarkblue": "Blau fosc", + "HighlightColorTeal": "Xarxet", + "HighlightColorDarkgreen": "Verd fosc", + "HighlightColorPurple": "Porpra", + "HighlightColorMaroon": "Maroon", + "HighlightColorGold": "Or", + "HighlightColorDarkgrey": "Gris fosc", + "HighlightColorGrey": "Gris", + "HighlightColorBlack": "Negre", + "StandardColorDarkred": "Vermell fosc", + "StandardColorRed": "Vermell", + "StandardColorOrange": "Taronja", + "StandardColorYellow": "Groc", + "StandardColorLightgreen": "Verd clar", + "StandardColorGreen": "Verd", + "StandardColorLightblue": "Blau clar", + "StandardColorBlue": "Blau", + "StandardColorDarkblue": "Blau fosc", + "StandardColorPurple": "Porpra", + "DatePickerMonthLongJanuary": "Gener", + "DatePickerMonthShortJanuary": "Gener", + "DatePickerMonthLongFebruary": "Febrer", + "DatePickerMonthShortFebruary": "Febrer", + "DatePickerMonthLongMarch": "Març", + "DatePickerMonthShortMarch": "Espatllar", + "DatePickerMonthLongApril": "Abril", + "DatePickerMonthShortApril": "Abr", + "DatePickerMonthLongMay": "Pot", + "DatePickerMonthShortMay": "Pot", + "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", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Data", + "DateTimePickerTime": "Temps", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Valor d'hora incorrecte", + "DateTimePickerMinuteValueInvalid": "Valor de minut incorrecte", + "DateTimePickerSecondValueInvalid": "Segon valor incorrecte", + "DateTimePickerTextErrorMessage": "Introduïu una data vàlida", + "AddFileButtonLabel": "Afegeix un fitxer", + "AddImageButtonLabel": "Afegir imatge", + "AriaCellValue": "{0} columna, {1}", + "FilePickerCancelButtonLabel": "Cancel·lar", + "CantValidateValidationMessage": "No hem pogut verificar aquest enllaç. Consulteu l'enllaç i torneu-ho a provar.", + "ChangeFileLinkLabel": "Canvia el fitxer", + "ChangeImageLinkLabel": "Canviar imatge", + "ChooseFileLinkLabel": "Trieu fitxer", + "ChooseImageLinkLabel": "Trieu 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 les llicències Creative Commons. Revisar les llicències per assegurar-vos que compliu.", + "DateFormat": "MM/DD/AAAA hh: mm A", + "DocumentLabelTemplate": "{0}, document, {1} modificat, editat per {2},", + "DocumentLibraries": "Biblioteques de documents", + "EditedByNamePlate": "editat per ", + "EmptyFileSize": "0 bytes", + "FilePickerHeader": "Selector 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, {1} modificada, editada per {2}, {3} elements,", + "FromLinkLinkLabel": "Des d'un enllaç", + "ImageAltText": ". {0} imatge", + "ImageAriaLabelTemplate": ". {0} imatge", + "ImageLayoutPlaceholderText": "Disposició", + "ImageSizePlaceholderText": "Mida de la imatge", + "ItemChildCountField": "Element nen Comte", + "LayoutOptionAll": "Tots els", + "LayoutOptionSquare": "Plaça", + "LayoutOptionTall": "Alt", + "LayoutOptionWide": "Àmplia", + "LearnMoreLink": "Obtén més informació.", + "LicenseOptionAll": "Tots els", + "LicenseOptionAny": "Només Creative Commons", + "LicensePlaceholderText": "Llicència", + "LinkFileInstructions": "Enganxa un enllaç a un fitxer del OneDrive for Business o del SharePoint Online", + "LinkHeader": "Des d'un enllaç", + "LinkImageInstructions": "Enganxeu un enllaç a una imatge al OneDrive for Business o al SharePoint Online", + "ListLayoutAriaLabel": "Veure opcions. {0} {1}.", + "ListLayoutCompact": "Compact View", + "ListLayoutCompactDescription": "Veure articles i detalls en una llista compacta", + "ListLayoutList": "Vista de llista", + "ListLayoutListDescrition": "Veure els elements i els detalls d'una llista", + "ListLayoutTile": "Vista sobre el mosaic", + "ListLayoutTileDescription": "Veure elements amb visualitzacions prèvies de mosaic", + "ListOptionsAlt": "Veure opcions. {0} seleccionat.", + "ListOptionsTitle": "Obrir el menú Opcions de visualització", + "Loading": "Càrrega...", + "ModifiedByField": "Modificat per", + "ModifiedField": "Data de modificació", + "NameField": "Nom", + "No": "No", + "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 donem suport. Només podeu enllaçar a una imatge.", + "NoRecentFiles": "No hi ha fitxers recents", + "NoRecentFilesDescription": "Proveu de seleccionar un fitxer del vostre lloc web o carregueu-ne un del dispositiu.", + "NoResultsBadEnglish": "No hi ha cap resultat trobat. Proveu de canviar les opcions de 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}, {2} modificades, editat per {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Aquest element és del vostre lloc del OneDrive. Els fitxers i les carpetes del OneDrive són privats a menys que els compartiu. Heu compartit aquest fitxer amb els membres del vostre lloc perquè el puguin l?", + "OneDriveConfirmDialogTitle": "Només comprovant...", + "OneDriveEmptyFolderAlt": "Carpeta buida", + "OneDriveEmptyFolderDescription": "Per afegir fitxers, aneu al vostre 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 està buida", + "OneDriveRootFolderName": "Arxius", + "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": "Alimentat per Bing", + "RecentDocumentsHeader": "Documents recents", + "RecentImagesHeader": "Imatges recents", + "RecentLinkLabel": "Recent", + "SearchBoxPlaceholder": "Web Search", + "SearchResultAlt": "Resultat de la imatge de {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": "Extraordinàriament gran", + "SizeOptionLarge": "Gran", + "SizeOptionMedium": "Mitjà", + "SizeOptionSmall": "Petit", + "SizeUnit": [ + "Bytes", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Ex", + "YB" + ], + "SorryWebSearch": "Ho sentim, aquesta funció no s'implementa en aquesta mostra, ja que requeriria una clau d'API del Bing.", + "SortedAscending": "Ordenat a a Z", + "SortedDescending": "Ordenat Z a un", + "TypeAriaLabel": "Les operacions de columna per al tipus de fitxer, premeu per ordenar el tipus de fitxer", + "UploadFileHeader": "Carrega fitxer", + "UploadImageHeader": "Carrega la imatge", + "UploadLinkLabel": "Carregar", + "WebSearchLinkLabel": "Web Search", + "StockImagesLinkLabel": "Imatges en estoc", + "StockImagesHeader": "Imatges en estoc", + "Yes": "Sí", + "NewFolderNamePlaceholder": "Introduïu el nom de la carpeta", + "FolderFilterBoxPlaceholder": "Filtra les carpetes per nom", + "FolderExplorerLoading": "S'estan carregant les carpetes...", + "FolderExplorerNoItems": "Aquesta carpeta no té subcarpetes.", + "NewFolderIncorrectSymbolsError": "Introduïu un nom que no inclogui cap d'aquests caràcters: \" * : < > ? / |.", + "SomethingWentWrong": "Alguna cosa va sortir malament", + "SelectedLabel": "Seleccionat", + "SelectIcon": "Seleccionar icona", + "TreeViewExpandTitle": "Expandeix aquest element", + "TreeViewCollapseTitle": "Redueix aquest element", + "CollectionDataEmptyFields": "No s'han proporcionat camps per a les dades de la recopilació.", + "CollectionDataEmptyValue": "No hi ha dades de la vostra col·lecció.", + "CollectionAddRowButtonLabel": "Afegir dades a la col·lecció", + "CollectionDeleteRowButtonLabel": "Suprimeix la fila actual", + "CollectionSaveAndAddButtonLabel": "Afegir i desar", + "CollectionDataItemShowErrorsLabel": "Mostra els errors de fila", + "CollectionDataItemFieldRequiredLabel": "El camp és necessari.", + "CollectionDataItemMissingFields": "La col·lecció camps és buida!", + "InvalidUrlError": "L'adreça URL proporcionada no és vàlida", + "CollectionDataSearch": "Buscar", + "MyTeamsLoadingMessage": "Carregant els teus equips", + "MyTeamsMessageError": "Alguna cosa ha fallat en carregar els vostres equips, proveu-ho més tard o actualitzeu el navegador", + "MyTeamsNoTeamsMessage": "No hi ha equips", + "MyTeamsTeamChannelPublicMessage": "Canals públics", + "MyTeamsTeamChannelTypeMessage": "Canals privats", + "TeamChannelPickerFontIconFavoriteText": "Predilecte", + "TeamChannelPickerFontIconPrivateChannelTitle": "Canal privat", + "TeamChannelPickerSugestionHeaderText": "Canals d'equip suggerits", + "TeamPickerButtonRemoveTitle": "treure", + "TeamPickernoResultsFoundText": "No s'ha trobat cap equip", + "TeamPickerSugestionsHeaderText": "Equips suggerits", + "TeamsChannelPickerButtonRemoveTitle": "treure", + "TeamsChannelPickerNoresultsFoundText": "No s'ha trobat cap canal", + "ViewMore": "Veure més", + "DynamicFormLoading": "Càrrega...", + "DynamicFormPleaseWait": "Espereu...", + "DynamicFormRequiredErrorMessage": "No es pot deixar això en blanc.", + "DynamicFormTermPanelTitle": "Selecciona el terme", + "DynamicFormEnterURLPlaceholder": "Introduïu una adreça URL", + "DynamicFormEnterDescriptionPlaceholder": "Text alternatiu", + "customDisplayName": "Utilitzeu aquesta ubicació:", + "ListItemCommentDIalogDeleteSubText": "Esteu segur que voleu suprimir aquest comentari?", + "ListItemCommentsDialogDeleteTitle": "Confirmació de la supressió del comentari", + "ListItemCommentsLabel": "Comentaris", + "ListItemCommentsNoCommentsLabel": "No comments", + "OrgAssetsLinkLabel": "La vostra organització", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/da-dk.ts b/src/loc/da-dk.ts index 828c3650e..33f18687c 100644 --- a/src/loc/da-dk.ts +++ b/src/loc/da-dk.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "No comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Hjemmeside breadcrumb", - "ListViewGroupEmptyLabel": "Tom", - "WebPartTitlePlaceholder": "Titel på webdel", - "WebPartTitleLabel": "Tilføje en titel", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "I et par sekunder", - "L_RelativeDateTime_AFewSeconds": "Et par sekunder siden", - "L_RelativeDateTime_AboutAMinuteFuture": "I ca. et minut", - "L_RelativeDateTime_AboutAMinute": "Omkring et minut siden", - "L_RelativeDateTime_XMinutesFuture": "I {0} minut||I {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 omkring en time", - "L_RelativeDateTime_AboutAnHour": "For en time siden", - "L_RelativeDateTime_Tomorrow": "Morgen", - "L_RelativeDateTime_Yesterday": "Går", - "L_RelativeDateTime_TomorrowAndTime": "I morgen på {0}", - "L_RelativeDateTime_YesterdayAndTime": "I går på {0}", - "L_RelativeDateTime_XHoursFuture": "I {0} time||I {0} timer", - "L_RelativeDateTime_XHours": "{0} 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": "Dag" - }, - "SendEmailTo": "Send en mail til {0}", - "StartChatWith": "Start en chat med {0}", - "Contact": "Kontakt", - "UpdateProfile": "Opdater din profil", - "TaxonomyPickerNoTerms": "Ordsæt indeholder ingen betingelser", - "TaxonomyPickerExpandTitle": "Udvid Dette ordsæt", - "TaxonomyPickerMenuTermSet": "Menu for ordsæt", - "TaxonomyPickerInLabel": "I", - "TaxonomyPickerTermSetLabel": "Ordsæt", - "peoplePickerComponentTooltipMessage": "Folk Picker", - "peoplePickerComponentErrorMessage": "Påkrævet felt", - "peoplePickerSuggestionsHeaderText": "Foreslåede personer", - "peoplePickerLoadingText": "Indlæsning", - "PeoplePickerSearchText": "Henter brugere", - "PeoplePickerGroupNotFound": "Gruppen blev ikke fundet.", - "genericNoResultsFoundText": "Der blev ikke fundet nogen resultater", - "ListItemPickerSelectValue": "Vælg værdi", - "ListItemAttachmentsActionDeleteIconTitle": "Slette", - "ListItemAttachmentsactionDeleteTitle": "Slette", - "ListItemAttachmentsfileDeletedMsg": "Fil, {0} slettet", - "ListItemAttachmentsfileDeleteError": "Fejl ved sletning af fil: {0}, årsag {1}", - "ListItemAttachmentserrorLoadAttachments": "Fejl ved vedhæftet fil til indlæsning af listeelement, årsag: {0}", - "ListItemAttachmentsconfirmDelete": "Er du sikker på, at du vil sende den vedhæftede fil {0} til webstedets papirkurv?", - "ListItemAttachmentsdialogTitle": "Vedhæftet listeelement", - "ListItemAttachmentsdialogOKbuttonLabel": "Ok", - "ListItemAttachmentsdialogCancelButtonLabel": "Annullere", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Slette", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Tilføj vedhæftet fil", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Tilføj vedhæftet fil", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Filen {0} ikke vedhæftet, årsag: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Tilføj vedhæftet fil", - "ListItemAttachmentsloadingMessage": "Uploader fil...", - "ListItemAttachmentslPlaceHolderIconText": "Vedhæftet listeelement", - "ListItemAttachmentslPlaceHolderDescription": "Tilføj vedhæftet fil", - "ListItemAttachmentslPlaceHolderButtonLabel": "Tilføj", - "mapsErrorMessage": "Der opstod en fejl under indlæsning af kortet", - "mapsLoadingText": "Indlæsning", - "mapsSearchButtonText": "Søg", - "mapsTitlePrefix": "Kort over", - "ListViewFilterLabel": "Filtrere listen", - "HeaderNormalText": "Normal tekst", - "HeaderH2": "Udgiftsområde 1", - "HeaderH3": "Udgiftsområde 2", - "HeaderH4": "Udgiftsområde 3", - "HeaderBlockQuote": "Uddrag", - "AlignLeft": "Venstrejusteret", - "AlignCenter": "Center", - "AlignRight": "Juster til højre", - "AlignJustify": "Retfærdiggøre", - "ListBullet": "Punktopstilling", - "ListNumbered": "Opstilling", - "StyleTitle": "Stil", - "BoldTitle": "Fed (Ctrl + B)", - "ItalicTitle": "Kursiv (Ctrl + I)", - "UnderlineTitle": "Understregning (CTRL + U)", - "AlignTitle": "Justere", - "ListTitle": "Liste", - "LinkTitle": "Hyperlink", - "MoreTitle": "Mere", - "FormattingPaneTitle": "Tekstformatering", - "CloseButton": "Tæt", - "InsertLinkTitle": "Indsæt kæde", - "AddressFieldLabel": "Adresse", - "TextToDisplayLabel": "Tekst, som skal vises", - "SaveButtonLabel": "Gemme", - "CancelButtonLabel": "Annullere", - "RemoveLinkLabel": "Fjern link", - "ParagraphSectionTitle": "Stk", - "HyperlinkSectionTitle": "Hyperlink", - "UndoTitle": "Fortryd (CTRL + Z)", - "RedoTitle": "Annuller Fortryd (CTRL + Y)", - "ClearFormattingTitle": "Ryd al formatering", - "FontStyleTitle": "Typografi", - "FontSizeTitle": "Skriftstørrelse", - "StrikethroughTitle": "Gennemstregning", - "SuperscriptTitle": "Hævet skrift", - "SubscriptTitle": "Sænket skrift", - "FontColorLabel": "Skriftfarve", - "AutomaticFontColor": "Automatisk", - "HighlightColorLabel": "Fremhæv farve", - "NoColorHighlightColor": "Ingen farve", - "IncreaseIndentTitle": "Forøg indrykning", - "DecreaseIndentTitle": "Formindsk indrykning", - "ThemeColorsGroupName": "Temafarver", - "HighlightColorsGroupName": "Fremhæv farver", - "StandardColorsGroupName": "Standard farver", - "CustomColorsGroupName": "Brugerdefinerede farver", - "ThemeColorDarker": "Temaet er mørkere", - "ThemeColorDark": "Temaet mørk", - "ThemeColorDarkAlt": "Tema mørk suppleant", - "ThemeColorPrimary": "Temaet Primary", - "ThemeColorSecondary": "Theme Secondary", - "ThemeColorTertiary": "Neutral tertiær", - "ThemeColorNeutralSecondary": "Neutral sekundær", - "ThemeColorNeutralPrimaryAlt": "Neutral primær suppleant", - "ThemeColorNeutralPrimary": "Neutral primær", - "ThemeColorNeutralDark": "Neutral mørk", - "HighlightColorYellow": "Gul", - "HighlightColorGreen": "Grøn", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Blå", - "HighlightColorRed": "Rød", - "HighlightColorDarkblue": "Mørkeblå", - "HighlightColorTeal": "Krikand", - "HighlightColorDarkgreen": "Mørkegrøn", - "HighlightColorPurple": "Lilla", - "HighlightColorMaroon": "Maroon", - "HighlightColorGold": "Guld", - "HighlightColorDarkgrey": "Mørkegrå", - "HighlightColorGrey": "Grå", - "HighlightColorBlack": "Sort", - "StandardColorDarkred": "Mørkerød", - "StandardColorRed": "Rød", - "StandardColorOrange": "Orange", - "StandardColorYellow": "Gul", - "StandardColorLightgreen": "Lysegrøn", - "StandardColorGreen": "Grøn", - "StandardColorLightblue": "Lyseblå", - "StandardColorBlue": "Blå", - "StandardColorDarkblue": "Mørkeblå", - "StandardColorPurple": "Lilla", - "DatePickerMonthLongJanuary": "Januar", - "DatePickerMonthShortJanuary": "Jan", - "DatePickerMonthLongFebruary": "Februar", - "DatePickerMonthShortFebruary": "Februar", - "DatePickerMonthLongMarch": "Marts", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "April", - "DatePickerMonthShortApril": "Apr", - "DatePickerMonthLongMay": "Kan", - "DatePickerMonthShortMay": "Kan", - "DatePickerMonthLongJune": "Juni", - "DatePickerMonthShortJune": "Juni", - "DatePickerMonthLongJuly": "Juli", - "DatePickerMonthShortJuly": "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": "Dag", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Dato", - "DateTimePickerTime": "Tid", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Forkert time værdi", - "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 tagget med Creative Commons-licenser. Gennemgå licenserne for at sikre, at du overholder.", - "DateFormat": "MM/DD/ÅÅÅÅ 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, ændret {1}, redigeret af {2}, {3} elementer, privat", - "FromLinkLinkLabel": "Fra et link", - "ImageAltText": ". {0} billede", - "ImageAriaLabelTemplate": ". {0} billede", - "ImageLayoutPlaceholderText": "Layout", - "ImageSizePlaceholderText": "Billedstørrelse", - "ItemChildCountField": "Antal underordnede elementer", - "LayoutOptionAll": "Alle", - "LayoutOptionSquare": "Square", - "LayoutOptionTall": "Høj", - "LayoutOptionWide": "Bred", - "LearnMoreLink": "Lær mere.", - "LicenseOptionAll": "Alle", - "LicenseOptionAny": "Creative Commons only", - "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": "Indstillinger for visning. {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": "Flise udsigt", - "ListLayoutTileDescription": "Få vist elementer med felt eksempler", - "ListOptionsAlt": "Indstillinger for visning. {0} valgt.", - "ListOptionsTitle": "Åbne menuen visningsindstillinger", - "Loading": "Indlæsning...", - "ModifiedByField": "Modificeret af", - "ModifiedField": "Dato for ændring", - "NameField": "Navn", - "No": "Nej", - "ProvidedValueIsInvalid": "Den leverede værdi er ugyldig", - "NoExternalLinksValidationMessage": "Vi understøtter kun sammenkædning med filer i din egen organisation.", - "NoImageValidationMessage": "Dette er ikke et link til en filtype, vi understøtter. Du kan kun linke til et billede.", - "NoRecentFiles": "Ingen nylige filer", - "NoRecentFilesDescription": "Prøv at vælge en fil fra dit website, eller upload en fra din enhed.", - "NoResultsBadEnglish": "Der er ikke fundet noget resultat. Prøv at ændre filtreringsindstillingerne", - "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}, ændret {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 webstedsmedlemmer, så de kan dgang det?", - "OneDriveConfirmDialogTitle": "Bare tjekker...", - "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, der leveres af din organisation", - "PoweredByBing": "Drevet af Bing", - "RecentDocumentsHeader": "Seneste dokumenter", - "RecentImagesHeader": "Seneste billeder", - "RecentLinkLabel": "Seneste", - "SearchBoxPlaceholder": "Websøgning", - "SearchResultAlt": "Billed resultat for {0}.", - "SearchResultAriaLabel": "Tryk på ENTER for at åbne billedkilden i 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": "Denne funktion er desværre ikke implementeret i dette eksempel, fordi den kræver en Bing API-nøgle.", - "SortedAscending": "Sorteret A til å", - "SortedDescending": "Sorteret Z til en", - "TypeAriaLabel": "Kolonne handlinger for filtype, skal du trykke på for at sortere efter filtype", - "UploadFileHeader": "Overfør fil", - "UploadImageHeader": "Upload billede", - "UploadLinkLabel": "Uploade", - "WebSearchLinkLabel": "Websøgning", - "Yes": "Ja", - "SelectedLabel": "Valgt", - "SelectIcon": "Vælg ikon", - "StockImagesLinkLabel": "Stock-billeder", - "StockImagesHeader": "Stock-billeder", - "OrgAssetsLinkLabel": "Din organisation" - }; -}); + "Save": "Spare", + "Cancel": "Aflyse", + "SiteBreadcrumbLabel": "Hjemmeside breadcrumb", + "ListViewGroupEmptyLabel": "Tom", + "WebPartTitlePlaceholder": "Titel på webdel", + "WebPartTitleLabel": "Tilføje en titel", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "I et par sekunder", + "L_RelativeDateTime_AFewSeconds": "Et par sekunder siden", + "L_RelativeDateTime_AboutAMinuteFuture": "I ca. et minut", + "L_RelativeDateTime_AboutAMinute": "Omkring et minut siden", + "L_RelativeDateTime_XMinutesFuture": "I {0} minut||I {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 omkring en time", + "L_RelativeDateTime_AboutAnHour": "For en time siden", + "L_RelativeDateTime_Tomorrow": "Morgen", + "L_RelativeDateTime_Yesterday": "Går", + "L_RelativeDateTime_TomorrowAndTime": "I morgen på {0}", + "L_RelativeDateTime_YesterdayAndTime": "I går på {0}", + "L_RelativeDateTime_XHoursFuture": "I {0} time||I {0} timer", + "L_RelativeDateTime_XHours": "{0} 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": "Dag" + }, + "SendEmailTo": "Send en mail til {0}", + "StartChatWith": "Start en chat med {0}", + "Contact": "Kontakt", + "UpdateProfile": "Opdater din profil", + "TaxonomyPickerNoTerms": "Ordsæt indeholder ingen betingelser", + "TaxonomyPickerExpandTitle": "Udvid Dette ordsæt", + "TaxonomyPickerMenuTermSet": "Menu for ordsæt", + "TaxonomyPickerInLabel": "I", + "TaxonomyPickerTermSetLabel": "Ordsæt", + "TaxonomyPickerTermsNotFound": "De næste markerede ord blev ikke fundet i ordbanken: {0}", + "TaxonomyPickerInvalidTerms": "Ret ugyldige ord: {0}", + "peoplePickerComponentTooltipMessage": "Folk Picker", + "peoplePickerComponentErrorMessage": "Påkrævet felt", + "peoplePickerSuggestionsHeaderText": "Foreslåede personer", + "peoplePickerLoadingText": "Indlæsning", + "PeoplePickerSearchText": "Henter brugere", + "PeoplePickerGroupNotFound": "Gruppen blev ikke fundet.", + "genericNoResultsFoundText": "Der blev ikke fundet nogen resultater", + "ListItemPickerSelectValue": "Vælg værdi", + "ListItemAttachmentsActionDeleteIconTitle": "Slette", + "ListItemAttachmentsactionDeleteTitle": "Slette", + "ListItemAttachmentsfileDeletedMsg": "Fil, {0} slettet", + "ListItemAttachmentsfileDeleteError": "Fejl ved sletning af fil: {0}, årsag {1}", + "ListItemAttachmentserrorLoadAttachments": "Fejl ved vedhæftet fil til indlæsning af listeelement, årsag: {0}", + "ListItemAttachmentsconfirmDelete": "Er du sikker på, at du vil sende den vedhæftede fil {0} til webstedets papirkurv?", + "ListItemAttachmentsdialogTitle": "Vedhæftet listeelement", + "ListItemAttachmentsdialogOKbuttonLabel": "Ok", + "ListItemAttachmentsdialogCancelButtonLabel": "Annullere", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Slette", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Tilføj vedhæftet fil", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Tilføj vedhæftet fil", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Filen {0} ikke vedhæftet, årsag: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Tilføj vedhæftet fil", + "ListItemAttachmentsloadingMessage": "Uploader fil...", + "ListItemAttachmentslPlaceHolderIconText": "Vedhæftet listeelement", + "ListItemAttachmentslPlaceHolderDescription": "Tilføj vedhæftet fil", + "ListItemAttachmentslPlaceHolderButtonLabel": "Tilføj", + "mapsErrorMessage": "Der opstod en fejl under indlæsning af kortet", + "mapsLoadingText": "Indlæsning", + "mapsSearchButtonText": "Søg", + "mapsTitlePrefix": "Kort over", + "ListViewFilterLabel": "Filtrere listen", + "HeaderNormalText": "Normal tekst", + "HeaderH2": "Udgiftsområde 1", + "HeaderH3": "Udgiftsområde 2", + "HeaderH4": "Udgiftsområde 3", + "HeaderBlockQuote": "Uddrag", + "AlignLeft": "Venstrejusteret", + "AlignCenter": "Midte", + "AlignRight": "Juster til højre", + "AlignJustify": "Retfærdiggøre", + "ListBullet": "Punktopstilling", + "ListNumbered": "Opstilling", + "StyleTitle": "Stil", + "BoldTitle": "Fed (Ctrl + B)", + "ItalicTitle": "Kursiv (Ctrl + I)", + "UnderlineTitle": "Understregning (CTRL + U)", + "AlignTitle": "Justere", + "ListTitle": "Liste", + "LinkTitle": "Hyperlink", + "ImageTitle": "Billede", + "MoreTitle": "Mere", + "FormattingPaneTitle": "Tekstformatering", + "CloseButton": "Tæt", + "InsertLinkTitle": "Indsæt kæde", + "InsertImageTitle": "Indsæt billede", + "AddressFieldLabel": "Adresse", + "TextToDisplayLabel": "Tekst, som skal vises", + "SaveButtonLabel": "Gemme", + "CancelButtonLabel": "Annullere", + "RemoveLinkLabel": "Fjern link", + "ParagraphSectionTitle": "Stk", + "HyperlinkSectionTitle": "Hyperlink", + "UndoTitle": "Fortryd (CTRL + Z)", + "RedoTitle": "Annuller Fortryd (CTRL + Y)", + "ClearFormattingTitle": "Ryd al formatering", + "FontStyleTitle": "Typografi", + "FontSizeTitle": "Skriftstørrelse", + "StrikethroughTitle": "Gennemstregning", + "SuperscriptTitle": "Hævet skrift", + "SubscriptTitle": "Sænket skrift", + "FontColorLabel": "Skriftfarve", + "AutomaticFontColor": "Automatisk", + "HighlightColorLabel": "Fremhæv farve", + "NoColorHighlightColor": "Ingen farve", + "IncreaseIndentTitle": "Forøg indrykning", + "DecreaseIndentTitle": "Formindsk indrykning", + "ThemeColorsGroupName": "Temafarver", + "HighlightColorsGroupName": "Fremhæv farver", + "StandardColorsGroupName": "Standard farver", + "CustomColorsGroupName": "Brugerdefinerede farver", + "ThemeColorDarker": "Temaet er mørkere", + "ThemeColorDark": "Temaet mørk", + "ThemeColorDarkAlt": "Tema mørk suppleant", + "ThemeColorPrimary": "Temaet Primary", + "ThemeColorSecondary": "Theme Secondary", + "ThemeColorTertiary": "Neutral tertiær", + "ThemeColorNeutralSecondary": "Neutral sekundær", + "ThemeColorNeutralPrimaryAlt": "Neutral primær suppleant", + "ThemeColorNeutralPrimary": "Neutral primær", + "ThemeColorNeutralDark": "Neutral mørk", + "HighlightColorYellow": "Gul", + "HighlightColorGreen": "Grøn", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Blå", + "HighlightColorRed": "Rød", + "HighlightColorDarkblue": "Mørkeblå", + "HighlightColorTeal": "Krikand", + "HighlightColorDarkgreen": "Mørkegrøn", + "HighlightColorPurple": "Lilla", + "HighlightColorMaroon": "Maron", + "HighlightColorGold": "Guld", + "HighlightColorDarkgrey": "Mørkegrå", + "HighlightColorGrey": "Grå", + "HighlightColorBlack": "Sort", + "StandardColorDarkred": "Mørkerød", + "StandardColorRed": "Rød", + "StandardColorOrange": "Appelsin", + "StandardColorYellow": "Gul", + "StandardColorLightgreen": "Lysegrøn", + "StandardColorGreen": "Grøn", + "StandardColorLightblue": "Lyseblå", + "StandardColorBlue": "Blå", + "StandardColorDarkblue": "Mørkeblå", + "StandardColorPurple": "Lilla", + "DatePickerMonthLongJanuary": "Januar", + "DatePickerMonthShortJanuary": "Jan", + "DatePickerMonthLongFebruary": "Februar", + "DatePickerMonthShortFebruary": "Februar", + "DatePickerMonthLongMarch": "Marts", + "DatePickerMonthShortMarch": "Mar", + "DatePickerMonthLongApril": "April", + "DatePickerMonthShortApril": "Apr", + "DatePickerMonthLongMay": "Kan", + "DatePickerMonthShortMay": "Kan", + "DatePickerMonthLongJune": "Juni", + "DatePickerMonthShortJune": "Juni", + "DatePickerMonthLongJuly": "Juli", + "DatePickerMonthShortJuly": "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": "Dag", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Dato", + "DateTimePickerTime": "Tid", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Forkert time værdi", + "DateTimePickerMinuteValueInvalid": "Forkert minutværdi", + "DateTimePickerSecondValueInvalid": "Forkert anden værdi", + "DateTimePickerTextErrorMessage": "Angiv en gyldig dato", + "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 tagget med Creative Commons-licenser. Gennemgå licenserne for at sikre, at du overholder.", + "DateFormat": "MM/DD/ÅÅÅÅ 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, ændret {1}, redigeret af {2}, {3} elementer, privat", + "FromLinkLinkLabel": "Fra et link", + "ImageAltText": ". {0} billede", + "ImageAriaLabelTemplate": ". {0} billede", + "ImageLayoutPlaceholderText": "Layout", + "ImageSizePlaceholderText": "Billedstørrelse", + "ItemChildCountField": "Antal underordnede elementer", + "LayoutOptionAll": "Alle", + "LayoutOptionSquare": "Firkant", + "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": "Indstillinger for visning. {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": "Flise udsigt", + "ListLayoutTileDescription": "Få vist elementer med felt eksempler", + "ListOptionsAlt": "Indstillinger for visning. {0} valgt.", + "ListOptionsTitle": "Åbne menuen visningsindstillinger", + "Loading": "Indlæsning...", + "ModifiedByField": "Modificeret af", + "ModifiedField": "Dato for ændring", + "NameField": "Navn", + "No": "Nej", + "ProvidedValueIsInvalid": "Den leverede værdi er ugyldig", + "NoExternalLinksValidationMessage": "Vi understøtter kun sammenkædning med filer i din egen organisation.", + "NoImageValidationMessage": "Dette er ikke et link til en filtype, vi understøtter. Du kan kun linke til et billede.", + "NoRecentFiles": "Ingen nylige filer", + "NoRecentFilesDescription": "Prøv at vælge en fil fra dit website, eller upload en fra din enhed.", + "NoResultsBadEnglish": "Der er ikke fundet noget resultat. Prøv at ændre filtreringsindstillingerne", + "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}, ændret {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 webstedsmedlemmer, så de kan dgang det?", + "OneDriveConfirmDialogTitle": "Bare tjekker...", + "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, der leveres af din organisation", + "PoweredByBing": "Drevet af Bing", + "RecentDocumentsHeader": "Seneste dokumenter", + "RecentImagesHeader": "Seneste billeder", + "RecentLinkLabel": "Seneste", + "SearchBoxPlaceholder": "Websøgning", + "SearchResultAlt": "Billed resultat for {0}.", + "SearchResultAriaLabel": "Tryk på ENTER for at åbne billedkilden i 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": "Denne funktion er desværre ikke implementeret i dette eksempel, fordi den kræver en Bing API-nøgle.", + "SortedAscending": "Sorteret A til å", + "SortedDescending": "Sorteret Z til en", + "TypeAriaLabel": "Kolonne handlinger for filtype, skal du trykke på for at sortere efter filtype", + "UploadFileHeader": "Overfør fil", + "UploadImageHeader": "Upload billede", + "UploadLinkLabel": "Uploade", + "WebSearchLinkLabel": "Websøgning", + "StockImagesLinkLabel": "Stock-billeder", + "StockImagesHeader": "Stock-billeder", + "Yes": "Ja", + "NewFolderNamePlaceholder": "Angiv mappenavnet", + "FolderFilterBoxPlaceholder": "Filtrere mapper efter navn", + "FolderExplorerLoading": "Indlæser mapper...", + "FolderExplorerNoItems": "Denne mappe har ingen undermapper.", + "NewFolderIncorrectSymbolsError": "Indtast et navn, der ikke indeholder nogen af disse tegn: \" * : < > ? / |.", + "SomethingWentWrong": "Noget gik galt", + "SelectedLabel": "Valgt", + "SelectIcon": "Vælg ikon", + "TreeViewExpandTitle": "Udvid dette element", + "TreeViewCollapseTitle": "Skjul dette element", + "CollectionDataEmptyFields": "Der blev ikke angivet felter for indsamlingsdataene.", + "CollectionDataEmptyValue": "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.", + "CollectionDataItemMissingFields": "Fields kollektionen er tom!", + "InvalidUrlError": "Den angivne URL-adresse er ugyldig", + "CollectionDataSearch": "Søge", + "MyTeamsLoadingMessage": "indlæse dine teams", + "MyTeamsMessageError": "Noget gik galt, mens du indlæser dine teams, kan du prøve senere eller opdatere browser", + "MyTeamsNoTeamsMessage": "Du har ingen hold.", + "MyTeamsTeamChannelPublicMessage": "Offentlige kanaler", + "MyTeamsTeamChannelTypeMessage": "Private kanaler", + "TeamChannelPickerFontIconFavoriteText": "Favorit", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privat kanal", + "TeamChannelPickerSugestionHeaderText": "Foreslåede teamkanaler", + "TeamPickerButtonRemoveTitle": "fjerne", + "TeamPickernoResultsFoundText": "Der blev ikke fundet nogen teams", + "TeamPickerSugestionsHeaderText": "Foreslåede teams", + "TeamsChannelPickerButtonRemoveTitle": "fjerne", + "TeamsChannelPickerNoresultsFoundText": "Der blev ikke fundet nogen kanaler", + "ViewMore": "Se mere", + "DynamicFormLoading": "Pålæsning...", + "DynamicFormPleaseWait": "Vent venligst...", + "DynamicFormRequiredErrorMessage": "Du kan ikke lade det være tomt.", + "DynamicFormTermPanelTitle": "Vælg ord", + "DynamicFormEnterURLPlaceholder": "Angiv en URL-adresse", + "DynamicFormEnterDescriptionPlaceholder": "Alternativ tekst", + "customDisplayName": "Brug denne placering:", + "ListItemCommentDIalogDeleteSubText": "Er du sikker på, at du vil slette denne kommentar?", + "ListItemCommentsDialogDeleteTitle": "Bekræft kommentar til sletning", + "ListItemCommentsLabel": "Kommentarer", + "ListItemCommentsNoCommentsLabel": "No comments", + "OrgAssetsLinkLabel": "Din organisation", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/de-de.ts b/src/loc/de-de.ts index 05d433d99..2bf250841 100644 --- a/src/loc/de-de.ts +++ b/src/loc/de-de.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "No comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Website Brotkrume", - "ListViewGroupEmptyLabel": "Leer", - "WebPartTitlePlaceholder": "Webpart Titel", - "WebPartTitleLabel": "Einen Titel hinzufügen", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "In wenigen Sekunden", - "L_RelativeDateTime_AFewSeconds": "Vor wenigen Sekunden", - "L_RelativeDateTime_AboutAMinuteFuture": "In ungefähr einer Minute", - "L_RelativeDateTime_AboutAMinute": "Vor ungefähr einer Minute", - "L_RelativeDateTime_XMinutesFuture": "In {0} Minute||In {0} Minuten", - "L_RelativeDateTime_XMinutes": "Vor {0} Minute||Vor {0} Minuten", - "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", - "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", - "L_RelativeDateTime_AboutAnHourFuture": "In ungefähr einer Stunde", - "L_RelativeDateTime_AboutAnHour": "Vor ungefähr einer Stunde", - "L_RelativeDateTime_Tomorrow": "Morgen", - "L_RelativeDateTime_Yesterday": "Gestern", - "L_RelativeDateTime_TomorrowAndTime": "Morgen um {0}", - "L_RelativeDateTime_YesterdayAndTime": "Gestern um {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} um {1}", - "L_RelativeDateTime_XDaysFuture": "{0} Tag ab jetzt||{0} Tage ab jetzt", - "L_RelativeDateTime_XDays": "Vor {0} Tag||Vor {0} Tagen", - "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", - "L_RelativeDateTime_XDaysIntervals": "1|| 2-", - "L_RelativeDateTime_Today": "Heute" - }, - "SendEmailTo": "Sende eine E-Mail an {0}", - "StartChatWith": "Starte einen Chat mit {0}", - "Contact": "Kontakt", - "UpdateProfile": "Aktualisieren Sie Ihr Profil", - "TaxonomyPickerNoTerms": "Ausdruckssatz enthält keine Ausdrücke", - "TaxonomyPickerExpandTitle": "Diesen Ausdruckssatz erweitern", - "TaxonomyPickerMenuTermSet": "Ausdruckssatz Menü", - "TaxonomyPickerInLabel": "In", - "TaxonomyPickerTermSetLabel": "Ausdruckssatz", - "peoplePickerComponentTooltipMessage": "Benutzerauswahl", - "peoplePickerComponentErrorMessage": "Pflichtfeld", - "peoplePickerSuggestionsHeaderText": "Vorgeschlagene Benutzer", - "peoplePickerLoadingText": "Laden", - "PeoplePickerSearchText": "Benutzer werden abgerufen", - "PeoplePickerGroupNotFound": "Gruppe konnte nicht gefunden werden.", - "genericNoResultsFoundText": "Keine Ergebnisse gefunden", - "ListItemPickerSelectValue": "Wert auswählen", - "ListItemAttachmentsActionDeleteIconTitle": "Löschen", - "ListItemAttachmentsactionDeleteTitle": "Löschen", - "ListItemAttachmentsfileDeletedMsg": "Datei {0} gelöscht", - "ListItemAttachmentsfileDeleteError": "Fehler beim Löschen der Datei: {0}, Grund: {1}", - "ListItemAttachmentserrorLoadAttachments": "Fehler beim Laden der Anhänge, Grund: {0}", - "ListItemAttachmentsconfirmDelete": "Sind Sie sich sicher, dass Sie die Anlage {0} in den Papierkorb der Website verschieben möchten?", - "ListItemAttachmentsdialogTitle": "Listenelement-Anhang", - "ListItemAttachmentsdialogOKbuttonLabel": "Okay", - "ListItemAttachmentsdialogCancelButtonLabel": "Abbrechen", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Löschen", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Anlage hinzufügen", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Anlage hinzufügen", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Die Datei {0} wurde nicht hinzugefügt, Grund: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Anlage hinzufügen", - "ListItemAttachmentsloadingMessage": "Datei wird hochgeladen ...", - "ListItemAttachmentslPlaceHolderIconText": "Listenelement-Anhang", - "ListItemAttachmentslPlaceHolderDescription": "Bitte Anlage hinzufügen", - "ListItemAttachmentslPlaceHolderButtonLabel": "Hinzufügen", - "mapsErrorMessage": "Beim Laden der Karte ist ein Fehler aufgetreten", - "mapsLoadingText": "Laden", - "mapsSearchButtonText": "Suche", - "mapsTitlePrefix": "Karte von", - "ListViewFilterLabel": "Filter", - "HeaderNormalText": "Standardtext", - "HeaderH2": "Überschrift 1", - "HeaderH3": "Überschrift 2", - "HeaderH4": "Überschrift 3", - "HeaderBlockQuote": "Textzitat", - "AlignLeft": "Linksbündig", - "AlignCenter": "Zentrieren", - "AlignRight": "Rechtsbündig", - "AlignJustify": "Blocksatz", - "ListBullet": "Aufzählung", - "ListNumbered": "Nummerierte Liste", - "StyleTitle": "Schriftart", - "BoldTitle": "Fett (Strg+B)", - "ItalicTitle": "Kursiv (Strg+I)", - "UnderlineTitle": "Unterstrichen (Strg+U)", - "AlignTitle": "Ausrichtung", - "ListTitle": "Liste", - "LinkTitle": "Hyperlink", - "MoreTitle": "Mehr", - "FormattingPaneTitle": "Textformatierung", - "CloseButton": "Schließen", - "InsertLinkTitle": "Link einfügen", - "AddressFieldLabel": "Adresse", - "TextToDisplayLabel": "Anzuzeigender Text", - "SaveButtonLabel": "Speichern", - "CancelButtonLabel": "Abbrechen", - "RemoveLinkLabel": "Link entfernen", - "ParagraphSectionTitle": "Absatz", - "HyperlinkSectionTitle": "Hyperlink", - "UndoTitle": "Rückgängig (Strg+Z)", - "RedoTitle": "Wiederholen (Strg+Y)", - "ClearFormattingTitle": "Alle Formatierungen löschen", - "FontStyleTitle": "Schriftschnitt", - "FontSizeTitle": "Schriftgrad", - "StrikethroughTitle": "Durchgestrichen", - "SuperscriptTitle": "Hochgestellt", - "SubscriptTitle": "Tiefgestellt", - "FontColorLabel": "Schriftfarbe", - "AutomaticFontColor": "Automatisch", - "HighlightColorLabel": "Hervorhebungsfarbe", - "NoColorHighlightColor": "Keine Farbe", - "IncreaseIndentTitle": "Einzug vergrößern", - "DecreaseIndentTitle": "Einzug verringern", - "ThemeColorsGroupName": "Designfarben", - "HighlightColorsGroupName": "Hervorhebungsfarben", - "StandardColorsGroupName": "Standardfarben", - "CustomColorsGroupName": "Benutzerdefinierte Farben", - "ThemeColorDarker": "Design dunkler", - "ThemeColorDark": "Design dunkel", - "ThemeColorDarkAlt": "Design dunkel alternativ", - "ThemeColorPrimary": "Design primär", - "ThemeColorSecondary": "Design sekundär", - "ThemeColorTertiary": "Design tertiär", - "ThemeColorNeutralSecondary": "Neutral sekundär", - "ThemeColorNeutralPrimaryAlt": "Neutral primär alternativ", - "ThemeColorNeutralPrimary": "Neutral primär", - "ThemeColorNeutralDark": "Neutral dunkel", - "HighlightColorYellow": "Gelb", - "HighlightColorGreen": "Grün", - "HighlightColorAqua": "Aquamarin", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Blau", - "HighlightColorRed": "Rot", - "HighlightColorDarkblue": "Dunkelblau", - "HighlightColorTeal": "Blaugrün", - "HighlightColorDarkgreen": "Dunkelgrün", - "HighlightColorPurple": "Lila", - "HighlightColorMaroon": "Kastanienbraun", - "HighlightColorGold": "Gold", - "HighlightColorDarkgrey": "Dunkelgrau", - "HighlightColorGrey": "Grau", - "HighlightColorBlack": "Schwarz", - "StandardColorDarkred": "Dunkelrot", - "StandardColorRed": "Rot", - "StandardColorOrange": "Orange", - "StandardColorYellow": "Gelb", - "StandardColorLightgreen": "Hellgrün", - "StandardColorGreen": "Grün", - "StandardColorLightblue": "Hellblau", - "StandardColorBlue": "Blau", - "StandardColorDarkblue": "Dunkelblau", - "StandardColorPurple": "Lila", - "DatePickerMonthLongJanuary": "Januar", - "DatePickerMonthShortJanuary": "Jan", - "DatePickerMonthLongFebruary": "Februar", - "DatePickerMonthShortFebruary": "Feb", - "DatePickerMonthLongMarch": "März", - "DatePickerMonthShortMarch": "Mär", - "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": "Dezember", - "DatePickerMonthShortDecember": "Dez", - "DatePickerDayLongSunday": "Sonntag", - "DatePickerDayShortSunday": "So", - "DatePickerDayLongMonday": "Montag", - "DatePickerDayShortMonday": "Mo", - "DatePickerDayLongTuesday": "Dienstag", - "DatePickerDayShortTuesday": "Di", - "DatePickerDayLongWednesday": "Mittwoch", - "DatePickerDayShortWednesday": "Mi", - "DatePickerDayLongThursday": "Donnerstag", - "DatePickerDayShortThursday": "Do", - "DatePickerDayLongFriday": "Freitag", - "DatePickerDayShortFriday": "Fr", - "DatePickerDayLongSaturday": "Samstag", - "DatePickerDayShortSaturday": "Sa", - "DatePickerGoToToday": "Heute", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Datum", - "DateTimePickerTime": "Uhrzeit", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Falscher Stundenwert", - "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", - "SelectedLabel": "Ausgewählt", - "SelectIcon": "Icon auswählen", - "StockImagesLinkLabel": "Stock Bilder", - "StockImagesHeader": "Stock Bilder", - "OrgAssetsLinkLabel": "Ihre Organisation" - }; -}); + "Save": "Retten", + "Cancel": "Abbrechen", + "SiteBreadcrumbLabel": "Website Brotkrume", + "ListViewGroupEmptyLabel": "Leer", + "WebPartTitlePlaceholder": "Webpart Titel", + "WebPartTitleLabel": "Einen Titel hinzufügen", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "In wenigen Sekunden", + "L_RelativeDateTime_AFewSeconds": "Vor wenigen Sekunden", + "L_RelativeDateTime_AboutAMinuteFuture": "In ungefähr einer Minute", + "L_RelativeDateTime_AboutAMinute": "Vor ungefähr einer Minute", + "L_RelativeDateTime_XMinutesFuture": "In {0} Minute||In {0} Minuten", + "L_RelativeDateTime_XMinutes": "Vor {0} Minute||Vor {0} Minuten", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "In ungefähr einer Stunde", + "L_RelativeDateTime_AboutAnHour": "Vor ungefähr einer Stunde", + "L_RelativeDateTime_Tomorrow": "Morgen", + "L_RelativeDateTime_Yesterday": "Gestern", + "L_RelativeDateTime_TomorrowAndTime": "Morgen um {0}", + "L_RelativeDateTime_YesterdayAndTime": "Gestern um {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} um {1}", + "L_RelativeDateTime_XDaysFuture": "{0} Tag ab jetzt||{0} Tage ab jetzt", + "L_RelativeDateTime_XDays": "Vor {0} Tag||Vor {0} Tagen", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Heute" + }, + "SendEmailTo": "Sende eine E-Mail an {0}", + "StartChatWith": "Starte einen Chat mit {0}", + "Contact": "Kontakt", + "UpdateProfile": "Aktualisieren Sie Ihr Profil", + "TaxonomyPickerNoTerms": "Ausdruckssatz enthält keine Ausdrücke", + "TaxonomyPickerExpandTitle": "Diesen Ausdruckssatz erweitern", + "TaxonomyPickerMenuTermSet": "Ausdruckssatz Menü", + "TaxonomyPickerInLabel": "In", + "TaxonomyPickerTermSetLabel": "Ausdruckssatz", + "TaxonomyPickerTermsNotFound": "Die nächsten ausgewählten Begriffe konnten im Terminologiespeicher nicht gefunden werden: {0}", + "TaxonomyPickerInvalidTerms": "Bitte korrigieren Sie ungültige Begriffe: {0}", + "peoplePickerComponentTooltipMessage": "Benutzerauswahl", + "peoplePickerComponentErrorMessage": "Pflichtfeld", + "peoplePickerSuggestionsHeaderText": "Vorgeschlagene Benutzer", + "peoplePickerLoadingText": "Laden", + "PeoplePickerSearchText": "Benutzer werden abgerufen", + "PeoplePickerGroupNotFound": "Gruppe konnte nicht gefunden werden.", + "genericNoResultsFoundText": "Keine Ergebnisse gefunden", + "ListItemPickerSelectValue": "Wert auswählen", + "ListItemAttachmentsActionDeleteIconTitle": "Löschen", + "ListItemAttachmentsactionDeleteTitle": "Löschen", + "ListItemAttachmentsfileDeletedMsg": "Datei {0} gelöscht", + "ListItemAttachmentsfileDeleteError": "Fehler beim Löschen der Datei: {0}, Grund: {1}", + "ListItemAttachmentserrorLoadAttachments": "Fehler beim Laden der Anhänge, Grund: {0}", + "ListItemAttachmentsconfirmDelete": "Sind Sie sich sicher, dass Sie die Anlage {0} in den Papierkorb der Website verschieben möchten?", + "ListItemAttachmentsdialogTitle": "Listenelement-Anhang", + "ListItemAttachmentsdialogOKbuttonLabel": "Okay", + "ListItemAttachmentsdialogCancelButtonLabel": "Abbrechen", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Löschen", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Anlage hinzufügen", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Anlage hinzufügen", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Die Datei {0} wurde nicht hinzugefügt, Grund: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Anlage hinzufügen", + "ListItemAttachmentsloadingMessage": "Datei wird hochgeladen ...", + "ListItemAttachmentslPlaceHolderIconText": "Listenelement-Anhang", + "ListItemAttachmentslPlaceHolderDescription": "Bitte Anlage hinzufügen", + "ListItemAttachmentslPlaceHolderButtonLabel": "Hinzufügen", + "mapsErrorMessage": "Beim Laden der Karte ist ein Fehler aufgetreten", + "mapsLoadingText": "Laden", + "mapsSearchButtonText": "Suche", + "mapsTitlePrefix": "Karte von", + "ListViewFilterLabel": "Filter", + "HeaderNormalText": "Standardtext", + "HeaderH2": "Überschrift 1", + "HeaderH3": "Überschrift 2", + "HeaderH4": "Überschrift 3", + "HeaderBlockQuote": "Textzitat", + "AlignLeft": "Linksbündig", + "AlignCenter": "Zentrieren", + "AlignRight": "Rechtsbündig", + "AlignJustify": "Blocksatz", + "ListBullet": "Aufzählung", + "ListNumbered": "Nummerierte Liste", + "StyleTitle": "Schriftart", + "BoldTitle": "Fett (Strg+B)", + "ItalicTitle": "Kursiv (Strg+I)", + "UnderlineTitle": "Unterstrichen (Strg+U)", + "AlignTitle": "Ausrichtung", + "ListTitle": "Liste", + "LinkTitle": "Hyperlink", + "ImageTitle": "Bild", + "MoreTitle": "Mehr", + "FormattingPaneTitle": "Textformatierung", + "CloseButton": "Schließen", + "InsertLinkTitle": "Link einfügen", + "InsertImageTitle": "Bild einfügen", + "AddressFieldLabel": "Adresse", + "TextToDisplayLabel": "Anzuzeigender Text", + "SaveButtonLabel": "Speichern", + "CancelButtonLabel": "Abbrechen", + "RemoveLinkLabel": "Link entfernen", + "ParagraphSectionTitle": "Absatz", + "HyperlinkSectionTitle": "Hyperlink", + "UndoTitle": "Rückgängig (Strg+Z)", + "RedoTitle": "Wiederholen (Strg+Y)", + "ClearFormattingTitle": "Alle Formatierungen löschen", + "FontStyleTitle": "Schriftschnitt", + "FontSizeTitle": "Schriftgrad", + "StrikethroughTitle": "Durchgestrichen", + "SuperscriptTitle": "Hochgestellt", + "SubscriptTitle": "Tiefgestellt", + "FontColorLabel": "Schriftfarbe", + "AutomaticFontColor": "Automatisch", + "HighlightColorLabel": "Hervorhebungsfarbe", + "NoColorHighlightColor": "Keine Farbe", + "IncreaseIndentTitle": "Einzug vergrößern", + "DecreaseIndentTitle": "Einzug verringern", + "ThemeColorsGroupName": "Designfarben", + "HighlightColorsGroupName": "Hervorhebungsfarben", + "StandardColorsGroupName": "Standardfarben", + "CustomColorsGroupName": "Benutzerdefinierte Farben", + "ThemeColorDarker": "Design dunkler", + "ThemeColorDark": "Design dunkel", + "ThemeColorDarkAlt": "Design dunkel alternativ", + "ThemeColorPrimary": "Design primär", + "ThemeColorSecondary": "Design sekundär", + "ThemeColorTertiary": "Design tertiär", + "ThemeColorNeutralSecondary": "Neutral sekundär", + "ThemeColorNeutralPrimaryAlt": "Neutral primär alternativ", + "ThemeColorNeutralPrimary": "Neutral primär", + "ThemeColorNeutralDark": "Neutral dunkel", + "HighlightColorYellow": "Gelb", + "HighlightColorGreen": "Grün", + "HighlightColorAqua": "Aquamarin", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Blau", + "HighlightColorRed": "Rot", + "HighlightColorDarkblue": "Dunkelblau", + "HighlightColorTeal": "Blaugrün", + "HighlightColorDarkgreen": "Dunkelgrün", + "HighlightColorPurple": "Lila", + "HighlightColorMaroon": "Kastanienbraun", + "HighlightColorGold": "Gold", + "HighlightColorDarkgrey": "Dunkelgrau", + "HighlightColorGrey": "Grau", + "HighlightColorBlack": "Schwarz", + "StandardColorDarkred": "Dunkelrot", + "StandardColorRed": "Rot", + "StandardColorOrange": "Orange", + "StandardColorYellow": "Gelb", + "StandardColorLightgreen": "Hellgrün", + "StandardColorGreen": "Grün", + "StandardColorLightblue": "Hellblau", + "StandardColorBlue": "Blau", + "StandardColorDarkblue": "Dunkelblau", + "StandardColorPurple": "Lila", + "DatePickerMonthLongJanuary": "Januar", + "DatePickerMonthShortJanuary": "Jan", + "DatePickerMonthLongFebruary": "Februar", + "DatePickerMonthShortFebruary": "Feb", + "DatePickerMonthLongMarch": "März", + "DatePickerMonthShortMarch": "Mär", + "DatePickerMonthLongApril": "April", + "DatePickerMonthShortApril": "Apr", + "DatePickerMonthLongMay": "Mai", + "DatePickerMonthShortMay": "Mai", + "DatePickerMonthLongJune": "Juni", + "DatePickerMonthShortJune": "Juni", + "DatePickerMonthLongJuly": "Juli", + "DatePickerMonthShortJuly": "Juli", + "DatePickerMonthLongAugust": "August", + "DatePickerMonthShortAugust": "Aug", + "DatePickerMonthLongSeptember": "September", + "DatePickerMonthShortSeptember": "Sep", + "DatePickerMonthLongOctober": "Oktober", + "DatePickerMonthShortOctober": "Okt", + "DatePickerMonthLongNovember": "November", + "DatePickerMonthShortNovember": "Nov", + "DatePickerMonthLongDecember": "Dezember", + "DatePickerMonthShortDecember": "Dez", + "DatePickerDayLongSunday": "Sonntag", + "DatePickerDayShortSunday": "So", + "DatePickerDayLongMonday": "Montag", + "DatePickerDayShortMonday": "Mo", + "DatePickerDayLongTuesday": "Dienstag", + "DatePickerDayShortTuesday": "Di", + "DatePickerDayLongWednesday": "Mittwoch", + "DatePickerDayShortWednesday": "Mi", + "DatePickerDayLongThursday": "Donnerstag", + "DatePickerDayShortThursday": "Do", + "DatePickerDayLongFriday": "Freitag", + "DatePickerDayShortFriday": "Fr", + "DatePickerDayLongSaturday": "Samstag", + "DatePickerDayShortSaturday": "Sa", + "DatePickerGoToToday": "Heute", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Datum", + "DateTimePickerTime": "Uhrzeit", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Falscher Stundenwert", + "DateTimePickerMinuteValueInvalid": "Falscher Minutenwert", + "DateTimePickerSecondValueInvalid": "Falscher zweiter Wert", + "DateTimePickerTextErrorMessage": "Bitte geben Sie ein gültiges Datum ein", + "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", + "StockImagesLinkLabel": "Stock Bilder", + "StockImagesHeader": "Stock Bilder", + "Yes": "Ja", + "NewFolderNamePlaceholder": "Geben Sie Ihren Ordnernamen ein", + "FolderFilterBoxPlaceholder": "Ordner nach Namen filtern", + "FolderExplorerLoading": "Ordner werden geladen...", + "FolderExplorerNoItems": "Dieser Ordner hat keine Unterordner.", + "NewFolderIncorrectSymbolsError": "Bitte geben Sie einen Namen ein, der keines dieser Zeichen enthält: \" * : < > ? / |.", + "SomethingWentWrong": "Etwas ist schief gelaufen", + "SelectedLabel": "Ausgewählt", + "SelectIcon": "Icon auswählen", + "TreeViewExpandTitle": "Dieses Element erweitern", + "TreeViewCollapseTitle": "Dieses Element reduzieren", + "CollectionDataEmptyFields": "Für die Erfassungsdaten wurden keine Felder bereitgestellt.", + "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.", + "CollectionDataItemMissingFields": "Die Fields-Sammlung ist leer!", + "InvalidUrlError": "Die angegebene URL ist ungültig", + "CollectionDataSearch": "Suchen", + "MyTeamsLoadingMessage": "Laden Ihrer Teams", + "MyTeamsMessageError": "Beim Laden Ihrer Teams ist etwas schief gelaufen, bitte versuchen Sie es später oder aktualisieren Sie den Browser", + "MyTeamsNoTeamsMessage": "Sie haben keine Teams", + "MyTeamsTeamChannelPublicMessage": "Öffentliche Kanäle", + "MyTeamsTeamChannelTypeMessage": "Private Kanäle", + "TeamChannelPickerFontIconFavoriteText": "Lieblings-", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privater Kanal", + "TeamChannelPickerSugestionHeaderText": "Vorgeschlagene Teamkanäle", + "TeamPickerButtonRemoveTitle": "entfernen", + "TeamPickernoResultsFoundText": "Keine Teams gefunden", + "TeamPickerSugestionsHeaderText": "Vorgeschlagene Teams", + "TeamsChannelPickerButtonRemoveTitle": "entfernen", + "TeamsChannelPickerNoresultsFoundText": "Keine Kanäle gefunden", + "ViewMore": "Mehr anzeigen", + "DynamicFormLoading": "Laden...", + "DynamicFormPleaseWait": "Bitte warten...", + "DynamicFormRequiredErrorMessage": "Sie können dieses Feld nicht leer lassen.", + "DynamicFormTermPanelTitle": "Laufzeit auswählen", + "DynamicFormEnterURLPlaceholder": "Geben Sie eine URL ein", + "DynamicFormEnterDescriptionPlaceholder": "Alternativtext", + "customDisplayName": "Verwenden Sie diesen Speicherort:", + "ListItemCommentDIalogDeleteSubText": "Sind Sie sicher, dass Sie diesen Kommentar löschen möchten?", + "ListItemCommentsDialogDeleteTitle": "Kommentar löschen bestätigen", + "ListItemCommentsLabel": "Kommentare", + "ListItemCommentsNoCommentsLabel": "No comments", + "OrgAssetsLinkLabel": "Ihre Organisation", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/el-gr.ts b/src/loc/el-gr.ts index 6d3b3ce8a..cba8cd4ee 100644 --- a/src/loc/el-gr.ts +++ b/src/loc/el-gr.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "No comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Περιήγηση σε ιστότοπους", - "ListViewGroupEmptyLabel": "Κενό", - "WebPartTitlePlaceholder": "Τίτλος τμήματος Web", - "WebPartTitleLabel": "Προσθήκη τίτλου", - "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": "Σήμερα" - }, - "SendEmailTo": "Στείλτε ένα μήνυμα ηλεκτρονικού ταχυδρομείου στο {0}", - "StartChatWith": "Έναρξη συνομιλίας με {0}", - "Contact": "Επαφή", - "UpdateProfile": "Ενημέρωση του προφίλ σας", - "TaxonomyPickerNoTerms": "Το σύνολο όρων δεν περιέχει όρους", - "TaxonomyPickerExpandTitle": "Επέκταση αυτού του συνόλου όρων", - "TaxonomyPickerMenuTermSet": "Μενού για σύνολο όρων", - "TaxonomyPickerInLabel": "In", - "TaxonomyPickerTermSetLabel": "Σύνολο όρων", - "peoplePickerComponentTooltipMessage": "Ατόμων", - "peoplePickerComponentErrorMessage": "Απαιτούμενο πεδίο", - "peoplePickerSuggestionsHeaderText": "Προτεινόμενους ανθρώπους", - "peoplePickerLoadingText": "Φόρτωση", - "PeoplePickerSearchText": "Λήψη χρηστών", - "PeoplePickerGroupNotFound": "Δεν ήταν δυνατή η εύρεση της ομάδας.", - "genericNoResultsFoundText": "Δεν βρέθηκαν αποτελέσματα", - "ListItemPickerSelectValue": "Επιλογή τιμής", - "ListItemAttachmentsActionDeleteIconTitle": "Διαγράψετε", - "ListItemAttachmentsactionDeleteTitle": "Διαγράψετε", - "ListItemAttachmentsfileDeletedMsg": "Το αρχείο {0} διαγραφεί", - "ListItemAttachmentsfileDeleteError": "Σφάλμα κατά τη διαγραφή αρχείου: {0}, αιτία {1}", - "ListItemAttachmentserrorLoadAttachments": "Σφάλμα κατά την επισύναψη στοιχείου λίστας φόρτωσης, αιτία: {0}", - "ListItemAttachmentsconfirmDelete": "Είστε βέβαιοι ότι θέλετε να στείλετε το συνημμένο {0} στον κάδο ανακύκλωσης της τοποθεσίας;", - "ListItemAttachmentsdialogTitle": "Επισύναψη στοιχείου λίστας", - "ListItemAttachmentsdialogOKbuttonLabel": "Ok", - "ListItemAttachmentsdialogCancelButtonLabel": "Ακυρώσετε", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Διαγράψετε", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Προσθήκη συνημμένου", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Προσθήκη συνημμένου", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Το αρχείο δεν {0} συνημμένο, αιτία: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Προσθήκη συνημμένου", - "ListItemAttachmentsloadingMessage": "Αποστολή αρχείου...", - "ListItemAttachmentslPlaceHolderIconText": "Επισύναψη στοιχείου λίστας", - "ListItemAttachmentslPlaceHolderDescription": "Παρακαλούμε Προσθήκη συνημμένου", - "ListItemAttachmentslPlaceHolderButtonLabel": "Προσθέσετε", - "mapsErrorMessage": "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του χάρτη", - "mapsLoadingText": "Φόρτωση", - "mapsSearchButtonText": "Αναζήτηση", - "mapsTitlePrefix": "Χάρτης", - "ListViewFilterLabel": "Φιλτράρισμα της λίστας", - "HeaderNormalText": "Κανονικό κείμενο", - "HeaderH2": "Τομέας 1", - "HeaderH3": "Τομέας 2", - "HeaderH4": "Τομέας 3", - "HeaderBlockQuote": "Ελκυστική φράση", - "AlignLeft": "Στοίχιση αριστερά", - "AlignCenter": "Κέντρο", - "AlignRight": "Στοίχιση δεξιά", - "AlignJustify": "Δικαιολογήσει", - "ListBullet": "Λίστα με κουκκίδες", - "ListNumbered": "Αριθμημένη λίστα", - "StyleTitle": "Στυλ", - "BoldTitle": "Έντονη γραφή (CTRL + B)", - "ItalicTitle": "Πλάγια γραφή (Ctrl + I)", - "UnderlineTitle": "Υπογράμμιση (CTRL + U)", - "AlignTitle": "Ευθυγραμμίστε", - "ListTitle": "Λίστα", - "LinkTitle": "Υπερ - σύνδεση", - "MoreTitle": "Περισσότερες", - "FormattingPaneTitle": "Μορφοποίηση κειμένου", - "CloseButton": "Κλείσετε", - "InsertLinkTitle": "Εισαγωγή συνδέσμου", - "AddressFieldLabel": "Διεύθυνση", - "TextToDisplayLabel": "Κείμενο προς εμφάνιση", - "SaveButtonLabel": "Αποθήκευση", - "CancelButtonLabel": "Ακυρώσετε", - "RemoveLinkLabel": "Κατάργηση συνδέσμου", - "ParagraphSectionTitle": "Παράγραφο", - "HyperlinkSectionTitle": "Υπερ - σύνδεση", - "UndoTitle": "Αναίρεση (CTRL + Z)", - "RedoTitle": "Επανάληψη (CTRL + Y)", - "ClearFormattingTitle": "Απαλοιφή όλων των μορφοποιήσεων", - "FontStyleTitle": "Στυλ γραμματοσειράς", - "FontSizeTitle": "Μέγεθος γραμματοσειράς", - "StrikethroughTitle": "Διακριτή διαγραφή", - "SuperscriptTitle": "Εκθέτη", - "SubscriptTitle": "Δείκτης", - "FontColorLabel": "Χρώμα γραμματοσειράς", - "AutomaticFontColor": "Αυτόματη", - "HighlightColorLabel": "Χρώμα επισήμανσης", - "NoColorHighlightColor": "Χωρίς χρώμα", - "IncreaseIndentTitle": "Αύξηση εσοχής", - "DecreaseIndentTitle": "Μείωση εσοχής", - "ThemeColorsGroupName": "Χρώματα θέματος", - "HighlightColorsGroupName": "Επισήμανση χρωμάτων", - "StandardColorsGroupName": "Τυπικά χρώματα", - "CustomColorsGroupName": "Προσαρμοσμένα χρώματα", - "ThemeColorDarker": "Πιο σκούρο θέμα", - "ThemeColorDark": "Θέμα σκούρο", - "ThemeColorDarkAlt": "Θέμα σκούρο εναλλακτικό", - "ThemeColorPrimary": "Πρωτεύον θέμα", - "ThemeColorSecondary": "Θέμα δευτερεύων", - "ThemeColorTertiary": "Ουδέτερη τριτογενής", - "ThemeColorNeutralSecondary": "Ουδέτερο δευτερεύον", - "ThemeColorNeutralPrimaryAlt": "Ουδέτερη κύρια εναλλακτική", - "ThemeColorNeutralPrimary": "Ουδέτερο πρωτεύον", - "ThemeColorNeutralDark": "Ουδέτερο σκοτάδι", - "HighlightColorYellow": "Κίτρινο", - "HighlightColorGreen": "Πράσινο", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Ματζέντα", - "HighlightColorBlue": "Μπλε", - "HighlightColorRed": "Κόκκινο", - "HighlightColorDarkblue": "Σκούρο μπλε", - "HighlightColorTeal": "Κιρκίρι", - "HighlightColorDarkgreen": "Σκούρο πράσινο", - "HighlightColorPurple": "Μωβ", - "HighlightColorMaroon": "Καφέ", - "HighlightColorGold": "Χρυσό", - "HighlightColorDarkgrey": "Σκούρο γκρι", - "HighlightColorGrey": "Γκρι", - "HighlightColorBlack": "Μαύρο", - "StandardColorDarkred": "Σκούρο κόκκινο", - "StandardColorRed": "Κόκκινο", - "StandardColorOrange": "Πορτοκαλί", - "StandardColorYellow": "Κίτρινο", - "StandardColorLightgreen": "Ανοιχτό πράσινο", - "StandardColorGreen": "Πράσινο", - "StandardColorLightblue": "Ανοιχτό μπλε", - "StandardColorBlue": "Μπλε", - "StandardColorDarkblue": "Σκούρο μπλε", - "StandardColorPurple": "Μωβ", - "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": "Σήμερα", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Ημερομηνία", - "DateTimePickerTime": "Χρόνο", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Τιμή εσφαλμένης ώρας", - "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": "ΜΜ/ηη/εεεε Ωω: λλ α", - "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", - "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": "Τροφοδοτείται από το 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": "Λυπούμαστε, αυτή η λειτουργία δεν υλοποιείται σε αυτό το δείγμα, επειδή θα απαιτούσε ένα κλειδί Bing API.", - "SortedAscending": "Ταξινομημένο α έως ω", - "SortedDescending": "Ταξινόμηση Z σε A", - "TypeAriaLabel": "Λειτουργίες στηλών για τον τύπο αρχείου, πατήστε για ταξινόμηση σε τύπο αρχείου", - "UploadFileHeader": "Αποστολή αρχείου", - "UploadImageHeader": "Αποστολή εικόνας", - "UploadLinkLabel": "Φορτώσετε", - "WebSearchLinkLabel": "Αναζήτηση στο Web", - "Yes": "Ναι", - "SelectedLabel": "Επιλεγμένα", - "SelectIcon": "Επιλογή εικονιδίου", - "StockImagesLinkLabel": "στοκ φωτογραφίες", - "StockImagesHeader": "στοκ φωτογραφίες", - "OrgAssetsLinkLabel": "Ο οργανισμός σας" - }; -}); + "Save": "Σώζω", + "Cancel": "Ακυρώνω", + "SiteBreadcrumbLabel": "Περιήγηση σε ιστότοπους", + "ListViewGroupEmptyLabel": "Κενό", + "WebPartTitlePlaceholder": "Τίτλος τμήματος Web", + "WebPartTitleLabel": "Προσθήκη τίτλου", + "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": "Σήμερα" + }, + "SendEmailTo": "Στείλτε ένα μήνυμα ηλεκτρονικού ταχυδρομείου στο {0}", + "StartChatWith": "Έναρξη συνομιλίας με {0}", + "Contact": "Επαφή", + "UpdateProfile": "Ενημέρωση του προφίλ σας", + "TaxonomyPickerNoTerms": "Το σύνολο όρων δεν περιέχει όρους", + "TaxonomyPickerExpandTitle": "Επέκταση αυτού του συνόλου όρων", + "TaxonomyPickerMenuTermSet": "Μενού για σύνολο όρων", + "TaxonomyPickerInLabel": "In", + "TaxonomyPickerTermSetLabel": "Σύνολο όρων", + "TaxonomyPickerTermsNotFound": "Δεν ήταν δυνατή η βρείτε τον επόμενο ή τους επόμενους επιλεγμένους περιόδους στο χώρο αποθήκευσης όρων: {0}", + "TaxonomyPickerInvalidTerms": "Καθορίστε μη έγκυρους όρους: {0}", + "peoplePickerComponentTooltipMessage": "Ατόμων", + "peoplePickerComponentErrorMessage": "Απαιτούμενο πεδίο", + "peoplePickerSuggestionsHeaderText": "Προτεινόμενους ανθρώπους", + "peoplePickerLoadingText": "Φόρτωση", + "PeoplePickerSearchText": "Λήψη χρηστών", + "PeoplePickerGroupNotFound": "Δεν ήταν δυνατή η εύρεση της ομάδας.", + "genericNoResultsFoundText": "Δεν βρέθηκαν αποτελέσματα", + "ListItemPickerSelectValue": "Επιλογή τιμής", + "ListItemAttachmentsActionDeleteIconTitle": "Διαγράψετε", + "ListItemAttachmentsactionDeleteTitle": "Διαγράψετε", + "ListItemAttachmentsfileDeletedMsg": "Το αρχείο {0} διαγραφεί", + "ListItemAttachmentsfileDeleteError": "Σφάλμα κατά τη διαγραφή αρχείου: {0}, αιτία {1}", + "ListItemAttachmentserrorLoadAttachments": "Σφάλμα κατά την επισύναψη στοιχείου λίστας φόρτωσης, αιτία: {0}", + "ListItemAttachmentsconfirmDelete": "Είστε βέβαιοι ότι θέλετε να στείλετε το συνημμένο {0} στον κάδο ανακύκλωσης της τοποθεσίας;", + "ListItemAttachmentsdialogTitle": "Επισύναψη στοιχείου λίστας", + "ListItemAttachmentsdialogOKbuttonLabel": "Ok", + "ListItemAttachmentsdialogCancelButtonLabel": "Ακυρώσετε", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Διαγράψετε", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Προσθήκη συνημμένου", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Προσθήκη συνημμένου", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Το αρχείο δεν {0} συνημμένο, αιτία: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Προσθήκη συνημμένου", + "ListItemAttachmentsloadingMessage": "Αποστολή αρχείου...", + "ListItemAttachmentslPlaceHolderIconText": "Επισύναψη στοιχείου λίστας", + "ListItemAttachmentslPlaceHolderDescription": "Παρακαλούμε Προσθήκη συνημμένου", + "ListItemAttachmentslPlaceHolderButtonLabel": "Προσθέσετε", + "mapsErrorMessage": "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του χάρτη", + "mapsLoadingText": "Φόρτωση", + "mapsSearchButtonText": "Αναζήτηση", + "mapsTitlePrefix": "Χάρτης", + "ListViewFilterLabel": "Φιλτράρισμα της λίστας", + "HeaderNormalText": "Κανονικό κείμενο", + "HeaderH2": "Τομέας 1", + "HeaderH3": "Τομέας 2", + "HeaderH4": "Τομέας 3", + "HeaderBlockQuote": "Ελκυστική φράση", + "AlignLeft": "Στοίχιση αριστερά", + "AlignCenter": "Κέντρο", + "AlignRight": "Στοίχιση δεξιά", + "AlignJustify": "Δικαιολογήσει", + "ListBullet": "Λίστα με κουκκίδες", + "ListNumbered": "Αριθμημένη λίστα", + "StyleTitle": "Στυλ", + "BoldTitle": "Έντονη γραφή (CTRL + B)", + "ItalicTitle": "Πλάγια γραφή (Ctrl + I)", + "UnderlineTitle": "Υπογράμμιση (CTRL + U)", + "AlignTitle": "Ευθυγραμμίστε", + "ListTitle": "Λίστα", + "LinkTitle": "Υπερ - σύνδεση", + "ImageTitle": "Εικόνα", + "MoreTitle": "Περισσότερες", + "FormattingPaneTitle": "Μορφοποίηση κειμένου", + "CloseButton": "Κλείσετε", + "InsertLinkTitle": "Εισαγωγή συνδέσμου", + "InsertImageTitle": "Εισαγωγή εικόνας", + "AddressFieldLabel": "Διεύθυνση", + "TextToDisplayLabel": "Κείμενο προς εμφάνιση", + "SaveButtonLabel": "Αποθήκευση", + "CancelButtonLabel": "Ακυρώσετε", + "RemoveLinkLabel": "Κατάργηση συνδέσμου", + "ParagraphSectionTitle": "Παράγραφο", + "HyperlinkSectionTitle": "Υπερ - σύνδεση", + "UndoTitle": "Αναίρεση (CTRL + Z)", + "RedoTitle": "Επανάληψη (CTRL + Y)", + "ClearFormattingTitle": "Απαλοιφή όλων των μορφοποιήσεων", + "FontStyleTitle": "Στυλ γραμματοσειράς", + "FontSizeTitle": "Μέγεθος γραμματοσειράς", + "StrikethroughTitle": "Διακριτή διαγραφή", + "SuperscriptTitle": "Εκθέτη", + "SubscriptTitle": "Δείκτης", + "FontColorLabel": "Χρώμα γραμματοσειράς", + "AutomaticFontColor": "Αυτόματη", + "HighlightColorLabel": "Χρώμα επισήμανσης", + "NoColorHighlightColor": "Χωρίς χρώμα", + "IncreaseIndentTitle": "Αύξηση εσοχής", + "DecreaseIndentTitle": "Μείωση εσοχής", + "ThemeColorsGroupName": "Χρώματα θέματος", + "HighlightColorsGroupName": "Επισήμανση χρωμάτων", + "StandardColorsGroupName": "Τυπικά χρώματα", + "CustomColorsGroupName": "Προσαρμοσμένα χρώματα", + "ThemeColorDarker": "Πιο σκούρο θέμα", + "ThemeColorDark": "Θέμα σκούρο", + "ThemeColorDarkAlt": "Θέμα σκούρο εναλλακτικό", + "ThemeColorPrimary": "Πρωτεύον θέμα", + "ThemeColorSecondary": "Θέμα δευτερεύων", + "ThemeColorTertiary": "Ουδέτερη τριτογενής", + "ThemeColorNeutralSecondary": "Ουδέτερο δευτερεύον", + "ThemeColorNeutralPrimaryAlt": "Ουδέτερη κύρια εναλλακτική", + "ThemeColorNeutralPrimary": "Ουδέτερο πρωτεύον", + "ThemeColorNeutralDark": "Ουδέτερο σκοτάδι", + "HighlightColorYellow": "Κίτρινο", + "HighlightColorGreen": "Πράσινο", + "HighlightColorAqua": "Ακουά", + "HighlightColorMagenta": "Ματζέντα", + "HighlightColorBlue": "Μπλε", + "HighlightColorRed": "Κόκκινο", + "HighlightColorDarkblue": "Σκούρο μπλε", + "HighlightColorTeal": "Κιρκίρι", + "HighlightColorDarkgreen": "Σκούρο πράσινο", + "HighlightColorPurple": "Μωβ", + "HighlightColorMaroon": "Καφέ", + "HighlightColorGold": "Χρυσό", + "HighlightColorDarkgrey": "Σκούρο γκρι", + "HighlightColorGrey": "Γκρι", + "HighlightColorBlack": "Μαύρο", + "StandardColorDarkred": "Σκούρο κόκκινο", + "StandardColorRed": "Κόκκινο", + "StandardColorOrange": "Πορτοκαλί", + "StandardColorYellow": "Κίτρινο", + "StandardColorLightgreen": "Ανοιχτό πράσινο", + "StandardColorGreen": "Πράσινο", + "StandardColorLightblue": "Ανοιχτό μπλε", + "StandardColorBlue": "Μπλε", + "StandardColorDarkblue": "Σκούρο μπλε", + "StandardColorPurple": "Μωβ", + "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": "Σήμερα", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Ημερομηνία", + "DateTimePickerTime": "Χρόνο", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Τιμή εσφαλμένης ώρας", + "DateTimePickerMinuteValueInvalid": "Εσφαλμένη τιμή λεπτού", + "DateTimePickerSecondValueInvalid": "Εσφαλμένη δεύτερη τιμή", + "DateTimePickerTextErrorMessage": "Πληκτρολογήστε μια έγκυρη ημερομηνία", + "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": "ΜΜ/ηη/εεεε Ωω: λλ α", + "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", + "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": "Τροφοδοτείται από το 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": "Λυπούμαστε, αυτή η λειτουργία δεν υλοποιείται σε αυτό το δείγμα, επειδή θα απαιτούσε ένα κλειδί Bing API.", + "SortedAscending": "Ταξινομημένο α έως ω", + "SortedDescending": "Ταξινόμηση Z σε A", + "TypeAriaLabel": "Λειτουργίες στηλών για τον τύπο αρχείου, πατήστε για ταξινόμηση σε τύπο αρχείου", + "UploadFileHeader": "Αποστολή αρχείου", + "UploadImageHeader": "Αποστολή εικόνας", + "UploadLinkLabel": "Φορτώσετε", + "WebSearchLinkLabel": "Αναζήτηση στο Web", + "StockImagesLinkLabel": "στοκ φωτογραφίες", + "StockImagesHeader": "στοκ φωτογραφίες", + "Yes": "Ναι", + "NewFolderNamePlaceholder": "Εισαγάγετε το όνομα του φακέλου σας", + "FolderFilterBoxPlaceholder": "Φιλτράρισμα φακέλων κατά όνομα", + "FolderExplorerLoading": "Φόρτωση φακέλων...", + "FolderExplorerNoItems": "Αυτός ο φάκελος δεν έχει υποφακέλους.", + "NewFolderIncorrectSymbolsError": "Πληκτρολογήστε ένα όνομα που δεν περιλαμβάνει κανέναν από αυτούς τους χαρακτήρες: \" * : < > ; / |.", + "SomethingWentWrong": "Κάτι πήγε στραβά.", + "SelectedLabel": "Επιλεγμένα", + "SelectIcon": "Επιλογή εικονιδίου", + "TreeViewExpandTitle": "Ανάπτυξη αυτού του στοιχείου", + "TreeViewCollapseTitle": "Σύμπτυξη αυτού του στοιχείου", + "CollectionDataEmptyFields": "Δεν δόθηκαν πεδία για τα δεδομένα συλλογής.", + "CollectionDataEmptyValue": "Δεν υπάρχουν δεδομένα στη συλλογή σας.", + "CollectionAddRowButtonLabel": "Προσθήκη δεδομένων στη συλλογή", + "CollectionDeleteRowButtonLabel": "Διαγραφή της τρέχουσας γραμμής", + "CollectionSaveAndAddButtonLabel": "Προσθήκη και αποθήκευση", + "CollectionDataItemShowErrorsLabel": "Εμφάνιση σφαλμάτων γραμμής", + "CollectionDataItemFieldRequiredLabel": "Απαιτείται πεδίο.", + "CollectionDataItemMissingFields": "Η συλλογή πεδίων είναι άδεια!", + "InvalidUrlError": "Η παρεχόμενη διεύθυνση URL δεν είναι έγκυρη", + "CollectionDataSearch": "Αναζήτηση", + "MyTeamsLoadingMessage": "φόρτωση των ομάδων σας", + "MyTeamsMessageError": "Κάτι πήγε στραβά κατά τη φόρτωση των ομάδων σας, δοκιμάστε αργότερα ή ανανεώστε το πρόγραμμα περιήγησης", + "MyTeamsNoTeamsMessage": "Δεν έχεις ομάδες.", + "MyTeamsTeamChannelPublicMessage": "Δημόσια Κανάλια", + "MyTeamsTeamChannelTypeMessage": "Ιδιωτικά κανάλια", + "TeamChannelPickerFontIconFavoriteText": "Αγαπημένος", + "TeamChannelPickerFontIconPrivateChannelTitle": "Ιδιωτικό κανάλι", + "TeamChannelPickerSugestionHeaderText": "Προτεινόμενα κανάλια ομάδας", + "TeamPickerButtonRemoveTitle": "αφαιρώ", + "TeamPickernoResultsFoundText": "Δεν βρέθηκαν ομάδες", + "TeamPickerSugestionsHeaderText": "Προτεινόμενες ομάδες", + "TeamsChannelPickerButtonRemoveTitle": "αφαιρώ", + "TeamsChannelPickerNoresultsFoundText": "Δεν βρέθηκαν κανάλια", + "ViewMore": "Δείτε περισσότερα", + "DynamicFormLoading": "Φόρτωση...", + "DynamicFormPleaseWait": "Παρακαλώ περίμενε...", + "DynamicFormRequiredErrorMessage": "Δεν μπορείς να το αφήσεις κενό.", + "DynamicFormTermPanelTitle": "Επιλογή όρου", + "DynamicFormEnterURLPlaceholder": "Εισαγωγή διεύθυνσης URL", + "DynamicFormEnterDescriptionPlaceholder": "Εναλλακτικό κείμενο", + "customDisplayName": "Χρησιμοποιήστε αυτήν τη θέση:", + "ListItemCommentDIalogDeleteSubText": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το σχόλιο;", + "ListItemCommentsDialogDeleteTitle": "Επιβεβαίωση διαγραφής σχολίου", + "ListItemCommentsLabel": "Σχόλια", + "ListItemCommentsNoCommentsLabel": "No comments", + "OrgAssetsLinkLabel": "Ο οργανισμός σας", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/es-es.ts b/src/loc/es-es.ts index 23d4b34c5..19ee9008e 100644 --- a/src/loc/es-es.ts +++ b/src/loc/es-es.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Ruta de navegación del sitio web", - "ListViewGroupEmptyLabel": "Vacío", - "WebPartTitlePlaceholder": "Título del elemento web", - "WebPartTitleLabel": "Añadir un título", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "En unos segundos", - "L_RelativeDateTime_AFewSeconds": "Hace unos segundos", - "L_RelativeDateTime_AboutAMinuteFuture": "En un minuto", - "L_RelativeDateTime_AboutAMinute": "Hace un minuto", - "L_RelativeDateTime_XMinutesFuture": "En {0} minuto En {0} minutos", - "L_RelativeDateTime_XMinutes": "hace {0} minutos. hace {0} minutos", - "L_RelativeDateTime_XMinutesFutureIntervals": "1o 2-", - "L_RelativeDateTime_XMinutesIntervals": "1o 2-", - "L_RelativeDateTime_AboutAnHourFuture": "Dentro de una hora", - "L_RelativeDateTime_AboutAnHour": "Hace una hora", - "L_RelativeDateTime_Tomorrow": "Mañana", - "L_RelativeDateTime_Yesterday": "Ayer", - "L_RelativeDateTime_TomorrowAndTime": "Mañana en {0}", - "L_RelativeDateTime_YesterdayAndTime": "Ayer en {0}", - "L_RelativeDateTime_XHoursFuture": "En {0} hora En {0} horas", - "L_RelativeDateTime_XHours": "Hace {0} horas. hace {0} horas", - "L_RelativeDateTime_XHoursFutureIntervals": "1o 2-", - "L_RelativeDateTime_XHoursIntervals": "1o 2-", - "L_RelativeDateTime_DayAndTime": "{0} en {1}", - "L_RelativeDateTime_XDaysFuture": "{0} día a partir de ahora {0} días a partir de ahora", - "L_RelativeDateTime_XDays": "{0} día atrás hace {0} días", - "L_RelativeDateTime_XDaysFutureIntervals": "1o 2-", - "L_RelativeDateTime_XDaysIntervals": "1o 2-", - "L_RelativeDateTime_Today": "Hoy" - }, - "SendEmailTo": "Enviar un correo electrónico a {0}", - "StartChatWith": "Inicia un chat con {0}", - "Contact": "Contacto", - "UpdateProfile": "Actualiza tu perfil", - "TaxonomyPickerNoTerms": "El conjunto de términos no contiene términos", - "TaxonomyPickerExpandTitle": "Expanda este conjunto de términos", - "TaxonomyPickerMenuTermSet": "Menú para el conjunto de términos", - "TaxonomyPickerInLabel": "En", - "TaxonomyPickerTermSetLabel": "Conjunto de términos", - "peoplePickerComponentTooltipMessage": "Picker de personas", - "peoplePickerComponentErrorMessage": "Campo requerido", - "peoplePickerSuggestionsHeaderText": "Personas sugeridas", - "peoplePickerLoadingText": "Carga", - "PeoplePickerSearchText": "Obtención de usuarios", - "PeoplePickerGroupNotFound": "No se pudo encontrar el grupo.", - "genericNoResultsFoundText": "No se han encontrado resultados", - "ListItemPickerSelectValue": "Seleccionar valor", - "ListItemAttachmentsActionDeleteIconTitle": "Eliminar", - "ListItemAttachmentsactionDeleteTitle": "Eliminar", - "ListItemAttachmentsfileDeletedMsg": "El archivo {0} elimina", - "ListItemAttachmentsfileDeleteError": "Error en el archivo de eliminación: {0}, razón {1}", - "ListItemAttachmentserrorLoadAttachments": "Error en los datos adjuntos del elemento de lista de carga, razón: {0}", - "ListItemAttachmentsconfirmDelete": "¿Está seguro de que desea enviar el archivo adjunto {0} a la papelera de reciclaje del sitio?", - "ListItemAttachmentsdialogTitle": "Adjunto de elemento de lista", - "ListItemAttachmentsdialogOKbuttonLabel": "De acuerdo", - "ListItemAttachmentsdialogCancelButtonLabel": "Cancelar", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Eliminar", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Añadir archivo adjunto", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Añadir archivo adjunto", - "ListItemAttachmentsuploadAttachmentErrorMsg": "El archivo no {0} adjunto, razón: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Añadir archivo adjunto", - "ListItemAttachmentsloadingMessage": "Cargando archivo ...", - "ListItemAttachmentslPlaceHolderIconText": "Adjunto de elemento de lista", - "ListItemAttachmentslPlaceHolderDescription": "Por favor, agregue el archivo adjunto", - "ListItemAttachmentslPlaceHolderButtonLabel": "Añadir", - "mapsErrorMessage": "Se ha producido un error al cargar el mapa", - "mapsLoadingText": "Carga", - "mapsSearchButtonText": "Búsqueda", - "mapsTitlePrefix": "Mapa de", - "ListViewFilterLabel": "Filtrar la lista", - "HeaderNormalText": "Texto normal", - "HeaderH2": "Rumbo 1", - "HeaderH3": "Rumbo 2", - "HeaderH4": "Rumbo 3", - "HeaderBlockQuote": "Presupuesto de extracción", - "AlignLeft": "Alinear a la izquierda", - "AlignCenter": "Centro", - "AlignRight": "Alinear a la derecha", - "AlignJustify": "Justificar", - "ListBullet": "Lista con viñetas", - "ListNumbered": "Lista numerada", - "StyleTitle": "Estilo", - "BoldTitle": "Negrita (Ctrl+B)", - "ItalicTitle": "Cursiva (Ctrl+I)", - "UnderlineTitle": "Subrayado (Ctrl+U)", - "AlignTitle": "Alinee", - "ListTitle": "Lista", - "LinkTitle": "Hipervínculo", - "MoreTitle": "Más", - "FormattingPaneTitle": "Formato de texto", - "CloseButton": "Cerca", - "InsertLinkTitle": "Insertar enlace", - "AddressFieldLabel": "Dirección", - "TextToDisplayLabel": "Texto para mostrar", - "SaveButtonLabel": "Salvar", - "CancelButtonLabel": "Cancelar", - "RemoveLinkLabel": "Eliminar enlace", - "ParagraphSectionTitle": "Párrafo", - "HyperlinkSectionTitle": "Hipervínculo", - "UndoTitle": "Deshacer (Ctrl+Z)", - "RedoTitle": "Rehacer (Ctrl+Y)", - "ClearFormattingTitle": "Borrar todo el formato", - "FontStyleTitle": "Estilo de fuente", - "FontSizeTitle": "Tamaño de fuente", - "StrikethroughTitle": "Tachado", - "SuperscriptTitle": "Superíndice", - "SubscriptTitle": "Subíndice", - "FontColorLabel": "Color de fuente", - "AutomaticFontColor": "Automático", - "HighlightColorLabel": "Resaltar el color", - "NoColorHighlightColor": "No color", - "IncreaseIndentTitle": "Aumentar la sangría", - "DecreaseIndentTitle": "Disminuir sangría", - "ThemeColorsGroupName": "Colores del tema", - "HighlightColorsGroupName": "Resaltar colores", - "StandardColorsGroupName": "Colores estándar", - "CustomColorsGroupName": "Colores personalizados", - "ThemeColorDarker": "Tema más oscuro", - "ThemeColorDark": "Tema oscuro", - "ThemeColorDarkAlt": "Tema oscuro alternativo", - "ThemeColorPrimary": "Tema primario", - "ThemeColorSecondary": "Tema secundario", - "ThemeColorTertiary": "Terciario neutro", - "ThemeColorNeutralSecondary": "Secundaria neutral", - "ThemeColorNeutralPrimaryAlt": "Alternativa primaria neutral", - "ThemeColorNeutralPrimary": "Primaria neutral", - "ThemeColorNeutralDark": "Neutral oscuro", - "HighlightColorYellow": "Amarillo", - "HighlightColorGreen": "Verde", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Azul", - "HighlightColorRed": "Rojo", - "HighlightColorDarkblue": "Azul oscuro", - "HighlightColorTeal": "Teal", - "HighlightColorDarkgreen": "Verde oscuro", - "HighlightColorPurple": "Púrpura", - "HighlightColorMaroon": "Marrón", - "HighlightColorGold": "Oro", - "HighlightColorDarkgrey": "Gris oscuro", - "HighlightColorGrey": "Gris", - "HighlightColorBlack": "Negro", - "StandardColorDarkred": "Rojo oscuro", - "StandardColorRed": "Rojo", - "StandardColorOrange": "Naranja", - "StandardColorYellow": "Amarillo", - "StandardColorLightgreen": "Verde claro", - "StandardColorGreen": "Verde", - "StandardColorLightblue": "Azul claro", - "StandardColorBlue": "Azul", - "StandardColorDarkblue": "Azul oscuro", - "StandardColorPurple": "Púrpura", - "DatePickerMonthLongJanuary": "Enero", - "DatePickerMonthShortJanuary": "Ene", - "DatePickerMonthLongFebruary": "Febrero", - "DatePickerMonthShortFebruary": "Feb", - "DatePickerMonthLongMarch": "Marzo", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "Abril", - "DatePickerMonthShortApril": "Abr", - "DatePickerMonthLongMay": "Mayo", - "DatePickerMonthShortMay": "May", - "DatePickerMonthLongJune": "Junio", - "DatePickerMonthShortJune": "Jun", - "DatePickerMonthLongJuly": "Julio", - "DatePickerMonthShortJuly": "Jul", - "DatePickerMonthLongAugust": "Agosto", - "DatePickerMonthShortAugust": "Ago", - "DatePickerMonthLongSeptember": "Septiembre", - "DatePickerMonthShortSeptember": "Sep", - "DatePickerMonthLongOctober": "Octubre", - "DatePickerMonthShortOctober": "Oct", - "DatePickerMonthLongNovember": "Noviembre", - "DatePickerMonthShortNovember": "Nov", - "DatePickerMonthLongDecember": "Diciembre", - "DatePickerMonthShortDecember": "Dic", - "DatePickerDayLongSunday": "Domingo", - "DatePickerDayShortSunday": "Dom", - "DatePickerDayLongMonday": "Lunes", - "DatePickerDayShortMonday": "Lun", - "DatePickerDayLongTuesday": "Martes", - "DatePickerDayShortTuesday": "Mar", - "DatePickerDayLongWednesday": "Miércoles", - "DatePickerDayShortWednesday": "Mié", - "DatePickerDayLongThursday": "Jueves", - "DatePickerDayShortThursday": "Jue", - "DatePickerDayLongFriday": "Viernes", - "DatePickerDayShortFriday": "Vie", - "DatePickerDayLongSaturday": "Sábado", - "DatePickerDayShortSaturday": "Sáb", - "DatePickerGoToToday": "Hoy", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Fecha", - "DateTimePickerTime": "hora", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Valor de hora incorrecto", - "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": "Elegir 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} modificado, 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} modificado, editado por {2}, {3} elementos, Privado", - "FromLinkLinkLabel": "Desde un enlace", - "ImageAltText": ". Imagen {0}", - "ImageAriaLabelTemplate": ". Imagen {0}", - "ImageLayoutPlaceholderText": "Diseño", - "ImageSizePlaceholderText": "Tamaño de la imagen", - "ItemChildCountField": "Artículo Recuento de niños", - "LayoutOptionAll": "todo", - "LayoutOptionSquare": "Cuadrado", - "LayoutOptionTall": "Alto", - "LayoutOptionWide": "extenso", - "LearnMoreLink": "Aprende más.", - "LicenseOptionAll": "todo", - "LicenseOptionAny": "Solo Creative Commons", - "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 mosaico", - "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": "El valor proporcionado no es válido", - "NoExternalLinksValidationMessage": "Solo admitimos la vinculación a archivos de su propia organización.", - "NoImageValidationMessage": "Esto no es un vínculo a un tipo de archivo que admitamos. Solo puede vincular a una imagen.", - "NoRecentFiles": "Sin archivos recientes", - "NoRecentFilesDescription": "Intenta seleccionar un archivo de tu sitio o carga 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}, {2} modificado, editado por {3}, {4} {5}", - "OneDriveConfirmDialogBody": "Este elemento es de su 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 ccess?", - "OneDriveConfirmDialogTitle": "Sólo estoy 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 la fuente de la imagen en una nueva pestaña.", - "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": "Clasificado 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", - "StockImagesLinkLabel": "Imágenes de stock", - "StockImagesHeader": "Imágenes de stock", - "Yes": "Sí", - "SelectedLabel": "Seleccionado", - "SelectIcon": "Seleccionar icono", - "OrgAssetsLinkLabel":"Tu organizacion" - }; -}); + "Save": "Salvar", + "Cancel": "Cancelar", + "SiteBreadcrumbLabel": "Ruta de navegación del sitio web", + "ListViewGroupEmptyLabel": "Vacío", + "WebPartTitlePlaceholder": "Título del elemento web", + "WebPartTitleLabel": "Añadir un título", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "En unos segundos", + "L_RelativeDateTime_AFewSeconds": "Hace unos segundos", + "L_RelativeDateTime_AboutAMinuteFuture": "En un minuto", + "L_RelativeDateTime_AboutAMinute": "Hace un minuto", + "L_RelativeDateTime_XMinutesFuture": "En {0} minuto En {0} minutos", + "L_RelativeDateTime_XMinutes": "hace {0} minutos. hace {0} minutos", + "L_RelativeDateTime_XMinutesFutureIntervals": "1o 2-", + "L_RelativeDateTime_XMinutesIntervals": "1o 2-", + "L_RelativeDateTime_AboutAnHourFuture": "Dentro de una hora", + "L_RelativeDateTime_AboutAnHour": "Hace una hora", + "L_RelativeDateTime_Tomorrow": "Mañana", + "L_RelativeDateTime_Yesterday": "Ayer", + "L_RelativeDateTime_TomorrowAndTime": "Mañana en {0}", + "L_RelativeDateTime_YesterdayAndTime": "Ayer en {0}", + "L_RelativeDateTime_XHoursFuture": "En {0} hora En {0} horas", + "L_RelativeDateTime_XHours": "Hace {0} horas. hace {0} horas", + "L_RelativeDateTime_XHoursFutureIntervals": "1o 2-", + "L_RelativeDateTime_XHoursIntervals": "1o 2-", + "L_RelativeDateTime_DayAndTime": "{0} en {1}", + "L_RelativeDateTime_XDaysFuture": "{0} día a partir de ahora {0} días a partir de ahora", + "L_RelativeDateTime_XDays": "{0} día atrás hace {0} días", + "L_RelativeDateTime_XDaysFutureIntervals": "1o 2-", + "L_RelativeDateTime_XDaysIntervals": "1o 2-", + "L_RelativeDateTime_Today": "Hoy" + }, + "SendEmailTo": "Enviar un correo electrónico a {0}", + "StartChatWith": "Inicia un chat con {0}", + "Contact": "Contacto", + "UpdateProfile": "Actualiza tu perfil", + "TaxonomyPickerNoTerms": "El conjunto de términos no contiene términos", + "TaxonomyPickerExpandTitle": "Expanda este conjunto de términos", + "TaxonomyPickerMenuTermSet": "Menú para el conjunto de términos", + "TaxonomyPickerInLabel": "En", + "TaxonomyPickerTermSetLabel": "Conjunto de términos", + "TaxonomyPickerTermsNotFound": "No se pudieron encontrar los siguientes términos seleccionados en el almacén de términos: {0}", + "TaxonomyPickerInvalidTerms": "Corrija los términos no válidos: {0}", + "peoplePickerComponentTooltipMessage": "Picker de personas", + "peoplePickerComponentErrorMessage": "Campo requerido", + "peoplePickerSuggestionsHeaderText": "Personas sugeridas", + "peoplePickerLoadingText": "Carga", + "PeoplePickerSearchText": "Obtención de usuarios", + "PeoplePickerGroupNotFound": "No se pudo encontrar el grupo.", + "genericNoResultsFoundText": "No se han encontrado resultados", + "ListItemPickerSelectValue": "Seleccionar valor", + "ListItemAttachmentsActionDeleteIconTitle": "Eliminar", + "ListItemAttachmentsactionDeleteTitle": "Eliminar", + "ListItemAttachmentsfileDeletedMsg": "El archivo {0} elimina", + "ListItemAttachmentsfileDeleteError": "Error en el archivo de eliminación: {0}, razón {1}", + "ListItemAttachmentserrorLoadAttachments": "Error en los datos adjuntos del elemento de lista de carga, razón: {0}", + "ListItemAttachmentsconfirmDelete": "¿Está seguro de que desea enviar el archivo adjunto {0} a la papelera de reciclaje del sitio?", + "ListItemAttachmentsdialogTitle": "Adjunto de elemento de lista", + "ListItemAttachmentsdialogOKbuttonLabel": "De acuerdo", + "ListItemAttachmentsdialogCancelButtonLabel": "Cancelar", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Eliminar", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Añadir archivo adjunto", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Añadir archivo adjunto", + "ListItemAttachmentsuploadAttachmentErrorMsg": "El archivo no {0} adjunto, razón: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Añadir archivo adjunto", + "ListItemAttachmentsloadingMessage": "Cargando archivo ...", + "ListItemAttachmentslPlaceHolderIconText": "Adjunto de elemento de lista", + "ListItemAttachmentslPlaceHolderDescription": "Por favor, agregue el archivo adjunto", + "ListItemAttachmentslPlaceHolderButtonLabel": "Añadir", + "mapsErrorMessage": "Se ha producido un error al cargar el mapa", + "mapsLoadingText": "Carga", + "mapsSearchButtonText": "Búsqueda", + "mapsTitlePrefix": "Mapa de", + "ListViewFilterLabel": "Filtrar la lista", + "HeaderNormalText": "Texto normal", + "HeaderH2": "Rumbo 1", + "HeaderH3": "Rumbo 2", + "HeaderH4": "Rumbo 3", + "HeaderBlockQuote": "Presupuesto de extracción", + "AlignLeft": "Alinear a la izquierda", + "AlignCenter": "Centro", + "AlignRight": "Alinear a la derecha", + "AlignJustify": "Justificar", + "ListBullet": "Lista con viñetas", + "ListNumbered": "Lista numerada", + "StyleTitle": "Estilo", + "BoldTitle": "Negrita (Ctrl+B)", + "ItalicTitle": "Cursiva (Ctrl+I)", + "UnderlineTitle": "Subrayado (Ctrl+U)", + "AlignTitle": "Alinee", + "ListTitle": "Lista", + "LinkTitle": "Hipervínculo", + "ImageTitle": "Imagen", + "MoreTitle": "Más", + "FormattingPaneTitle": "Formato de texto", + "CloseButton": "Cerca", + "InsertLinkTitle": "Insertar enlace", + "InsertImageTitle": "Insertar imagen", + "AddressFieldLabel": "Dirección", + "TextToDisplayLabel": "Texto para mostrar", + "SaveButtonLabel": "Salvar", + "CancelButtonLabel": "Cancelar", + "RemoveLinkLabel": "Eliminar enlace", + "ParagraphSectionTitle": "Párrafo", + "HyperlinkSectionTitle": "Hipervínculo", + "UndoTitle": "Deshacer (Ctrl+Z)", + "RedoTitle": "Rehacer (Ctrl+Y)", + "ClearFormattingTitle": "Borrar todo el formato", + "FontStyleTitle": "Estilo de fuente", + "FontSizeTitle": "Tamaño de fuente", + "StrikethroughTitle": "Tachado", + "SuperscriptTitle": "Superíndice", + "SubscriptTitle": "Subíndice", + "FontColorLabel": "Color de fuente", + "AutomaticFontColor": "Automático", + "HighlightColorLabel": "Resaltar el color", + "NoColorHighlightColor": "No color", + "IncreaseIndentTitle": "Aumentar la sangría", + "DecreaseIndentTitle": "Disminuir sangría", + "ThemeColorsGroupName": "Colores del tema", + "HighlightColorsGroupName": "Resaltar colores", + "StandardColorsGroupName": "Colores estándar", + "CustomColorsGroupName": "Colores personalizados", + "ThemeColorDarker": "Tema más oscuro", + "ThemeColorDark": "Tema oscuro", + "ThemeColorDarkAlt": "Tema oscuro alternativo", + "ThemeColorPrimary": "Tema primario", + "ThemeColorSecondary": "Tema secundario", + "ThemeColorTertiary": "Terciario neutro", + "ThemeColorNeutralSecondary": "Secundaria neutral", + "ThemeColorNeutralPrimaryAlt": "Alternativa primaria neutral", + "ThemeColorNeutralPrimary": "Primaria neutral", + "ThemeColorNeutralDark": "Neutral oscuro", + "HighlightColorYellow": "Amarillo", + "HighlightColorGreen": "Verde", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Azul", + "HighlightColorRed": "Rojo", + "HighlightColorDarkblue": "Azul oscuro", + "HighlightColorTeal": "Cerceta", + "HighlightColorDarkgreen": "Verde oscuro", + "HighlightColorPurple": "Púrpura", + "HighlightColorMaroon": "Marrón", + "HighlightColorGold": "Oro", + "HighlightColorDarkgrey": "Gris oscuro", + "HighlightColorGrey": "Gris", + "HighlightColorBlack": "Negro", + "StandardColorDarkred": "Rojo oscuro", + "StandardColorRed": "Rojo", + "StandardColorOrange": "Naranja", + "StandardColorYellow": "Amarillo", + "StandardColorLightgreen": "Verde claro", + "StandardColorGreen": "Verde", + "StandardColorLightblue": "Azul claro", + "StandardColorBlue": "Azul", + "StandardColorDarkblue": "Azul oscuro", + "StandardColorPurple": "Púrpura", + "DatePickerMonthLongJanuary": "Enero", + "DatePickerMonthShortJanuary": "Ene", + "DatePickerMonthLongFebruary": "Febrero", + "DatePickerMonthShortFebruary": "Feb", + "DatePickerMonthLongMarch": "Marzo", + "DatePickerMonthShortMarch": "Mar", + "DatePickerMonthLongApril": "Abril", + "DatePickerMonthShortApril": "Abr", + "DatePickerMonthLongMay": "Mayo", + "DatePickerMonthShortMay": "May", + "DatePickerMonthLongJune": "Junio", + "DatePickerMonthShortJune": "Jun", + "DatePickerMonthLongJuly": "Julio", + "DatePickerMonthShortJuly": "Jul", + "DatePickerMonthLongAugust": "Agosto", + "DatePickerMonthShortAugust": "Ago", + "DatePickerMonthLongSeptember": "Septiembre", + "DatePickerMonthShortSeptember": "Sep", + "DatePickerMonthLongOctober": "Octubre", + "DatePickerMonthShortOctober": "Oct", + "DatePickerMonthLongNovember": "Noviembre", + "DatePickerMonthShortNovember": "Nov", + "DatePickerMonthLongDecember": "Diciembre", + "DatePickerMonthShortDecember": "Dic", + "DatePickerDayLongSunday": "Domingo", + "DatePickerDayShortSunday": "Dom", + "DatePickerDayLongMonday": "Lunes", + "DatePickerDayShortMonday": "Lun", + "DatePickerDayLongTuesday": "Martes", + "DatePickerDayShortTuesday": "Mar", + "DatePickerDayLongWednesday": "Miércoles", + "DatePickerDayShortWednesday": "Mié", + "DatePickerDayLongThursday": "Jueves", + "DatePickerDayShortThursday": "Jue", + "DatePickerDayLongFriday": "Viernes", + "DatePickerDayShortFriday": "Vie", + "DatePickerDayLongSaturday": "Sábado", + "DatePickerDayShortSaturday": "Sáb", + "DatePickerGoToToday": "Hoy", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Fecha", + "DateTimePickerTime": "hora", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Valor de hora incorrecto", + "DateTimePickerMinuteValueInvalid": "Valor de minuto incorrecto", + "DateTimePickerSecondValueInvalid": "Segundo valor incorrecto", + "DateTimePickerTextErrorMessage": "Introduce una fecha válida", + "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": "Elegir 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} modificado, 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} modificado, editado por {2}, {3} elementos, Privado", + "FromLinkLinkLabel": "Desde un enlace", + "ImageAltText": ". Imagen {0}", + "ImageAriaLabelTemplate": ". Imagen {0}", + "ImageLayoutPlaceholderText": "Diseño", + "ImageSizePlaceholderText": "Tamaño de la imagen", + "ItemChildCountField": "Artículo Recuento de niños", + "LayoutOptionAll": "todo", + "LayoutOptionSquare": "Cuadrado", + "LayoutOptionTall": "Alto", + "LayoutOptionWide": "extenso", + "LearnMoreLink": "Aprende más.", + "LicenseOptionAll": "todo", + "LicenseOptionAny": "Solo Creative Commons", + "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 mosaico", + "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": "El valor proporcionado no es válido", + "NoExternalLinksValidationMessage": "Solo admitimos la vinculación a archivos de su propia organización.", + "NoImageValidationMessage": "Esto no es un vínculo a un tipo de archivo que admitamos. Solo puede vincular a una imagen.", + "NoRecentFiles": "Sin archivos recientes", + "NoRecentFilesDescription": "Intenta seleccionar un archivo de tu sitio o carga 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}, {2} modificado, editado por {3}, {4} {5}", + "OneDriveConfirmDialogBody": "Este elemento es de su 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 ccess?", + "OneDriveConfirmDialogTitle": "Sólo estoy 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 la fuente de la imagen en una nueva pestaña.", + "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": "Clasificado 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", + "StockImagesLinkLabel": "Imágenes de stock", + "StockImagesHeader": "Imágenes de stock", + "Yes": "Sí", + "NewFolderNamePlaceholder": "Introduzca el nombre de la carpeta", + "FolderFilterBoxPlaceholder": "Filtrar carpetas por nombre", + "FolderExplorerLoading": "Cargando carpetas...", + "FolderExplorerNoItems": "Esta carpeta no tiene subcarpetas.", + "NewFolderIncorrectSymbolsError": "Introduzca un nombre que no incluya ninguno de estos caracteres: \" * : < > ? / |.", + "SomethingWentWrong": "Algo salió mal", + "SelectedLabel": "Seleccionado", + "SelectIcon": "Seleccionar icono", + "TreeViewExpandTitle": "Expandir este elemento", + "TreeViewCollapseTitle": "Contraer este elemento", + "CollectionDataEmptyFields": "No se proporcionaron campos para los datos de recopilación.", + "CollectionDataEmptyValue": "No hay datos en su colección.", + "CollectionAddRowButtonLabel": "Agregar datos a la colección", + "CollectionDeleteRowButtonLabel": "Eliminar la fila actual", + "CollectionSaveAndAddButtonLabel": "Agregar y guardar", + "CollectionDataItemShowErrorsLabel": "Mostrar errores de fila", + "CollectionDataItemFieldRequiredLabel": "El campo es obligatorio.", + "CollectionDataItemMissingFields": "¡La colección Fields está vacía!", + "InvalidUrlError": "La dirección URL proporcionada no es válida", + "CollectionDataSearch": "Buscar", + "MyTeamsLoadingMessage": "cargando tus equipos", + "MyTeamsMessageError": "Algo salió mal mientras cargaba sus equipos, por favor, inténtelo más tarde o actualice el navegador", + "MyTeamsNoTeamsMessage": "No tienes ningún equipo", + "MyTeamsTeamChannelPublicMessage": "Canales Públicos", + "MyTeamsTeamChannelTypeMessage": "Canales privados", + "TeamChannelPickerFontIconFavoriteText": "Favorito", + "TeamChannelPickerFontIconPrivateChannelTitle": "Canal privado", + "TeamChannelPickerSugestionHeaderText": "Canales de equipo sugeridos", + "TeamPickerButtonRemoveTitle": "eliminar", + "TeamPickernoResultsFoundText": "No se han encontrado equipos", + "TeamPickerSugestionsHeaderText": "Equipos sugeridos", + "TeamsChannelPickerButtonRemoveTitle": "eliminar", + "TeamsChannelPickerNoresultsFoundText": "No se han encontrado canales", + "ViewMore": "Ver más", + "DynamicFormLoading": "Carga...", + "DynamicFormPleaseWait": "Espera...", + "DynamicFormRequiredErrorMessage": "No se puede dejar esto en blanco.", + "DynamicFormTermPanelTitle": "Seleccionar término", + "DynamicFormEnterURLPlaceholder": "Introducir una dirección URL", + "DynamicFormEnterDescriptionPlaceholder": "Texto alternativo", + "customDisplayName": "Utilice esta ubicación:", + "ListItemCommentDIalogDeleteSubText": "¿Está seguro de que desea eliminar este comentario?", + "ListItemCommentsDialogDeleteTitle": "Confirmar comentario de eliminación", + "ListItemCommentsLabel": "Comentarios", + "ListItemCommentsNoCommentsLabel": "No hay comentarios", + "OrgAssetsLinkLabel": "Tu organizacion", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/et-ee.ts b/src/loc/et-ee.ts index 702d3bbc4..0175d93f1 100644 --- a/src/loc/et-ee.ts +++ b/src/loc/et-ee.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Veebilehe laius", - "ListViewGroupEmptyLabel": "Tühi", - "WebPartTitlePlaceholder": "Veebiosa tiitel", - "WebPartTitleLabel": "Pealkirja lisamine", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Mõne sekundi pärast", - "L_RelativeDateTime_AFewSeconds": "Mõni sekund tagasi", - "L_RelativeDateTime_AboutAMinuteFuture": "Umbes minut", - "L_RelativeDateTime_AboutAMinute": "Umbes minut tagasi", - "L_RelativeDateTime_XMinutesFuture": "{0} minuti jooksul||{0} minuti pärast", - "L_RelativeDateTime_XMinutes": "{0} minut tagasi||{0} 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} tunni jooksul||{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} {1}", - "L_RelativeDateTime_XDaysFuture": "{0} päev alates praegusest||{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" - }, - "SendEmailTo": "Saatke e-kiri {0}", - "StartChatWith": "Alusta vestlust {0}", - "Contact": "Kontakt", - "UpdateProfile": "Uuenda oma profiili", - "TaxonomyPickerNoTerms": "Terminkomplekt ei sisalda ühtegi terminit", - "TaxonomyPickerExpandTitle": "Laienda see terminiga", - "TaxonomyPickerMenuTermSet": "Termini komplekti menüü", - "TaxonomyPickerInLabel": "Sisse", - "TaxonomyPickerTermSetLabel": "Termini komplekt", - "peoplePickerComponentTooltipMessage": "Inimeste valija", - "peoplePickerComponentErrorMessage": "Kohustuslik väli", - "peoplePickerSuggestionsHeaderText": "Soovitatud inimesed", - "peoplePickerLoadingText": "Laadimise", - "PeoplePickerSearchText": "Kasutajate toomine", - "PeoplePickerGroupNotFound": "Rühma ei leitud.", - "genericNoResultsFoundText": "Tulemusi ei leitud", - "ListItemPickerSelectValue": "Valige väärtus", - "ListItemAttachmentsActionDeleteIconTitle": "Kustutada", - "ListItemAttachmentsactionDeleteTitle": "Kustutada", - "ListItemAttachmentsfileDeletedMsg": "Fail {0} kustutatud", - "ListItemAttachmentsfileDeleteError": "Tõrge faili kustutamisel: {0}, põhjus {1}", - "ListItemAttachmentserrorLoadAttachments": "Tõrge laadimisloendi üksuse manuses, põhjus: {0}", - "ListItemAttachmentsconfirmDelete": "Kas soovite kindlasti manuse {0} saidi prügikasti saata?", - "ListItemAttachmentsdialogTitle": "Loendiüksuse manus", - "ListItemAttachmentsdialogOKbuttonLabel": "Ok", - "ListItemAttachmentsdialogCancelButtonLabel": "Tühistada", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Kustutada", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Manuse lisamine", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Manuse lisamine", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Fail {0} ole manustatud, põhjus: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Manuse lisamine", - "ListItemAttachmentsloadingMessage": "Faili üleslaadimine...", - "ListItemAttachmentslPlaceHolderIconText": "Loendiüksuse manus", - "ListItemAttachmentslPlaceHolderDescription": "Palun lisa manus", - "ListItemAttachmentslPlaceHolderButtonLabel": "Lisada", - "mapsErrorMessage": "Kaardi laadimisel ilmnes tõrge", - "mapsLoadingText": "Laadimise", - "mapsSearchButtonText": "Otsing", - "mapsTitlePrefix": "Kaardi kaart", - "ListViewFilterLabel": "Filtreeri loendit", - "HeaderNormalText": "Tavaline tekst", - "HeaderH2": "1. rubriik", - "HeaderH3": "2. rubriik", - "HeaderH4": "3. rubriik", - "HeaderBlockQuote": "Tsitaat", - "AlignLeft": "Joonda vasakule", - "AlignCenter": "Center", - "AlignRight": "Joonda paremale", - "AlignJustify": "Õigustada", - "ListBullet": "Täpp-loend", - "ListNumbered": "Nummerdatud loend", - "StyleTitle": "Stiilis", - "BoldTitle": "Paks (CTRL + B)", - "ItalicTitle": "Kursiiv (CTRL + I)", - "UnderlineTitle": "Allakriipsutus (CTRL + U)", - "AlignTitle": "Joonda", - "ListTitle": "Nimekiri", - "LinkTitle": "Hüperlink", - "MoreTitle": "Rohkem", - "FormattingPaneTitle": "Tekstivorming", - "CloseButton": "Sulgege", - "InsertLinkTitle": "Lingi lisamine", - "AddressFieldLabel": "Aadress", - "TextToDisplayLabel": "Kuvatav tekst", - "SaveButtonLabel": "Salvestada", - "CancelButtonLabel": "Tühistada", - "RemoveLinkLabel": "Eemalda link", - "ParagraphSectionTitle": "Lõike", - "HyperlinkSectionTitle": "Hüperlink", - "UndoTitle": "Võta tagasi (CTRL + Z)", - "RedoTitle": "Tee uuesti (CTRL + Y)", - "ClearFormattingTitle": "Tühjenda kõik vormindus", - "FontStyleTitle": "Fondi laad", - "FontSizeTitle": "Fondi suurus", - "StrikethroughTitle": "Läbikriipsutus", - "SuperscriptTitle": "Ülaindeks", - "SubscriptTitle": "Allindeks", - "FontColorLabel": "Värvi", - "AutomaticFontColor": "Automaatne", - "HighlightColorLabel": "Esiletõstu värv", - "NoColorHighlightColor": "Värvi pole", - "IncreaseIndentTitle": "Suurenda taanet", - "DecreaseIndentTitle": "Vähenda taanet", - "ThemeColorsGroupName": "Kujunduse värvid", - "HighlightColorsGroupName": "Värvide esiletõstmine", - "StandardColorsGroupName": "Standardsed värvid", - "CustomColorsGroupName": "Kohandatud värvid", - "ThemeColorDarker": "Teema tumedam", - "ThemeColorDark": "Teema tume", - "ThemeColorDarkAlt": "Teema tume alternatiiv", - "ThemeColorPrimary": "Teema esmane", - "ThemeColorSecondary": "Teema teisene", - "ThemeColorTertiary": "Neutraalsed kolmanda taseme", - "ThemeColorNeutralSecondary": "Neutraalne sekundaarne", - "ThemeColorNeutralPrimaryAlt": "Neutraalne primaarne alternatiiv", - "ThemeColorNeutralPrimary": "Neutraalne primaarne", - "ThemeColorNeutralDark": "Neutraalne tume", - "HighlightColorYellow": "Kollane", - "HighlightColorGreen": "Roheline", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Sinine", - "HighlightColorRed": "Punane", - "HighlightColorDarkblue": "Tumesinine", - "HighlightColorTeal": "Meresinine", - "HighlightColorDarkgreen": "Tumeroheline", - "HighlightColorPurple": "Lilla", - "HighlightColorMaroon": "Maroon", - "HighlightColorGold": "Gold", - "HighlightColorDarkgrey": "Tume Hall", - "HighlightColorGrey": "Hall", - "HighlightColorBlack": "Must", - "StandardColorDarkred": "Tume punane", - "StandardColorRed": "Punane", - "StandardColorOrange": "Orange", - "StandardColorYellow": "Kollane", - "StandardColorLightgreen": "Heleroheline", - "StandardColorGreen": "Roheline", - "StandardColorLightblue": "Helesinine", - "StandardColorBlue": "Sinine", - "StandardColorDarkblue": "Tumesinine", - "StandardColorPurple": "Lilla", - "DatePickerMonthLongJanuary": "Jaanuar", - "DatePickerMonthShortJanuary": "Jaanuar", - "DatePickerMonthLongFebruary": "Veebruar", - "DatePickerMonthShortFebruary": "Veebruar", - "DatePickerMonthLongMarch": "Märts", - "DatePickerMonthShortMarch": "Märts", - "DatePickerMonthLongApril": "Aprill", - "DatePickerMonthShortApril": "Aprill", - "DatePickerMonthLongMay": "Võib", - "DatePickerMonthShortMay": "Võib", - "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", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Kuupäev", - "DateTimePickerTime": "Aeg", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Vale tundide väärtus", - "AddFileButtonLabel": "Lisa fail", - "AddImageButtonLabel": "Lisa pilt", - "AriaCellValue": "{0} veerg {1}", - "FilePickerCancelButtonLabel": "Tühistada", - "CantValidateValidationMessage": "Me ei saanud seda linki kontrollida. Palun 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": "Te vastutate teiste õiguste, sealhulgas autoriõiguse austamise eest.", - "CreativeCommonsMessage": "Need tulemused on kodeeritud Creative Commons litsentsid. Vaadake üle litsentsid, et tagada teie vastavus.", - "DateFormat": "KK/PP/AAAA hh: mm A", - "DocumentLabelTemplate": "{0}, dokument, muudetud {1}, toimetanud {2}, era", - "DocumentLibraries": "Dokumenditeegid", - "EditedByNamePlate": "toimetanud ", - "EmptyFileSize": "0 baiti", - "FilePickerHeader": "Failivalija", - "FileSizeField": "Faili maht", - "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": "Lingi kaudu", - "ImageAltText": ". {0} pilt", - "ImageAriaLabelTemplate": ". {0} pilt", - "ImageLayoutPlaceholderText": "Paigutus", - "ImageSizePlaceholderText": "Pildi suurus", - "ItemChildCountField": "Üksuse laste arv", - "LayoutOptionAll": "Kõik", - "LayoutOptionSquare": "Square", - "LayoutOptionTall": "Pikk", - "LayoutOptionWide": "Lai", - "LearnMoreLink": "Lisateave.", - "LicenseOptionAll": "Kõik", - "LicenseOptionAny": "Ainult Creative Commonsis", - "LicensePlaceholderText": "Litsentsi", - "LinkFileInstructions": "Kleebi link faili OneDrive for Business või SharePoint Online", - "LinkHeader": "Lingi kaudu", - "LinkImageInstructions": "Kleebi link pildi OneDrive for Business või SharePoint Online", - "ListLayoutAriaLabel": "Saate vaadata suvandeid. {0} {1}.", - "ListLayoutCompact": "Kompaktne vaade", - "ListLayoutCompactDescription": "Üksuste ja üksikasjade kuvamine kompaktses loendis", - "ListLayoutList": "Loendivaade", - "ListLayoutListDescrition": "Üksuste ja üksikasjade vaatamine loendis", - "ListLayoutTile": "Vaade", - "ListLayoutTileDescription": "Paani eelvaateid üksuste vaatamine", - "ListOptionsAlt": "Saate vaadata suvandeid. {0} valitud.", - "ListOptionsTitle": "Avab vaatesuvandite menüü", - "Loading": "Laadimise...", - "ModifiedByField": "Muudetud", - "ModifiedField": "Muutmiskuupäev", - "NameField": "Nimi", - "No": "Ei", - "ProvidedValueIsInvalid": "Pakutud väärtus ei sobi", - "NoExternalLinksValidationMessage": "Toetame ainult failide linkimist teie enda organisatsioonis.", - "NoImageValidationMessage": "See pole link failitüübile, mida toetame. Saate linkida ainult pildiga.", - "NoRecentFiles": "Hiljutised failid puuduvad", - "NoRecentFilesDescription": "Proovige valida oma saidilt mõni fail või laadige see oma seadmest üles.", - "NoResultsBadEnglish": "Tulemust ei leitud. Proovige muuta filtri suvandeid", - "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}, modifitseeritud {2}, mida on toimetanud {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "See üksus on teie OneDrive ' i saidilt. OneDrive ' i failid ja kaustad on privaatsed, kui te neid ühiskasutusse ei jaga. Kas jagate seda faili oma saidiliikmetega, et nad saaksid seda teha?", - "OneDriveConfirmDialogTitle": "Lihtsalt kontrollin...", - "OneDriveEmptyFolderAlt": "Tühi kaust", - "OneDriveEmptyFolderDescription": "Failide lisamiseks minge oma OneDrive ' i. Samuti saate sellesse kausta faile lisada, kasutades OneDrive ' i rakendust teie arvutile.", - "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 esitatud pildid ja failid", - "PoweredByBing": "Powered by Bing", - "RecentDocumentsHeader": "Hiljutised dokumendid", - "RecentImagesHeader": "Hiljutised pildid", - "RecentLinkLabel": "Viimased", - "SearchBoxPlaceholder": "Veebi otsing", - "SearchResultAlt": "Pildi tulem {0} jaoks.", - "SearchResultAriaLabel": "Uue vahekaardi pildiallika avamiseks vajutage sisestusklahvi (ENTER).", - "Selected": "Valitud", - "SharingField": "Jagamine", - "SharingPrivate": "Avalikes", - "SharingShared": "Ühiskasutusega", - "SiteLinkLabel": "Saidi", - "SizeOptionAll": "Kõik", - "SizeOptionExtraLarge": "Eriti suur", - "SizeOptionLarge": "Suur", - "SizeOptionMedium": "Keskmise", - "SizeOptionSmall": "Väike", - "SizeUnit": [ - "Baiti", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Nt", - "Yb" - ], - "SorryWebSearch": "Kahjuks see funktsioon ei rakendata selles proovis, sest see nõuaks Bing API võti.", - "SortedAscending": "Sorditud A kuni Z", - "SortedDescending": "Sorditud Z-ni", - "TypeAriaLabel": "Veergude toimingud failitüübi jaoks, vajutage failitüübi sortimiseks", - "UploadFileHeader": "Laadi fail üles", - "UploadImageHeader": "Laadi pilt üles", - "UploadLinkLabel": "Laadida", - "WebSearchLinkLabel": "Veebi otsing", - "Yes": "Jah", - "SelectedLabel": "Valitud", - "SelectIcon": "Vali ikoon", - "StockImagesLinkLabel": "στοκ φωτογραφίες", - "StockImagesHeader": "στοκ φωτογραφίες", - "OrgAssetsLinkLabel": "Teie organisatsioon" - }; -}); + "Save": "Salvestama", + "Cancel": "Tühistama", + "SiteBreadcrumbLabel": "Veebilehe laius", + "ListViewGroupEmptyLabel": "Tühi", + "WebPartTitlePlaceholder": "Veebiosa tiitel", + "WebPartTitleLabel": "Pealkirja lisamine", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Mõne sekundi pärast", + "L_RelativeDateTime_AFewSeconds": "Mõni sekund tagasi", + "L_RelativeDateTime_AboutAMinuteFuture": "Umbes minut", + "L_RelativeDateTime_AboutAMinute": "Umbes minut tagasi", + "L_RelativeDateTime_XMinutesFuture": "{0} minuti jooksul||{0} minuti pärast", + "L_RelativeDateTime_XMinutes": "{0} minut tagasi||{0} 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} tunni jooksul||{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} {1}", + "L_RelativeDateTime_XDaysFuture": "{0} päev alates praegusest||{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" + }, + "SendEmailTo": "Saatke e-kiri {0}", + "StartChatWith": "Alusta vestlust {0}", + "Contact": "Kontakt", + "UpdateProfile": "Uuenda oma profiili", + "TaxonomyPickerNoTerms": "Terminkomplekt ei sisalda ühtegi terminit", + "TaxonomyPickerExpandTitle": "Laienda see terminiga", + "TaxonomyPickerMenuTermSet": "Termini komplekti menüü", + "TaxonomyPickerInLabel": "Sisse", + "TaxonomyPickerTermSetLabel": "Termini komplekt", + "TaxonomyPickerTermsNotFound": "Terminisalvest ei leitud järgmisi valitud termin(id): {0}", + "TaxonomyPickerInvalidTerms": "Parandage sobimatud terminid: {0}", + "peoplePickerComponentTooltipMessage": "Inimeste valija", + "peoplePickerComponentErrorMessage": "Kohustuslik väli", + "peoplePickerSuggestionsHeaderText": "Soovitatud inimesed", + "peoplePickerLoadingText": "Laadimise", + "PeoplePickerSearchText": "Kasutajate toomine", + "PeoplePickerGroupNotFound": "Rühma ei leitud.", + "genericNoResultsFoundText": "Tulemusi ei leitud", + "ListItemPickerSelectValue": "Valige väärtus", + "ListItemAttachmentsActionDeleteIconTitle": "Kustutada", + "ListItemAttachmentsactionDeleteTitle": "Kustutada", + "ListItemAttachmentsfileDeletedMsg": "Fail {0} kustutatud", + "ListItemAttachmentsfileDeleteError": "Tõrge faili kustutamisel: {0}, põhjus {1}", + "ListItemAttachmentserrorLoadAttachments": "Tõrge laadimisloendi üksuse manuses, põhjus: {0}", + "ListItemAttachmentsconfirmDelete": "Kas soovite kindlasti manuse {0} saidi prügikasti saata?", + "ListItemAttachmentsdialogTitle": "Loendiüksuse manus", + "ListItemAttachmentsdialogOKbuttonLabel": "Ok", + "ListItemAttachmentsdialogCancelButtonLabel": "Tühistada", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Kustutada", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Manuse lisamine", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Manuse lisamine", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Fail {0} ole manustatud, põhjus: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Manuse lisamine", + "ListItemAttachmentsloadingMessage": "Faili üleslaadimine...", + "ListItemAttachmentslPlaceHolderIconText": "Loendiüksuse manus", + "ListItemAttachmentslPlaceHolderDescription": "Palun lisa manus", + "ListItemAttachmentslPlaceHolderButtonLabel": "Lisada", + "mapsErrorMessage": "Kaardi laadimisel ilmnes tõrge", + "mapsLoadingText": "Laadimise", + "mapsSearchButtonText": "Otsing", + "mapsTitlePrefix": "Kaardi kaart", + "ListViewFilterLabel": "Filtreeri loendit", + "HeaderNormalText": "Tavaline tekst", + "HeaderH2": "1. rubriik", + "HeaderH3": "2. rubriik", + "HeaderH4": "3. rubriik", + "HeaderBlockQuote": "Tsitaat", + "AlignLeft": "Joonda vasakule", + "AlignCenter": "Center", + "AlignRight": "Joonda paremale", + "AlignJustify": "Õigustada", + "ListBullet": "Täpp-loend", + "ListNumbered": "Nummerdatud loend", + "StyleTitle": "Stiilis", + "BoldTitle": "Paks (CTRL + B)", + "ItalicTitle": "Kursiiv (CTRL + I)", + "UnderlineTitle": "Allakriipsutus (CTRL + U)", + "AlignTitle": "Joonda", + "ListTitle": "Nimekiri", + "LinkTitle": "Hüperlink", + "ImageTitle": "Piltide", + "MoreTitle": "Rohkem", + "FormattingPaneTitle": "Tekstivorming", + "CloseButton": "Sulgege", + "InsertLinkTitle": "Lingi lisamine", + "InsertImageTitle": "Lisa pilt", + "AddressFieldLabel": "Aadress", + "TextToDisplayLabel": "Kuvatav tekst", + "SaveButtonLabel": "Salvestada", + "CancelButtonLabel": "Tühistada", + "RemoveLinkLabel": "Eemalda link", + "ParagraphSectionTitle": "Lõike", + "HyperlinkSectionTitle": "Hüperlink", + "UndoTitle": "Võta tagasi (CTRL + Z)", + "RedoTitle": "Tee uuesti (CTRL + Y)", + "ClearFormattingTitle": "Tühjenda kõik vormindus", + "FontStyleTitle": "Fondi laad", + "FontSizeTitle": "Fondi suurus", + "StrikethroughTitle": "Läbikriipsutus", + "SuperscriptTitle": "Ülaindeks", + "SubscriptTitle": "Allindeks", + "FontColorLabel": "Värvi", + "AutomaticFontColor": "Automaatne", + "HighlightColorLabel": "Esiletõstu värv", + "NoColorHighlightColor": "Värvi pole", + "IncreaseIndentTitle": "Suurenda taanet", + "DecreaseIndentTitle": "Vähenda taanet", + "ThemeColorsGroupName": "Kujunduse värvid", + "HighlightColorsGroupName": "Värvide esiletõstmine", + "StandardColorsGroupName": "Standardsed värvid", + "CustomColorsGroupName": "Kohandatud värvid", + "ThemeColorDarker": "Teema tumedam", + "ThemeColorDark": "Teema tume", + "ThemeColorDarkAlt": "Teema tume alternatiiv", + "ThemeColorPrimary": "Teema esmane", + "ThemeColorSecondary": "Teema teisene", + "ThemeColorTertiary": "Neutraalsed kolmanda taseme", + "ThemeColorNeutralSecondary": "Neutraalne sekundaarne", + "ThemeColorNeutralPrimaryAlt": "Neutraalne primaarne alternatiiv", + "ThemeColorNeutralPrimary": "Neutraalne primaarne", + "ThemeColorNeutralDark": "Neutraalne tume", + "HighlightColorYellow": "Kollane", + "HighlightColorGreen": "Roheline", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Sinine", + "HighlightColorRed": "Punane", + "HighlightColorDarkblue": "Tumesinine", + "HighlightColorTeal": "Meresinine", + "HighlightColorDarkgreen": "Tumeroheline", + "HighlightColorPurple": "Lilla", + "HighlightColorMaroon": "Maroon", + "HighlightColorGold": "Kuld", + "HighlightColorDarkgrey": "Tume Hall", + "HighlightColorGrey": "Hall", + "HighlightColorBlack": "Must", + "StandardColorDarkred": "Tume punane", + "StandardColorRed": "Punane", + "StandardColorOrange": "Apelsin", + "StandardColorYellow": "Kollane", + "StandardColorLightgreen": "Heleroheline", + "StandardColorGreen": "Roheline", + "StandardColorLightblue": "Helesinine", + "StandardColorBlue": "Sinine", + "StandardColorDarkblue": "Tumesinine", + "StandardColorPurple": "Lilla", + "DatePickerMonthLongJanuary": "Jaanuar", + "DatePickerMonthShortJanuary": "Jaanuar", + "DatePickerMonthLongFebruary": "Veebruar", + "DatePickerMonthShortFebruary": "Veebruar", + "DatePickerMonthLongMarch": "Märts", + "DatePickerMonthShortMarch": "Märts", + "DatePickerMonthLongApril": "Aprill", + "DatePickerMonthShortApril": "Aprill", + "DatePickerMonthLongMay": "Võib", + "DatePickerMonthShortMay": "Võib", + "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", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Kuupäev", + "DateTimePickerTime": "Aeg", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Vale tundide väärtus", + "DateTimePickerMinuteValueInvalid": "Vale minuti väärtus", + "DateTimePickerSecondValueInvalid": "Vale teine väärtus", + "DateTimePickerTextErrorMessage": "Sisestage sobiv kuupäev", + "AddFileButtonLabel": "Lisa fail", + "AddImageButtonLabel": "Lisa pilt", + "AriaCellValue": "{0} veerg {1}", + "FilePickerCancelButtonLabel": "Tühistada", + "CantValidateValidationMessage": "Me ei saanud seda linki kontrollida. Palun 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": "Te vastutate teiste õiguste, sealhulgas autoriõiguse austamise eest.", + "CreativeCommonsMessage": "Need tulemused on kodeeritud Creative Commons litsentsid. Vaadake üle litsentsid, et tagada teie vastavus.", + "DateFormat": "KK/PP/AAAA hh: mm A", + "DocumentLabelTemplate": "{0}, dokument, muudetud {1}, toimetanud {2}, era", + "DocumentLibraries": "Dokumenditeegid", + "EditedByNamePlate": "toimetanud ", + "EmptyFileSize": "0 baiti", + "FilePickerHeader": "Failivalija", + "FileSizeField": "Faili maht", + "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": "Lingi kaudu", + "ImageAltText": ". {0} pilt", + "ImageAriaLabelTemplate": ". {0} pilt", + "ImageLayoutPlaceholderText": "Paigutus", + "ImageSizePlaceholderText": "Pildi suurus", + "ItemChildCountField": "Üksuse laste arv", + "LayoutOptionAll": "Kõik", + "LayoutOptionSquare": "Väljak", + "LayoutOptionTall": "Pikk", + "LayoutOptionWide": "Lai", + "LearnMoreLink": "Lisateave.", + "LicenseOptionAll": "Kõik", + "LicenseOptionAny": "Ainult Creative Commonsis", + "LicensePlaceholderText": "Litsentsi", + "LinkFileInstructions": "Kleebi link faili OneDrive for Business või SharePoint Online", + "LinkHeader": "Lingi kaudu", + "LinkImageInstructions": "Kleebi link pildi OneDrive for Business või SharePoint Online", + "ListLayoutAriaLabel": "Saate vaadata suvandeid. {0} {1}.", + "ListLayoutCompact": "Kompaktne vaade", + "ListLayoutCompactDescription": "Üksuste ja üksikasjade kuvamine kompaktses loendis", + "ListLayoutList": "Loendivaade", + "ListLayoutListDescrition": "Üksuste ja üksikasjade vaatamine loendis", + "ListLayoutTile": "Vaade", + "ListLayoutTileDescription": "Paani eelvaateid üksuste vaatamine", + "ListOptionsAlt": "Saate vaadata suvandeid. {0} valitud.", + "ListOptionsTitle": "Avab vaatesuvandite menüü", + "Loading": "Laadimise...", + "ModifiedByField": "Muudetud", + "ModifiedField": "Muutmiskuupäev", + "NameField": "Nimi", + "No": "Ei", + "ProvidedValueIsInvalid": "Pakutud väärtus ei sobi", + "NoExternalLinksValidationMessage": "Toetame ainult failide linkimist teie enda organisatsioonis.", + "NoImageValidationMessage": "See pole link failitüübile, mida toetame. Saate linkida ainult pildiga.", + "NoRecentFiles": "Hiljutised failid puuduvad", + "NoRecentFilesDescription": "Proovige valida oma saidilt mõni fail või laadige see oma seadmest üles.", + "NoResultsBadEnglish": "Tulemust ei leitud. Proovige muuta filtri suvandeid", + "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}, modifitseeritud {2}, mida on toimetanud {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "See üksus on teie OneDrive ' i saidilt. OneDrive ' i failid ja kaustad on privaatsed, kui te neid ühiskasutusse ei jaga. Kas jagate seda faili oma saidiliikmetega, et nad saaksid seda teha?", + "OneDriveConfirmDialogTitle": "Lihtsalt kontrollin...", + "OneDriveEmptyFolderAlt": "Tühi kaust", + "OneDriveEmptyFolderDescription": "Failide lisamiseks minge oma OneDrive ' i. Samuti saate sellesse kausta faile lisada, kasutades OneDrive ' i rakendust teie arvutile.", + "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 esitatud pildid ja failid", + "PoweredByBing": "Powered by Bing", + "RecentDocumentsHeader": "Hiljutised dokumendid", + "RecentImagesHeader": "Hiljutised pildid", + "RecentLinkLabel": "Viimased", + "SearchBoxPlaceholder": "Veebi otsing", + "SearchResultAlt": "Pildi tulem {0} jaoks.", + "SearchResultAriaLabel": "Uue vahekaardi pildiallika avamiseks vajutage sisestusklahvi (ENTER).", + "Selected": "Valitud", + "SharingField": "Jagamine", + "SharingPrivate": "Avalikes", + "SharingShared": "Ühiskasutusega", + "SiteLinkLabel": "Saidi", + "SizeOptionAll": "Kõik", + "SizeOptionExtraLarge": "Eriti suur", + "SizeOptionLarge": "Suur", + "SizeOptionMedium": "Keskmise", + "SizeOptionSmall": "Väike", + "SizeUnit": [ + "Baiti", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Nt", + "Yb" + ], + "SorryWebSearch": "Kahjuks see funktsioon ei rakendata selles proovis, sest see nõuaks Bing API võti.", + "SortedAscending": "Sorditud A kuni Z", + "SortedDescending": "Sorditud Z-ni", + "TypeAriaLabel": "Veergude toimingud failitüübi jaoks, vajutage failitüübi sortimiseks", + "UploadFileHeader": "Laadi fail üles", + "UploadImageHeader": "Laadi pilt üles", + "UploadLinkLabel": "Laadida", + "WebSearchLinkLabel": "Veebi otsing", + "StockImagesLinkLabel": "στοκ φωτογραφίες", + "StockImagesHeader": "στοκ φωτογραφίες", + "Yes": "Jah", + "NewFolderNamePlaceholder": "Sisestage oma kausta nimi", + "FolderFilterBoxPlaceholder": "Kaustade filtreerimine nime järgi", + "FolderExplorerLoading": "Kaustade laadimine...", + "FolderExplorerNoItems": "Sellel kaustal pole alamkaustu.", + "NewFolderIncorrectSymbolsError": "Palun sisestage nimi, mis ei sisalda ühtegi neist märkidest: \" * : < > ? / |.", + "SomethingWentWrong": "Midagi läks valesti.", + "SelectedLabel": "Valitud", + "SelectIcon": "Vali ikoon", + "TreeViewExpandTitle": "Laienda see üksus", + "TreeViewCollapseTitle": "Ahenda see üksus", + "CollectionDataEmptyFields": "Kogumisandmete jaoks ei esitatud ühtegi välja.", + "CollectionDataEmptyValue": "Teie kollektsioonis pole andmeid.", + "CollectionAddRowButtonLabel": "Andmete lisamine kogumisse", + "CollectionDeleteRowButtonLabel": "Praeguse rea kustutamine", + "CollectionSaveAndAddButtonLabel": "Lisamine ja salvestamine", + "CollectionDataItemShowErrorsLabel": "Reatõrgete kuvamine", + "CollectionDataItemFieldRequiredLabel": "Väli on nõutav.", + "CollectionDataItemMissingFields": "Väljade kollektsioon on tühi!", + "InvalidUrlError": "Esitatud URL ei sobi", + "CollectionDataSearch": "Otsing", + "MyTeamsLoadingMessage": "meeskondade laadimine", + "MyTeamsMessageError": "Midagi läks meeskondade laadimisel valesti, proovige hiljem või värskendage brauserit", + "MyTeamsNoTeamsMessage": "Sul pole meeskondi.", + "MyTeamsTeamChannelPublicMessage": "Avalikud kanalid", + "MyTeamsTeamChannelTypeMessage": "Privaatsed kanalid", + "TeamChannelPickerFontIconFavoriteText": "Lemmik", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privaatne kanal", + "TeamChannelPickerSugestionHeaderText": "Soovitatud meeskonnakanalid", + "TeamPickerButtonRemoveTitle": "Eemaldada", + "TeamPickernoResultsFoundText": "Meeskondi ei leitud", + "TeamPickerSugestionsHeaderText": "Soovitatud meeskonnad", + "TeamsChannelPickerButtonRemoveTitle": "Eemaldada", + "TeamsChannelPickerNoresultsFoundText": "Kanaleid ei leitud", + "ViewMore": "Vaata rohkem", + "DynamicFormLoading": "Laadimise...", + "DynamicFormPleaseWait": "Oota...", + "DynamicFormRequiredErrorMessage": "Sa ei saa seda tühjaks jätta.", + "DynamicFormTermPanelTitle": "Vali termin", + "DynamicFormEnterURLPlaceholder": "Sisestage URL", + "DynamicFormEnterDescriptionPlaceholder": "Asetekst", + "customDisplayName": "Kasuta seda asukohta:", + "ListItemCommentDIalogDeleteSubText": "Kas soovite kindlasti selle kommentaari kustutada?", + "ListItemCommentsDialogDeleteTitle": "Kommentaari kustutamise kinnitamine", + "ListItemCommentsLabel": "Kommentaarid", + "ListItemCommentsNoCommentsLabel": "Kommentaare pole", + "OrgAssetsLinkLabel": "Teie organisatsioon", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/fi-fi.ts b/src/loc/fi-fi.ts index 478c98eec..5393addf1 100644 --- a/src/loc/fi-fi.ts +++ b/src/loc/fi-fi.ts @@ -2,24 +2,8 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", + "Save": "Tallenna", + "Cancel": "Peruuta", "SiteBreadcrumbLabel": "Sivuston navigointi polku", "ListViewGroupEmptyLabel": "Tyhjä", "WebPartTitlePlaceholder": "WWW-osan otsikko", @@ -59,6 +43,8 @@ define([], () => { "TaxonomyPickerMenuTermSet": "Termi joukon valikko", "TaxonomyPickerInLabel": "Paikassa", "TaxonomyPickerTermSetLabel": "Termi joukko", + "TaxonomyPickerTermsNotFound": "Seuraavia valittuja termejä ei löytynyt termisäilöstä: {0}", + "TaxonomyPickerInvalidTerms": "Korjaa virheelliset termi(t): {0}", "peoplePickerComponentTooltipMessage": "Henkilöiden valitsin", "peoplePickerComponentErrorMessage": "Pakollinen kenttä", "peoplePickerSuggestionsHeaderText": "Ehdotetut henkilöt", @@ -96,7 +82,7 @@ define([], () => { "HeaderH4": "Otsake 3", "HeaderBlockQuote": "Erotettu lainaus", "AlignLeft": "Tasaa vasemmalle", - "AlignCenter": "Center", + "AlignCenter": "Keskelle", "AlignRight": "Tasaa oikealle", "AlignJustify": "Perustella", "ListBullet": "Luettelon", @@ -108,16 +94,18 @@ define([], () => { "AlignTitle": "Tasaa", "ListTitle": "Luettelo", "LinkTitle": "Hyperlinkki", + "ImageTitle": "Kuva", "MoreTitle": "Lisää", "FormattingPaneTitle": "Tekstin muotoilu", "CloseButton": "Lähellä", "InsertLinkTitle": "Lisää linkki", + "InsertImageTitle": "Lisää kuva", "AddressFieldLabel": "Osoite", "TextToDisplayLabel": "Näytettävä teksti", "SaveButtonLabel": "Tallenna", "CancelButtonLabel": "Peruuta", "RemoveLinkLabel": "Poista linkki", - "ParagraphSectionTitle": "Kohdan", + "ParagraphSectionTitle": "Kappale", "HyperlinkSectionTitle": "Hyperlinkki", "UndoTitle": "Kumoa (Ctrl + Z)", "RedoTitle": "Tee uudelleen (Ctrl + Y)", @@ -135,16 +123,16 @@ define([], () => { "DecreaseIndentTitle": "Pienennä sisennystä", "ThemeColorsGroupName": "Teeman värit", "HighlightColorsGroupName": "Korosta värit", - "StandardColorsGroupName": "Vakio värejä", + "StandardColorsGroupName": "Vakiovärit", "CustomColorsGroupName": "Mukautetut värit", - "ThemeColorDarker": "Teema tummempi", - "ThemeColorDark": "Teema tumma", - "ThemeColorDarkAlt": "Teema tumma vaihtoehtoinen", - "ThemeColorPrimary": "Theme Primary", - "ThemeColorSecondary": "Theme Secondary", + "ThemeColorDarker": "Tummempi teema", + "ThemeColorDark": "Tumma teema", + "ThemeColorDarkAlt": "Vaihtoehtoinen tumma teema", + "ThemeColorPrimary": "Ensisijainen teema", + "ThemeColorSecondary": "Toissijainen teema", "ThemeColorTertiary": "Neutraali tertiääri", - "ThemeColorNeutralSecondary": "Neutral Secondary", - "ThemeColorNeutralPrimaryAlt": "Neutraali ensisijainen vaihtoehtoinen", + "ThemeColorNeutralSecondary": "Neutraali toissijainen", + "ThemeColorNeutralPrimaryAlt": "Neutraali ensisijainen vaihtoehto", "ThemeColorNeutralPrimary": "Neutraali ensisijainen", "ThemeColorNeutralDark": "Neutraali tumma", "HighlightColorYellow": "Keltainen", @@ -154,10 +142,10 @@ define([], () => { "HighlightColorBlue": "Sininen", "HighlightColorRed": "Punainen", "HighlightColorDarkblue": "Tummansininen", - "HighlightColorTeal": "Tavi", + "HighlightColorTeal": "Sinivihreä", "HighlightColorDarkgreen": "Tummanvihreä", "HighlightColorPurple": "Violetti", - "HighlightColorMaroon": "Maroon", + "HighlightColorMaroon": "Kastanjanruskea", "HighlightColorGold": "Kulta", "HighlightColorDarkgrey": "Tummanharmaa", "HighlightColorGrey": "Harmaa", @@ -173,33 +161,33 @@ define([], () => { "StandardColorDarkblue": "Tummansininen", "StandardColorPurple": "Violetti", "DatePickerMonthLongJanuary": "Tammikuu", - "DatePickerMonthShortJanuary": "Tammikuu", + "DatePickerMonthShortJanuary": "Tam", "DatePickerMonthLongFebruary": "Helmikuu", - "DatePickerMonthShortFebruary": "Helmikuu", + "DatePickerMonthShortFebruary": "Hel", "DatePickerMonthLongMarch": "Maaliskuu", - "DatePickerMonthShortMarch": "Mar", + "DatePickerMonthShortMarch": "Maal", "DatePickerMonthLongApril": "Huhtikuu", - "DatePickerMonthShortApril": "Huhtikuu", - "DatePickerMonthLongMay": "Voi", - "DatePickerMonthShortMay": "Voi", + "DatePickerMonthShortApril": "Huhti", + "DatePickerMonthLongMay": "Toukokuu", + "DatePickerMonthShortMay": "Touko", "DatePickerMonthLongJune": "Kesäkuu", - "DatePickerMonthShortJune": "Jun", + "DatePickerMonthShortJune": "Kesä", "DatePickerMonthLongJuly": "Heinäkuu", - "DatePickerMonthShortJuly": "Heinäkuu", + "DatePickerMonthShortJuly": "Heinä", "DatePickerMonthLongAugust": "Elokuu", - "DatePickerMonthShortAugust": "Elokuu", + "DatePickerMonthShortAugust": "Elo", "DatePickerMonthLongSeptember": "Syyskuu", - "DatePickerMonthShortSeptember": "Seitsemän", + "DatePickerMonthShortSeptember": "Syys", "DatePickerMonthLongOctober": "Lokakuu", - "DatePickerMonthShortOctober": "Lokakuu", + "DatePickerMonthShortOctober": "Loka", "DatePickerMonthLongNovember": "Marraskuu", - "DatePickerMonthShortNovember": "Marraskuu", + "DatePickerMonthShortNovember": "Marras", "DatePickerMonthLongDecember": "Joulukuu", - "DatePickerMonthShortDecember": "Joulukuu", + "DatePickerMonthShortDecember": "Joulu", "DatePickerDayLongSunday": "Sunnuntai", "DatePickerDayShortSunday": "Sun", "DatePickerDayLongMonday": "Maanantai", - "DatePickerDayShortMonday": "Minun", + "DatePickerDayShortMonday": "Ma", "DatePickerDayLongTuesday": "Tiistai", "DatePickerDayShortTuesday": "Ti", "DatePickerDayLongWednesday": "Keskiviikko", @@ -209,7 +197,7 @@ define([], () => { "DatePickerDayLongFriday": "Perjantai", "DatePickerDayShortFriday": "Pe", "DatePickerDayLongSaturday": "Lauantai", - "DatePickerDayShortSaturday": "Lauantai", + "DatePickerDayShortSaturday": "La", "DatePickerGoToToday": "Tänään", "DatePickerIsRequiredErrorMessage": "", "DatePickerInvalidInputErrorMessage": "", @@ -217,7 +205,10 @@ define([], () => { "DateTimePickerDate": "Päivämäärä", "DateTimePickerTime": "Aika", "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Virheellinen tunti arvo", + "DateTimePickerHourValueInvalid": "Virheellinen tuntiarvo", + "DateTimePickerMinuteValueInvalid": "Virheellinen minuuttiarvo", + "DateTimePickerSecondValueInvalid": "Virheellinen toinen arvo", + "DateTimePickerTextErrorMessage": "Anna kelvollinen päivämäärä", "AddFileButtonLabel": "Lisää tiedosto", "AddImageButtonLabel": "Lisää kuva", "AriaCellValue": "{0} sarake, {1}", @@ -228,12 +219,12 @@ define([], () => { "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än oikeuden, kunnioittamisesta.", - "CreativeCommonsMessage": "Nämä tulokset on merkitty Creative Commons-lisensseillä. Tarkista käyttö oikeudet, jotta voit varmistaa, että noudatat.", + "CopyrightWarning": "Olet vastuussa muiden oikeuksien, myös tekijänoikeuden, kunnioittamisesta.", + "CreativeCommonsMessage": "Nämä tulokset on merkitty Creative Commons-lisensseillä. Tarkista käyttöoikeudet, jotta voit varmistaa, että noudatat niitä.", "DateFormat": "KK/PP/VVVV hh: mm A", - "DocumentLabelTemplate": "{0}, asia kirja, muokattu {1}, muokattu {2}, Yksityinen", - "DocumentLibraries": "Asiakirjakirjastojen", - "EditedByNamePlate": "muokkaamasi ", + "DocumentLabelTemplate": "{0}, asiakirja, muokattu {1}, muokkaaja {2}, Yksityinen", + "DocumentLibraries": "Asiakirjakirjastot", + "EditedByNamePlate": "muokkaaja ", "EmptyFileSize": "0 tavua", "FilePickerHeader": "Tiedoston valitsin", "FileSizeField": "Tiedoston koko", @@ -241,15 +232,15 @@ define([], () => { "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}, muokattu {2}, {3} kohteet, Yksityinen", + "FolderLabelTemplate": "{0}, kansio, muokattu {1}, muokkaaja {2}, {3} kohteet, Yksityinen", "FromLinkLinkLabel": "Linkistä", - "ImageAltText": ". {0} Image", - "ImageAriaLabelTemplate": ". {0} Image", + "ImageAltText": ". {0} Kuva", + "ImageAriaLabelTemplate": ". {0} Kuva", "ImageLayoutPlaceholderText": "Asettelu", "ImageSizePlaceholderText": "Kuvan koko", - "ItemChildCountField": "Nimikkeen alatason määrä", + "ItemChildCountField": "Nimikkeen kohteiden määrä", "LayoutOptionAll": "Kaikki", - "LayoutOptionSquare": "Square", + "LayoutOptionSquare": "Neliö", "LayoutOptionTall": "Pitkä", "LayoutOptionWide": "Laaja", "LearnMoreLink": "Opi lisää.", @@ -262,43 +253,43 @@ define([], () => { "ListLayoutAriaLabel": "Näytä valinnat. {0} {1}.", "ListLayoutCompact": "Kompakti näkymä", "ListLayoutCompactDescription": "Pienikokoisen luettelon kohteiden ja yksityiskohtien tarkasteleminen", - "ListLayoutList": "Luettelo näkymä", + "ListLayoutList": "Luettelonäkymä", "ListLayoutListDescrition": "Luettelon kohteiden ja yksityiskohtien tarkasteleminen", - "ListLayoutTile": "Tile View", + "ListLayoutTile": "Ruudukko", "ListLayoutTileDescription": "Näytä kohteet, joissa on ruutu esikatseluun", "ListOptionsAlt": "Näytä valinnat. {0} valittu.", "ListOptionsTitle": "Avaa Näytä valinnat-valikko", - "Loading": "Lastaus...", - "ModifiedByField": "Muokkaamalla", - "ModifiedField": "Muutettu päivä määrä", + "Loading": "Lataa...", + "ModifiedByField": "Muokkaaja", + "ModifiedField": "Muutettu päivämäärä", "NameField": "Nimi", "No": "Ei", "ProvidedValueIsInvalid": "Annettu arvo ei kelpaa", "NoExternalLinksValidationMessage": "Tuemme vain oman organisaatiosi tiedostojen linkittämistä.", - "NoImageValidationMessage": "Tämä ei ole linkki tiedosto tyyppiin, jota tuemme. Voit linkittää vain kuvaan.", - "NoRecentFiles": "Ei viimeaikaisten tiedostojen", + "NoImageValidationMessage": "Tämä ei ole linkki tiedostotyyppiin, jota tuemme. Voit linkittää vain kuvaan.", + "NoRecentFiles": "Ei viimeaikaisia tiedostoja", "NoRecentFilesDescription": "Valitse tiedosto sivustosta tai lataa se laitteestasi.", - "NoResultsBadEnglish": "Tulosta ei löytynyt. Yritä muuttaa suodatus asetuksia", + "NoResultsBadEnglish": "Tuloksia ei löytynyt. Yritä muuttaa suodatusasetuksia", "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}, {3}, {4}, {5}", "OneDriveConfirmDialogBody": "Tämä kohde on OneDrive-sivustosta. OneDriven tiedostot ja kansiot ovat yksityisiä, ellet Jaa niitä. Oletko jakanut tämän tiedoston sivuston jäsenille, jotta he voivat käyttää sitä?", - "OneDriveConfirmDialogTitle": "Vain tarkistetaan...", + "OneDriveConfirmDialogTitle": "Tarkistetaan...", "OneDriveEmptyFolderAlt": "Tyhjä kansio", "OneDriveEmptyFolderDescription": "Jos haluat lisätä tiedostoja, siirry OneDriveen. Voit myös lisätä tiedostoja tähän kansioon tieto koneen OneDrive-sovelluksen avulla.", "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": "Tiedostoja", + "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": "Organisaatiosi toimittamat kuvat ja tiedostot", - "PoweredByBing": "Powered by Bing", - "RecentDocumentsHeader": "Viimeisimmät kuvat", + "PoweredByBing": "Voimanlähteenä Bing", + "RecentDocumentsHeader": "Viimeisimmät tiedostot", "RecentImagesHeader": "Viimeisimmät kuvat", "RecentLinkLabel": "Viimeisimmät", "SearchBoxPlaceholder": "Verkkohaku", - "SearchResultAlt": "{0} kuvan tulos.", - "SearchResultAriaLabel": "Avaa kuva lähde uudella väli lehdellä painamalla ENTER-näppäintä.", + "SearchResultAlt": "Kuvatulos haulle {​​​0}​​​", + "SearchResultAriaLabel": "Paine ENTER avataksesi kuvan lähteen uudessa välilehdessä.", "Selected": "Valittu", "SharingField": "Jakaminen", "SharingPrivate": "Yksityiset", @@ -307,32 +298,76 @@ define([], () => { "SizeOptionAll": "Kaikki", "SizeOptionExtraLarge": "Erittäin suuri", "SizeOptionLarge": "Suuri", - "SizeOptionMedium": "Keskipitkällä", + "SizeOptionMedium": "Keskisuuri", "SizeOptionSmall": "Pieni", "SizeUnit": [ "Tavua", - "Kt", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Esim", - "Yb" + "KB", + "MB", + "GB", + "TB", + "PB", + "EB", + "ZB", + "YB" ], "SorryWebSearch": "Tätä toimintoa ei valitettavasti ole toteutettu tässä esimerkissä, koska se edellyttäisi Bing API-avainta.", - "SortedAscending": "Lajiteltu A-ö", - "SortedDescending": "Lajiteltu Z-", - "TypeAriaLabel": "Sarake toiminnot tiedosto tyypille, Lajittele tiedosto tyypin mukaan painamalla", + "SortedAscending": "Lajiteltu A-Z", + "SortedDescending": "Lajiteltu Z-A", + "TypeAriaLabel": "Saraketoiminnot tiedostotyypille, lajittele tiedostotyypin mukaan painamalla", "UploadFileHeader": "Lataa tiedosto", "UploadImageHeader": "Lataa kuva", "UploadLinkLabel": "Lataa", "WebSearchLinkLabel": "Verkkohaku", + "StockImagesLinkLabel": "Arkistokuvat", + "StockImagesHeader": "Arkistokuvat", "Yes": "Kyllä", + "NewFolderNamePlaceholder": "Anna kansion nimi", + "FolderFilterBoxPlaceholder": "Kansioiden suodattaminen nimen mukaan", + "FolderExplorerLoading": "Ladataan kansioita...", + "FolderExplorerNoItems": "Tässä kansiossa ei ole alikansioita.", + "NewFolderIncorrectSymbolsError": "Kirjoita nimi, joka ei sisällä mitään näistä merkeistä: \" * : < > ? / |.", + "SomethingWentWrong": "Jokin meni vikaan.", "SelectedLabel": "Valittu", "SelectIcon": "Valitse kuvake", - "StockImagesLinkLabel": "Arkistokuvat", - "StockImagesHeader": "Arkistokuvat", - "OrgAssetsLinkLabel": "Oma organisaatio" + "TreeViewExpandTitle": "Laajenna tämä kohde", + "TreeViewCollapseTitle": "Kutista tämä kohde", + "CollectionDataEmptyFields": "Keräystietoihin ei annettu kenttiä.", + "CollectionDataEmptyValue": "Kokoelmassa ei ole tietoja.", + "CollectionAddRowButtonLabel": "Tietojen lisääminen kokoelmaan", + "CollectionDeleteRowButtonLabel": "Poista nykyinen rivi", + "CollectionSaveAndAddButtonLabel": "Lisääminen ja tallentaminen", + "CollectionDataItemShowErrorsLabel": "Näytä rivivirheet", + "CollectionDataItemFieldRequiredLabel": "Kenttä on pakollinen.", + "CollectionDataItemMissingFields": "Kenttien kokoelma on tyhjä!", + "InvalidUrlError": "Annettu URL-osoite ei kelpaa", + "CollectionDataSearch": "Etsiä", + "MyTeamsLoadingMessage": "Tiimien lataaminen", + "MyTeamsMessageError": "Jokin meni vikaan ladattaessa tiimejäsi, kokeile myöhemmin tai päivitä selain", + "MyTeamsNoTeamsMessage": "Sinulla ei ole yhtään tiimiä.", + "MyTeamsTeamChannelPublicMessage": "Julkiset kanavat", + "MyTeamsTeamChannelTypeMessage": "Yksityiset kanavat", + "TeamChannelPickerFontIconFavoriteText": "Suosikki", + "TeamChannelPickerFontIconPrivateChannelTitle": "Yksityinen kanava", + "TeamChannelPickerSugestionHeaderText": "Ehdotetut ryhmäkanavat", + "TeamPickerButtonRemoveTitle": "poista", + "TeamPickernoResultsFoundText": "Tiimejä ei löytynyt", + "TeamPickerSugestionsHeaderText": "Ehdotetut tiimit", + "TeamsChannelPickerButtonRemoveTitle": "poista", + "TeamsChannelPickerNoresultsFoundText": "Kanavia ei löytynyt", + "ViewMore": "Näytä lisää", + "DynamicFormLoading": "Lataa...", + "DynamicFormPleaseWait": "Ole hyvä ja odota...", + "DynamicFormRequiredErrorMessage": "Et voi jättää tätä tyhjäksi.", + "DynamicFormTermPanelTitle": "Valitse termi", + "DynamicFormEnterURLPlaceholder": "URL-osoitteen syöttäminen", + "DynamicFormEnterDescriptionPlaceholder": "Vaihtoehtoinen teksti", + "customDisplayName": "Käytä tätä sijaintia:", + "ListItemCommentDIalogDeleteSubText": "Haluatko varmasti poistaa tämän kommentin?", + "ListItemCommentsDialogDeleteTitle": "Vahvista poista kommentti", + "ListItemCommentsLabel": "Kommentit", + "ListItemCommentsNoCommentsLabel": "Kommentteja ei ole", + "OrgAssetsLinkLabel": "Oma organisaatio", + "MyTeamsMessageDontHaveTeams": "Sinulla ei ole yhtään tiimejä" }; -}); +}); \ No newline at end of file diff --git a/src/loc/fr-ca.ts b/src/loc/fr-ca.ts index efef030f6..8b0003ae3 100644 --- a/src/loc/fr-ca.ts +++ b/src/loc/fr-ca.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Fil d'Ariane", - "ListViewGroupEmptyLabel": "Vide", - "WebPartTitlePlaceholder": "Titre du composant WebPart", - "WebPartTitleLabel": "Ajouter un titre", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Dans 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": "Dans {0} minute||Dans {0} minutes", - "L_RelativeDateTime_XMinutes": "Il y a {0} minute||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": "Dans {0} heure||Dans {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": "Il y a {0} jour||Il y a {0} jours", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Aujourd'hui" - }, - "SendEmailTo": "Envoyer un email à {0}", - "StartChatWith": "Démarrer une discussion avec {0}", - "Contact": "Contact", - "UpdateProfile": "Mettre à jour votre profil", - "TaxonomyPickerNoTerms": "L'ensemble de termes ne contient aucun terme", - "TaxonomyPickerExpandTitle": "Développer cet ensemble de termes", - "TaxonomyPickerMenuTermSet": "Menu pour l'ensemble de termes", - "TaxonomyPickerInLabel": "dans", - "TaxonomyPickerTermSetLabel": "Ensemble de termes", - "peoplePickerComponentTooltipMessage": "Sélecteur de personnes", - "peoplePickerComponentErrorMessage": "Champ obligatoire", - "peoplePickerSuggestionsHeaderText": "Personnes suggérées", - "peoplePickerLoadingText": "Chargement", - "PeoplePickerSearchText": "Recherche d'utilisateurs", - "PeoplePickerGroupNotFound": "Groupe introuvable.", - "genericNoResultsFoundText": "Aucun résultat trouvé", - "ListItemPickerSelectValue": "Sélectionnez une valeur", - "ListItemAttachmentsActionDeleteIconTitle": "Supprimer", - "ListItemAttachmentsactionDeleteTitle": "Supprimer", - "ListItemAttachmentsfileDeletedMsg": "Fichier {0} supprimé", - "ListItemAttachmentsfileDeleteError": "Erreur lors de la suppression du fichier : {0}, cause : {1}", - "ListItemAttachmentserrorLoadAttachments": "Erreur lors du chargement de la pièce jointe, cause : {0}", - "ListItemAttachmentsconfirmDelete": "Voulez-vous vraiment envoyer la pièce jointe {0} à la Corbeille du site ?", - "ListItemAttachmentsdialogTitle": "Pièce jointe", - "ListItemAttachmentsdialogOKbuttonLabel": "OK", - "ListItemAttachmentsdialogCancelButtonLabel": "Annuler", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Supprimer", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Ajouter une pièce jointe", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Ajouter une pièce jointe", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Le fichier {0} n'a pas pu être ajouté en tant que pièce jointe, cause : {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Ajouter une pièce jointe", - "ListItemAttachmentsloadingMessage": "Téléchargement du fichier...", - "ListItemAttachmentslPlaceHolderIconText": "Pièce jointe", - "ListItemAttachmentslPlaceHolderDescription": "Ajouter des pièces jointes", - "ListItemAttachmentslPlaceHolderButtonLabel": "Ajouter", - "mapsErrorMessage": "Une erreur s'est produite lors du chargement de la carte", - "mapsLoadingText": "Chargement", - "mapsSearchButtonText": "Rechercher", - "mapsTitlePrefix": "Carte de", - "ListViewFilterLabel": "Filtrer", - "HeaderNormalText": "Texte normal", - "HeaderH2": "Titre 1", - "HeaderH3": "Titre 2", - "HeaderH4": "Titre 3", - "HeaderBlockQuote": "Citation", - "AlignLeft": "Aligner à gauche", - "AlignCenter": "Centrer", - "AlignRight": "Aligner à droite", - "AlignJustify": "Justifier", - "ListBullet": "Liste à puces", - "ListNumbered": "Liste numérotée", - "StyleTitle": "Style", - "BoldTitle": "Gras (Ctrl+B)", - "ItalicTitle": "Italique (Ctrl+I)", - "UnderlineTitle": "Souligné (Ctrl+U)", - "AlignTitle": "Alignement", - "ListTitle": "Liste", - "LinkTitle": "Lien hypertexte", - "MoreTitle": "Plus", - "FormattingPaneTitle": "Mise en forme du texte", - "CloseButton": "Fermer", - "InsertLinkTitle": "Insertion de lien", - "AddressFieldLabel": "Adresse", - "TextToDisplayLabel": "Texte à afficher", - "SaveButtonLabel": "Enregistrer", - "CancelButtonLabel": "Annuler", - "RemoveLinkLabel": "Supprimer le lien", - "ParagraphSectionTitle": "Paragraphe", - "HyperlinkSectionTitle": "Lien hypertexte", - "UndoTitle": "Annuler (Ctrl+Z)", - "RedoTitle": "Rétablir (Ctrl+Y)", - "ClearFormattingTitle": "Effacer toute la mise en forme", - "FontStyleTitle": "Style de police", - "FontSizeTitle": "Taille de police", - "StrikethroughTitle": "Barré", - "SuperscriptTitle": "Exposant", - "SubscriptTitle": "Indice", - "FontColorLabel": "Couleur de police", - "AutomaticFontColor": "Automatique", - "HighlightColorLabel": "Couleur de surlignage", - "NoColorHighlightColor": "Aucune couleur", - "IncreaseIndentTitle": "Augmenter le retrait", - "DecreaseIndentTitle": "Diminuer le retrait", - "ThemeColorsGroupName": "Couleurs du thème", - "HighlightColorsGroupName": "Couleurs de surlignage", - "StandardColorsGroupName": "Couleurs standards", - "CustomColorsGroupName": "Couleurs personnalisées", - "ThemeColorDarker": "Thème plus foncé", - "ThemeColorDark": "Thème foncé", - "ThemeColorDarkAlt": "Couleur alternative du thème foncé", - "ThemeColorPrimary": "Première couleur du thème", - "ThemeColorSecondary": "Deuxième couleur du thème", - "ThemeColorTertiary": "Troisième couleur du thème", - "ThemeColorNeutralSecondary": "Couleur neutre secondaire", - "ThemeColorNeutralPrimaryAlt": "Alternative à la couleur neutre principale", - "ThemeColorNeutralPrimary": "Couleur neutre principale", - "ThemeColorNeutralDark": "Couleur neutre foncé", - "HighlightColorYellow": "Jaune", - "HighlightColorGreen": "Vert", - "HighlightColorAqua": "Cyan", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Bleu", - "HighlightColorRed": "Rouge", - "HighlightColorDarkblue": "Bleu foncé", - "HighlightColorTeal": "Bleu-vert", - "HighlightColorDarkgreen": "Vert foncé", - "HighlightColorPurple": "Violet", - "HighlightColorMaroon": "Marron", - "HighlightColorGold": "Or", - "HighlightColorDarkgrey": "Gris foncé", - "HighlightColorGrey": "Gris", - "HighlightColorBlack": "Noir", - "StandardColorDarkred": "Rouge foncé", - "StandardColorRed": "Rouge", - "StandardColorOrange": "Orange", - "StandardColorYellow": "Jaune", - "StandardColorLightgreen": "Vert clair", - "StandardColorGreen": "Vert", - "StandardColorLightblue": "Bleu clair", - "StandardColorBlue": "Bleu", - "StandardColorDarkblue": "Bleu foncé", - "StandardColorPurple": "Violet", - "DatePickerMonthLongJanuary": "Janvier", - "DatePickerMonthShortJanuary": "Janv.", - "DatePickerMonthLongFebruary": "Février", - "DatePickerMonthShortFebruary": "Févr.", - "DatePickerMonthLongMarch": "Mars", - "DatePickerMonthShortMarch": "Mars", - "DatePickerMonthLongApril": "Avril", - "DatePickerMonthShortApril": "Avr.", - "DatePickerMonthLongMay": "Mai", - "DatePickerMonthShortMay": "Mai", - "DatePickerMonthLongJune": "Juin", - "DatePickerMonthShortJune": "Juin", - "DatePickerMonthLongJuly": "Juillet", - "DatePickerMonthShortJuly": "Juill.", - "DatePickerMonthLongAugust": "Août", - "DatePickerMonthShortAugust": "Août", - "DatePickerMonthLongSeptember": "Septembre", - "DatePickerMonthShortSeptember": "Sept.", - "DatePickerMonthLongOctober": "Octobre", - "DatePickerMonthShortOctober": "Oct.", - "DatePickerMonthLongNovember": "Novembre", - "DatePickerMonthShortNovember": "Nov.", - "DatePickerMonthLongDecember": "Décembre", - "DatePickerMonthShortDecember": "Déc.", - "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", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Date", - "DateTimePickerTime": "Heure", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Valeur incorrecte pour l'heure", - "AddFileButtonLabel": "Ajouter un fichier", - "AddImageButtonLabel": "Ajouter une image", - "AriaCellValue": "{0} colonne, {1}", - "FilePickerCancelButtonLabel": "Annuler", - "CantValidateValidationMessage": "Nous n'avons pas pu vérifier ce lien. S'il vous plaît vérifier le lien et essayer à nouveau.", - "ChangeFileLinkLabel": "Changer le fichier", - "ChangeImageLinkLabel": "Changer l'image", - "ChooseFileLinkLabel": "Choisir un fichier", - "ChooseImageLinkLabel": "Choisir une image", - "CopyrightUrl": "https://www.microsoft.com/fr-FR/legal/copyright/default.aspx", - "CopyrightWarning": "Vous êtes responsable du respect des droits d'autrui, y compris du droit d'auteur.", - "CreativeCommonsMessage": "Ces résultats sont étiquetés avec des licences Creative Commons. Passez en revue les licences pour vous assurer de votre conformité.", - "DateFormat": "DD/MM/YYYY hh:mm A", - "DocumentLabelTemplate": "{0}, Document, {1} modifié, édité par {2}, Privé", - "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, Modifié le {1}, édité par {2}, {3} éléments, Privé", - "FromLinkLinkLabel": "À partir d'un lien", - "ImageAltText": ".{0} Image", - "ImageAriaLabelTemplate": ".{0} Image", - "ImageLayoutPlaceholderText": "Disposition", - "ImageSizePlaceholderText": "Taille de l'image", - "ItemChildCountField": "Nombre d'enfants", - "LayoutOptionAll": "Tous", - "LayoutOptionSquare": "Carré", - "LayoutOptionTall": "Grand", - "LayoutOptionWide": "Large", - "LearnMoreLink": "En savoir plus.", - "LicenseOptionAll": "Tous", - "LicenseOptionAny": "Creative Commons uniquement", - "LicensePlaceholderText": "Licence", - "LinkFileInstructions": "Coller un lien provenant de OneDrive Entreprise ou SharePoint Online", - "LinkHeader": "À partir d'un lien", - "LinkImageInstructions": "Coller le lien d'une image provenant de 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 en liste", - "ListLayoutListDescrition": "Afficher les éléments et les détails dans une liste", - "ListLayoutTile": "Affichage en mosaïque", - "ListLayoutTileDescription": "Afficher les éléments avec des aperçus en mosaïque", - "ListOptionsAlt": "Afficher les options. {0} sélectionnés .", - "ListOptionsTitle": "Ouvrez le menu des options d'affichage", - "Loading": "Chargement ...", - "ModifiedByField": "Modifié par", - "ModifiedField": "Date modifiée", - "NameField": "Nom", - "No": "non", - "ProvidedValueIsInvalid": "La valeur fournie est invalide", - "NoExternalLinksValidationMessage": "Nous prenons en charge uniquement les liens vers des fichiers de votre organisation (tenant).", - "NoImageValidationMessage": "Ce n'est pas un lien vers un type de fichier que nous prenons en charge. Vous pouvez uniquement créer un lien vers une image.", - "NoRecentFiles": "Aucun fichier récent", - "NoRecentFilesDescription": "Essayez de sélectionner un fichier sur votre site ou téléchargez-en un depuis votre appareil.", - "NoResultsBadEnglish": "*** Aucun résultat n'a été trouvé. Essayez de changer 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}, Modifié {2}, édité par {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Cet élément provient de votre OneDrive. Les fichiers et dossiers dans OneDrive sont privés, sauf si vous les partagez. Avez-vous partagé ce fichier avec les membres de votre site afin qu'ils puissent y accéder ?", - "OneDriveConfirmDialogTitle": "Nous vérifions ...", - "OneDriveEmptyFolderAlt": "Dossier vide", - "OneDriveEmptyFolderDescription": "Pour ajouter des fichiers, accédez à votre OneDrive. Vous pouvez également ajouter des fichiers à ce dossier à l'aide de l'application OneDrive de 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": "Ouvrir", - "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 (tenant)", - "PoweredByBing": "Propulsé par Bing", - "RecentDocumentsHeader": "Documents récents", - "RecentImagesHeader": "Images récentes", - "RecentLinkLabel": "Récent", - "SearchBoxPlaceholder": "Recherche Internet", - "SearchResultAlt": "Résultat d'image pour {0}.", - "SearchResultAriaLabel": "Appuyez sur entrée pour ouvrir l'image dans un nouvel onglet.", - "Selected": "Sélectionné", - "SharingField": "Partage", - "SharingPrivate": "Privé", - "SharingShared": "Partagé", - "SiteLinkLabel": "Site", - "SizeOptionAll": "Tous", - "SizeOptionExtraLarge": "Extra Large", - "SizeOptionLarge": "Large", - "SizeOptionMedium": "Moyen", - "SizeOptionSmall": "Petit", - "SizeUnit": [ - "Octets", - "Ko", - "Mo", - "Go", - "To", - "Po", - "Eo", - "Zo", - "Yo" - ], - "SorryWebSearch": "Désolé, cette fonction n'est pas implémentée dans cet exemple, car elle nécessiterait une clé d'API Bing.", - "SortedAscending": "Trié de A à Z", - "SortedDescending": "Tri de Z à A", - "TypeAriaLabel": "Opérations sur les colonnes \"Type de fichier\", sélectionné pour trier \"Type de fichier\"", - "UploadFileHeader": "Importer un fichier", - "UploadImageHeader": "Importer une image", - "UploadLinkLabel": "Importer", - "WebSearchLinkLabel": "Recherche Internet", - "Yes": "Oui", - "SelectedLabel": "Sélectionné", - "SelectIcon": "Sélectionner une icône", - "StockImagesLinkLabel": "Banque d'images", - "StockImagesHeader": "Banque d'images", - "OrgAssetsLinkLabel": "Votre organisation" - }; -}); + "Save": "Enregistrer", + "Cancel": "Annuler", + "SiteBreadcrumbLabel": "Fil d'Ariane", + "ListViewGroupEmptyLabel": "Vide", + "WebPartTitlePlaceholder": "Titre du composant WebPart", + "WebPartTitleLabel": "Ajouter un titre", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Dans 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": "Dans {0} minute||Dans {0} minutes", + "L_RelativeDateTime_XMinutes": "Il y a {0} minute||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": "Dans {0} heure||Dans {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": "Il y a {0} jour||Il y a {0} jours", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Aujourd'hui" + }, + "SendEmailTo": "Envoyer un email à {0}", + "StartChatWith": "Démarrer une discussion avec {0}", + "Contact": "Personne-ressource", + "UpdateProfile": "Mettre à jour votre profil", + "TaxonomyPickerNoTerms": "L'ensemble de termes ne contient aucun terme", + "TaxonomyPickerExpandTitle": "Développer cet ensemble de termes", + "TaxonomyPickerMenuTermSet": "Menu pour l'ensemble de termes", + "TaxonomyPickerInLabel": "dans", + "TaxonomyPickerTermSetLabel": "Ensemble de termes", + "TaxonomyPickerTermsNotFound": "Le ou les prochains termes sélectionnés ne se trouvent pas dans le magasin de termes : {0}", + "TaxonomyPickerInvalidTerms": "Veuillez corriger le(s) terme(s) non valide(s) : {0}", + "peoplePickerComponentTooltipMessage": "Sélecteur de personnes", + "peoplePickerComponentErrorMessage": "Champ obligatoire", + "peoplePickerSuggestionsHeaderText": "Personnes suggérées", + "peoplePickerLoadingText": "Chargement", + "PeoplePickerSearchText": "Recherche d'utilisateurs", + "PeoplePickerGroupNotFound": "Groupe introuvable.", + "genericNoResultsFoundText": "Aucun résultat trouvé", + "ListItemPickerSelectValue": "Sélectionnez une valeur", + "ListItemAttachmentsActionDeleteIconTitle": "Supprimer", + "ListItemAttachmentsactionDeleteTitle": "Supprimer", + "ListItemAttachmentsfileDeletedMsg": "Fichier {0} supprimé", + "ListItemAttachmentsfileDeleteError": "Erreur lors de la suppression du fichier : {0}, cause : {1}", + "ListItemAttachmentserrorLoadAttachments": "Erreur lors du chargement de la pièce jointe, cause : {0}", + "ListItemAttachmentsconfirmDelete": "Voulez-vous vraiment envoyer la pièce jointe {0} à la Corbeille du site ?", + "ListItemAttachmentsdialogTitle": "Pièce jointe", + "ListItemAttachmentsdialogOKbuttonLabel": "OK", + "ListItemAttachmentsdialogCancelButtonLabel": "Annuler", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Supprimer", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Ajouter une pièce jointe", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Ajouter une pièce jointe", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Le fichier {0} n'a pas pu être ajouté en tant que pièce jointe, cause : {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Ajouter une pièce jointe", + "ListItemAttachmentsloadingMessage": "Téléchargement du fichier...", + "ListItemAttachmentslPlaceHolderIconText": "Pièce jointe", + "ListItemAttachmentslPlaceHolderDescription": "Ajouter des pièces jointes", + "ListItemAttachmentslPlaceHolderButtonLabel": "Ajouter", + "mapsErrorMessage": "Une erreur s'est produite lors du chargement de la carte", + "mapsLoadingText": "Chargement", + "mapsSearchButtonText": "Rechercher", + "mapsTitlePrefix": "Carte de", + "ListViewFilterLabel": "Filtrer", + "HeaderNormalText": "Texte normal", + "HeaderH2": "Titre 1", + "HeaderH3": "Titre 2", + "HeaderH4": "Titre 3", + "HeaderBlockQuote": "Citation", + "AlignLeft": "Aligner à gauche", + "AlignCenter": "Centrer", + "AlignRight": "Aligner à droite", + "AlignJustify": "Justifier", + "ListBullet": "Liste à puces", + "ListNumbered": "Liste numérotée", + "StyleTitle": "Style", + "BoldTitle": "Gras (Ctrl+B)", + "ItalicTitle": "Italique (Ctrl+I)", + "UnderlineTitle": "Souligné (Ctrl+U)", + "AlignTitle": "Alignement", + "ListTitle": "Liste", + "LinkTitle": "Lien hypertexte", + "ImageTitle": "L’image", + "MoreTitle": "Plus", + "FormattingPaneTitle": "Mise en forme du texte", + "CloseButton": "Fermer", + "InsertLinkTitle": "Insertion de lien", + "InsertImageTitle": "Insérer une image", + "AddressFieldLabel": "Adresse", + "TextToDisplayLabel": "Texte à afficher", + "SaveButtonLabel": "Enregistrer", + "CancelButtonLabel": "Annuler", + "RemoveLinkLabel": "Supprimer le lien", + "ParagraphSectionTitle": "Paragraphe", + "HyperlinkSectionTitle": "Lien hypertexte", + "UndoTitle": "Annuler (Ctrl+Z)", + "RedoTitle": "Rétablir (Ctrl+Y)", + "ClearFormattingTitle": "Effacer toute la mise en forme", + "FontStyleTitle": "Style de police", + "FontSizeTitle": "Taille de police", + "StrikethroughTitle": "Barré", + "SuperscriptTitle": "Exposant", + "SubscriptTitle": "Indice", + "FontColorLabel": "Couleur de police", + "AutomaticFontColor": "Automatique", + "HighlightColorLabel": "Couleur de surlignage", + "NoColorHighlightColor": "Aucune couleur", + "IncreaseIndentTitle": "Augmenter le retrait", + "DecreaseIndentTitle": "Diminuer le retrait", + "ThemeColorsGroupName": "Couleurs du thème", + "HighlightColorsGroupName": "Couleurs de surlignage", + "StandardColorsGroupName": "Couleurs standards", + "CustomColorsGroupName": "Couleurs personnalisées", + "ThemeColorDarker": "Thème plus foncé", + "ThemeColorDark": "Thème foncé", + "ThemeColorDarkAlt": "Couleur alternative du thème foncé", + "ThemeColorPrimary": "Première couleur du thème", + "ThemeColorSecondary": "Deuxième couleur du thème", + "ThemeColorTertiary": "Troisième couleur du thème", + "ThemeColorNeutralSecondary": "Couleur neutre secondaire", + "ThemeColorNeutralPrimaryAlt": "Alternative à la couleur neutre principale", + "ThemeColorNeutralPrimary": "Couleur neutre principale", + "ThemeColorNeutralDark": "Couleur neutre foncé", + "HighlightColorYellow": "Jaune", + "HighlightColorGreen": "Vert", + "HighlightColorAqua": "Cyan", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Bleu", + "HighlightColorRed": "Rouge", + "HighlightColorDarkblue": "Bleu foncé", + "HighlightColorTeal": "Bleu-vert", + "HighlightColorDarkgreen": "Vert foncé", + "HighlightColorPurple": "Violet", + "HighlightColorMaroon": "Marron", + "HighlightColorGold": "Or", + "HighlightColorDarkgrey": "Gris foncé", + "HighlightColorGrey": "Gris", + "HighlightColorBlack": "Noir", + "StandardColorDarkred": "Rouge foncé", + "StandardColorRed": "Rouge", + "StandardColorOrange": "Orange", + "StandardColorYellow": "Jaune", + "StandardColorLightgreen": "Vert clair", + "StandardColorGreen": "Vert", + "StandardColorLightblue": "Bleu clair", + "StandardColorBlue": "Bleu", + "StandardColorDarkblue": "Bleu foncé", + "StandardColorPurple": "Violet", + "DatePickerMonthLongJanuary": "Janvier", + "DatePickerMonthShortJanuary": "Janv.", + "DatePickerMonthLongFebruary": "Février", + "DatePickerMonthShortFebruary": "Févr.", + "DatePickerMonthLongMarch": "Mars", + "DatePickerMonthShortMarch": "Mars", + "DatePickerMonthLongApril": "Avril", + "DatePickerMonthShortApril": "Avr.", + "DatePickerMonthLongMay": "Mai", + "DatePickerMonthShortMay": "Mai", + "DatePickerMonthLongJune": "Juin", + "DatePickerMonthShortJune": "Juin", + "DatePickerMonthLongJuly": "Juillet", + "DatePickerMonthShortJuly": "Juill.", + "DatePickerMonthLongAugust": "Août", + "DatePickerMonthShortAugust": "Août", + "DatePickerMonthLongSeptember": "Septembre", + "DatePickerMonthShortSeptember": "Sept.", + "DatePickerMonthLongOctober": "Octobre", + "DatePickerMonthShortOctober": "Oct.", + "DatePickerMonthLongNovember": "Novembre", + "DatePickerMonthShortNovember": "Nov.", + "DatePickerMonthLongDecember": "Décembre", + "DatePickerMonthShortDecember": "Déc.", + "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", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Date", + "DateTimePickerTime": "Heure", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Valeur incorrecte pour l'heure", + "DateTimePickerMinuteValueInvalid": "Valeur de minute incorrecte", + "DateTimePickerSecondValueInvalid": "Deuxième valeur incorrecte", + "DateTimePickerTextErrorMessage": "Veuillez saisir une date valide", + "AddFileButtonLabel": "Ajouter un fichier", + "AddImageButtonLabel": "Ajouter une image", + "AriaCellValue": "{0} colonne, {1}", + "FilePickerCancelButtonLabel": "Annuler", + "CantValidateValidationMessage": "Nous n'avons pas pu vérifier ce lien. S'il vous plaît vérifier le lien et essayer à nouveau.", + "ChangeFileLinkLabel": "Changer le fichier", + "ChangeImageLinkLabel": "Changer l'image", + "ChooseFileLinkLabel": "Choisir un fichier", + "ChooseImageLinkLabel": "Choisir une image", + "CopyrightUrl": "https://www.microsoft.com/fr-FR/legal/copyright/default.aspx", + "CopyrightWarning": "Vous êtes responsable du respect des droits d'autrui, y compris du droit d'auteur.", + "CreativeCommonsMessage": "Ces résultats sont étiquetés avec des licences Creative Commons. Passez en revue les licences pour vous assurer de votre conformité.", + "DateFormat": "DD/MM/YYYY hh:mm A", + "DocumentLabelTemplate": "{0}, Document, {1} modifié, édité par {2}, Privé", + "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, Modifié le {1}, édité par {2}, {3} éléments, Privé", + "FromLinkLinkLabel": "À partir d'un lien", + "ImageAltText": ". image {0}", + "ImageAriaLabelTemplate": ". image {0}", + "ImageLayoutPlaceholderText": "Disposition", + "ImageSizePlaceholderText": "Taille de l'image", + "ItemChildCountField": "Nombre d'enfants", + "LayoutOptionAll": "Tous", + "LayoutOptionSquare": "Carré", + "LayoutOptionTall": "Grand", + "LayoutOptionWide": "Large", + "LearnMoreLink": "En savoir plus.", + "LicenseOptionAll": "Tous", + "LicenseOptionAny": "Creative Commons uniquement", + "LicensePlaceholderText": "Licence", + "LinkFileInstructions": "Coller un lien provenant de OneDrive Entreprise ou SharePoint Online", + "LinkHeader": "À partir d'un lien", + "LinkImageInstructions": "Coller le lien d'une image provenant de 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 en liste", + "ListLayoutListDescrition": "Afficher les éléments et les détails dans une liste", + "ListLayoutTile": "Affichage en mosaïque", + "ListLayoutTileDescription": "Afficher les éléments avec des aperçus en mosaïque", + "ListOptionsAlt": "Afficher les options. {0} sélectionnés .", + "ListOptionsTitle": "Ouvrez le menu des options d'affichage", + "Loading": "Chargement ...", + "ModifiedByField": "Modifié par", + "ModifiedField": "Date modifiée", + "NameField": "Nom", + "No": "non", + "ProvidedValueIsInvalid": "La valeur fournie est invalide", + "NoExternalLinksValidationMessage": "Nous prenons en charge uniquement les liens vers des fichiers de votre organisation (tenant).", + "NoImageValidationMessage": "Ce n'est pas un lien vers un type de fichier que nous prenons en charge. Vous pouvez uniquement créer un lien vers une image.", + "NoRecentFiles": "Aucun fichier récent", + "NoRecentFilesDescription": "Essayez de sélectionner un fichier sur votre site ou téléchargez-en un depuis votre appareil.", + "NoResultsBadEnglish": "*** Aucun résultat n'a été trouvé. Essayez de changer 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}, Modifié {2}, édité par {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Cet élément provient de votre OneDrive. Les fichiers et dossiers dans OneDrive sont privés, sauf si vous les partagez. Avez-vous partagé ce fichier avec les membres de votre site afin qu'ils puissent y accéder ?", + "OneDriveConfirmDialogTitle": "Nous vérifions ...", + "OneDriveEmptyFolderAlt": "Dossier vide", + "OneDriveEmptyFolderDescription": "Pour ajouter des fichiers, accédez à votre OneDrive. Vous pouvez également ajouter des fichiers à ce dossier à l'aide de l'application OneDrive de 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": "Ouvrir", + "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 (tenant)", + "PoweredByBing": "Propulsé par Bing", + "RecentDocumentsHeader": "Documents récents", + "RecentImagesHeader": "Images récentes", + "RecentLinkLabel": "Récent", + "SearchBoxPlaceholder": "Recherche Internet", + "SearchResultAlt": "Résultat d'image pour {0}.", + "SearchResultAriaLabel": "Appuyez sur entrée pour ouvrir l'image dans un nouvel onglet.", + "Selected": "Sélectionné", + "SharingField": "Partage", + "SharingPrivate": "Privé", + "SharingShared": "Partagé", + "SiteLinkLabel": "Site", + "SizeOptionAll": "Tous", + "SizeOptionExtraLarge": "Extra Grand", + "SizeOptionLarge": "Grande", + "SizeOptionMedium": "Moyen", + "SizeOptionSmall": "Petit", + "SizeUnit": [ + "Octets", + "Ko", + "Mo", + "Go", + "To", + "Po", + "Eo", + "Zo", + "Yo" + ], + "SorryWebSearch": "Désolé, cette fonction n'est pas implémentée dans cet exemple, car elle nécessiterait une clé d'API Bing.", + "SortedAscending": "Trié de A à Z", + "SortedDescending": "Tri de Z à A", + "TypeAriaLabel": "Opérations sur les colonnes \"Type de fichier\", sélectionné pour trier \"Type de fichier\"", + "UploadFileHeader": "Importer un fichier", + "UploadImageHeader": "Importer une image", + "UploadLinkLabel": "Importer", + "WebSearchLinkLabel": "Recherche Internet", + "StockImagesLinkLabel": "Banque d'images", + "StockImagesHeader": "Banque d'images", + "Yes": "Oui", + "NewFolderNamePlaceholder": "Entrez le nom de votre dossier", + "FolderFilterBoxPlaceholder": "Filtrer les dossiers par nom", + "FolderExplorerLoading": "Chargement de dossiers...", + "FolderExplorerNoItems": "Ce dossier n’a pas de sous-dossiers.", + "NewFolderIncorrectSymbolsError": "Veuillez entrer un nom qui n’inclut aucun de ces caractères: \" * : < > ? / |.", + "SomethingWentWrong": "Quelque chose s’est mal passé", + "SelectedLabel": "Sélectionné", + "SelectIcon": "Sélectionner une icône", + "TreeViewExpandTitle": "Développez cet élément", + "TreeViewCollapseTitle": "Réduire cet élément", + "CollectionDataEmptyFields": "Aucun champ n’a été fourni pour les données de collecte.", + "CollectionDataEmptyValue": "Aucune donnée dans votre collection.", + "CollectionAddRowButtonLabel": "Ajouter des données à la collection", + "CollectionDeleteRowButtonLabel": "Supprimer la ligne actuelle", + "CollectionSaveAndAddButtonLabel": "Ajouter et enregistrer", + "CollectionDataItemShowErrorsLabel": "Afficher les erreurs de ligne", + "CollectionDataItemFieldRequiredLabel": "Le champ est requis.", + "CollectionDataItemMissingFields": "La collection fields est vide!", + "InvalidUrlError": "L’URL fournie n’est pas valide", + "CollectionDataSearch": "Recherche", + "MyTeamsLoadingMessage": "chargement de vos équipes", + "MyTeamsMessageError": "Quelque chose s’est mal passé lors du chargement de vos équipes, veuillez essayer plus tard ou actualiser le navigateur", + "MyTeamsNoTeamsMessage": "Vous n’avez pas d’équipes", + "MyTeamsTeamChannelPublicMessage": "Chaînes publiques", + "MyTeamsTeamChannelTypeMessage": "Canaux privés", + "TeamChannelPickerFontIconFavoriteText": "Favori", + "TeamChannelPickerFontIconPrivateChannelTitle": "Canal privé", + "TeamChannelPickerSugestionHeaderText": "Canaux d’équipe suggérés", + "TeamPickerButtonRemoveTitle": "supprimer", + "TeamPickernoResultsFoundText": "Aucune équipe trouvée", + "TeamPickerSugestionsHeaderText": "Équipes suggérées", + "TeamsChannelPickerButtonRemoveTitle": "supprimer", + "TeamsChannelPickerNoresultsFoundText": "Aucun canal trouvé", + "ViewMore": "Voir plus", + "DynamicFormLoading": "Chargement...", + "DynamicFormPleaseWait": "S’il te plaît attends...", + "DynamicFormRequiredErrorMessage": "Vous ne pouvez pas laisser cela vide.", + "DynamicFormTermPanelTitle": "Sélectionnez terme", + "DynamicFormEnterURLPlaceholder": "Entrez une URL", + "DynamicFormEnterDescriptionPlaceholder": "Texte alternatif", + "customDisplayName": "Utilisez cet emplacement :", + "ListItemCommentDIalogDeleteSubText": "Êtes-vous sûr de vouloir supprimer ce commentaire?", + "ListItemCommentsDialogDeleteTitle": "Confirmer supprimer le commentaire", + "ListItemCommentsLabel": "Commentaires", + "ListItemCommentsNoCommentsLabel": "Il n’y a pas de commentaires", + "OrgAssetsLinkLabel": "Votre organisation", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/fr-fr.ts b/src/loc/fr-fr.ts index efef030f6..2ef60d702 100644 --- a/src/loc/fr-fr.ts +++ b/src/loc/fr-fr.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Fil d'Ariane", - "ListViewGroupEmptyLabel": "Vide", - "WebPartTitlePlaceholder": "Titre du composant WebPart", - "WebPartTitleLabel": "Ajouter un titre", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Dans 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": "Dans {0} minute||Dans {0} minutes", - "L_RelativeDateTime_XMinutes": "Il y a {0} minute||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": "Dans {0} heure||Dans {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": "Il y a {0} jour||Il y a {0} jours", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Aujourd'hui" - }, - "SendEmailTo": "Envoyer un email à {0}", - "StartChatWith": "Démarrer une discussion avec {0}", - "Contact": "Contact", - "UpdateProfile": "Mettre à jour votre profil", - "TaxonomyPickerNoTerms": "L'ensemble de termes ne contient aucun terme", - "TaxonomyPickerExpandTitle": "Développer cet ensemble de termes", - "TaxonomyPickerMenuTermSet": "Menu pour l'ensemble de termes", - "TaxonomyPickerInLabel": "dans", - "TaxonomyPickerTermSetLabel": "Ensemble de termes", - "peoplePickerComponentTooltipMessage": "Sélecteur de personnes", - "peoplePickerComponentErrorMessage": "Champ obligatoire", - "peoplePickerSuggestionsHeaderText": "Personnes suggérées", - "peoplePickerLoadingText": "Chargement", - "PeoplePickerSearchText": "Recherche d'utilisateurs", - "PeoplePickerGroupNotFound": "Groupe introuvable.", - "genericNoResultsFoundText": "Aucun résultat trouvé", - "ListItemPickerSelectValue": "Sélectionnez une valeur", - "ListItemAttachmentsActionDeleteIconTitle": "Supprimer", - "ListItemAttachmentsactionDeleteTitle": "Supprimer", - "ListItemAttachmentsfileDeletedMsg": "Fichier {0} supprimé", - "ListItemAttachmentsfileDeleteError": "Erreur lors de la suppression du fichier : {0}, cause : {1}", - "ListItemAttachmentserrorLoadAttachments": "Erreur lors du chargement de la pièce jointe, cause : {0}", - "ListItemAttachmentsconfirmDelete": "Voulez-vous vraiment envoyer la pièce jointe {0} à la Corbeille du site ?", - "ListItemAttachmentsdialogTitle": "Pièce jointe", - "ListItemAttachmentsdialogOKbuttonLabel": "OK", - "ListItemAttachmentsdialogCancelButtonLabel": "Annuler", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Supprimer", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Ajouter une pièce jointe", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Ajouter une pièce jointe", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Le fichier {0} n'a pas pu être ajouté en tant que pièce jointe, cause : {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Ajouter une pièce jointe", - "ListItemAttachmentsloadingMessage": "Téléchargement du fichier...", - "ListItemAttachmentslPlaceHolderIconText": "Pièce jointe", - "ListItemAttachmentslPlaceHolderDescription": "Ajouter des pièces jointes", - "ListItemAttachmentslPlaceHolderButtonLabel": "Ajouter", - "mapsErrorMessage": "Une erreur s'est produite lors du chargement de la carte", - "mapsLoadingText": "Chargement", - "mapsSearchButtonText": "Rechercher", - "mapsTitlePrefix": "Carte de", - "ListViewFilterLabel": "Filtrer", - "HeaderNormalText": "Texte normal", - "HeaderH2": "Titre 1", - "HeaderH3": "Titre 2", - "HeaderH4": "Titre 3", - "HeaderBlockQuote": "Citation", - "AlignLeft": "Aligner à gauche", - "AlignCenter": "Centrer", - "AlignRight": "Aligner à droite", - "AlignJustify": "Justifier", - "ListBullet": "Liste à puces", - "ListNumbered": "Liste numérotée", - "StyleTitle": "Style", - "BoldTitle": "Gras (Ctrl+B)", - "ItalicTitle": "Italique (Ctrl+I)", - "UnderlineTitle": "Souligné (Ctrl+U)", - "AlignTitle": "Alignement", - "ListTitle": "Liste", - "LinkTitle": "Lien hypertexte", - "MoreTitle": "Plus", - "FormattingPaneTitle": "Mise en forme du texte", - "CloseButton": "Fermer", - "InsertLinkTitle": "Insertion de lien", - "AddressFieldLabel": "Adresse", - "TextToDisplayLabel": "Texte à afficher", - "SaveButtonLabel": "Enregistrer", - "CancelButtonLabel": "Annuler", - "RemoveLinkLabel": "Supprimer le lien", - "ParagraphSectionTitle": "Paragraphe", - "HyperlinkSectionTitle": "Lien hypertexte", - "UndoTitle": "Annuler (Ctrl+Z)", - "RedoTitle": "Rétablir (Ctrl+Y)", - "ClearFormattingTitle": "Effacer toute la mise en forme", - "FontStyleTitle": "Style de police", - "FontSizeTitle": "Taille de police", - "StrikethroughTitle": "Barré", - "SuperscriptTitle": "Exposant", - "SubscriptTitle": "Indice", - "FontColorLabel": "Couleur de police", - "AutomaticFontColor": "Automatique", - "HighlightColorLabel": "Couleur de surlignage", - "NoColorHighlightColor": "Aucune couleur", - "IncreaseIndentTitle": "Augmenter le retrait", - "DecreaseIndentTitle": "Diminuer le retrait", - "ThemeColorsGroupName": "Couleurs du thème", - "HighlightColorsGroupName": "Couleurs de surlignage", - "StandardColorsGroupName": "Couleurs standards", - "CustomColorsGroupName": "Couleurs personnalisées", - "ThemeColorDarker": "Thème plus foncé", - "ThemeColorDark": "Thème foncé", - "ThemeColorDarkAlt": "Couleur alternative du thème foncé", - "ThemeColorPrimary": "Première couleur du thème", - "ThemeColorSecondary": "Deuxième couleur du thème", - "ThemeColorTertiary": "Troisième couleur du thème", - "ThemeColorNeutralSecondary": "Couleur neutre secondaire", - "ThemeColorNeutralPrimaryAlt": "Alternative à la couleur neutre principale", - "ThemeColorNeutralPrimary": "Couleur neutre principale", - "ThemeColorNeutralDark": "Couleur neutre foncé", - "HighlightColorYellow": "Jaune", - "HighlightColorGreen": "Vert", - "HighlightColorAqua": "Cyan", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Bleu", - "HighlightColorRed": "Rouge", - "HighlightColorDarkblue": "Bleu foncé", - "HighlightColorTeal": "Bleu-vert", - "HighlightColorDarkgreen": "Vert foncé", - "HighlightColorPurple": "Violet", - "HighlightColorMaroon": "Marron", - "HighlightColorGold": "Or", - "HighlightColorDarkgrey": "Gris foncé", - "HighlightColorGrey": "Gris", - "HighlightColorBlack": "Noir", - "StandardColorDarkred": "Rouge foncé", - "StandardColorRed": "Rouge", - "StandardColorOrange": "Orange", - "StandardColorYellow": "Jaune", - "StandardColorLightgreen": "Vert clair", - "StandardColorGreen": "Vert", - "StandardColorLightblue": "Bleu clair", - "StandardColorBlue": "Bleu", - "StandardColorDarkblue": "Bleu foncé", - "StandardColorPurple": "Violet", - "DatePickerMonthLongJanuary": "Janvier", - "DatePickerMonthShortJanuary": "Janv.", - "DatePickerMonthLongFebruary": "Février", - "DatePickerMonthShortFebruary": "Févr.", - "DatePickerMonthLongMarch": "Mars", - "DatePickerMonthShortMarch": "Mars", - "DatePickerMonthLongApril": "Avril", - "DatePickerMonthShortApril": "Avr.", - "DatePickerMonthLongMay": "Mai", - "DatePickerMonthShortMay": "Mai", - "DatePickerMonthLongJune": "Juin", - "DatePickerMonthShortJune": "Juin", - "DatePickerMonthLongJuly": "Juillet", - "DatePickerMonthShortJuly": "Juill.", - "DatePickerMonthLongAugust": "Août", - "DatePickerMonthShortAugust": "Août", - "DatePickerMonthLongSeptember": "Septembre", - "DatePickerMonthShortSeptember": "Sept.", - "DatePickerMonthLongOctober": "Octobre", - "DatePickerMonthShortOctober": "Oct.", - "DatePickerMonthLongNovember": "Novembre", - "DatePickerMonthShortNovember": "Nov.", - "DatePickerMonthLongDecember": "Décembre", - "DatePickerMonthShortDecember": "Déc.", - "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", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Date", - "DateTimePickerTime": "Heure", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Valeur incorrecte pour l'heure", - "AddFileButtonLabel": "Ajouter un fichier", - "AddImageButtonLabel": "Ajouter une image", - "AriaCellValue": "{0} colonne, {1}", - "FilePickerCancelButtonLabel": "Annuler", - "CantValidateValidationMessage": "Nous n'avons pas pu vérifier ce lien. S'il vous plaît vérifier le lien et essayer à nouveau.", - "ChangeFileLinkLabel": "Changer le fichier", - "ChangeImageLinkLabel": "Changer l'image", - "ChooseFileLinkLabel": "Choisir un fichier", - "ChooseImageLinkLabel": "Choisir une image", - "CopyrightUrl": "https://www.microsoft.com/fr-FR/legal/copyright/default.aspx", - "CopyrightWarning": "Vous êtes responsable du respect des droits d'autrui, y compris du droit d'auteur.", - "CreativeCommonsMessage": "Ces résultats sont étiquetés avec des licences Creative Commons. Passez en revue les licences pour vous assurer de votre conformité.", - "DateFormat": "DD/MM/YYYY hh:mm A", - "DocumentLabelTemplate": "{0}, Document, {1} modifié, édité par {2}, Privé", - "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, Modifié le {1}, édité par {2}, {3} éléments, Privé", - "FromLinkLinkLabel": "À partir d'un lien", - "ImageAltText": ".{0} Image", - "ImageAriaLabelTemplate": ".{0} Image", - "ImageLayoutPlaceholderText": "Disposition", - "ImageSizePlaceholderText": "Taille de l'image", - "ItemChildCountField": "Nombre d'enfants", - "LayoutOptionAll": "Tous", - "LayoutOptionSquare": "Carré", - "LayoutOptionTall": "Grand", - "LayoutOptionWide": "Large", - "LearnMoreLink": "En savoir plus.", - "LicenseOptionAll": "Tous", - "LicenseOptionAny": "Creative Commons uniquement", - "LicensePlaceholderText": "Licence", - "LinkFileInstructions": "Coller un lien provenant de OneDrive Entreprise ou SharePoint Online", - "LinkHeader": "À partir d'un lien", - "LinkImageInstructions": "Coller le lien d'une image provenant de 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 en liste", - "ListLayoutListDescrition": "Afficher les éléments et les détails dans une liste", - "ListLayoutTile": "Affichage en mosaïque", - "ListLayoutTileDescription": "Afficher les éléments avec des aperçus en mosaïque", - "ListOptionsAlt": "Afficher les options. {0} sélectionnés .", - "ListOptionsTitle": "Ouvrez le menu des options d'affichage", - "Loading": "Chargement ...", - "ModifiedByField": "Modifié par", - "ModifiedField": "Date modifiée", - "NameField": "Nom", - "No": "non", - "ProvidedValueIsInvalid": "La valeur fournie est invalide", - "NoExternalLinksValidationMessage": "Nous prenons en charge uniquement les liens vers des fichiers de votre organisation (tenant).", - "NoImageValidationMessage": "Ce n'est pas un lien vers un type de fichier que nous prenons en charge. Vous pouvez uniquement créer un lien vers une image.", - "NoRecentFiles": "Aucun fichier récent", - "NoRecentFilesDescription": "Essayez de sélectionner un fichier sur votre site ou téléchargez-en un depuis votre appareil.", - "NoResultsBadEnglish": "*** Aucun résultat n'a été trouvé. Essayez de changer 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}, Modifié {2}, édité par {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Cet élément provient de votre OneDrive. Les fichiers et dossiers dans OneDrive sont privés, sauf si vous les partagez. Avez-vous partagé ce fichier avec les membres de votre site afin qu'ils puissent y accéder ?", - "OneDriveConfirmDialogTitle": "Nous vérifions ...", - "OneDriveEmptyFolderAlt": "Dossier vide", - "OneDriveEmptyFolderDescription": "Pour ajouter des fichiers, accédez à votre OneDrive. Vous pouvez également ajouter des fichiers à ce dossier à l'aide de l'application OneDrive de 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": "Ouvrir", - "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 (tenant)", - "PoweredByBing": "Propulsé par Bing", - "RecentDocumentsHeader": "Documents récents", - "RecentImagesHeader": "Images récentes", - "RecentLinkLabel": "Récent", - "SearchBoxPlaceholder": "Recherche Internet", - "SearchResultAlt": "Résultat d'image pour {0}.", - "SearchResultAriaLabel": "Appuyez sur entrée pour ouvrir l'image dans un nouvel onglet.", - "Selected": "Sélectionné", - "SharingField": "Partage", - "SharingPrivate": "Privé", - "SharingShared": "Partagé", - "SiteLinkLabel": "Site", - "SizeOptionAll": "Tous", - "SizeOptionExtraLarge": "Extra Large", - "SizeOptionLarge": "Large", - "SizeOptionMedium": "Moyen", - "SizeOptionSmall": "Petit", - "SizeUnit": [ - "Octets", - "Ko", - "Mo", - "Go", - "To", - "Po", - "Eo", - "Zo", - "Yo" - ], - "SorryWebSearch": "Désolé, cette fonction n'est pas implémentée dans cet exemple, car elle nécessiterait une clé d'API Bing.", - "SortedAscending": "Trié de A à Z", - "SortedDescending": "Tri de Z à A", - "TypeAriaLabel": "Opérations sur les colonnes \"Type de fichier\", sélectionné pour trier \"Type de fichier\"", - "UploadFileHeader": "Importer un fichier", - "UploadImageHeader": "Importer une image", - "UploadLinkLabel": "Importer", - "WebSearchLinkLabel": "Recherche Internet", - "Yes": "Oui", - "SelectedLabel": "Sélectionné", - "SelectIcon": "Sélectionner une icône", - "StockImagesLinkLabel": "Banque d'images", - "StockImagesHeader": "Banque d'images", - "OrgAssetsLinkLabel": "Votre organisation" - }; -}); + "Save": "Sauvegarder", + "Cancel": "Annuler", + "SiteBreadcrumbLabel": "Fil d'Ariane", + "ListViewGroupEmptyLabel": "Vide", + "WebPartTitlePlaceholder": "Titre du composant WebPart", + "WebPartTitleLabel": "Ajouter un titre", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Dans 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": "Dans {0} minute||Dans {0} minutes", + "L_RelativeDateTime_XMinutes": "Il y a {0} minute||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": "Dans {0} heure||Dans {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": "Il y a {0} jour||Il y a {0} jours", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Aujourd'hui" + }, + "SendEmailTo": "Envoyer un email à {0}", + "StartChatWith": "Démarrer une discussion avec {0}", + "Contact": "Contact", + "UpdateProfile": "Mettre à jour votre profil", + "TaxonomyPickerNoTerms": "L'ensemble de termes ne contient aucun terme", + "TaxonomyPickerExpandTitle": "Développer cet ensemble de termes", + "TaxonomyPickerMenuTermSet": "Menu pour l'ensemble de termes", + "TaxonomyPickerInLabel": "dans", + "TaxonomyPickerTermSetLabel": "Ensemble de termes", + "TaxonomyPickerTermsNotFound": "Le ou les termes sélectionnés suivants n’ont pas pu être trouvés dans le magasin de termes : {0}", + "TaxonomyPickerInvalidTerms": "Veuillez corriger le(s) terme(s) non valide(s) : {0}", + "peoplePickerComponentTooltipMessage": "Sélecteur de personnes", + "peoplePickerComponentErrorMessage": "Champ obligatoire", + "peoplePickerSuggestionsHeaderText": "Personnes suggérées", + "peoplePickerLoadingText": "Chargement", + "PeoplePickerSearchText": "Recherche d'utilisateurs", + "PeoplePickerGroupNotFound": "Groupe introuvable.", + "genericNoResultsFoundText": "Aucun résultat trouvé", + "ListItemPickerSelectValue": "Sélectionnez une valeur", + "ListItemAttachmentsActionDeleteIconTitle": "Supprimer", + "ListItemAttachmentsactionDeleteTitle": "Supprimer", + "ListItemAttachmentsfileDeletedMsg": "Fichier {0} supprimé", + "ListItemAttachmentsfileDeleteError": "Erreur lors de la suppression du fichier : {0}, cause : {1}", + "ListItemAttachmentserrorLoadAttachments": "Erreur lors du chargement de la pièce jointe, cause : {0}", + "ListItemAttachmentsconfirmDelete": "Voulez-vous vraiment envoyer la pièce jointe {0} à la Corbeille du site ?", + "ListItemAttachmentsdialogTitle": "Pièce jointe", + "ListItemAttachmentsdialogOKbuttonLabel": "D’ACCORD", + "ListItemAttachmentsdialogCancelButtonLabel": "Annuler", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Supprimer", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Ajouter une pièce jointe", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Ajouter une pièce jointe", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Le fichier {0} n'a pas pu être ajouté en tant que pièce jointe, cause : {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Ajouter une pièce jointe", + "ListItemAttachmentsloadingMessage": "Téléchargement du fichier...", + "ListItemAttachmentslPlaceHolderIconText": "Pièce jointe", + "ListItemAttachmentslPlaceHolderDescription": "Ajouter des pièces jointes", + "ListItemAttachmentslPlaceHolderButtonLabel": "Ajouter", + "mapsErrorMessage": "Une erreur s'est produite lors du chargement de la carte", + "mapsLoadingText": "Chargement", + "mapsSearchButtonText": "Rechercher", + "mapsTitlePrefix": "Carte de", + "ListViewFilterLabel": "Filtrer", + "HeaderNormalText": "Texte normal", + "HeaderH2": "Titre 1", + "HeaderH3": "Titre 2", + "HeaderH4": "Titre 3", + "HeaderBlockQuote": "Citation", + "AlignLeft": "Aligner à gauche", + "AlignCenter": "Centrer", + "AlignRight": "Aligner à droite", + "AlignJustify": "Justifier", + "ListBullet": "Liste à puces", + "ListNumbered": "Liste numérotée", + "StyleTitle": "Style", + "BoldTitle": "Gras (Ctrl+B)", + "ItalicTitle": "Italique (Ctrl+I)", + "UnderlineTitle": "Souligné (Ctrl+U)", + "AlignTitle": "Alignement", + "ListTitle": "Liste", + "LinkTitle": "Lien hypertexte", + "ImageTitle": "Image", + "MoreTitle": "Plus", + "FormattingPaneTitle": "Mise en forme du texte", + "CloseButton": "Fermer", + "InsertLinkTitle": "Insertion de lien", + "InsertImageTitle": "Insérer une image", + "AddressFieldLabel": "Adresse", + "TextToDisplayLabel": "Texte à afficher", + "SaveButtonLabel": "Enregistrer", + "CancelButtonLabel": "Annuler", + "RemoveLinkLabel": "Supprimer le lien", + "ParagraphSectionTitle": "Paragraphe", + "HyperlinkSectionTitle": "Lien hypertexte", + "UndoTitle": "Annuler (Ctrl+Z)", + "RedoTitle": "Rétablir (Ctrl+Y)", + "ClearFormattingTitle": "Effacer toute la mise en forme", + "FontStyleTitle": "Style de police", + "FontSizeTitle": "Taille de police", + "StrikethroughTitle": "Barré", + "SuperscriptTitle": "Exposant", + "SubscriptTitle": "Indice", + "FontColorLabel": "Couleur de police", + "AutomaticFontColor": "Automatique", + "HighlightColorLabel": "Couleur de surlignage", + "NoColorHighlightColor": "Aucune couleur", + "IncreaseIndentTitle": "Augmenter le retrait", + "DecreaseIndentTitle": "Diminuer le retrait", + "ThemeColorsGroupName": "Couleurs du thème", + "HighlightColorsGroupName": "Couleurs de surlignage", + "StandardColorsGroupName": "Couleurs standards", + "CustomColorsGroupName": "Couleurs personnalisées", + "ThemeColorDarker": "Thème plus foncé", + "ThemeColorDark": "Thème foncé", + "ThemeColorDarkAlt": "Couleur alternative du thème foncé", + "ThemeColorPrimary": "Première couleur du thème", + "ThemeColorSecondary": "Deuxième couleur du thème", + "ThemeColorTertiary": "Troisième couleur du thème", + "ThemeColorNeutralSecondary": "Couleur neutre secondaire", + "ThemeColorNeutralPrimaryAlt": "Alternative à la couleur neutre principale", + "ThemeColorNeutralPrimary": "Couleur neutre principale", + "ThemeColorNeutralDark": "Couleur neutre foncé", + "HighlightColorYellow": "Jaune", + "HighlightColorGreen": "Vert", + "HighlightColorAqua": "Cyan", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Bleu", + "HighlightColorRed": "Rouge", + "HighlightColorDarkblue": "Bleu foncé", + "HighlightColorTeal": "Bleu-vert", + "HighlightColorDarkgreen": "Vert foncé", + "HighlightColorPurple": "Violet", + "HighlightColorMaroon": "Marron", + "HighlightColorGold": "Or", + "HighlightColorDarkgrey": "Gris foncé", + "HighlightColorGrey": "Gris", + "HighlightColorBlack": "Noir", + "StandardColorDarkred": "Rouge foncé", + "StandardColorRed": "Rouge", + "StandardColorOrange": "Orange", + "StandardColorYellow": "Jaune", + "StandardColorLightgreen": "Vert clair", + "StandardColorGreen": "Vert", + "StandardColorLightblue": "Bleu clair", + "StandardColorBlue": "Bleu", + "StandardColorDarkblue": "Bleu foncé", + "StandardColorPurple": "Violet", + "DatePickerMonthLongJanuary": "Janvier", + "DatePickerMonthShortJanuary": "Janv.", + "DatePickerMonthLongFebruary": "Février", + "DatePickerMonthShortFebruary": "Févr.", + "DatePickerMonthLongMarch": "Mars", + "DatePickerMonthShortMarch": "Mars", + "DatePickerMonthLongApril": "Avril", + "DatePickerMonthShortApril": "Avr.", + "DatePickerMonthLongMay": "Mai", + "DatePickerMonthShortMay": "Mai", + "DatePickerMonthLongJune": "Juin", + "DatePickerMonthShortJune": "Juin", + "DatePickerMonthLongJuly": "Juillet", + "DatePickerMonthShortJuly": "Juill.", + "DatePickerMonthLongAugust": "Août", + "DatePickerMonthShortAugust": "Août", + "DatePickerMonthLongSeptember": "Septembre", + "DatePickerMonthShortSeptember": "Sept.", + "DatePickerMonthLongOctober": "Octobre", + "DatePickerMonthShortOctober": "Oct.", + "DatePickerMonthLongNovember": "Novembre", + "DatePickerMonthShortNovember": "Nov.", + "DatePickerMonthLongDecember": "Décembre", + "DatePickerMonthShortDecember": "Déc.", + "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", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Date", + "DateTimePickerTime": "Heure", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Valeur incorrecte pour l'heure", + "DateTimePickerMinuteValueInvalid": "Valeur de minute incorrecte", + "DateTimePickerSecondValueInvalid": "Deuxième valeur incorrecte", + "DateTimePickerTextErrorMessage": "Veuillez saisir une date valide", + "AddFileButtonLabel": "Ajouter un fichier", + "AddImageButtonLabel": "Ajouter une image", + "AriaCellValue": "{0} colonne, {1}", + "FilePickerCancelButtonLabel": "Annuler", + "CantValidateValidationMessage": "Nous n'avons pas pu vérifier ce lien. S'il vous plaît vérifier le lien et essayer à nouveau.", + "ChangeFileLinkLabel": "Changer le fichier", + "ChangeImageLinkLabel": "Changer l'image", + "ChooseFileLinkLabel": "Choisir un fichier", + "ChooseImageLinkLabel": "Choisir une image", + "CopyrightUrl": "https://www.microsoft.com/fr-FR/legal/copyright/default.aspx", + "CopyrightWarning": "Vous êtes responsable du respect des droits d'autrui, y compris du droit d'auteur.", + "CreativeCommonsMessage": "Ces résultats sont étiquetés avec des licences Creative Commons. Passez en revue les licences pour vous assurer de votre conformité.", + "DateFormat": "DD/MM/YYYY hh:mm A", + "DocumentLabelTemplate": "{0}, Document, {1} modifié, édité par {2}, Privé", + "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, Modifié le {1}, édité par {2}, {3} éléments, Privé", + "FromLinkLinkLabel": "À partir d'un lien", + "ImageAltText": ". image {0}", + "ImageAriaLabelTemplate": ". image {0}", + "ImageLayoutPlaceholderText": "Disposition", + "ImageSizePlaceholderText": "Taille de l'image", + "ItemChildCountField": "Nombre d'enfants", + "LayoutOptionAll": "Tous", + "LayoutOptionSquare": "Carré", + "LayoutOptionTall": "Grande", + "LayoutOptionWide": "Large", + "LearnMoreLink": "En savoir plus.", + "LicenseOptionAll": "Tous", + "LicenseOptionAny": "Creative Commons uniquement", + "LicensePlaceholderText": "Licence", + "LinkFileInstructions": "Coller un lien provenant de OneDrive Entreprise ou SharePoint Online", + "LinkHeader": "À partir d'un lien", + "LinkImageInstructions": "Coller le lien d'une image provenant de 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 en liste", + "ListLayoutListDescrition": "Afficher les éléments et les détails dans une liste", + "ListLayoutTile": "Affichage en mosaïque", + "ListLayoutTileDescription": "Afficher les éléments avec des aperçus en mosaïque", + "ListOptionsAlt": "Afficher les options. {0} sélectionnés .", + "ListOptionsTitle": "Ouvrez le menu des options d'affichage", + "Loading": "Chargement ...", + "ModifiedByField": "Modifié par", + "ModifiedField": "Date modifiée", + "NameField": "Nom", + "No": "non", + "ProvidedValueIsInvalid": "La valeur fournie est invalide", + "NoExternalLinksValidationMessage": "Nous prenons en charge uniquement les liens vers des fichiers de votre organisation (tenant).", + "NoImageValidationMessage": "Ce n'est pas un lien vers un type de fichier que nous prenons en charge. Vous pouvez uniquement créer un lien vers une image.", + "NoRecentFiles": "Aucun fichier récent", + "NoRecentFilesDescription": "Essayez de sélectionner un fichier sur votre site ou téléchargez-en un depuis votre appareil.", + "NoResultsBadEnglish": "*** Aucun résultat n'a été trouvé. Essayez de changer 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}, Modifié {2}, édité par {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Cet élément provient de votre OneDrive. Les fichiers et dossiers dans OneDrive sont privés, sauf si vous les partagez. Avez-vous partagé ce fichier avec les membres de votre site afin qu'ils puissent y accéder ?", + "OneDriveConfirmDialogTitle": "Nous vérifions ...", + "OneDriveEmptyFolderAlt": "Dossier vide", + "OneDriveEmptyFolderDescription": "Pour ajouter des fichiers, accédez à votre OneDrive. Vous pouvez également ajouter des fichiers à ce dossier à l'aide de l'application OneDrive de 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": "Ouvrir", + "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 (tenant)", + "PoweredByBing": "Propulsé par Bing", + "RecentDocumentsHeader": "Documents récents", + "RecentImagesHeader": "Images récentes", + "RecentLinkLabel": "Récent", + "SearchBoxPlaceholder": "Recherche Internet", + "SearchResultAlt": "Résultat d'image pour {0}.", + "SearchResultAriaLabel": "Appuyez sur entrée pour ouvrir l'image dans un nouvel onglet.", + "Selected": "Sélectionné", + "SharingField": "Partage", + "SharingPrivate": "Privé", + "SharingShared": "Partagé", + "SiteLinkLabel": "Site", + "SizeOptionAll": "Tous", + "SizeOptionExtraLarge": "Extra Large", + "SizeOptionLarge": "Grand", + "SizeOptionMedium": "Moyen", + "SizeOptionSmall": "Petit", + "SizeUnit": [ + "Octets", + "Ko", + "Mo", + "Go", + "To", + "Po", + "Eo", + "Zo", + "Yo" + ], + "SorryWebSearch": "Désolé, cette fonction n'est pas implémentée dans cet exemple, car elle nécessiterait une clé d'API Bing.", + "SortedAscending": "Trié de A à Z", + "SortedDescending": "Tri de Z à A", + "TypeAriaLabel": "Opérations sur les colonnes \"Type de fichier\", sélectionné pour trier \"Type de fichier\"", + "UploadFileHeader": "Importer un fichier", + "UploadImageHeader": "Importer une image", + "UploadLinkLabel": "Importer", + "WebSearchLinkLabel": "Recherche Internet", + "StockImagesLinkLabel": "Banque d'images", + "StockImagesHeader": "Banque d'images", + "Yes": "Oui", + "NewFolderNamePlaceholder": "Entrez le nom de votre dossier", + "FolderFilterBoxPlaceholder": "Filtrer les dossiers par nom", + "FolderExplorerLoading": "Chargement de dossiers...", + "FolderExplorerNoItems": "Ce dossier n’a pas de sous-dossiers.", + "NewFolderIncorrectSymbolsError": "Veuillez saisir un nom qui n’inclut aucun de ces caractères : \" * : < > ? / |.", + "SomethingWentWrong": "Quelque chose a mal tourné", + "SelectedLabel": "Sélectionné", + "SelectIcon": "Sélectionner une icône", + "TreeViewExpandTitle": "Développez cet élément", + "TreeViewCollapseTitle": "Réduire cet élément", + "CollectionDataEmptyFields": "Aucun champ n’a été fourni pour les données de collecte.", + "CollectionDataEmptyValue": "Aucune donnée dans votre collection.", + "CollectionAddRowButtonLabel": "Ajouter des données à la collection", + "CollectionDeleteRowButtonLabel": "Supprimer la ligne actuelle", + "CollectionSaveAndAddButtonLabel": "Ajouter et enregistrer", + "CollectionDataItemShowErrorsLabel": "Afficher les erreurs de ligne", + "CollectionDataItemFieldRequiredLabel": "Le champ est obligatoire.", + "CollectionDataItemMissingFields": "La collection Fields est vide !", + "InvalidUrlError": "L’URL fournie n’est pas valide", + "CollectionDataSearch": "Rechercher", + "MyTeamsLoadingMessage": "chargement de vos équipes", + "MyTeamsMessageError": "Quelque chose s’est mal passé lors du chargement de vos équipes, veuillez essayer plus tard ou actualiser le navigateur", + "MyTeamsNoTeamsMessage": "Vous n’avez pas d’équipes", + "MyTeamsTeamChannelPublicMessage": "Canaux publics", + "MyTeamsTeamChannelTypeMessage": "Canaux privés", + "TeamChannelPickerFontIconFavoriteText": "Favori", + "TeamChannelPickerFontIconPrivateChannelTitle": "Canal privé", + "TeamChannelPickerSugestionHeaderText": "Canaux d’équipe suggérés", + "TeamPickerButtonRemoveTitle": "enlever", + "TeamPickernoResultsFoundText": "Aucune équipe trouvée", + "TeamPickerSugestionsHeaderText": "Équipes suggérées", + "TeamsChannelPickerButtonRemoveTitle": "enlever", + "TeamsChannelPickerNoresultsFoundText": "Aucun canal trouvé", + "ViewMore": "Voir plus", + "DynamicFormLoading": "Chargement...", + "DynamicFormPleaseWait": "Veuillez patienter...", + "DynamicFormRequiredErrorMessage": "Vous ne pouvez pas laisser ce champ vide.", + "DynamicFormTermPanelTitle": "Sélectionner un terme", + "DynamicFormEnterURLPlaceholder": "Entrez une URL", + "DynamicFormEnterDescriptionPlaceholder": "Texte alternatif", + "customDisplayName": "Utilisez cet emplacement :", + "ListItemCommentDIalogDeleteSubText": "Êtes-vous sûr de vouloir supprimer ce commentaire ?", + "ListItemCommentsDialogDeleteTitle": "Confirmer la suppression du commentaire", + "ListItemCommentsLabel": "Commentaires", + "ListItemCommentsNoCommentsLabel": "Il n’y a pas de commentaires", + "OrgAssetsLinkLabel": "Votre organisation", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/it-it.ts b/src/loc/it-it.ts index 7f80c8f29..84f8b8d6e 100644 --- a/src/loc/it-it.ts +++ b/src/loc/it-it.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Pangrattato del sito web", - "ListViewGroupEmptyLabel": "Vuoto", - "WebPartTitlePlaceholder": "Titolo web part", - "WebPartTitleLabel": "Aggiungere un titolo", - "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} minuti fa {0} minuti fa", - "L_RelativeDateTime_XMinutesFutureIntervals": "N. 1 . . . . . . . . 2-", - "L_RelativeDateTime_XMinutesIntervals": "N. 1 . . . . . . . . 2-", - "L_RelativeDateTime_AboutAnHourFuture": "In circa un'ora", - "L_RelativeDateTime_AboutAnHour": "Circa un'ora fa", - "L_RelativeDateTime_Tomorrow": "Domani", - "L_RelativeDateTime_Yesterday": "Ieri", - "L_RelativeDateTime_TomorrowAndTime": "Domani al {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": "N. 1 . . . . . . . . 2-", - "L_RelativeDateTime_XHoursIntervals": "N. 1 . . . . . . . . 2-", - "L_RelativeDateTime_DayAndTime": "{0} {1}", - "L_RelativeDateTime_XDaysFuture": "{0} giorno da adesso {0} giorni tra ora", - "L_RelativeDateTime_XDays": "{0} giorno fa {0} giorni fa", - "L_RelativeDateTime_XDaysFutureIntervals": "N. 1 . . . . . . . . 2-", - "L_RelativeDateTime_XDaysIntervals": "N. 1 . . . . . . . . 2-", - "L_RelativeDateTime_Today": "Oggi" - }, - "SendEmailTo": "Inviare un messaggio di posta elettronica a {0}", - "StartChatWith": "Avviare una chat con {0}", - "Contact": "Contattare", - "UpdateProfile": "Aggiornare il profilo", - "TaxonomyPickerNoTerms": "Il set di termini non contiene termini", - "TaxonomyPickerExpandTitle": "Espandi questo set di termini", - "TaxonomyPickerMenuTermSet": "Menu per il set di termini", - "TaxonomyPickerInLabel": "Pollici", - "TaxonomyPickerTermSetLabel": "Set di termini", - "peoplePickerComponentTooltipMessage": "Selezione utenti", - "peoplePickerComponentErrorMessage": "Campo obbligatorio", - "peoplePickerSuggestionsHeaderText": "Persone suggerite", - "peoplePickerLoadingText": "Caricamento", - "PeoplePickerSearchText": "Recupero degli utenti", - "PeoplePickerGroupNotFound": "Impossibile trovare il gruppo.", - "genericNoResultsFoundText": "Nessun risultato trovato", - "ListItemPickerSelectValue": "Seleziona valore", - "ListItemAttachmentsActionDeleteIconTitle": "Elimina", - "ListItemAttachmentsactionDeleteTitle": "Elimina", - "ListItemAttachmentsfileDeletedMsg": "Il file {0} eliminato", - "ListItemAttachmentsfileDeleteError": "Errore nel file di eliminazione: {0}, motivo {1}", - "ListItemAttachmentserrorLoadAttachments": "Errore durante il caricamento dell'allegato della voce dell'elenco, motivo: {0}", - "ListItemAttachmentsconfirmDelete": "Sei sicuro di voler inviare l'allegato {0} al cestino del sito?", - "ListItemAttachmentsdialogTitle": "Allegato voce di elenco", - "ListItemAttachmentsdialogOKbuttonLabel": "Ok", - "ListItemAttachmentsdialogCancelButtonLabel": "Annulla", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Elimina", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Aggiungi allegato", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Aggiungi allegato", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Il file non {0} allegato, motivo: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Aggiungi allegato", - "ListItemAttachmentsloadingMessage": "Caricamento del file in corso...", - "ListItemAttachmentslPlaceHolderIconText": "Allegato voce di elenco", - "ListItemAttachmentslPlaceHolderDescription": "Si prega di aggiungi allegato", - "ListItemAttachmentslPlaceHolderButtonLabel": "Aggiungere", - "mapsErrorMessage": "Si è verificato un errore durante il caricamento della mappa", - "mapsLoadingText": "Caricamento", - "mapsSearchButtonText": "Ricerca", - "mapsTitlePrefix": "Mappa di", - "ListViewFilterLabel": "Filtrare l'elenco", - "HeaderNormalText": "Testo normale", - "HeaderH2": "Titolo 1", - "HeaderH3": "Titolo 2", - "HeaderH4": "Titolo 3", - "HeaderBlockQuote": "Quotazione pull", - "AlignLeft": "Allinea a sinistra", - "AlignCenter": "Centro", - "AlignRight": "Allinea a destra", - "AlignJustify": "Giustificare", - "ListBullet": "Elenco puntato", - "ListNumbered": "Elenco numerato", - "StyleTitle": "Stile", - "BoldTitle": "Grassetto (CTRL-B)", - "ItalicTitle": "Corsivo (CTRL-I)", - "UnderlineTitle": "Sottolineato (CTRL-U)", - "AlignTitle": "Allineare", - "ListTitle": "Elenco", - "LinkTitle": "Collegamento ipertestuale", - "MoreTitle": "Più", - "FormattingPaneTitle": "Formattazione del testo", - "CloseButton": "Vicino", - "InsertLinkTitle": "Inserisci collegamento", - "AddressFieldLabel": "Indirizzo", - "TextToDisplayLabel": "Testo da visualizzare", - "SaveButtonLabel": "Salvare", - "CancelButtonLabel": "Annulla", - "RemoveLinkLabel": "Rimuovi collegamento", - "ParagraphSectionTitle": "Paragrafo", - "HyperlinkSectionTitle": "Collegamento ipertestuale", - "UndoTitle": "Annulla (CTRL", - "RedoTitle": "Ripeti (CTRL-Y)", - "ClearFormattingTitle": "Cancella tutta la formattazione", - "FontStyleTitle": "Stile carattere", - "FontSizeTitle": "Dimensione del carattere", - "StrikethroughTitle": "Barrato", - "SuperscriptTitle": "Apice", - "SubscriptTitle": "Indice", - "FontColorLabel": "Colore carattere", - "AutomaticFontColor": "Automatico", - "HighlightColorLabel": "Colore evidenziazione", - "NoColorHighlightColor": "Nessun colore", - "IncreaseIndentTitle": "Aumenta rientro", - "DecreaseIndentTitle": "Riduci rientro", - "ThemeColorsGroupName": "Colori tema", - "HighlightColorsGroupName": "Evidenziare i colori", - "StandardColorsGroupName": "Colori standard", - "CustomColorsGroupName": "Colori personalizzati", - "ThemeColorDarker": "Tema più scuro", - "ThemeColorDark": "Tema scuro", - "ThemeColorDarkAlt": "Tema scuro alternativo", - "ThemeColorPrimary": "Tema primario", - "ThemeColorSecondary": "Tema secondario", - "ThemeColorTertiary": "Terziario neutro", - "ThemeColorNeutralSecondary": "Secondario neutro", - "ThemeColorNeutralPrimaryAlt": "Alternativa primaria neutra", - "ThemeColorNeutralPrimary": "Primario neutro", - "ThemeColorNeutralDark": "Scuro neutro", - "HighlightColorYellow": "Giallo", - "HighlightColorGreen": "Verde", - "HighlightColorAqua": "Acqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Blu", - "HighlightColorRed": "Rosso", - "HighlightColorDarkblue": "Blu scuro", - "HighlightColorTeal": "Color foglia di tè", - "HighlightColorDarkgreen": "Verde scuro", - "HighlightColorPurple": "Viola", - "HighlightColorMaroon": "Marrone", - "HighlightColorGold": "Oro", - "HighlightColorDarkgrey": "Grigio scuro", - "HighlightColorGrey": "Grigio", - "HighlightColorBlack": "Nero", - "StandardColorDarkred": "Rosso scuro", - "StandardColorRed": "Rosso", - "StandardColorOrange": "Arancione", - "StandardColorYellow": "Giallo", - "StandardColorLightgreen": "Verde chiaro", - "StandardColorGreen": "Verde", - "StandardColorLightblue": "Azzurro", - "StandardColorBlue": "Blu", - "StandardColorDarkblue": "Blu scuro", - "StandardColorPurple": "Viola", - "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": "Tue", - "DatePickerDayLongWednesday": "Mercoledì", - "DatePickerDayShortWednesday": "Mercoledì", - "DatePickerDayLongThursday": "Giovedì", - "DatePickerDayShortThursday": "Thu", - "DatePickerDayLongFriday": "Venerdì", - "DatePickerDayShortFriday": "Ven", - "DatePickerDayLongSaturday": "Sabato", - "DatePickerDayShortSaturday": "Sab", - "DatePickerGoToToday": "Oggi", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Data", - "DateTimePickerTime": "Tempo", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Valore orario errato", - "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 altrui, incluso il copyright.", - "CreativeCommonsMessage": "Questi risultati sono contrassegnati con licenze Creative Commons. Esaminare le licenze per assicurarsi di rispettare.", - "DateFormat": "MM/GG/AAAA hh:mm A", - "DocumentLabelTemplate": "{0}, Documento, {1} modificato, a cura di {2}, Privato", - "DocumentLibraries": "Raccolte documenti", - "EditedByNamePlate": "a cura 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}, elementi {3}, Privato", - "FromLinkLinkLabel": "Da un collegamento", - "ImageAltText": ". Immagine {0}", - "ImageAriaLabelTemplate": ". Immagine {0}", - "ImageLayoutPlaceholderText": "Layout", - "ImageSizePlaceholderText": "Dimensioni dell'immagine", - "ItemChildCountField": "Conteggio figli 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 collegamento", - "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 collegare solo un'immagine.", - "NoRecentFiles": "Nessun file recente", - "NoRecentFilesDescription": "Prova a selezionare un file dal tuo sito o a caricarne uno dal dispositivo.", - "NoResultsBadEnglish": "Non viene 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}, {2} modificato, 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 ccess esso?", - "OneDriveConfirmDialogTitle": "Sto solo controllando...", - "OneDriveEmptyFolderAlt": "Svuota cartella", - "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 la sorgente dell'immagine in una nuova scheda.", - "Selected": "Selezionato", - "SharingField": "Condivisione", - "SharingPrivate": "Privato", - "SharingShared": "condiviso", - "SiteLinkLabel": "Sito", - "SizeOptionAll": "Tutti", - "SizeOptionExtraLarge": "Extra Large", - "SizeOptionLarge": "Grande", - "SizeOptionMedium": "Medio", - "SizeOptionSmall": "Piccolo", - "SizeUnit": [ - "Byte", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Ad esempio", - "Yb" - ], - "SorryWebSearch": "Spiacenti, questa funzione non è implementata in questo esempio, perché richiederebbe una chiave API Bing.Softhis, this function isn't implemented in this sample, because it would require a Bing API key.", - "SortedAscending": "Ordinato dalla A alla z", - "SortedDescending": "Ordinato dalla z alla A", - "TypeAriaLabel": "Operazioni sulle colonne 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ì", - "SelectedLabel": "Selezionato", - "SelectIcon": "Seleziona icona", - "StockImagesLinkLabel": "Immagini Stock", - "StockImagesHeader": "Immagini Stock", - "OrgAssetsLinkLabel": "Tua organizzazione" - }; -}); + "Save": "Salvare", + "Cancel": "Annulla", + "SiteBreadcrumbLabel": "Pangrattato del sito web", + "ListViewGroupEmptyLabel": "Vuoto", + "WebPartTitlePlaceholder": "Titolo web part", + "WebPartTitleLabel": "Aggiungere un titolo", + "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} minuti fa {0} minuti fa", + "L_RelativeDateTime_XMinutesFutureIntervals": "N. 1 . . . . . . . . 2-", + "L_RelativeDateTime_XMinutesIntervals": "N. 1 . . . . . . . . 2-", + "L_RelativeDateTime_AboutAnHourFuture": "In circa un'ora", + "L_RelativeDateTime_AboutAnHour": "Circa un'ora fa", + "L_RelativeDateTime_Tomorrow": "Domani", + "L_RelativeDateTime_Yesterday": "Ieri", + "L_RelativeDateTime_TomorrowAndTime": "Domani al {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": "N. 1 . . . . . . . . 2-", + "L_RelativeDateTime_XHoursIntervals": "N. 1 . . . . . . . . 2-", + "L_RelativeDateTime_DayAndTime": "{0} {1}", + "L_RelativeDateTime_XDaysFuture": "{0} giorno da adesso {0} giorni tra ora", + "L_RelativeDateTime_XDays": "{0} giorno fa {0} giorni fa", + "L_RelativeDateTime_XDaysFutureIntervals": "N. 1 . . . . . . . . 2-", + "L_RelativeDateTime_XDaysIntervals": "N. 1 . . . . . . . . 2-", + "L_RelativeDateTime_Today": "Oggi" + }, + "SendEmailTo": "Inviare un messaggio di posta elettronica a {0}", + "StartChatWith": "Avviare una chat con {0}", + "Contact": "Contattare", + "UpdateProfile": "Aggiornare il profilo", + "TaxonomyPickerNoTerms": "Il set di termini non contiene termini", + "TaxonomyPickerExpandTitle": "Espandi questo set di termini", + "TaxonomyPickerMenuTermSet": "Menu per il set di termini", + "TaxonomyPickerInLabel": "Pollici", + "TaxonomyPickerTermSetLabel": "Set di termini", + "TaxonomyPickerTermsNotFound": "Impossibile trovare i termini selezionati successivi nell'archivio termini: {0}", + "TaxonomyPickerInvalidTerms": "Correggere i termini non validi: {0}", + "peoplePickerComponentTooltipMessage": "Selezione utenti", + "peoplePickerComponentErrorMessage": "Campo obbligatorio", + "peoplePickerSuggestionsHeaderText": "Persone suggerite", + "peoplePickerLoadingText": "Caricamento", + "PeoplePickerSearchText": "Recupero degli utenti", + "PeoplePickerGroupNotFound": "Impossibile trovare il gruppo.", + "genericNoResultsFoundText": "Nessun risultato trovato", + "ListItemPickerSelectValue": "Seleziona valore", + "ListItemAttachmentsActionDeleteIconTitle": "Elimina", + "ListItemAttachmentsactionDeleteTitle": "Elimina", + "ListItemAttachmentsfileDeletedMsg": "Il file {0} eliminato", + "ListItemAttachmentsfileDeleteError": "Errore nel file di eliminazione: {0}, motivo {1}", + "ListItemAttachmentserrorLoadAttachments": "Errore durante il caricamento dell'allegato della voce dell'elenco, motivo: {0}", + "ListItemAttachmentsconfirmDelete": "Sei sicuro di voler inviare l'allegato {0} al cestino del sito?", + "ListItemAttachmentsdialogTitle": "Allegato voce di elenco", + "ListItemAttachmentsdialogOKbuttonLabel": "Ok", + "ListItemAttachmentsdialogCancelButtonLabel": "Annulla", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Elimina", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Aggiungi allegato", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Aggiungi allegato", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Il file non {0} allegato, motivo: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Aggiungi allegato", + "ListItemAttachmentsloadingMessage": "Caricamento del file in corso...", + "ListItemAttachmentslPlaceHolderIconText": "Allegato voce di elenco", + "ListItemAttachmentslPlaceHolderDescription": "Si prega di aggiungi allegato", + "ListItemAttachmentslPlaceHolderButtonLabel": "Aggiungere", + "mapsErrorMessage": "Si è verificato un errore durante il caricamento della mappa", + "mapsLoadingText": "Caricamento", + "mapsSearchButtonText": "Ricerca", + "mapsTitlePrefix": "Mappa di", + "ListViewFilterLabel": "Filtrare l'elenco", + "HeaderNormalText": "Testo normale", + "HeaderH2": "Titolo 1", + "HeaderH3": "Titolo 2", + "HeaderH4": "Titolo 3", + "HeaderBlockQuote": "Quotazione pull", + "AlignLeft": "Allinea a sinistra", + "AlignCenter": "Centro", + "AlignRight": "Allinea a destra", + "AlignJustify": "Giustificare", + "ListBullet": "Elenco puntato", + "ListNumbered": "Elenco numerato", + "StyleTitle": "Stile", + "BoldTitle": "Grassetto (CTRL-B)", + "ItalicTitle": "Corsivo (CTRL-I)", + "UnderlineTitle": "Sottolineato (CTRL-U)", + "AlignTitle": "Allineare", + "ListTitle": "Elenco", + "LinkTitle": "Collegamento ipertestuale", + "ImageTitle": "Immagine", + "MoreTitle": "Più", + "FormattingPaneTitle": "Formattazione del testo", + "CloseButton": "Vicino", + "InsertLinkTitle": "Inserisci collegamento", + "InsertImageTitle": "Inserire un'immagine", + "AddressFieldLabel": "Indirizzo", + "TextToDisplayLabel": "Testo da visualizzare", + "SaveButtonLabel": "Salvare", + "CancelButtonLabel": "Annulla", + "RemoveLinkLabel": "Rimuovi collegamento", + "ParagraphSectionTitle": "Paragrafo", + "HyperlinkSectionTitle": "Collegamento ipertestuale", + "UndoTitle": "Annulla (CTRL", + "RedoTitle": "Ripeti (CTRL-Y)", + "ClearFormattingTitle": "Cancella tutta la formattazione", + "FontStyleTitle": "Stile carattere", + "FontSizeTitle": "Dimensione del carattere", + "StrikethroughTitle": "Barrato", + "SuperscriptTitle": "Apice", + "SubscriptTitle": "Indice", + "FontColorLabel": "Colore carattere", + "AutomaticFontColor": "Automatico", + "HighlightColorLabel": "Colore evidenziazione", + "NoColorHighlightColor": "Nessun colore", + "IncreaseIndentTitle": "Aumenta rientro", + "DecreaseIndentTitle": "Riduci rientro", + "ThemeColorsGroupName": "Colori tema", + "HighlightColorsGroupName": "Evidenziare i colori", + "StandardColorsGroupName": "Colori standard", + "CustomColorsGroupName": "Colori personalizzati", + "ThemeColorDarker": "Tema più scuro", + "ThemeColorDark": "Tema scuro", + "ThemeColorDarkAlt": "Tema scuro alternativo", + "ThemeColorPrimary": "Tema primario", + "ThemeColorSecondary": "Tema secondario", + "ThemeColorTertiary": "Terziario neutro", + "ThemeColorNeutralSecondary": "Secondario neutro", + "ThemeColorNeutralPrimaryAlt": "Alternativa primaria neutra", + "ThemeColorNeutralPrimary": "Primario neutro", + "ThemeColorNeutralDark": "Scuro neutro", + "HighlightColorYellow": "Giallo", + "HighlightColorGreen": "Verde", + "HighlightColorAqua": "Acqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Blu", + "HighlightColorRed": "Rosso", + "HighlightColorDarkblue": "Blu scuro", + "HighlightColorTeal": "Color foglia di tè", + "HighlightColorDarkgreen": "Verde scuro", + "HighlightColorPurple": "Viola", + "HighlightColorMaroon": "Marrone", + "HighlightColorGold": "Oro", + "HighlightColorDarkgrey": "Grigio scuro", + "HighlightColorGrey": "Grigio", + "HighlightColorBlack": "Nero", + "StandardColorDarkred": "Rosso scuro", + "StandardColorRed": "Rosso", + "StandardColorOrange": "Arancione", + "StandardColorYellow": "Giallo", + "StandardColorLightgreen": "Verde chiaro", + "StandardColorGreen": "Verde", + "StandardColorLightblue": "Azzurro", + "StandardColorBlue": "Blu", + "StandardColorDarkblue": "Blu scuro", + "StandardColorPurple": "Viola", + "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", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Data", + "DateTimePickerTime": "Tempo", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Valore orario errato", + "DateTimePickerMinuteValueInvalid": "Valore minuto non corretto", + "DateTimePickerSecondValueInvalid": "Secondo valore errato", + "DateTimePickerTextErrorMessage": "Immettere una data valida", + "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 altrui, incluso il copyright.", + "CreativeCommonsMessage": "Questi risultati sono contrassegnati con licenze Creative Commons. Esaminare le licenze per assicurarsi di rispettare.", + "DateFormat": "MM/GG/AAAA hh:mm A", + "DocumentLabelTemplate": "{0}, Documento, {1} modificato, a cura di {2}, Privato", + "DocumentLibraries": "Raccolte documenti", + "EditedByNamePlate": "a cura 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}, elementi {3}, Privato", + "FromLinkLinkLabel": "Da un collegamento", + "ImageAltText": ". Immagine {0}", + "ImageAriaLabelTemplate": ". Immagine {0}", + "ImageLayoutPlaceholderText": "Impaginazione", + "ImageSizePlaceholderText": "Dimensioni dell'immagine", + "ItemChildCountField": "Conteggio figli 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 collegamento", + "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 collegare solo un'immagine.", + "NoRecentFiles": "Nessun file recente", + "NoRecentFilesDescription": "Prova a selezionare un file dal tuo sito o a caricarne uno dal dispositivo.", + "NoResultsBadEnglish": "Non viene 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}, {2} modificato, 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 ccess esso?", + "OneDriveConfirmDialogTitle": "Sto solo controllando...", + "OneDriveEmptyFolderAlt": "Svuota cartella", + "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 la sorgente dell'immagine in una nuova scheda.", + "Selected": "Selezionato", + "SharingField": "Condivisione", + "SharingPrivate": "Privato", + "SharingShared": "condiviso", + "SiteLinkLabel": "Sito", + "SizeOptionAll": "Tutti", + "SizeOptionExtraLarge": "Extra Large", + "SizeOptionLarge": "Grande", + "SizeOptionMedium": "Medio", + "SizeOptionSmall": "Piccolo", + "SizeUnit": [ + "Byte", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Ad esempio", + "Yb" + ], + "SorryWebSearch": "Spiacenti, questa funzione non è implementata in questo esempio, perché richiederebbe una chiave API Bing.Softhis, this function isn't implemented in this sample, because it would require a Bing API key.", + "SortedAscending": "Ordinato dalla A alla z", + "SortedDescending": "Ordinato dalla z alla A", + "TypeAriaLabel": "Operazioni sulle colonne 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", + "StockImagesLinkLabel": "Immagini Stock", + "StockImagesHeader": "Immagini Stock", + "Yes": "Sì", + "NewFolderNamePlaceholder": "Immettere il nome della cartella", + "FolderFilterBoxPlaceholder": "Filtrare le cartelle per nome", + "FolderExplorerLoading": "Caricamento cartelle in file...", + "FolderExplorerNoItems": "Questa cartella non dispone di sottocartelle.", + "NewFolderIncorrectSymbolsError": "Immettere un nome che non includa nessuno di questi caratteri: \" * : < > ? / |.", + "SomethingWentWrong": "Qualcosa è andato storto", + "SelectedLabel": "Selezionato", + "SelectIcon": "Seleziona icona", + "TreeViewExpandTitle": "Espandere questo elemento", + "TreeViewCollapseTitle": "Comprimere questo elemento", + "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.", + "CollectionDataItemMissingFields": "La raccolta fields è vuota!", + "InvalidUrlError": "L'URL fornito non è valido", + "CollectionDataSearch": "Ricerca", + "MyTeamsLoadingMessage": "caricamento dei team", + "MyTeamsMessageError": "Qualcosa è andato storto durante il caricamento dei team, provare più tardi o aggiornare il browser", + "MyTeamsNoTeamsMessage": "Non hai squadre", + "MyTeamsTeamChannelPublicMessage": "Canali pubblici", + "MyTeamsTeamChannelTypeMessage": "Canali privati", + "TeamChannelPickerFontIconFavoriteText": "Favorito", + "TeamChannelPickerFontIconPrivateChannelTitle": "Canale privato", + "TeamChannelPickerSugestionHeaderText": "Canali del team suggeriti", + "TeamPickerButtonRemoveTitle": "togliere", + "TeamPickernoResultsFoundText": "Nessuna squadra trovata", + "TeamPickerSugestionsHeaderText": "Squadre suggerite", + "TeamsChannelPickerButtonRemoveTitle": "togliere", + "TeamsChannelPickerNoresultsFoundText": "Nessun canale trovato", + "ViewMore": "Guarda di più", + "DynamicFormLoading": "Caricamento...", + "DynamicFormPleaseWait": "Attendere prego...", + "DynamicFormRequiredErrorMessage": "Non puoi lasciare tutto vuoto.", + "DynamicFormTermPanelTitle": "Seleziona termine", + "DynamicFormEnterURLPlaceholder": "Immettere un URL", + "DynamicFormEnterDescriptionPlaceholder": "Testo alternativo", + "customDisplayName": "Utilizzare questa posizione:", + "ListItemCommentDIalogDeleteSubText": "Eliminare questo commento?", + "ListItemCommentsDialogDeleteTitle": "Conferma eliminazione commento", + "ListItemCommentsLabel": "Commenti", + "ListItemCommentsNoCommentsLabel": "Non ci sono commenti", + "OrgAssetsLinkLabel": "Tua organizzazione", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/ja-jp.ts b/src/loc/ja-jp.ts index 0ca8ff3f3..222f6f8b9 100644 --- a/src/loc/ja-jp.ts +++ b/src/loc/ja-jp.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "ウェブサイトの階層リンク", - "ListViewGroupEmptyLabel": "空", - "WebPartTitlePlaceholder": "Web パーツのタイトル", - "WebPartTitleLabel": "タイトルを追加する", - "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": "今日" - }, - "SendEmailTo": "{0}に電子メールを送信する", - "StartChatWith": "{0}とチャットを開始する", - "Contact": "連絡先", - "UpdateProfile": "プロフィールを更新する", - "TaxonomyPickerNoTerms": "用語セットに用語が含まれていません", - "TaxonomyPickerExpandTitle": "この用語セットを展開する", - "TaxonomyPickerMenuTermSet": "用語セットのメニュー", - "TaxonomyPickerInLabel": "インチ", - "TaxonomyPickerTermSetLabel": "用語セット", - "peoplePickerComponentTooltipMessage": "ユーザー選択ウィンドウ", - "peoplePickerComponentErrorMessage": "必須フィールド", - "peoplePickerSuggestionsHeaderText": "提案された人々", - "peoplePickerLoadingText": "読み込み", - "PeoplePickerSearchText": "ユーザーのフェッチ", - "PeoplePickerGroupNotFound": "グループが見つかりませんでした。", - "genericNoResultsFoundText": "結果が見つかりません", - "ListItemPickerSelectValue": "値の選択", - "ListItemAttachmentsActionDeleteIconTitle": "削除", - "ListItemAttachmentsactionDeleteTitle": "削除", - "ListItemAttachmentsfileDeletedMsg": "ファイル '{0}' は削除されました", - "ListItemAttachmentsfileDeleteError": "ファイルの削除中にエラーが発生しました: {0}。原因: {1}", - "ListItemAttachmentserrorLoadAttachments": "リスト アイテムの添付ファイルの読み込み中にエラーが発生しました。原因: {0}", - "ListItemAttachmentsconfirmDelete": "添付ファイルをサイトのごみ箱に{0}に送信しますか?", - "ListItemAttachmentsdialogTitle": "リスト アイテムの添付ファイル", - "ListItemAttachmentsdialogOKbuttonLabel": "OK", - "ListItemAttachmentsdialogCancelButtonLabel": "キャンセル", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "削除", - "ListItemAttachmentsuploadAttachmentDialogTitle": "添付ファイルの追加", - "ListItemAttachmentsuploadAttachmentButtonLabel": "添付ファイルの追加", - "ListItemAttachmentsuploadAttachmentErrorMsg": "ファイル '{0}' は添付されていません。原因: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "添付ファイルの追加", - "ListItemAttachmentsloadingMessage": "ファイルをアップロードしています...", - "ListItemAttachmentslPlaceHolderIconText": "リスト アイテムの添付ファイル", - "ListItemAttachmentslPlaceHolderDescription": "添付ファイルを追加してください", - "ListItemAttachmentslPlaceHolderButtonLabel": "追加", - "mapsErrorMessage": "マップの読み込み中にエラーが発生しました", - "mapsLoadingText": "読み込み", - "mapsSearchButtonText": "検索", - "mapsTitlePrefix": "地図", - "ListViewFilterLabel": "リストをフィルター処理する", - "HeaderNormalText": "標準テキスト", - "HeaderH2": "見出し 1", - "HeaderH3": "見出し 2", - "HeaderH4": "見出し 3", - "HeaderBlockQuote": "引用のプル", - "AlignLeft": "左揃え", - "AlignCenter": "中央揃え", - "AlignRight": "右揃え", - "AlignJustify": "両端揃え", - "ListBullet": "箇条書き", - "ListNumbered": "番号付きリスト", - "StyleTitle": "スタイル", - "BoldTitle": "太字 (Ctrl+B)", - "ItalicTitle": "斜体 (Ctrl+I)", - "UnderlineTitle": "下線 (Ctrl+U)", - "AlignTitle": "配置", - "ListTitle": "リスト", - "LinkTitle": "ハイパーリンク", - "MoreTitle": "もっとその", - "FormattingPaneTitle": "テキストの書式設定", - "CloseButton": "閉じる", - "InsertLinkTitle": "リンクの挿入", - "AddressFieldLabel": "アドレス", - "TextToDisplayLabel": "表示するテキスト", - "SaveButtonLabel": "保存", - "CancelButtonLabel": "キャンセル", - "RemoveLinkLabel": "リンクの削除", - "ParagraphSectionTitle": "段落", - "HyperlinkSectionTitle": "ハイパーリンク", - "UndoTitle": "元に戻す (Ctrl+Z)", - "RedoTitle": "やり直し (Ctrl+Y)", - "ClearFormattingTitle": "すべての書式をクリアする", - "FontStyleTitle": "フォント スタイル", - "FontSizeTitle": "フォント サイズ", - "StrikethroughTitle": "取り消し線", - "SuperscriptTitle": "上付き文字", - "SubscriptTitle": "下付き文字", - "FontColorLabel": "フォントの色", - "AutomaticFontColor": "自動", - "HighlightColorLabel": "強調表示色", - "NoColorHighlightColor": "色なし", - "IncreaseIndentTitle": "インデントを増やす", - "DecreaseIndentTitle": "インデントを減らす", - "ThemeColorsGroupName": "テーマの色", - "HighlightColorsGroupName": "ハイライト色", - "StandardColorsGroupName": "標準色", - "CustomColorsGroupName": "ユーザー設定の色", - "ThemeColorDarker": "より暗いテーマ", - "ThemeColorDark": "暗いテーマ", - "ThemeColorDarkAlt": "代替の暗いテーマ", - "ThemeColorPrimary": "プライマリ テーマ", - "ThemeColorSecondary": "セカンダリ テーマ", - "ThemeColorTertiary": "ターシャリ テーマ", - "ThemeColorNeutralSecondary": "ニュートラルなセカンダリ テーマ", - "ThemeColorNeutralPrimaryAlt": "代替のニュートラルなプライマリ テーマ", - "ThemeColorNeutralPrimary": "ニュートラルなプライマリ テーマ", - "ThemeColorNeutralDark": "ニュートラルな暗いテーマ", - "HighlightColorYellow": "黄色", - "HighlightColorGreen": "緑", - "HighlightColorAqua": "アクア", - "HighlightColorMagenta": "マゼンタ", - "HighlightColorBlue": "青", - "HighlightColorRed": "赤", - "HighlightColorDarkblue": "ダークブルー", - "HighlightColorTeal": "ティール", - "HighlightColorDarkgreen": "濃い緑", - "HighlightColorPurple": "紫", - "HighlightColorMaroon": "マルーン", - "HighlightColorGold": "金", - "HighlightColorDarkgrey": "ダークグレー", - "HighlightColorGrey": "灰色", - "HighlightColorBlack": "黒", - "StandardColorDarkred": "濃い赤", - "StandardColorRed": "赤", - "StandardColorOrange": "オレンジ", - "StandardColorYellow": "黄色", - "StandardColorLightgreen": "ライトグリーン", - "StandardColorGreen": "緑", - "StandardColorLightblue": "ライトブルー", - "StandardColorBlue": "青", - "StandardColorDarkblue": "ダークブルー", - "StandardColorPurple": "紫", - "DatePickerMonthLongJanuary": "1 月", - "DatePickerMonthShortJanuary": "1 月", - "DatePickerMonthLongFebruary": "2 月", - "DatePickerMonthShortFebruary": "2 月", - "DatePickerMonthLongMarch": "3 月", - "DatePickerMonthShortMarch": "3 月", - "DatePickerMonthLongApril": "4 月", - "DatePickerMonthShortApril": "4 月", - "DatePickerMonthLongMay": "5 月", - "DatePickerMonthShortMay": "5 月", - "DatePickerMonthLongJune": "6 月", - "DatePickerMonthShortJune": "6 月", - "DatePickerMonthLongJuly": "7 月", - "DatePickerMonthShortJuly": "7 月", - "DatePickerMonthLongAugust": "8 月", - "DatePickerMonthShortAugust": "8 月", - "DatePickerMonthLongSeptember": "9 月", - "DatePickerMonthShortSeptember": "9 月", - "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": "今日", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "日付", - "DateTimePickerTime": "時間", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "時間の値が正しくありません", - "AddFileButtonLabel": "ファイルの追加", - "AddImageButtonLabel": "画像の追加", - "AriaCellValue": "{0}列, {1}", - "FilePickerCancelButtonLabel": "キャンセル", - "CantValidateValidationMessage": "このリンクを確認できませんでした。リンクを確認して、やり直してください。", - "ChangeFileLinkLabel": "ファイルの変更", - "ChangeImageLinkLabel": "画像の変更", - "ChooseFileLinkLabel": "ファイルの選択", - "ChooseImageLinkLabel": "画像の選択", - "CopyrightUrl": "https://www.microsoft.com/ja-JP/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": "OneDrive for Bussiness または SharePoint Online のファイルへのリンクを貼り付ける", - "LinkHeader": "リンクから", - "LinkImageInstructions": "OneDrive for Bussiness または 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": "Bing による提供", - "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", - "ZB", - "YB" - ], - "SorryWebSearch": "この関数は、Bing API キーを必要とするため、このサンプルでは実装されていません。", - "SortedAscending": "並べ替え A ~ Z", - "SortedDescending": "並べ替えられた Z から A", - "TypeAriaLabel": "ファイルの種類の列操作、ファイルの種類で並べ替えるを押す", - "UploadFileHeader": "ファイルのアップロード", - "UploadImageHeader": "画像のアップロード", - "UploadLinkLabel": "アップロード", - "WebSearchLinkLabel": "ウェブ検索", - "Yes": "はい", - "SelectedLabel": "選択された", - "SelectIcon": "アイコンの選択", - "StockImagesLinkLabel": "ストック画像", - "StockImagesHeader": "ストック画像", - "OrgAssetsLinkLabel": "あなたの組織" - }; -}); + "Save": "セーブ", + "Cancel": "キャンセル", + "SiteBreadcrumbLabel": "ウェブサイトの階層リンク", + "ListViewGroupEmptyLabel": "空", + "WebPartTitlePlaceholder": "Web パーツのタイトル", + "WebPartTitleLabel": "タイトルを追加する", + "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": "今日" + }, + "SendEmailTo": "{0}に電子メールを送信する", + "StartChatWith": "{0}とチャットを開始する", + "Contact": "連絡先", + "UpdateProfile": "プロフィールを更新する", + "TaxonomyPickerNoTerms": "用語セットに用語が含まれていません", + "TaxonomyPickerExpandTitle": "この用語セットを展開する", + "TaxonomyPickerMenuTermSet": "用語セットのメニュー", + "TaxonomyPickerInLabel": "インチ", + "TaxonomyPickerTermSetLabel": "用語セット", + "TaxonomyPickerTermsNotFound": "次に選択された用語が用語ストアで見つかりませんでした: {0}", + "TaxonomyPickerInvalidTerms": "無効な用語を修正してください: {0}", + "peoplePickerComponentTooltipMessage": "ユーザー選択ウィンドウ", + "peoplePickerComponentErrorMessage": "必須フィールド", + "peoplePickerSuggestionsHeaderText": "提案された人々", + "peoplePickerLoadingText": "読み込み", + "PeoplePickerSearchText": "ユーザーのフェッチ", + "PeoplePickerGroupNotFound": "グループが見つかりませんでした。", + "genericNoResultsFoundText": "結果が見つかりません", + "ListItemPickerSelectValue": "値の選択", + "ListItemAttachmentsActionDeleteIconTitle": "削除", + "ListItemAttachmentsactionDeleteTitle": "削除", + "ListItemAttachmentsfileDeletedMsg": "ファイル '{0}' は削除されました", + "ListItemAttachmentsfileDeleteError": "ファイルの削除中にエラーが発生しました: {0}。原因: {1}", + "ListItemAttachmentserrorLoadAttachments": "リスト アイテムの添付ファイルの読み込み中にエラーが発生しました。原因: {0}", + "ListItemAttachmentsconfirmDelete": "添付ファイルをサイトのごみ箱に{0}に送信しますか?", + "ListItemAttachmentsdialogTitle": "リスト アイテムの添付ファイル", + "ListItemAttachmentsdialogOKbuttonLabel": "わかりました", + "ListItemAttachmentsdialogCancelButtonLabel": "キャンセル", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "削除", + "ListItemAttachmentsuploadAttachmentDialogTitle": "添付ファイルの追加", + "ListItemAttachmentsuploadAttachmentButtonLabel": "添付ファイルの追加", + "ListItemAttachmentsuploadAttachmentErrorMsg": "ファイル '{0}' は添付されていません。原因: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "添付ファイルの追加", + "ListItemAttachmentsloadingMessage": "ファイルをアップロードしています...", + "ListItemAttachmentslPlaceHolderIconText": "リスト アイテムの添付ファイル", + "ListItemAttachmentslPlaceHolderDescription": "添付ファイルを追加してください", + "ListItemAttachmentslPlaceHolderButtonLabel": "追加", + "mapsErrorMessage": "マップの読み込み中にエラーが発生しました", + "mapsLoadingText": "読み込み", + "mapsSearchButtonText": "検索", + "mapsTitlePrefix": "地図", + "ListViewFilterLabel": "リストをフィルター処理する", + "HeaderNormalText": "標準テキスト", + "HeaderH2": "見出し 1", + "HeaderH3": "見出し 2", + "HeaderH4": "見出し 3", + "HeaderBlockQuote": "引用のプル", + "AlignLeft": "左揃え", + "AlignCenter": "中央揃え", + "AlignRight": "右揃え", + "AlignJustify": "両端揃え", + "ListBullet": "箇条書き", + "ListNumbered": "番号付きリスト", + "StyleTitle": "スタイル", + "BoldTitle": "太字 (Ctrl+B)", + "ItalicTitle": "斜体 (Ctrl+I)", + "UnderlineTitle": "下線 (Ctrl+U)", + "AlignTitle": "配置", + "ListTitle": "リスト", + "LinkTitle": "ハイパーリンク", + "ImageTitle": "画像", + "MoreTitle": "もっとその", + "FormattingPaneTitle": "テキストの書式設定", + "CloseButton": "閉じる", + "InsertLinkTitle": "リンクの挿入", + "InsertImageTitle": "画像を挿入", + "AddressFieldLabel": "アドレス", + "TextToDisplayLabel": "表示するテキスト", + "SaveButtonLabel": "保存", + "CancelButtonLabel": "キャンセル", + "RemoveLinkLabel": "リンクの削除", + "ParagraphSectionTitle": "段落", + "HyperlinkSectionTitle": "ハイパーリンク", + "UndoTitle": "元に戻す (Ctrl+Z)", + "RedoTitle": "やり直し (Ctrl+Y)", + "ClearFormattingTitle": "すべての書式をクリアする", + "FontStyleTitle": "フォント スタイル", + "FontSizeTitle": "フォント サイズ", + "StrikethroughTitle": "取り消し線", + "SuperscriptTitle": "上付き文字", + "SubscriptTitle": "下付き文字", + "FontColorLabel": "フォントの色", + "AutomaticFontColor": "自動", + "HighlightColorLabel": "強調表示色", + "NoColorHighlightColor": "色なし", + "IncreaseIndentTitle": "インデントを増やす", + "DecreaseIndentTitle": "インデントを減らす", + "ThemeColorsGroupName": "テーマの色", + "HighlightColorsGroupName": "ハイライト色", + "StandardColorsGroupName": "標準色", + "CustomColorsGroupName": "ユーザー設定の色", + "ThemeColorDarker": "より暗いテーマ", + "ThemeColorDark": "暗いテーマ", + "ThemeColorDarkAlt": "代替の暗いテーマ", + "ThemeColorPrimary": "プライマリ テーマ", + "ThemeColorSecondary": "セカンダリ テーマ", + "ThemeColorTertiary": "ターシャリ テーマ", + "ThemeColorNeutralSecondary": "ニュートラルなセカンダリ テーマ", + "ThemeColorNeutralPrimaryAlt": "代替のニュートラルなプライマリ テーマ", + "ThemeColorNeutralPrimary": "ニュートラルなプライマリ テーマ", + "ThemeColorNeutralDark": "ニュートラルな暗いテーマ", + "HighlightColorYellow": "黄色", + "HighlightColorGreen": "緑", + "HighlightColorAqua": "アクア", + "HighlightColorMagenta": "マゼンタ", + "HighlightColorBlue": "青", + "HighlightColorRed": "赤", + "HighlightColorDarkblue": "ダークブルー", + "HighlightColorTeal": "ティール", + "HighlightColorDarkgreen": "濃い緑", + "HighlightColorPurple": "紫", + "HighlightColorMaroon": "マルーン", + "HighlightColorGold": "金", + "HighlightColorDarkgrey": "ダークグレー", + "HighlightColorGrey": "灰色", + "HighlightColorBlack": "黒", + "StandardColorDarkred": "濃い赤", + "StandardColorRed": "赤", + "StandardColorOrange": "オレンジ", + "StandardColorYellow": "黄色", + "StandardColorLightgreen": "ライトグリーン", + "StandardColorGreen": "緑", + "StandardColorLightblue": "ライトブルー", + "StandardColorBlue": "青", + "StandardColorDarkblue": "ダークブルー", + "StandardColorPurple": "紫", + "DatePickerMonthLongJanuary": "1 月", + "DatePickerMonthShortJanuary": "1 月", + "DatePickerMonthLongFebruary": "2 月", + "DatePickerMonthShortFebruary": "2 月", + "DatePickerMonthLongMarch": "3 月", + "DatePickerMonthShortMarch": "3 月", + "DatePickerMonthLongApril": "4 月", + "DatePickerMonthShortApril": "4 月", + "DatePickerMonthLongMay": "5 月", + "DatePickerMonthShortMay": "5 月", + "DatePickerMonthLongJune": "6 月", + "DatePickerMonthShortJune": "6 月", + "DatePickerMonthLongJuly": "7 月", + "DatePickerMonthShortJuly": "7 月", + "DatePickerMonthLongAugust": "8 月", + "DatePickerMonthShortAugust": "8 月", + "DatePickerMonthLongSeptember": "9 月", + "DatePickerMonthShortSeptember": "9 月", + "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": "今日", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "日付", + "DateTimePickerTime": "時間", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "時間の値が正しくありません", + "DateTimePickerMinuteValueInvalid": "正しくない分の値", + "DateTimePickerSecondValueInvalid": "2 番目の値が正しくありません", + "DateTimePickerTextErrorMessage": "有効な日付を入力してください", + "AddFileButtonLabel": "ファイルの追加", + "AddImageButtonLabel": "画像の追加", + "AriaCellValue": "{0}列, {1}", + "FilePickerCancelButtonLabel": "キャンセル", + "CantValidateValidationMessage": "このリンクを確認できませんでした。リンクを確認して、やり直してください。", + "ChangeFileLinkLabel": "ファイルの変更", + "ChangeImageLinkLabel": "画像の変更", + "ChooseFileLinkLabel": "ファイルの選択", + "ChooseImageLinkLabel": "画像の選択", + "CopyrightUrl": "https://www.microsoft.com/ja-JP/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": "OneDrive for Bussiness または SharePoint Online のファイルへのリンクを貼り付ける", + "LinkHeader": "リンクから", + "LinkImageInstructions": "OneDrive for Bussiness または 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": "Bing による提供", + "RecentDocumentsHeader": "最近使用したドキュメント", + "RecentImagesHeader": "最近の画像", + "RecentLinkLabel": "最近", + "SearchBoxPlaceholder": "ウェブ検索", + "SearchResultAlt": "{0}のイメージ結果。", + "SearchResultAriaLabel": "Enter キーを押して、イメージ ソースを新しいタブで開きます。", + "Selected": "選択", + "SharingField": "共有", + "SharingPrivate": "プライベート", + "SharingShared": "共有", + "SiteLinkLabel": "サイト", + "SizeOptionAll": "すべての", + "SizeOptionExtraLarge": "特大", + "SizeOptionLarge": "大きな", + "SizeOptionMedium": "中間の", + "SizeOptionSmall": "小さな", + "SizeUnit": [ + "バイト", + "KB", + "MB", + "GB", + "結核", + "PB", + "犬", + "例えば", + "YB" + ], + "SorryWebSearch": "この関数は、Bing API キーを必要とするため、このサンプルでは実装されていません。", + "SortedAscending": "並べ替え A ~ Z", + "SortedDescending": "並べ替えられた Z から A", + "TypeAriaLabel": "ファイルの種類の列操作、ファイルの種類で並べ替えるを押す", + "UploadFileHeader": "ファイルのアップロード", + "UploadImageHeader": "画像のアップロード", + "UploadLinkLabel": "アップロード", + "WebSearchLinkLabel": "ウェブ検索", + "StockImagesLinkLabel": "ストック画像", + "StockImagesHeader": "ストック画像", + "Yes": "はい", + "NewFolderNamePlaceholder": "フォルダ名を入力してください", + "FolderFilterBoxPlaceholder": "フォルダを名前でフィルタする", + "FolderExplorerLoading": "フォルダーを読み込んでいます。", + "FolderExplorerNoItems": "このフォルダにはサブフォルダがありません。", + "NewFolderIncorrectSymbolsError": "次の文字を含まない名前を入力してください: \" * : < >?/ |.", + "SomethingWentWrong": "何かがうまくいかなかった", + "SelectedLabel": "選択された", + "SelectIcon": "アイコンの選択", + "TreeViewExpandTitle": "このアイテムを展開します", + "TreeViewCollapseTitle": "このアイテムを折りたたむ", + "CollectionDataEmptyFields": "コレクション データにフィールドが指定されていません。", + "CollectionDataEmptyValue": "コレクションにデータがありません。", + "CollectionAddRowButtonLabel": "コレクションにデータを追加する", + "CollectionDeleteRowButtonLabel": "現在の行を削除する", + "CollectionSaveAndAddButtonLabel": "追加と保存", + "CollectionDataItemShowErrorsLabel": "行エラーの表示", + "CollectionDataItemFieldRequiredLabel": "フィールドは必須です。", + "CollectionDataItemMissingFields": "フィールドコレクションが空です!", + "InvalidUrlError": "指定された URL は無効です", + "CollectionDataSearch": "捜索", + "MyTeamsLoadingMessage": "チームの読み込み", + "MyTeamsMessageError": "あなたのチームをロード中に何かが間違っていた、後で試すか、ブラウザをリフレッシュしてください", + "MyTeamsNoTeamsMessage": "あなたはチームを持っていません", + "MyTeamsTeamChannelPublicMessage": "パブリック チャネル", + "MyTeamsTeamChannelTypeMessage": "プライベートチャンネル", + "TeamChannelPickerFontIconFavoriteText": "お気に入り", + "TeamChannelPickerFontIconPrivateChannelTitle": "プライベートチャンネル", + "TeamChannelPickerSugestionHeaderText": "推奨されるチーム チャネル", + "TeamPickerButtonRemoveTitle": "取り去る", + "TeamPickernoResultsFoundText": "チームが見つかりません", + "TeamPickerSugestionsHeaderText": "推奨されるチーム", + "TeamsChannelPickerButtonRemoveTitle": "取り去る", + "TeamsChannelPickerNoresultsFoundText": "チャネルが見つかりません", + "ViewMore": "もっと見る", + "DynamicFormLoading": "積載。。。", + "DynamicFormPleaseWait": "お待ちください。。。", + "DynamicFormRequiredErrorMessage": "この空白のままにすることはできません。", + "DynamicFormTermPanelTitle": "用語の選択", + "DynamicFormEnterURLPlaceholder": "URL を入力する", + "DynamicFormEnterDescriptionPlaceholder": "代替テキスト", + "customDisplayName": "この場所を使用します。", + "ListItemCommentDIalogDeleteSubText": "このコメントを削除しますか?", + "ListItemCommentsDialogDeleteTitle": "コメントの削除の確認", + "ListItemCommentsLabel": "コメント", + "ListItemCommentsNoCommentsLabel": "コメントはありません", + "OrgAssetsLinkLabel": "あなたの組織", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/lt-lt.ts b/src/loc/lt-lt.ts index 2d9d5bbcb..377ad4401 100644 --- a/src/loc/lt-lt.ts +++ b/src/loc/lt-lt.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Svetainės navigacijos grandinė", - "ListViewGroupEmptyLabel": "Nenurodyta", - "WebPartTitlePlaceholder": "Puslapio dalies antraštė", - "WebPartTitleLabel": "Pridėti antraštę", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "po kelių sekundžių", - "L_RelativeDateTime_AFewSeconds": "prieš kelias sekundes", - "L_RelativeDateTime_AboutAMinuteFuture": "maždaug po minutės", - "L_RelativeDateTime_AboutAMinute": "beveik prieš minutę", - "L_RelativeDateTime_XMinutesFuture": "po {0} min.", - "L_RelativeDateTime_XMinutes": "prieš {0} min.", - "L_RelativeDateTime_XMinutesFutureIntervals": "0-", - "L_RelativeDateTime_XMinutesIntervals": "0-", - "L_RelativeDateTime_AboutAnHourFuture": "maždaug po valandos", - "L_RelativeDateTime_AboutAnHour": "beveik prieš valandą", - "L_RelativeDateTime_Tomorrow": "rytoj", - "L_RelativeDateTime_Yesterday": "vakar", - "L_RelativeDateTime_TomorrowAndTime": "rytoj, {0}", - "L_RelativeDateTime_YesterdayAndTime": "vakar, {0}", - "L_RelativeDateTime_XHoursFuture": "po {0} val.", - "L_RelativeDateTime_XHours": "prieš {0} val.", - "L_RelativeDateTime_XHoursFutureIntervals": "0-", - "L_RelativeDateTime_XHoursIntervals": "0-", - "L_RelativeDateTime_DayAndTime": "{0}, {1}", - "L_RelativeDateTime_XDaysFuture": "po {0} d.", - "L_RelativeDateTime_XDays": "prieš {0} d.", - "L_RelativeDateTime_XDaysFutureIntervals": "0-", - "L_RelativeDateTime_XDaysIntervals": "0-", - "L_RelativeDateTime_Today": "šiandien" - }, - "SendEmailTo": "Siųsti el. laišką {0}", - "StartChatWith": "Pradėti pokalbį su {0}", - "Contact": "Kontaktas", - "UpdateProfile": "Atnaujinti profilį", - "TaxonomyPickerNoTerms": "Terminų rinkinys tuščias", - "TaxonomyPickerExpandTitle": "Išskleisti terminų rinkinį", - "TaxonomyPickerMenuTermSet": "Terminų rinkinio meniu", - "TaxonomyPickerInLabel": "", - "TaxonomyPickerTermSetLabel": "Terminų rinkinys", - "peoplePickerComponentTooltipMessage": "Pasirinkite naudotojus", - "peoplePickerComponentErrorMessage": "Privalomas laukas", - "peoplePickerSuggestionsHeaderText": "Pasiūlymai", - "peoplePickerLoadingText": "Įkeliama", - "PeoplePickerSearchText": "Ieškoma naudotojų", - "PeoplePickerGroupNotFound": "Grupės nepavyko rasti.", - "genericNoResultsFoundText": "Rezultatų nėra", - "ListItemPickerSelectValue": "Pasirinkite reikšmę", - "ListItemAttachmentsActionDeleteIconTitle": "Naikinti", - "ListItemAttachmentsactionDeleteTitle": "Naikinti", - "ListItemAttachmentsfileDeletedMsg": "Failas „{0}“ panaikintas", - "ListItemAttachmentsfileDeleteError": "Klaida naikinant failą „{0}“: {1}", - "ListItemAttachmentserrorLoadAttachments": "Nepavyko įkelti elemento priedų infomacijos: {0}", - "ListItemAttachmentsconfirmDelete": "Ar tikrai norite priedą „{0}“ siųsti į svetainės šiukšlinę?", - "ListItemAttachmentsdialogTitle": "Elemento priedai", - "ListItemAttachmentsdialogOKbuttonLabel": "Gerai", - "ListItemAttachmentsdialogCancelButtonLabel": "Atšaukti", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Naikinti", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Įkelti priedą", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Įkelti priedą", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Failo „{0}“ įkelti nepavyko: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Įkelti priedą", - "ListItemAttachmentsloadingMessage": "Failas siunčiamas...", - "ListItemAttachmentslPlaceHolderIconText": "Elemento priedai", - "ListItemAttachmentslPlaceHolderDescription": "Įkelkite elemento priedų", - "ListItemAttachmentslPlaceHolderButtonLabel": "Pridėti", - "mapsErrorMessage": "Įkeliant žemėlapį įvyko klaida", - "mapsLoadingText": "Įkeliama", - "mapsSearchButtonText": "Paieška", - "mapsTitlePrefix": "Žemėlapis", - "ListViewFilterLabel": "Filtruoti", - "HeaderNormalText": "Paprastas tekstas", - "HeaderH2": "1 antraštė", - "HeaderH3": "2 antraštė", - "HeaderH4": "3 antraštė", - "HeaderBlockQuote": "Dėmesį atkreipianti citata", - "AlignLeft": "Lygiuoti kairėje", - "AlignCenter": "Centre", - "AlignRight": "Lygiuoti dešinėje", - "AlignJustify": "Abipusė lygiuotė", - "ListBullet": "Sąrašas su ženkleliais", - "ListNumbered": "Numeruotas sąrašas", - "StyleTitle": "Stilius", - "BoldTitle": "Paryškintasis (Ctrl+B)", - "ItalicTitle": "Pasvirasis (Ctrl+I)", - "UnderlineTitle": "Pabrauktasis (Ctrl+U)", - "AlignTitle": "Lygiuotė", - "ListTitle": "Sąrašas", - "LinkTitle": "Hipersaitas", - "MoreTitle": "Daugiau", - "FormattingPaneTitle": "Teksto formatavimas", - "CloseButton": "Uždaryti", - "InsertLinkTitle": "Įterpti saitą", - "AddressFieldLabel": "Adresas", - "TextToDisplayLabel": "Rodytinas tekstas", - "SaveButtonLabel": "Įrašyti", - "CancelButtonLabel": "Atšaukti", - "RemoveLinkLabel": "Šalinti saitą", - "ParagraphSectionTitle": "Pastraipa", - "HyperlinkSectionTitle": "Hipersaitas", - "UndoTitle": "Anuliuoti (Ctrl+Z)", - "RedoTitle": "Perdaryti (Ctrl+Y)", - "ClearFormattingTitle": "Valyti visą formatavimą", - "FontStyleTitle": "Šrifto stilius", - "FontSizeTitle": "Šrifto dydis", - "StrikethroughTitle": "Perbraukimas", - "SuperscriptTitle": "Viršutinis indeksas", - "SubscriptTitle": "Apatinis indeksas", - "FontColorLabel": "Šrifto spalva", - "AutomaticFontColor": "Automatinė", - "HighlightColorLabel": "Pažymėjimo spalva", - "NoColorHighlightColor": "Be spalvų", - "IncreaseIndentTitle": "Didinti įtrauką", - "DecreaseIndentTitle": "Mažinti įtrauką", - "ThemeColorsGroupName": "Temos spalvos", - "HighlightColorsGroupName": "Paryškinimo spalvos", - "StandardColorsGroupName": "Standartinės spalvos", - "CustomColorsGroupName": "Pasirinktinės spalvos", - "ThemeColorDarker": "Tamsesnė tema", - "ThemeColorDark": "Tamsi tema", - "ThemeColorDarkAlt": "Alternatyvi tamsi tema", - "ThemeColorPrimary": "Pirminė tema", - "ThemeColorSecondary": "Antrinė tema", - "ThemeColorTertiary": "Tretinė tema", - "ThemeColorNeutralSecondary": "Neutrali antrinė", - "ThemeColorNeutralPrimaryAlt": "Alternatyvi neutrali pirminė", - "ThemeColorNeutralPrimary": "Neutrali pirminė", - "ThemeColorNeutralDark": "Neutrali tamsi", - "HighlightColorYellow": "Geltona", - "HighlightColorGreen": "Žalia", - "HighlightColorAqua": "Melsvai žalsva", - "HighlightColorMagenta": "Purpurinė", - "HighlightColorBlue": "Mėlyna", - "HighlightColorRed": "Raudona", - "HighlightColorDarkblue": "Tamsiai mėlyna", - "HighlightColorTeal": "Žalsvai mėlyna", - "HighlightColorDarkgreen": "Tamsiai žalia", - "HighlightColorPurple": "Violetinė", - "HighlightColorMaroon": "Kaštoninė", - "HighlightColorGold": "Auksas", - "HighlightColorDarkgrey": "Tamsiai pilka", - "HighlightColorGrey": "Pilka", - "HighlightColorBlack": "Juoda", - "StandardColorDarkred": "Tamsiai raudona", - "StandardColorRed": "Raudona", - "StandardColorOrange": "Oranžinė", - "StandardColorYellow": "Geltona", - "StandardColorLightgreen": "Šviesiai žalia", - "StandardColorGreen": "Žalia", - "StandardColorLightblue": "Šviesiai mėlyna", - "StandardColorBlue": "Mėlyna", - "StandardColorDarkblue": "Tamsiai mėlyna", - "StandardColorPurple": "Violetinė", - "DatePickerMonthLongJanuary": "sausis", - "DatePickerMonthShortJanuary": "saus.", - "DatePickerMonthLongFebruary": "vasaris", - "DatePickerMonthShortFebruary": "vas.", - "DatePickerMonthLongMarch": "kovas", - "DatePickerMonthShortMarch": "kov.", - "DatePickerMonthLongApril": "balandis", - "DatePickerMonthShortApril": "bal.", - "DatePickerMonthLongMay": "gegužė", - "DatePickerMonthShortMay": "geg.", - "DatePickerMonthLongJune": "birželis", - "DatePickerMonthShortJune": "birž.", - "DatePickerMonthLongJuly": "liepa", - "DatePickerMonthShortJuly": "liep.", - "DatePickerMonthLongAugust": "rugpjūtis", - "DatePickerMonthShortAugust": "rugp.", - "DatePickerMonthLongSeptember": "rugsėjis", - "DatePickerMonthShortSeptember": "rugs.", - "DatePickerMonthLongOctober": "spalis", - "DatePickerMonthShortOctober": "spal.", - "DatePickerMonthLongNovember": "lapkritis", - "DatePickerMonthShortNovember": "lapkr.", - "DatePickerMonthLongDecember": "gruodis", - "DatePickerMonthShortDecember": "gruod.", - "DatePickerDayLongSunday": "sekmadienis", - "DatePickerDayShortSunday": "sk", - "DatePickerDayLongMonday": "pirmadienis", - "DatePickerDayShortMonday": "pr", - "DatePickerDayLongTuesday": "antradienis", - "DatePickerDayShortTuesday": "an", - "DatePickerDayLongWednesday": "trečiadienis", - "DatePickerDayShortWednesday": "tr", - "DatePickerDayLongThursday": "ketvirtadienis", - "DatePickerDayShortThursday": "kt", - "DatePickerDayLongFriday": "penktadienis", - "DatePickerDayShortFriday": "pn", - "DatePickerDayLongSaturday": "šeštadienis", - "DatePickerDayShortSaturday": "št", - "DatePickerGoToToday": "šiandien", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Data", - "DateTimePickerTime": "Laikas", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Netinkama laiko reikšmė", - "AddFileButtonLabel": "Pridėti failą", - "AddImageButtonLabel": "Pridėti atvaizdą", - "AriaCellValue": "{0} stulpelį, {1}", - "FilePickerCancelButtonLabel": "Atšaukti", - "CantValidateValidationMessage": "Mes negalime patikrinti šią nuorodą. Prašome patikrinti nuorodą ir bandykite dar kartą.", - "ChangeFileLinkLabel": "Keisti failą", - "ChangeImageLinkLabel": "Keisti atvaizdą", - "ChooseFileLinkLabel": "Pasirinkite failą", - "ChooseImageLinkLabel": "Pasirinkite vaizdą", - "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", - "CopyrightWarning": "Jūs esate atsakingi už kitų teisių, įskaitant autorių teises, gerbimas.", - "CreativeCommonsMessage": "Šie rezultatai yra pažymėti Creative Commons licencijas. Peržiūrėkite licencijas, kad užtikrintumėte atitiktį.", - "DateFormat": "MM/DD/YYYY hh: mm A", - "DocumentLabelTemplate": "{0}, dokumentas, modifikuotas {1}, redagavo {2}, privatus", - "DocumentLibraries": "Dokumentų bibliotekos", - "EditedByNamePlate": "redagavo ", - "EmptyFileSize": "0 baitų", - "FilePickerHeader": "Failų išrinkiklis", - "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}, redagavo {2}, {3} elementus, privatus", - "FromLinkLinkLabel": "Iš saito", - "ImageAltText": ". {0} vaizdas", - "ImageAriaLabelTemplate": ". {0} vaizdas", - "ImageLayoutPlaceholderText": "Išdėstymą", - "ImageSizePlaceholderText": "Vaizdo dydis", - "ItemChildCountField": "Prekės vaikų skaičius", - "LayoutOptionAll": "Visus", - "LayoutOptionSquare": "Kvadratinių", - "LayoutOptionTall": "Aukščio", - "LayoutOptionWide": "Platus", - "LearnMoreLink": "sužinoti daugiau, sužinok daugiau.", - "LicenseOptionAll": "Visus", - "LicenseOptionAny": "Tik \"Creative Commons\"", - "LicensePlaceholderText": "Licencijos", - "LinkFileInstructions": "Įklijuoti saitą į \"OneDrive\" verslui arba \"SharePoint Online\" failą", - "LinkHeader": "Iš saito", - "LinkImageInstructions": "Įklijuoti saitą į atvaizdą į \"OneDrive\" verslui arba \"SharePoint Online\"", - "ListLayoutAriaLabel": "Peržiūrėti parinktis. {0} {1}.", - "ListLayoutCompact": "Kompaktiškas rodinys", - "ListLayoutCompactDescription": "Elementų ir detalių peržiūra kompaktiškame sąraše", - "ListLayoutList": "Sąrašo rodinys", - "ListLayoutListDescrition": "Peržiūrėti elementus ir duomenis sąraše", - "ListLayoutTile": "Plytelių rodinys", - "ListLayoutTileDescription": "Elementų peržiūra naudojant plytelių peržiūras", - "ListOptionsAlt": "Peržiūrėti parinktis. {0} pasirinkta.", - "ListOptionsTitle": "Atidaryti rodinio parinkčių meniu", - "Loading": "Pakrovimo...", - "ModifiedByField": "Modifikavo", - "ModifiedField": "Modifikavimo data", - "NameField": "vardas, pavadinimas", - "No": "ne", - "ProvidedValueIsInvalid": "Pateikta reikšmė neleistina", - "NoExternalLinksValidationMessage": "Palaikome tik sąsajas su failais savo organizacijoje.", - "NoImageValidationMessage": "Tai nėra saitas į mūsų palaikome failo tipą. Galite susieti tik vaizdą.", - "NoRecentFiles": "Nėra naujausių failų", - "NoRecentFilesDescription": "Bandykite pasirinkti failą iš savo svetainės arba įkelkite jį iš įrenginio.", - "NoResultsBadEnglish": "Nerasta jokių rezultatų. Pabandykite pakeisti filtro parinktis", - "ODModifiedField": "Modifikuoti", - "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}, redagavo {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Šis elementas yra iš jūsų \"OneDrive\" svetainės. \"OneDrive\" failai ir aplankai yra privatūs, nebent juos bendrinate. Ar jūs bendrai šį failą su savo svetainės nariais, kad jie gali EISĖ ji?", - "OneDriveConfirmDialogTitle": "Tiesiog patikrinti...", - "OneDriveEmptyFolderAlt": "Ištuštinti aplanką", - "OneDriveEmptyFolderDescription": "Norėdami įtraukti failų, eikite į \"OneDrive\". Be to, į šį aplanką galite įtraukti failų naudodami \"OneDrive\" programėlę, skirtą 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 yra 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": "Powered by Bing", - "RecentDocumentsHeader": "Naujausi dokumentai", - "RecentImagesHeader": "Naujausi vaizdai", - "RecentLinkLabel": "Neseniai", - "SearchBoxPlaceholder": "Paieška žiniatinklyje", - "SearchResultAlt": "Vaizdo rezultatas {0}.", - "SearchResultAriaLabel": "Paspauskite ENTER, Norėdami atidaryti vaizdo šaltinį naujame skirtuke.", - "Selected": "Pasirinktas", - "SharingField": "Bendrinimas", - "SharingPrivate": "Privataus", - "SharingShared": "Bendra", - "SiteLinkLabel": "Svetainės", - "SizeOptionAll": "Visus", - "SizeOptionExtraLarge": "Itin didelis", - "SizeOptionLarge": "Didelis", - "SizeOptionMedium": "Vidutinio", - "SizeOptionSmall": "Mažas", - "SizeUnit": [ - "Baitų", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "EB", - "Pvz", - "Yb" - ], - "SorryWebSearch": "Atsiprašome, šiame pavyzdyje Ši funkcija neįdiegta, nes jai reikia \"Bing\" API rakto.", - "SortedAscending": "Surūšiuota nuo A iki Z", - "SortedDescending": "Surūšiuota nuo Z iki A", - "TypeAriaLabel": "Stulpelio operacijos failo tipui, paspauskite, kad rūšiuoti failo tipas", - "UploadFileHeader": "Įkelti failą", - "UploadImageHeader": "Įkelti vaizdą", - "UploadLinkLabel": "Įkelti", - "WebSearchLinkLabel": "Paieška žiniatinklyje", - "Yes": "taip", - "SelectedLabel": "Pasirinkta", - "SelectIcon": "Rinktis piktogramą", - "StockImagesLinkLabel": "Standartiniai vaizdai", - "StockImagesHeader": "Standartiniai vaizdai", - "OrgAssetsLinkLabel": "Savo organizacijoje" - }; -}); + "Save": "Taupyti", + "Cancel": "Atšaukti", + "SiteBreadcrumbLabel": "Svetainės navigacijos grandinė", + "ListViewGroupEmptyLabel": "Nenurodyta", + "WebPartTitlePlaceholder": "Puslapio dalies antraštė", + "WebPartTitleLabel": "Pridėti antraštę", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "po kelių sekundžių", + "L_RelativeDateTime_AFewSeconds": "prieš kelias sekundes", + "L_RelativeDateTime_AboutAMinuteFuture": "maždaug po minutės", + "L_RelativeDateTime_AboutAMinute": "beveik prieš minutę", + "L_RelativeDateTime_XMinutesFuture": "po {0} min.", + "L_RelativeDateTime_XMinutes": "prieš {0} min.", + "L_RelativeDateTime_XMinutesFutureIntervals": "0-", + "L_RelativeDateTime_XMinutesIntervals": "0-", + "L_RelativeDateTime_AboutAnHourFuture": "maždaug po valandos", + "L_RelativeDateTime_AboutAnHour": "beveik prieš valandą", + "L_RelativeDateTime_Tomorrow": "rytoj", + "L_RelativeDateTime_Yesterday": "vakar", + "L_RelativeDateTime_TomorrowAndTime": "rytoj, {0}", + "L_RelativeDateTime_YesterdayAndTime": "vakar, {0}", + "L_RelativeDateTime_XHoursFuture": "po {0} val.", + "L_RelativeDateTime_XHours": "prieš {0} val.", + "L_RelativeDateTime_XHoursFutureIntervals": "0-", + "L_RelativeDateTime_XHoursIntervals": "0-", + "L_RelativeDateTime_DayAndTime": "{0}, {1}", + "L_RelativeDateTime_XDaysFuture": "po {0} d.", + "L_RelativeDateTime_XDays": "prieš {0} d.", + "L_RelativeDateTime_XDaysFutureIntervals": "0-", + "L_RelativeDateTime_XDaysIntervals": "0-", + "L_RelativeDateTime_Today": "šiandien" + }, + "SendEmailTo": "Siųsti el. laišką {0}", + "StartChatWith": "Pradėti pokalbį su {0}", + "Contact": "Kontaktas", + "UpdateProfile": "Atnaujinti profilį", + "TaxonomyPickerNoTerms": "Terminų rinkinys tuščias", + "TaxonomyPickerExpandTitle": "Išskleisti terminų rinkinį", + "TaxonomyPickerMenuTermSet": "Terminų rinkinio meniu", + "TaxonomyPickerInLabel": "", + "TaxonomyPickerTermSetLabel": "Terminų rinkinys", + "TaxonomyPickerTermsNotFound": "Kito pasirinkto (-ų) termino (-ų) terminų saugykloje rasti nepavyko: {0}", + "TaxonomyPickerInvalidTerms": "Pataisykite neleistiną (-us) terminą (-us): {0}", + "peoplePickerComponentTooltipMessage": "Pasirinkite naudotojus", + "peoplePickerComponentErrorMessage": "Privalomas laukas", + "peoplePickerSuggestionsHeaderText": "Pasiūlymai", + "peoplePickerLoadingText": "Įkeliama", + "PeoplePickerSearchText": "Ieškoma naudotojų", + "PeoplePickerGroupNotFound": "Grupės nepavyko rasti.", + "genericNoResultsFoundText": "Rezultatų nėra", + "ListItemPickerSelectValue": "Pasirinkite reikšmę", + "ListItemAttachmentsActionDeleteIconTitle": "Naikinti", + "ListItemAttachmentsactionDeleteTitle": "Naikinti", + "ListItemAttachmentsfileDeletedMsg": "Failas „{0}“ panaikintas", + "ListItemAttachmentsfileDeleteError": "Klaida naikinant failą „{0}“: {1}", + "ListItemAttachmentserrorLoadAttachments": "Nepavyko įkelti elemento priedų infomacijos: {0}", + "ListItemAttachmentsconfirmDelete": "Ar tikrai norite priedą „{0}“ siųsti į svetainės šiukšlinę?", + "ListItemAttachmentsdialogTitle": "Elemento priedai", + "ListItemAttachmentsdialogOKbuttonLabel": "Gerai", + "ListItemAttachmentsdialogCancelButtonLabel": "Atšaukti", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Naikinti", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Įkelti priedą", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Įkelti priedą", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Failo „{0}“ įkelti nepavyko: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Įkelti priedą", + "ListItemAttachmentsloadingMessage": "Failas siunčiamas...", + "ListItemAttachmentslPlaceHolderIconText": "Elemento priedai", + "ListItemAttachmentslPlaceHolderDescription": "Įkelkite elemento priedų", + "ListItemAttachmentslPlaceHolderButtonLabel": "Pridėti", + "mapsErrorMessage": "Įkeliant žemėlapį įvyko klaida", + "mapsLoadingText": "Įkeliama", + "mapsSearchButtonText": "Paieška", + "mapsTitlePrefix": "Žemėlapis", + "ListViewFilterLabel": "Filtruoti", + "HeaderNormalText": "Paprastas tekstas", + "HeaderH2": "1 antraštė", + "HeaderH3": "2 antraštė", + "HeaderH4": "3 antraštė", + "HeaderBlockQuote": "Dėmesį atkreipianti citata", + "AlignLeft": "Lygiuoti kairėje", + "AlignCenter": "Centre", + "AlignRight": "Lygiuoti dešinėje", + "AlignJustify": "Abipusė lygiuotė", + "ListBullet": "Sąrašas su ženkleliais", + "ListNumbered": "Numeruotas sąrašas", + "StyleTitle": "Stilius", + "BoldTitle": "Paryškintasis (Ctrl+B)", + "ItalicTitle": "Pasvirasis (Ctrl+I)", + "UnderlineTitle": "Pabrauktasis (Ctrl+U)", + "AlignTitle": "Lygiuotė", + "ListTitle": "Sąrašas", + "LinkTitle": "Hipersaitas", + "ImageTitle": "Vaizdas", + "MoreTitle": "Daugiau", + "FormattingPaneTitle": "Teksto formatavimas", + "CloseButton": "Uždaryti", + "InsertLinkTitle": "Įterpti saitą", + "InsertImageTitle": "Įterpti vaizdą", + "AddressFieldLabel": "Adresas", + "TextToDisplayLabel": "Rodytinas tekstas", + "SaveButtonLabel": "Įrašyti", + "CancelButtonLabel": "Atšaukti", + "RemoveLinkLabel": "Šalinti saitą", + "ParagraphSectionTitle": "Pastraipa", + "HyperlinkSectionTitle": "Hipersaitas", + "UndoTitle": "Anuliuoti (Ctrl+Z)", + "RedoTitle": "Perdaryti (Ctrl+Y)", + "ClearFormattingTitle": "Valyti visą formatavimą", + "FontStyleTitle": "Šrifto stilius", + "FontSizeTitle": "Šrifto dydis", + "StrikethroughTitle": "Perbraukimas", + "SuperscriptTitle": "Viršutinis indeksas", + "SubscriptTitle": "Apatinis indeksas", + "FontColorLabel": "Šrifto spalva", + "AutomaticFontColor": "Automatinė", + "HighlightColorLabel": "Pažymėjimo spalva", + "NoColorHighlightColor": "Be spalvų", + "IncreaseIndentTitle": "Didinti įtrauką", + "DecreaseIndentTitle": "Mažinti įtrauką", + "ThemeColorsGroupName": "Temos spalvos", + "HighlightColorsGroupName": "Paryškinimo spalvos", + "StandardColorsGroupName": "Standartinės spalvos", + "CustomColorsGroupName": "Pasirinktinės spalvos", + "ThemeColorDarker": "Tamsesnė tema", + "ThemeColorDark": "Tamsi tema", + "ThemeColorDarkAlt": "Alternatyvi tamsi tema", + "ThemeColorPrimary": "Pirminė tema", + "ThemeColorSecondary": "Antrinė tema", + "ThemeColorTertiary": "Tretinė tema", + "ThemeColorNeutralSecondary": "Neutrali antrinė", + "ThemeColorNeutralPrimaryAlt": "Alternatyvi neutrali pirminė", + "ThemeColorNeutralPrimary": "Neutrali pirminė", + "ThemeColorNeutralDark": "Neutrali tamsi", + "HighlightColorYellow": "Geltona", + "HighlightColorGreen": "Žalia", + "HighlightColorAqua": "Melsvai žalsva", + "HighlightColorMagenta": "Purpurinė", + "HighlightColorBlue": "Mėlyna", + "HighlightColorRed": "Raudona", + "HighlightColorDarkblue": "Tamsiai mėlyna", + "HighlightColorTeal": "Žalsvai mėlyna", + "HighlightColorDarkgreen": "Tamsiai žalia", + "HighlightColorPurple": "Violetinė", + "HighlightColorMaroon": "Kaštoninė", + "HighlightColorGold": "Auksas", + "HighlightColorDarkgrey": "Tamsiai pilka", + "HighlightColorGrey": "Pilka", + "HighlightColorBlack": "Juoda", + "StandardColorDarkred": "Tamsiai raudona", + "StandardColorRed": "Raudona", + "StandardColorOrange": "Oranžinė", + "StandardColorYellow": "Geltona", + "StandardColorLightgreen": "Šviesiai žalia", + "StandardColorGreen": "Žalia", + "StandardColorLightblue": "Šviesiai mėlyna", + "StandardColorBlue": "Mėlyna", + "StandardColorDarkblue": "Tamsiai mėlyna", + "StandardColorPurple": "Violetinė", + "DatePickerMonthLongJanuary": "sausis", + "DatePickerMonthShortJanuary": "saus.", + "DatePickerMonthLongFebruary": "vasaris", + "DatePickerMonthShortFebruary": "vas.", + "DatePickerMonthLongMarch": "kovas", + "DatePickerMonthShortMarch": "kov.", + "DatePickerMonthLongApril": "balandis", + "DatePickerMonthShortApril": "bal.", + "DatePickerMonthLongMay": "gegužė", + "DatePickerMonthShortMay": "geg.", + "DatePickerMonthLongJune": "birželis", + "DatePickerMonthShortJune": "birž.", + "DatePickerMonthLongJuly": "liepa", + "DatePickerMonthShortJuly": "liep.", + "DatePickerMonthLongAugust": "rugpjūtis", + "DatePickerMonthShortAugust": "rugp.", + "DatePickerMonthLongSeptember": "rugsėjis", + "DatePickerMonthShortSeptember": "rugs.", + "DatePickerMonthLongOctober": "spalis", + "DatePickerMonthShortOctober": "spal.", + "DatePickerMonthLongNovember": "lapkritis", + "DatePickerMonthShortNovember": "lapkr.", + "DatePickerMonthLongDecember": "gruodis", + "DatePickerMonthShortDecember": "gruod.", + "DatePickerDayLongSunday": "sekmadienis", + "DatePickerDayShortSunday": "sk", + "DatePickerDayLongMonday": "pirmadienis", + "DatePickerDayShortMonday": "pr", + "DatePickerDayLongTuesday": "antradienis", + "DatePickerDayShortTuesday": "an", + "DatePickerDayLongWednesday": "trečiadienis", + "DatePickerDayShortWednesday": "tr", + "DatePickerDayLongThursday": "ketvirtadienis", + "DatePickerDayShortThursday": "kt", + "DatePickerDayLongFriday": "penktadienis", + "DatePickerDayShortFriday": "pn", + "DatePickerDayLongSaturday": "šeštadienis", + "DatePickerDayShortSaturday": "št", + "DatePickerGoToToday": "šiandien", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Data", + "DateTimePickerTime": "Laikas", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Netinkama laiko reikšmė", + "DateTimePickerMinuteValueInvalid": "Neteisinga minutės reikšmė", + "DateTimePickerSecondValueInvalid": "Neteisinga antroji reikšmė", + "DateTimePickerTextErrorMessage": "Įveskite tinkamą datą", + "AddFileButtonLabel": "Pridėti failą", + "AddImageButtonLabel": "Pridėti atvaizdą", + "AriaCellValue": "{0} stulpelį, {1}", + "FilePickerCancelButtonLabel": "Atšaukti", + "CantValidateValidationMessage": "Mes negalime patikrinti šią nuorodą. Prašome patikrinti nuorodą ir bandykite dar kartą.", + "ChangeFileLinkLabel": "Keisti failą", + "ChangeImageLinkLabel": "Keisti atvaizdą", + "ChooseFileLinkLabel": "Pasirinkite failą", + "ChooseImageLinkLabel": "Pasirinkite vaizdą", + "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", + "CopyrightWarning": "Jūs esate atsakingi už kitų teisių, įskaitant autorių teises, gerbimas.", + "CreativeCommonsMessage": "Šie rezultatai yra pažymėti Creative Commons licencijas. Peržiūrėkite licencijas, kad užtikrintumėte atitiktį.", + "DateFormat": "MM/DD/YYYY hh: mm A", + "DocumentLabelTemplate": "{0}, dokumentas, modifikuotas {1}, redagavo {2}, privatus", + "DocumentLibraries": "Dokumentų bibliotekos", + "EditedByNamePlate": "redagavo ", + "EmptyFileSize": "0 baitų", + "FilePickerHeader": "Failų išrinkiklis", + "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}, redagavo {2}, {3} elementus, privatus", + "FromLinkLinkLabel": "Iš saito", + "ImageAltText": ". {0} vaizdas", + "ImageAriaLabelTemplate": ". {0} vaizdas", + "ImageLayoutPlaceholderText": "Išdėstymą", + "ImageSizePlaceholderText": "Vaizdo dydis", + "ItemChildCountField": "Prekės vaikų skaičius", + "LayoutOptionAll": "Visus", + "LayoutOptionSquare": "Kvadratinių", + "LayoutOptionTall": "Aukščio", + "LayoutOptionWide": "Platus", + "LearnMoreLink": "sužinoti daugiau, sužinok daugiau.", + "LicenseOptionAll": "Visus", + "LicenseOptionAny": "Tik \"Creative Commons\"", + "LicensePlaceholderText": "Licencijos", + "LinkFileInstructions": "Įklijuoti saitą į \"OneDrive\" verslui arba \"SharePoint Online\" failą", + "LinkHeader": "Iš saito", + "LinkImageInstructions": "Įklijuoti saitą į atvaizdą į \"OneDrive\" verslui arba \"SharePoint Online\"", + "ListLayoutAriaLabel": "Peržiūrėti parinktis. {0} {1}.", + "ListLayoutCompact": "Kompaktiškas rodinys", + "ListLayoutCompactDescription": "Elementų ir detalių peržiūra kompaktiškame sąraše", + "ListLayoutList": "Sąrašo rodinys", + "ListLayoutListDescrition": "Peržiūrėti elementus ir duomenis sąraše", + "ListLayoutTile": "Plytelių rodinys", + "ListLayoutTileDescription": "Elementų peržiūra naudojant plytelių peržiūras", + "ListOptionsAlt": "Peržiūrėti parinktis. {0} pasirinkta.", + "ListOptionsTitle": "Atidaryti rodinio parinkčių meniu", + "Loading": "Pakrovimo...", + "ModifiedByField": "Modifikavo", + "ModifiedField": "Modifikavimo data", + "NameField": "vardas, pavadinimas", + "No": "ne", + "ProvidedValueIsInvalid": "Pateikta reikšmė neleistina", + "NoExternalLinksValidationMessage": "Palaikome tik sąsajas su failais savo organizacijoje.", + "NoImageValidationMessage": "Tai nėra saitas į mūsų palaikome failo tipą. Galite susieti tik vaizdą.", + "NoRecentFiles": "Nėra naujausių failų", + "NoRecentFilesDescription": "Bandykite pasirinkti failą iš savo svetainės arba įkelkite jį iš įrenginio.", + "NoResultsBadEnglish": "Nerasta jokių rezultatų. Pabandykite pakeisti filtro parinktis", + "ODModifiedField": "Modifikuoti", + "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}, redagavo {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Šis elementas yra iš jūsų \"OneDrive\" svetainės. \"OneDrive\" failai ir aplankai yra privatūs, nebent juos bendrinate. Ar jūs bendrai šį failą su savo svetainės nariais, kad jie gali EISĖ ji?", + "OneDriveConfirmDialogTitle": "Tiesiog patikrinti...", + "OneDriveEmptyFolderAlt": "Ištuštinti aplanką", + "OneDriveEmptyFolderDescription": "Norėdami įtraukti failų, eikite į \"OneDrive\". Be to, į šį aplanką galite įtraukti failų naudodami \"OneDrive\" programėlę, skirtą 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 yra 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": "Paieška žiniatinklyje", + "SearchResultAlt": "Vaizdo rezultatas {0}.", + "SearchResultAriaLabel": "Paspauskite ENTER, Norėdami atidaryti vaizdo šaltinį naujame skirtuke.", + "Selected": "Pasirinktas", + "SharingField": "Bendrinimas", + "SharingPrivate": "Privataus", + "SharingShared": "Bendra", + "SiteLinkLabel": "Svetainės", + "SizeOptionAll": "Visus", + "SizeOptionExtraLarge": "Itin didelis", + "SizeOptionLarge": "Didelis", + "SizeOptionMedium": "Vidutinio", + "SizeOptionSmall": "Mažas", + "SizeUnit": [ + "Baitų", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "ŠUO", + "Pvz", + "Yb" + ], + "SorryWebSearch": "Atsiprašome, šiame pavyzdyje Ši funkcija neįdiegta, nes jai reikia \"Bing\" API rakto.", + "SortedAscending": "Surūšiuota nuo A iki Z", + "SortedDescending": "Surūšiuota nuo Z iki A", + "TypeAriaLabel": "Stulpelio operacijos failo tipui, paspauskite, kad rūšiuoti failo tipas", + "UploadFileHeader": "Įkelti failą", + "UploadImageHeader": "Įkelti vaizdą", + "UploadLinkLabel": "Įkelti", + "WebSearchLinkLabel": "Paieška žiniatinklyje", + "StockImagesLinkLabel": "Standartiniai vaizdai", + "StockImagesHeader": "Standartiniai vaizdai", + "Yes": "taip", + "NewFolderNamePlaceholder": "Įveskite aplanko pavadinimą", + "FolderFilterBoxPlaceholder": "Filtruoti aplankus pagal pavadinimą", + "FolderExplorerLoading": "Įkeliami aplankai...", + "FolderExplorerNoItems": "Šiame aplanke nėra poaplankių.", + "NewFolderIncorrectSymbolsError": "Įveskite vardą, kuriame nėra nė vieno iš šių simbolių: \" * : < > ? / |.", + "SomethingWentWrong": "Kažkas negerai", + "SelectedLabel": "Pasirinkta", + "SelectIcon": "Rinktis piktogramą", + "TreeViewExpandTitle": "Išplėsti šį elementą", + "TreeViewCollapseTitle": "Sutraukti šį elementą", + "CollectionDataEmptyFields": "Nebuvo pateikta jokių rinkimo duomenų 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.", + "CollectionDataItemMissingFields": "Laukų rinkinys tuščias!", + "InvalidUrlError": "Pateiktas URL neleistinas", + "CollectionDataSearch": "Ieškoti", + "MyTeamsLoadingMessage": "komandų įkėlimas", + "MyTeamsMessageError": "Įkeliant komandas kažkas negerai, bandykite vėliau arba atnaujinkite naršyklę", + "MyTeamsNoTeamsMessage": "Jūs neturite jokių komandų", + "MyTeamsTeamChannelPublicMessage": "Viešieji kanalai", + "MyTeamsTeamChannelTypeMessage": "Privatūs kanalai", + "TeamChannelPickerFontIconFavoriteText": "Parankinis", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privatus kanalas", + "TeamChannelPickerSugestionHeaderText": "Siūlomi komandos kanalai", + "TeamPickerButtonRemoveTitle": "šalinti", + "TeamPickernoResultsFoundText": "Komandų nerasta", + "TeamPickerSugestionsHeaderText": "Siūlomos komandos", + "TeamsChannelPickerButtonRemoveTitle": "šalinti", + "TeamsChannelPickerNoresultsFoundText": "Kanalų nerasta", + "ViewMore": "Peržiūrėti daugiau", + "DynamicFormLoading": "Pakrovimo...", + "DynamicFormPleaseWait": "Palauk...", + "DynamicFormRequiredErrorMessage": "Negalite palikti šio tuščio.", + "DynamicFormTermPanelTitle": "Pasirinkti terminą", + "DynamicFormEnterURLPlaceholder": "Įveskite URL", + "DynamicFormEnterDescriptionPlaceholder": "Alternatyvus tekstas", + "customDisplayName": "Naudokite šią vietą:", + "ListItemCommentDIalogDeleteSubText": "Ar tikrai norite panaikinti šį komentarą?", + "ListItemCommentsDialogDeleteTitle": "Patvirtinti naikinimo komentarą", + "ListItemCommentsLabel": "Komentarai", + "ListItemCommentsNoCommentsLabel": "Komentarų nėra", + "OrgAssetsLinkLabel": "Savo organizacijoje", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/lv-lv.ts b/src/loc/lv-lv.ts index 4f83bd1b0..0a085f593 100644 --- a/src/loc/lv-lv.ts +++ b/src/loc/lv-lv.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Website atpakaļceļa", - "ListViewGroupEmptyLabel": "Tukša", - "WebPartTitlePlaceholder": "Web daļas nosaukums", - "WebPartTitleLabel": "Nosaukuma pievienošana", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Pēc dažām sekundēm", - "L_RelativeDateTime_AFewSeconds": "Pirms dažām sekundēm", - "L_RelativeDateTime_AboutAMinuteFuture": "Apmēram minūti", - "L_RelativeDateTime_AboutAMinute": "Apmēram minūti pirms", - "L_RelativeDateTime_XMinutesFuture": "{0} minūtē||{0} minūtēs", - "L_RelativeDateTime_XMinutes": "pirms {0} minūtēm||{0} minūtes pirms", - "L_RelativeDateTime_XMinutesFutureIntervals": "1||2-", - "L_RelativeDateTime_XMinutesIntervals": "1||2-", - "L_RelativeDateTime_AboutAnHourFuture": "Apmēram stundu", - "L_RelativeDateTime_AboutAnHour": "Apmēram pirms stundas", - "L_RelativeDateTime_Tomorrow": "Rīt", - "L_RelativeDateTime_Yesterday": "Vakar", - "L_RelativeDateTime_TomorrowAndTime": "Rīt {0}", - "L_RelativeDateTime_YesterdayAndTime": "Vakar {0}", - "L_RelativeDateTime_XHoursFuture": "{0} stundā||{0} stundas", - "L_RelativeDateTime_XHours": "pirms {0} stundas||{0} stundas pirms", - "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 no šī brīža", - "L_RelativeDateTime_XDays": "{0} day ago||{0} days ago", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Šodien" - }, - "SendEmailTo": "Sūtiet e-pastu uz {0}", - "StartChatWith": "Sākt tērzēšanu ar {0}", - "Contact": "Kontaktpersonu", - "UpdateProfile": "Atjauniniet savu profilu", - "TaxonomyPickerNoTerms": "Terminu kopa nesatur terminus,", - "TaxonomyPickerExpandTitle": "Izvērst šo terminu kopu", - "TaxonomyPickerMenuTermSet": "Terminu kopas izvēlne", - "TaxonomyPickerInLabel": "Collas", - "TaxonomyPickerTermSetLabel": "Terminu kopa", - "peoplePickerComponentTooltipMessage": "Personu izvēle", - "peoplePickerComponentErrorMessage": "Obligāts lauks", - "peoplePickerSuggestionsHeaderText": "Ieteiktie cilvēki", - "peoplePickerLoadingText": "Iekraušanas", - "PeoplePickerSearchText": "Fetching lietotāji", - "PeoplePickerGroupNotFound": "Grupu nevarēja atrast.", - "genericNoResultsFoundText": "Nav atrasti rezultāti", - "ListItemPickerSelectValue": "Atlasiet vērtību", - "ListItemAttachmentsActionDeleteIconTitle": "Dzēst", - "ListItemAttachmentsactionDeleteTitle": "Dzēst", - "ListItemAttachmentsfileDeletedMsg": "Fails {0} dzēsts", - "ListItemAttachmentsfileDeleteError": "Kļūda dzēšanas failā: {0}, iemesls {1}", - "ListItemAttachmentserrorLoadAttachments": "Kļūda, ielādējot saraksta vienuma pielikumu, iemesls: {0}", - "ListItemAttachmentsconfirmDelete": "Vai tiešām vēlaties nosūtīt pielikumu {0} uz atkritni?", - "ListItemAttachmentsdialogTitle": "Saraksta vienuma pielikums", - "ListItemAttachmentsdialogOKbuttonLabel": "labi", - "ListItemAttachmentsdialogCancelButtonLabel": "Atcelt", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Dzēst", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Pievienot pielikumu", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Pievienot pielikumu", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Fails {0} nav pievienots, iemesls: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Pievienot pielikumu", - "ListItemAttachmentsloadingMessage": "Notiek faila augšupielāde...", - "ListItemAttachmentslPlaceHolderIconText": "Saraksta vienuma pielikums", - "ListItemAttachmentslPlaceHolderDescription": "Lūdzu, pievienojiet pielikumu", - "ListItemAttachmentslPlaceHolderButtonLabel": "Pievienot", - "mapsErrorMessage": "Ielādējot karti, radās kļūda", - "mapsLoadingText": "Iekraušanas", - "mapsSearchButtonText": "Meklēšanas", - "mapsTitlePrefix": "Karti par", - "ListViewFilterLabel": "Filtrētu sarakstu", - "HeaderNormalText": "Parastu tekstu", - "HeaderH2": "1. izdevumu kategorija", - "HeaderH3": "2. izdevumu kategorija", - "HeaderH4": "3. izdevumu kategorija", - "HeaderBlockQuote": "Izvilkuma citāts", - "AlignLeft": "Līdzināt pa kreisi", - "AlignCenter": "Centrs", - "AlignRight": "Līdzināt pa labi", - "AlignJustify": "Attaisnot", - "ListBullet": "Aizzīmēts saraksts", - "ListNumbered": "Numurētu sarakstu", - "StyleTitle": "Stilu", - "BoldTitle": "Treknraksts (CTRL + B)", - "ItalicTitle": "Slīpraksts (CTRL + I)", - "UnderlineTitle": "Pasvītrojums (CTRL + U)", - "AlignTitle": "Līdzināt", - "ListTitle": "Sarakstu", - "LinkTitle": "Hipersaites", - "MoreTitle": "Vairāk", - "FormattingPaneTitle": "Teksta formatējums", - "CloseButton": "Aizveriet", - "InsertLinkTitle": "Ievietot saiti", - "AddressFieldLabel": "Adresi", - "TextToDisplayLabel": "Parādāmo tekstu", - "SaveButtonLabel": "Saglabāt", - "CancelButtonLabel": "Atcelt", - "RemoveLinkLabel": "Noņemt saiti", - "ParagraphSectionTitle": "Punkts", - "HyperlinkSectionTitle": "Hipersaites", - "UndoTitle": "Atsaukt (CTRL + Z)", - "RedoTitle": "Atcelt atsaukšanu (CTRL + Y)", - "ClearFormattingTitle": "Notīrīt visu formatējumu", - "FontStyleTitle": "Fonta stils", - "FontSizeTitle": "Fonta lielums", - "StrikethroughTitle": "Pārsvītrojumu", - "SuperscriptTitle": "Augšraksts", - "SubscriptTitle": "Apakšraksts", - "FontColorLabel": "Fonta krāsa", - "AutomaticFontColor": "Automātisko", - "HighlightColorLabel": "Marķējuma krāsa", - "NoColorHighlightColor": "Nav krāsu", - "IncreaseIndentTitle": "Palielināt atkāpi", - "DecreaseIndentTitle": "Samazināt atkāpi", - "ThemeColorsGroupName": "Dizaina krāsas", - "HighlightColorsGroupName": "Marķēt krāsas", - "StandardColorsGroupName": "Standarta krāsas", - "CustomColorsGroupName": "Pielāgotās krāsas", - "ThemeColorDarker": "Dizains tumšāks", - "ThemeColorDark": "Theme Dark", - "ThemeColorDarkAlt": "Theme Dark aizstājējs", - "ThemeColorPrimary": "Theme Primary", - "ThemeColorSecondary": "Theme Secondary", - "ThemeColorTertiary": "Neitrāla terciārā", - "ThemeColorNeutralSecondary": "Neitrāls sekundārs", - "ThemeColorNeutralPrimaryAlt": "Neitrāls primārais aizstājējs", - "ThemeColorNeutralPrimary": "Neitrāla primārā", - "ThemeColorNeutralDark": "Neitrāls tumšs", - "HighlightColorYellow": "Dzeltena", - "HighlightColorGreen": "Zaļā", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Madžentas", - "HighlightColorBlue": "Zils", - "HighlightColorRed": "Sarkans", - "HighlightColorDarkblue": "Tumši zila", - "HighlightColorTeal": "Zilganzaļiem", - "HighlightColorDarkgreen": "Tumši zaļa", - "HighlightColorPurple": "Purpura", - "HighlightColorMaroon": "Petarde", - "HighlightColorGold": "Zelta", - "HighlightColorDarkgrey": "Tumši pelēks", - "HighlightColorGrey": "Pelēks", - "HighlightColorBlack": "Melnā", - "StandardColorDarkred": "Tumši sarkana", - "StandardColorRed": "Sarkans", - "StandardColorOrange": "Oranža", - "StandardColorYellow": "Dzeltena", - "StandardColorLightgreen": "Gaiši zaļa", - "StandardColorGreen": "Zaļā", - "StandardColorLightblue": "Gaiši zils", - "StandardColorBlue": "Zils", - "StandardColorDarkblue": "Tumši zila", - "StandardColorPurple": "Purpura", - "DatePickerMonthLongJanuary": "Janvāris", - "DatePickerMonthShortJanuary": "Jan", - "DatePickerMonthLongFebruary": "Februāris", - "DatePickerMonthShortFebruary": "Februāris", - "DatePickerMonthLongMarch": "Marts", - "DatePickerMonthShortMarch": "Marts", - "DatePickerMonthLongApril": "Aprīlis", - "DatePickerMonthShortApril": "Apr", - "DatePickerMonthLongMay": "Var", - "DatePickerMonthShortMay": "Var", - "DatePickerMonthLongJune": "Jūnijs", - "DatePickerMonthShortJune": "Jūnijs", - "DatePickerMonthLongJuly": "Jūlijs", - "DatePickerMonthShortJuly": "Jūlijs", - "DatePickerMonthLongAugust": "Augusts", - "DatePickerMonthShortAugust": "Augusts", - "DatePickerMonthLongSeptember": "Septembris", - "DatePickerMonthShortSeptember": "Septiņas", - "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", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Datumu", - "DateTimePickerTime": "Laiku", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Nepareiza stundas vērtība", - "AddFileButtonLabel": "Pievienot failu", - "AddImageButtonLabel": "Pievienot attēlu", - "AriaCellValue": "{0} kolonnu, {1}", - "FilePickerCancelButtonLabel": "Atcelt", - "CantValidateValidationMessage": "Mēs nevarējām pārbaudīt šo saiti. Lūdzu, pārbaudiet saiti un mēģiniet vēlreiz.", - "ChangeFileLinkLabel": "Mainīt faila", - "ChangeImageLinkLabel": "Mainīt attēlu", - "ChooseFileLinkLabel": "Izvēlieties Fails", - "ChooseImageLinkLabel": "Izvēlēties attēlu", - "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", - "CopyrightWarning": "Jūs esat atbildīgs par citu personu 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 jums atbilstību.", - "DateFormat": "MM/DD/GGGG HH: mm", - "DocumentLabelTemplate": "{0}, dokuments, modificēts {1}, rediģēts pēc {2}, privāts", - "DocumentLibraries": "Dokumentu bibliotēkām", - "EditedByNamePlate": "rediģējis ", - "EmptyFileSize": "0 baiti", - "FilePickerHeader": "Failu atlasītāju", - "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ģēts pēc {2}, {3} vienumi, privāti", - "FromLinkLinkLabel": "No saites", - "ImageAltText": ". {0} attēlu", - "ImageAriaLabelTemplate": ". {0} attēlu", - "ImageLayoutPlaceholderText": "Izkārtojumu", - "ImageSizePlaceholderText": "Attēla lielums", - "ItemChildCountField": "Krājumu bērnu skaits", - "LayoutOptionAll": "Visas", - "LayoutOptionSquare": "Kvadrātveida", - "LayoutOptionTall": "Augsts", - "LayoutOptionWide": "Plaša", - "LearnMoreLink": "apgūt vairāk.", - "LicenseOptionAll": "Visas", - "LicenseOptionAny": "Creative Commons tikai", - "LicensePlaceholderText": "Licences", - "LinkFileInstructions": "Ielīmēt saiti uz failu OneDrive darba vai SharePoint Online", - "LinkHeader": "No saites", - "LinkImageInstructions": "Ielīmējiet saiti uz attēlu OneDrive darba vai SharePoint Online", - "ListLayoutAriaLabel": "Skatīt opcijas. {0} {1}.", - "ListLayoutCompact": "Kompakts skats", - "ListLayoutCompactDescription": "Elementu un detaļu skatīšana kompaktā sarakstā", - "ListLayoutList": "Saraksta skata", - "ListLayoutListDescrition": "Skatīt elementus un informāciju sarakstā", - "ListLayoutTile": "Flīžu skats", - "ListLayoutTileDescription": "Elementu apskate, izmantojot elementu priekšskatījumus", - "ListOptionsAlt": "Skatīt opcijas. {0} izvēlēts.", - "ListOptionsTitle": "Atvērt izvēlni Skatīt opcijas", - "Loading": "Iekraušanas...", - "ModifiedByField": "Modificējis", - "ModifiedField": "Modificēšanas datums", - "NameField": "vārds", - "No": "nē", - "ProvidedValueIsInvalid": "Nodrošinātā vērtība nav derīga", - "NoExternalLinksValidationMessage": "Mēs atbalstām tikai saites uz failiem jūsu organizācijā.", - "NoImageValidationMessage": "Šī nav saite uz faila tipu, kuru atbalstām. Jūs varat izveidot saiti tikai ar attēlu.", - "NoRecentFiles": "Nav nesen failu", - "NoRecentFilesDescription": "Pamēģiniet atlasīt failu no savas vietnes vai augšupielādēt to no savas ierīces.", - "NoResultsBadEnglish": "Nav atrasts neviens rezultāts. Mēģiniet mainīt filtrēšanas 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}, modificējis {2}, rediģējis {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Šis vienums ir no jūsu OneDrive vietnes. Faili un mapes pakalpojumā OneDrive ir privāti, ja vien tos nekoplietojat. Vai esat dalītu šo failu ar jūsu vietnes dalībniekiem, lai viņi varētu piekļuve cipari to?", - "OneDriveConfirmDialogTitle": "Tikai pārbaudot...", - "OneDriveEmptyFolderAlt": "Iztukšot mapi", - "OneDriveEmptyFolderDescription": "Lai pievienotu failus, dodieties uz OneDrive. Varat arī pievienot failus šai mapei, izmantojot programmu OneDrive savam datoram.", - "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": "Jūsu organizācijas nodrošinātie attēli un faili", - "PoweredByBing": "Powered by Bing", - "RecentDocumentsHeader": "Nesenie dokumenti", - "RecentImagesHeader": "Nesenie attēli", - "RecentLinkLabel": "Nesen", - "SearchBoxPlaceholder": "Web meklēšana", - "SearchResultAlt": "Attēla rezultātu {0}.", - "SearchResultAriaLabel": "Nospiediet taustiņu ENTER, lai atvērtu attēlu 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ēja", - "SizeOptionSmall": "Nelielu", - "SizeUnit": [ - "Baiti", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Piemēram", - "Yb" - ], - "SorryWebSearch": "Atvainojiet, šī funkcija nav ieviesta šajā paraugā, jo tas būtu nepieciešams Bing API atslēgu.", - "SortedAscending": "Kārtoti no A līdz Z", - "SortedDescending": "Kārtoti no Z līdz A", - "TypeAriaLabel": "Kolonnas operācijas 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": "Web meklēšana", - "Yes": "jā", - "SelectedLabel": "Atlasīts", - "SelectIcon": "Atlasīt ikonu", - "StockImagesLinkLabel": "Krājuma attēli", - "StockImagesHeader": "Krājuma attēli", - "OrgAssetsLinkLabel": "Jūsu organizācija" - }; -}); + "Save": "Glābt", + "Cancel": "Atcelt", + "SiteBreadcrumbLabel": "Website atpakaļceļa", + "ListViewGroupEmptyLabel": "Tukša", + "WebPartTitlePlaceholder": "Web daļas nosaukums", + "WebPartTitleLabel": "Nosaukuma pievienošana", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Pēc dažām sekundēm", + "L_RelativeDateTime_AFewSeconds": "Pirms dažām sekundēm", + "L_RelativeDateTime_AboutAMinuteFuture": "Apmēram minūti", + "L_RelativeDateTime_AboutAMinute": "Apmēram minūti pirms", + "L_RelativeDateTime_XMinutesFuture": "{0} minūtē||{0} minūtēs", + "L_RelativeDateTime_XMinutes": "pirms {0} minūtēm||{0} minūtes pirms", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "Apmēram stundu", + "L_RelativeDateTime_AboutAnHour": "Apmēram pirms stundas", + "L_RelativeDateTime_Tomorrow": "Rīt", + "L_RelativeDateTime_Yesterday": "Vakar", + "L_RelativeDateTime_TomorrowAndTime": "Rīt {0}", + "L_RelativeDateTime_YesterdayAndTime": "Vakar {0}", + "L_RelativeDateTime_XHoursFuture": "{0} stundā||{0} stundas", + "L_RelativeDateTime_XHours": "pirms {0} stundas||{0} stundas pirms", + "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 no šī brīža", + "L_RelativeDateTime_XDays": "{0} dienu atpakaļ|| {0} dienām", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Šodien" + }, + "SendEmailTo": "Sūtiet e-pastu uz {0}", + "StartChatWith": "Sākt tērzēšanu ar {0}", + "Contact": "Kontaktpersonu", + "UpdateProfile": "Atjauniniet savu profilu", + "TaxonomyPickerNoTerms": "Terminu kopa nesatur terminus,", + "TaxonomyPickerExpandTitle": "Izvērst šo terminu kopu", + "TaxonomyPickerMenuTermSet": "Terminu kopas izvēlne", + "TaxonomyPickerInLabel": "Collas", + "TaxonomyPickerTermSetLabel": "Terminu kopa", + "TaxonomyPickerTermsNotFound": "Terminu krātuvē nevarēja atrast nākamo(s) atlasīto(s) terminu(s): {0}", + "TaxonomyPickerInvalidTerms": "Lūdzu, novērsiet nederīgu(s) terminu(s): {0}", + "peoplePickerComponentTooltipMessage": "Personu izvēle", + "peoplePickerComponentErrorMessage": "Obligāts lauks", + "peoplePickerSuggestionsHeaderText": "Ieteiktie cilvēki", + "peoplePickerLoadingText": "Iekraušanas", + "PeoplePickerSearchText": "Fetching lietotāji", + "PeoplePickerGroupNotFound": "Grupu nevarēja atrast.", + "genericNoResultsFoundText": "Nav atrasti rezultāti", + "ListItemPickerSelectValue": "Atlasiet vērtību", + "ListItemAttachmentsActionDeleteIconTitle": "Dzēst", + "ListItemAttachmentsactionDeleteTitle": "Dzēst", + "ListItemAttachmentsfileDeletedMsg": "Fails {0} dzēsts", + "ListItemAttachmentsfileDeleteError": "Kļūda dzēšanas failā: {0}, iemesls {1}", + "ListItemAttachmentserrorLoadAttachments": "Kļūda, ielādējot saraksta vienuma pielikumu, iemesls: {0}", + "ListItemAttachmentsconfirmDelete": "Vai tiešām vēlaties nosūtīt pielikumu {0} uz atkritni?", + "ListItemAttachmentsdialogTitle": "Saraksta vienuma pielikums", + "ListItemAttachmentsdialogOKbuttonLabel": "labi", + "ListItemAttachmentsdialogCancelButtonLabel": "Atcelt", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Dzēst", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Pievienot pielikumu", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Pievienot pielikumu", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Fails {0} nav pievienots, iemesls: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Pievienot pielikumu", + "ListItemAttachmentsloadingMessage": "Notiek faila augšupielāde...", + "ListItemAttachmentslPlaceHolderIconText": "Saraksta vienuma pielikums", + "ListItemAttachmentslPlaceHolderDescription": "Lūdzu, pievienojiet pielikumu", + "ListItemAttachmentslPlaceHolderButtonLabel": "Pievienot", + "mapsErrorMessage": "Ielādējot karti, radās kļūda", + "mapsLoadingText": "Iekraušanas", + "mapsSearchButtonText": "Meklēšanas", + "mapsTitlePrefix": "Karti par", + "ListViewFilterLabel": "Filtrētu sarakstu", + "HeaderNormalText": "Parastu tekstu", + "HeaderH2": "1. izdevumu kategorija", + "HeaderH3": "2. izdevumu kategorija", + "HeaderH4": "3. izdevumu kategorija", + "HeaderBlockQuote": "Izvilkuma citāts", + "AlignLeft": "Līdzināt pa kreisi", + "AlignCenter": "Centrs", + "AlignRight": "Līdzināt pa labi", + "AlignJustify": "Attaisnot", + "ListBullet": "Aizzīmēts saraksts", + "ListNumbered": "Numurētu sarakstu", + "StyleTitle": "Stilu", + "BoldTitle": "Treknraksts (CTRL + B)", + "ItalicTitle": "Slīpraksts (CTRL + I)", + "UnderlineTitle": "Pasvītrojums (CTRL + U)", + "AlignTitle": "Līdzināt", + "ListTitle": "Sarakstu", + "LinkTitle": "Hipersaites", + "ImageTitle": "Attēlu", + "MoreTitle": "Vairāk", + "FormattingPaneTitle": "Teksta formatējums", + "CloseButton": "Aizveriet", + "InsertLinkTitle": "Ievietot saiti", + "InsertImageTitle": "Ievietot attēlu", + "AddressFieldLabel": "Adresi", + "TextToDisplayLabel": "Parādāmo tekstu", + "SaveButtonLabel": "Saglabāt", + "CancelButtonLabel": "Atcelt", + "RemoveLinkLabel": "Noņemt saiti", + "ParagraphSectionTitle": "Punkts", + "HyperlinkSectionTitle": "Hipersaites", + "UndoTitle": "Atsaukt (CTRL + Z)", + "RedoTitle": "Atcelt atsaukšanu (CTRL + Y)", + "ClearFormattingTitle": "Notīrīt visu formatējumu", + "FontStyleTitle": "Fonta stils", + "FontSizeTitle": "Fonta lielums", + "StrikethroughTitle": "Pārsvītrojumu", + "SuperscriptTitle": "Augšraksts", + "SubscriptTitle": "Apakšraksts", + "FontColorLabel": "Fonta krāsa", + "AutomaticFontColor": "Automātisko", + "HighlightColorLabel": "Marķējuma krāsa", + "NoColorHighlightColor": "Nav krāsu", + "IncreaseIndentTitle": "Palielināt atkāpi", + "DecreaseIndentTitle": "Samazināt atkāpi", + "ThemeColorsGroupName": "Dizaina krāsas", + "HighlightColorsGroupName": "Marķēt krāsas", + "StandardColorsGroupName": "Standarta krāsas", + "CustomColorsGroupName": "Pielāgotās krāsas", + "ThemeColorDarker": "Dizains tumšāks", + "ThemeColorDark": "Theme Dark", + "ThemeColorDarkAlt": "Theme Dark aizstājējs", + "ThemeColorPrimary": "Theme Primary", + "ThemeColorSecondary": "Theme Secondary", + "ThemeColorTertiary": "Neitrāla terciārā", + "ThemeColorNeutralSecondary": "Neitrāls sekundārs", + "ThemeColorNeutralPrimaryAlt": "Neitrāls primārais aizstājējs", + "ThemeColorNeutralPrimary": "Neitrāla primārā", + "ThemeColorNeutralDark": "Neitrāls tumšs", + "HighlightColorYellow": "Dzeltena", + "HighlightColorGreen": "Zaļā", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Madžentas", + "HighlightColorBlue": "Zils", + "HighlightColorRed": "Sarkans", + "HighlightColorDarkblue": "Tumši zila", + "HighlightColorTeal": "Zilganzaļiem", + "HighlightColorDarkgreen": "Tumši zaļa", + "HighlightColorPurple": "Purpura", + "HighlightColorMaroon": "Petarde", + "HighlightColorGold": "Zelta", + "HighlightColorDarkgrey": "Tumši pelēks", + "HighlightColorGrey": "Pelēks", + "HighlightColorBlack": "Melnā", + "StandardColorDarkred": "Tumši sarkana", + "StandardColorRed": "Sarkans", + "StandardColorOrange": "Oranža", + "StandardColorYellow": "Dzeltena", + "StandardColorLightgreen": "Gaiši zaļa", + "StandardColorGreen": "Zaļā", + "StandardColorLightblue": "Gaiši zils", + "StandardColorBlue": "Zils", + "StandardColorDarkblue": "Tumši zila", + "StandardColorPurple": "Purpura", + "DatePickerMonthLongJanuary": "Janvāris", + "DatePickerMonthShortJanuary": "Jan", + "DatePickerMonthLongFebruary": "Februāris", + "DatePickerMonthShortFebruary": "Februāris", + "DatePickerMonthLongMarch": "Marts", + "DatePickerMonthShortMarch": "Marts", + "DatePickerMonthLongApril": "Aprīlis", + "DatePickerMonthShortApril": "Apr", + "DatePickerMonthLongMay": "Var", + "DatePickerMonthShortMay": "Var", + "DatePickerMonthLongJune": "Jūnijs", + "DatePickerMonthShortJune": "Jūnijs", + "DatePickerMonthLongJuly": "Jūlijs", + "DatePickerMonthShortJuly": "Jūlijs", + "DatePickerMonthLongAugust": "Augusts", + "DatePickerMonthShortAugust": "Augusts", + "DatePickerMonthLongSeptember": "Septembris", + "DatePickerMonthShortSeptember": "Septiņas", + "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": "Cet", + "DatePickerDayLongFriday": "Piektdiena", + "DatePickerDayShortFriday": "Fri", + "DatePickerDayLongSaturday": "Sestdiena", + "DatePickerDayShortSaturday": "Sestdiena", + "DatePickerGoToToday": "Šodien", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Datumu", + "DateTimePickerTime": "Laiku", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Nepareiza stundas vērtība", + "DateTimePickerMinuteValueInvalid": "Nepareiza minūtes vērtība", + "DateTimePickerSecondValueInvalid": "Nepareiza otrā vērtība", + "DateTimePickerTextErrorMessage": "Lūdzu, ievadiet derīgu datumu", + "AddFileButtonLabel": "Pievienot failu", + "AddImageButtonLabel": "Pievienot attēlu", + "AriaCellValue": "{0} kolonnu, {1}", + "FilePickerCancelButtonLabel": "Atcelt", + "CantValidateValidationMessage": "Mēs nevarējām pārbaudīt šo saiti. Lūdzu, pārbaudiet saiti un mēģiniet vēlreiz.", + "ChangeFileLinkLabel": "Mainīt faila", + "ChangeImageLinkLabel": "Mainīt attēlu", + "ChooseFileLinkLabel": "Izvēlieties Fails", + "ChooseImageLinkLabel": "Izvēlēties attēlu", + "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", + "CopyrightWarning": "Jūs esat atbildīgs par citu personu 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 jums atbilstību.", + "DateFormat": "MM/DD/GGGG HH: mm", + "DocumentLabelTemplate": "{0}, dokuments, modificēts {1}, rediģēts pēc {2}, privāts", + "DocumentLibraries": "Dokumentu bibliotēkām", + "EditedByNamePlate": "rediģējis ", + "EmptyFileSize": "0 baiti", + "FilePickerHeader": "Failu atlasītāju", + "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ģēts pēc {2}, {3} vienumi, privāti", + "FromLinkLinkLabel": "No saites", + "ImageAltText": ". {0} attēlu", + "ImageAriaLabelTemplate": ". {0} attēlu", + "ImageLayoutPlaceholderText": "Izkārtojumu", + "ImageSizePlaceholderText": "Attēla lielums", + "ItemChildCountField": "Krājumu bērnu skaits", + "LayoutOptionAll": "Visas", + "LayoutOptionSquare": "Kvadrātveida", + "LayoutOptionTall": "Augsts", + "LayoutOptionWide": "Plaša", + "LearnMoreLink": "apgūt vairāk.", + "LicenseOptionAll": "Visas", + "LicenseOptionAny": "Creative Commons tikai", + "LicensePlaceholderText": "Licences", + "LinkFileInstructions": "Ielīmēt saiti uz failu OneDrive darba vai SharePoint Online", + "LinkHeader": "No saites", + "LinkImageInstructions": "Ielīmējiet saiti uz attēlu OneDrive darba vai SharePoint Online", + "ListLayoutAriaLabel": "Skatīt opcijas. {0} {1}.", + "ListLayoutCompact": "Kompakts skats", + "ListLayoutCompactDescription": "Elementu un detaļu skatīšana kompaktā sarakstā", + "ListLayoutList": "Saraksta skata", + "ListLayoutListDescrition": "Skatīt elementus un informāciju sarakstā", + "ListLayoutTile": "Flīžu skats", + "ListLayoutTileDescription": "Elementu apskate, izmantojot elementu priekšskatījumus", + "ListOptionsAlt": "Skatīt opcijas. {0} izvēlēts.", + "ListOptionsTitle": "Atvērt izvēlni Skatīt opcijas", + "Loading": "Iekraušanas...", + "ModifiedByField": "Modificējis", + "ModifiedField": "Modificēšanas datums", + "NameField": "vārds", + "No": "nē", + "ProvidedValueIsInvalid": "Nodrošinātā vērtība nav derīga", + "NoExternalLinksValidationMessage": "Mēs atbalstām tikai saites uz failiem jūsu organizācijā.", + "NoImageValidationMessage": "Šī nav saite uz faila tipu, kuru atbalstām. Jūs varat izveidot saiti tikai ar attēlu.", + "NoRecentFiles": "Nav nesen failu", + "NoRecentFilesDescription": "Pamēģiniet atlasīt failu no savas vietnes vai augšupielādēt to no savas ierīces.", + "NoResultsBadEnglish": "Nav atrasts neviens rezultāts. Mēģiniet mainīt filtrēšanas 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}, modificējis {2}, rediģējis {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Šis vienums ir no jūsu OneDrive vietnes. Faili un mapes pakalpojumā OneDrive ir privāti, ja vien tos nekoplietojat. Vai esat dalītu šo failu ar jūsu vietnes dalībniekiem, lai viņi varētu piekļuve cipari to?", + "OneDriveConfirmDialogTitle": "Tikai pārbaudot...", + "OneDriveEmptyFolderAlt": "Iztukšot mapi", + "OneDriveEmptyFolderDescription": "Lai pievienotu failus, dodieties uz OneDrive. Varat arī pievienot failus šai mapei, izmantojot programmu OneDrive savam datoram.", + "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": "Jūsu organizācijas nodrošinātie attēli un faili", + "PoweredByBing": "Darbojas ar Bing", + "RecentDocumentsHeader": "Nesenie dokumenti", + "RecentImagesHeader": "Nesenie attēli", + "RecentLinkLabel": "Nesen", + "SearchBoxPlaceholder": "Web meklēšana", + "SearchResultAlt": "Attēla rezultātu {0}.", + "SearchResultAriaLabel": "Nospiediet taustiņu ENTER, lai atvērtu attēlu 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ēja", + "SizeOptionSmall": "Nelielu", + "SizeUnit": [ + "Baiti", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Piemēram", + "Yb" + ], + "SorryWebSearch": "Atvainojiet, šī funkcija nav ieviesta šajā paraugā, jo tas būtu nepieciešams Bing API atslēgu.", + "SortedAscending": "Kārtoti no A līdz Z", + "SortedDescending": "Kārtoti no Z līdz A", + "TypeAriaLabel": "Kolonnas operācijas 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": "Web meklēšana", + "StockImagesLinkLabel": "Krājuma attēli", + "StockImagesHeader": "Krājuma attēli", + "Yes": "jā", + "NewFolderNamePlaceholder": "Ievadiet mapes nosaukumu", + "FolderFilterBoxPlaceholder": "Filtrēt mapes pēc nosaukuma", + "FolderExplorerLoading": "Notiek mapju ielāde...", + "FolderExplorerNoItems": "Šai mapei nav apakšmapju.", + "NewFolderIncorrectSymbolsError": "Lūdzu, ievadiet nosaukumu, kurā nav nevienas no šīm rakstzīmēm: \" * : < >? / |.", + "SomethingWentWrong": "Kaut kas nogāja greizi", + "SelectedLabel": "Atlasīts", + "SelectIcon": "Atlasīt ikonu", + "TreeViewExpandTitle": "Izvērst šo vienumu", + "TreeViewCollapseTitle": "Sakļaut šo vienumu", + "CollectionDataEmptyFields": "Kolekcijas datiem netika nodrošināts neviens lauku.", + "CollectionDataEmptyValue": "Kolekcijā nav datu.", + "CollectionAddRowButtonLabel": "Datu pievienošana kolekcijai", + "CollectionDeleteRowButtonLabel": "Dzēst pašreizējo rindu", + "CollectionSaveAndAddButtonLabel": "Pievienot un saglabāt", + "CollectionDataItemShowErrorsLabel": "Rādīt rindu kļūdas", + "CollectionDataItemFieldRequiredLabel": "Lauks ir obligāts.", + "CollectionDataItemMissingFields": "Lauku kolekcija ir tukša!", + "InvalidUrlError": "Sniegtais URL nav derīgs", + "CollectionDataSearch": "Meklēt", + "MyTeamsLoadingMessage": "darba grupu ielāde", + "MyTeamsMessageError": "Ielādējot darba grupas, radās kļūda, lūdzu, mēģiniet vēlāk vai atsvaidziniet pārlūkprogrammu", + "MyTeamsNoTeamsMessage": "Jums nav nevienas komandas", + "MyTeamsTeamChannelPublicMessage": "Publiskie kanāli", + "MyTeamsTeamChannelTypeMessage": "Privātie kanāli", + "TeamChannelPickerFontIconFavoriteText": "Mīļākie", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privātais kanāls", + "TeamChannelPickerSugestionHeaderText": "Ieteiktie grupas kanāli", + "TeamPickerButtonRemoveTitle": "noņemt", + "TeamPickernoResultsFoundText": "Nav atrasta neviena komanda", + "TeamPickerSugestionsHeaderText": "Ieteicamās darba grupas", + "TeamsChannelPickerButtonRemoveTitle": "noņemt", + "TeamsChannelPickerNoresultsFoundText": "Nav atrasts neviens kanāls", + "ViewMore": "Skatīt vairāk", + "DynamicFormLoading": "Iekraušanas...", + "DynamicFormPleaseWait": "Lūdzu, gaidi...", + "DynamicFormRequiredErrorMessage": "Jūs nevarat atstāt šo tukšu.", + "DynamicFormTermPanelTitle": "Atlasīt terminu", + "DynamicFormEnterURLPlaceholder": "Ievadiet URL", + "DynamicFormEnterDescriptionPlaceholder": "Alternatīvais teksts", + "customDisplayName": "Izmantojiet šo atrašanās vietu:", + "ListItemCommentDIalogDeleteSubText": "Vai tiešām vēlaties dzēst šo komentāru?", + "ListItemCommentsDialogDeleteTitle": "Apstiprināt dzēst komentāru", + "ListItemCommentsLabel": "Komentāri", + "ListItemCommentsNoCommentsLabel": "Nav komentāru", + "OrgAssetsLinkLabel": "Jūsu organizācija", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/nb-no.ts b/src/loc/nb-no.ts index dc7e71558..6d2a56ee0 100644 --- a/src/loc/nb-no.ts +++ b/src/loc/nb-no.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Brødsmule på nettstedet", - "ListViewGroupEmptyLabel": "Tom", - "WebPartTitlePlaceholder": "Webdel-tittel", - "WebPartTitleLabel": "Legg til en tittel", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Om noen få sekunder", - "L_RelativeDateTime_AFewSeconds": "Et par sekunder siden", - "L_RelativeDateTime_AboutAMinuteFuture": "I omtrent et minutt", - "L_RelativeDateTime_AboutAMinute": "Om et minutt siden", - "L_RelativeDateTime_XMinutesFuture": "I {0} minutt||På {0} minutter", - "L_RelativeDateTime_XMinutes": "{0} minutt siden||{0} minutter siden", - "L_RelativeDateTime_XMinutesFutureIntervals": "1||2-", - "L_RelativeDateTime_XMinutesIntervals": "1||2-", - "L_RelativeDateTime_AboutAnHourFuture": "Om en time", - "L_RelativeDateTime_AboutAnHour": "For en time siden", - "L_RelativeDateTime_Tomorrow": "Morgen", - "L_RelativeDateTime_Yesterday": "Går", - "L_RelativeDateTime_TomorrowAndTime": "I morgen kl {0}", - "L_RelativeDateTime_YesterdayAndTime": "I går på {0}", - "L_RelativeDateTime_XHoursFuture": "I {0} time||I {0} timer", - "L_RelativeDateTime_XHours": "{0} time siden||{0} timer siden", - "L_RelativeDateTime_XHoursFutureIntervals": "1||2-", - "L_RelativeDateTime_XHoursIntervals": "1||2-", - "L_RelativeDateTime_DayAndTime": "{0} {1}", - "L_RelativeDateTime_XDaysFuture": "{0} dag fra nå||{0} dager fra nå", - "L_RelativeDateTime_XDays": "{0} dag siden||{0} dager siden", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Dag" - }, - "SendEmailTo": "Send en e-post til {0}", - "StartChatWith": "Start en chat med {0}", - "Contact": "Kontakt", - "UpdateProfile": "Oppdatere profilen", - "TaxonomyPickerNoTerms": "Term settet inneholder ingen termer", - "TaxonomyPickerExpandTitle": "Utvid term settet", - "TaxonomyPickerMenuTermSet": "Meny for term sett", - "TaxonomyPickerInLabel": "I", - "TaxonomyPickerTermSetLabel": "Term sett", - "peoplePickerComponentTooltipMessage": "Velgeren for personer", - "peoplePickerComponentErrorMessage": "Obligatorisk felt", - "peoplePickerSuggestionsHeaderText": "Foreslåtte personer", - "peoplePickerLoadingText": "Lasting", - "PeoplePickerSearchText": "Henter brukere", - "PeoplePickerGroupNotFound": "Finner ikke gruppen.", - "genericNoResultsFoundText": "Ingen resultater funnet", - "ListItemPickerSelectValue": "Velg verdi", - "ListItemAttachmentsActionDeleteIconTitle": "Slette", - "ListItemAttachmentsactionDeleteTitle": "Slette", - "ListItemAttachmentsfileDeletedMsg": "Fil {0} slettet", - "ListItemAttachmentsfileDeleteError": "Feil ved sletting av fil: {0}, årsak {1}", - "ListItemAttachmentserrorLoadAttachments": "Feil på Last listeelement vedlegg, årsak: {0}", - "ListItemAttachmentsconfirmDelete": "Er du sikker på at du vil sende vedlegget {0} til papirkurven for området?", - "ListItemAttachmentsdialogTitle": "Vedlegg til listeelement", - "ListItemAttachmentsdialogOKbuttonLabel": "ok", - "ListItemAttachmentsdialogCancelButtonLabel": "Avbryte", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Slette", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Legg til vedlegg", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Legg til vedlegg", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Filen {0} ikke vedlagt, grunn: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Legg til vedlegg", - "ListItemAttachmentsloadingMessage": "Laster opp fil...", - "ListItemAttachmentslPlaceHolderIconText": "Vedlegg til listeelement", - "ListItemAttachmentslPlaceHolderDescription": "Vennligst legg til vedlegg", - "ListItemAttachmentslPlaceHolderButtonLabel": "Legge", - "mapsErrorMessage": "Det oppstod en feil under lasting av kartet", - "mapsLoadingText": "Lasting", - "mapsSearchButtonText": "Søk", - "mapsTitlePrefix": "Kart over", - "ListViewFilterLabel": "Filtrer listen", - "HeaderNormalText": "Vanlig tekst", - "HeaderH2": "Overskrift 1", - "HeaderH3": "Overskrift 2", - "HeaderH4": "Overskrift 3", - "HeaderBlockQuote": "Sitat", - "AlignLeft": "Juster venstre", - "AlignCenter": "Center", - "AlignRight": "Juster høyre", - "AlignJustify": "Rettferdiggjøre", - "ListBullet": "Punktliste", - "ListNumbered": "Nummerert liste", - "StyleTitle": "Stil", - "BoldTitle": "Fet (Ctrl + B)", - "ItalicTitle": "Kursiv (Ctrl + I)", - "UnderlineTitle": "Understreking (Ctrl + U)", - "AlignTitle": "Justere", - "ListTitle": "Listen", - "LinkTitle": "Hyperkobling", - "MoreTitle": "Mer", - "FormattingPaneTitle": "Tekstformatering", - "CloseButton": "Lukke", - "InsertLinkTitle": "Sett inn kobling", - "AddressFieldLabel": "Adresse", - "TextToDisplayLabel": "Tekst som skal vises", - "SaveButtonLabel": "Lagre", - "CancelButtonLabel": "Avbryte", - "RemoveLinkLabel": "Fjern kobling", - "ParagraphSectionTitle": "Avsnitt", - "HyperlinkSectionTitle": "Hyperkobling", - "UndoTitle": "Angre (Ctrl + Z)", - "RedoTitle": "Gjør om (CTRL + Y)", - "ClearFormattingTitle": "Fjern all formatering", - "FontStyleTitle": "Skriftstil", - "FontSizeTitle": "Skriftstørrelse", - "StrikethroughTitle": "Gjennomstreking", - "SuperscriptTitle": "Hevet skrift", - "SubscriptTitle": "Senket skrift", - "FontColorLabel": "Skriftfarge", - "AutomaticFontColor": "Automatisk", - "HighlightColorLabel": "Uthevingsfarge", - "NoColorHighlightColor": "Ingen farge", - "IncreaseIndentTitle": "Øk innrykk", - "DecreaseIndentTitle": "Reduser innrykk", - "ThemeColorsGroupName": "Temafarger", - "HighlightColorsGroupName": "Utheve farger", - "StandardColorsGroupName": "Standard farger", - "CustomColorsGroupName": "Egendefinerte farger", - "ThemeColorDarker": "Tema mørkere", - "ThemeColorDark": "Tema mørk", - "ThemeColorDarkAlt": "Tema mørk alternativ", - "ThemeColorPrimary": "Primære tema", - "ThemeColorSecondary": "Tema sekundære", - "ThemeColorTertiary": "Nøytral tertiær", - "ThemeColorNeutralSecondary": "Nøytral sekundær", - "ThemeColorNeutralPrimaryAlt": "Nøytral primær alternativ", - "ThemeColorNeutralPrimary": "Nøytral primær", - "ThemeColorNeutralDark": "Nøytral mørk", - "HighlightColorYellow": "Gul", - "HighlightColorGreen": "Grønn", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Blå", - "HighlightColorRed": "Rød", - "HighlightColorDarkblue": "Mørkeblå", - "HighlightColorTeal": "Teal", - "HighlightColorDarkgreen": "Mørkegrønne", - "HighlightColorPurple": "Lilla", - "HighlightColorMaroon": "Rødbrun", - "HighlightColorGold": "Gull", - "HighlightColorDarkgrey": "Mørk grå", - "HighlightColorGrey": "Grå", - "HighlightColorBlack": "Svart", - "StandardColorDarkred": "Mørk rød", - "StandardColorRed": "Rød", - "StandardColorOrange": "Oransje", - "StandardColorYellow": "Gul", - "StandardColorLightgreen": "Lys grønn", - "StandardColorGreen": "Grønn", - "StandardColorLightblue": "Lys blå", - "StandardColorBlue": "Blå", - "StandardColorDarkblue": "Mørkeblå", - "StandardColorPurple": "Lilla", - "DatePickerMonthLongJanuary": "Januar", - "DatePickerMonthShortJanuary": "Januar", - "DatePickerMonthLongFebruary": "Februar", - "DatePickerMonthShortFebruary": "Februar", - "DatePickerMonthLongMarch": "Mars", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "April", - "DatePickerMonthShortApril": "April", - "DatePickerMonthLongMay": "Kan", - "DatePickerMonthShortMay": "Kan", - "DatePickerMonthLongJune": "Juni", - "DatePickerMonthShortJune": "Juni", - "DatePickerMonthLongJuly": "Juli", - "DatePickerMonthShortJuly": "Juli", - "DatePickerMonthLongAugust": "August", - "DatePickerMonthShortAugust": "August", - "DatePickerMonthLongSeptember": "September", - "DatePickerMonthShortSeptember": "Syv", - "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": "Dag", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Dato", - "DateTimePickerTime": "Tid", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Feil time verdi", - "AddFileButtonLabel": "Legg til fil", - "AddImageButtonLabel": "Legg til bilde", - "AriaCellValue": "{0} kolonne {1}", - "FilePickerCancelButtonLabel": "Avbryte", - "CantValidateValidationMessage": "Vi kunne ikke bekrefte denne koblingen. 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 dem.", - "DateFormat": "MM/DD/åååå hh: mm A", - "DocumentLabelTemplate": "{0}, dokument, endret {1}, redigert av {2}, privat", - "DocumentLibraries": "Dokumentbiblioteker", - "EditedByNamePlate": "redigert av ", - "EmptyFileSize": "0 byte", - "FilePickerHeader": "Fil velger", - "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, endret {1}, redigert av {2}, {3} elementer, privat", - "FromLinkLinkLabel": "Fra en kobling", - "ImageAltText": ". {0} bilde", - "ImageAriaLabelTemplate": ". {0} bilde", - "ImageLayoutPlaceholderText": "Oppsett", - "ImageSizePlaceholderText": "Bildestørrelse", - "ItemChildCountField": "Antall underordnede elementer", - "LayoutOptionAll": "Alle", - "LayoutOptionSquare": "Square", - "LayoutOptionTall": "Høye", - "LayoutOptionWide": "Bredt", - "LearnMoreLink": "få mer informasjon.", - "LicenseOptionAll": "Alle", - "LicenseOptionAny": "Creative Commons bare", - "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": "Flislagt utsikt", - "ListLayoutTileDescription": "Vise elementer med forhåndsvisninger av fliser", - "ListOptionsAlt": "Vis alternativer. {0} valgt.", - "ListOptionsTitle": "Åpne menyen for visningsalternativer", - "Loading": "Lasting...", - "ModifiedByField": "Endret av", - "ModifiedField": "Endret dato", - "NameField": "navn", - "No": "nei", - "ProvidedValueIsInvalid": "Angitt verdi 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 din.", - "NoResultsBadEnglish": "Det finnes ingen resultater. 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}, modifisert {2}, redigert av {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Dette elementet er fra OneDrive-webområdet. Filer og mapper i OneDrive er private med mindre du deler dem. Har du delt denne filen med område medlemmene slik at de kan tilgangen den?", - "OneDriveConfirmDialogTitle": "Bare sjekker...", - "OneDriveEmptyFolderAlt": "Tøm 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": "Nylig brukte dokumenter", - "RecentImagesHeader": "Nylige bilder", - "RecentLinkLabel": "Siste", - "SearchBoxPlaceholder": "Søk på weben", - "SearchResultAlt": "Bilde resultatet for {0}.", - "SearchResultAriaLabel": "Trykk på 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": "Medium", - "SizeOptionSmall": "Liten", - "SizeUnit": [ - "Byte", - "Kb", - "Mb", - "Gb", - "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": "Kol onne operasjoner for filtype Trykk for å sortere etter filtype", - "UploadFileHeader": "Last opp fil", - "UploadImageHeader": "Last opp bilde", - "UploadLinkLabel": "Laste opp", - "WebSearchLinkLabel": "Søk på weben", - "Yes": "ja", - "SelectedLabel": "Valgt", - "SelectIcon": "Velg ikon", - "StockImagesLinkLabel": "Arkivbilder", - "StockImagesHeader": "Arkivbilder", - "OrgAssetsLinkLabel": "Egen organisasjon" - }; -}); + "Save": "Lagre", + "Cancel": "Annullere", + "SiteBreadcrumbLabel": "Brødsmule på nettstedet", + "ListViewGroupEmptyLabel": "Tom", + "WebPartTitlePlaceholder": "Webdel-tittel", + "WebPartTitleLabel": "Legg til en tittel", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Om noen få sekunder", + "L_RelativeDateTime_AFewSeconds": "Et par sekunder siden", + "L_RelativeDateTime_AboutAMinuteFuture": "I omtrent et minutt", + "L_RelativeDateTime_AboutAMinute": "Om et minutt siden", + "L_RelativeDateTime_XMinutesFuture": "I {0} minutt||På {0} minutter", + "L_RelativeDateTime_XMinutes": "{0} minutt siden||{0} minutter siden", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "Om en time", + "L_RelativeDateTime_AboutAnHour": "For en time siden", + "L_RelativeDateTime_Tomorrow": "Morgen", + "L_RelativeDateTime_Yesterday": "Går", + "L_RelativeDateTime_TomorrowAndTime": "I morgen kl {0}", + "L_RelativeDateTime_YesterdayAndTime": "I går på {0}", + "L_RelativeDateTime_XHoursFuture": "I {0} time||I {0} timer", + "L_RelativeDateTime_XHours": "{0} time siden||{0} timer siden", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{0} {1}", + "L_RelativeDateTime_XDaysFuture": "{0} dag fra nå||{0} dager fra nå", + "L_RelativeDateTime_XDays": "{0} dag siden||{0} dager siden", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Dag" + }, + "SendEmailTo": "Send en e-post til {0}", + "StartChatWith": "Start en chat med {0}", + "Contact": "Kontakt", + "UpdateProfile": "Oppdatere profilen", + "TaxonomyPickerNoTerms": "Term settet inneholder ingen termer", + "TaxonomyPickerExpandTitle": "Utvid term settet", + "TaxonomyPickerMenuTermSet": "Meny for term sett", + "TaxonomyPickerInLabel": "I", + "TaxonomyPickerTermSetLabel": "Term sett", + "TaxonomyPickerTermsNotFound": "Finner ikke de neste valgte termene i termlageret: {0}", + "TaxonomyPickerInvalidTerms": "Reparer ugyldig(e) term(er): {0}", + "peoplePickerComponentTooltipMessage": "Velgeren for personer", + "peoplePickerComponentErrorMessage": "Obligatorisk felt", + "peoplePickerSuggestionsHeaderText": "Foreslåtte personer", + "peoplePickerLoadingText": "Lasting", + "PeoplePickerSearchText": "Henter brukere", + "PeoplePickerGroupNotFound": "Finner ikke gruppen.", + "genericNoResultsFoundText": "Ingen resultater funnet", + "ListItemPickerSelectValue": "Velg verdi", + "ListItemAttachmentsActionDeleteIconTitle": "Slette", + "ListItemAttachmentsactionDeleteTitle": "Slette", + "ListItemAttachmentsfileDeletedMsg": "Fil {0} slettet", + "ListItemAttachmentsfileDeleteError": "Feil ved sletting av fil: {0}, årsak {1}", + "ListItemAttachmentserrorLoadAttachments": "Feil på Last listeelement vedlegg, årsak: {0}", + "ListItemAttachmentsconfirmDelete": "Er du sikker på at du vil sende vedlegget {0} til papirkurven for området?", + "ListItemAttachmentsdialogTitle": "Vedlegg til listeelement", + "ListItemAttachmentsdialogOKbuttonLabel": "ok", + "ListItemAttachmentsdialogCancelButtonLabel": "Avbryte", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Slette", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Legg til vedlegg", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Legg til vedlegg", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Filen {0} ikke vedlagt, grunn: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Legg til vedlegg", + "ListItemAttachmentsloadingMessage": "Laster opp fil...", + "ListItemAttachmentslPlaceHolderIconText": "Vedlegg til listeelement", + "ListItemAttachmentslPlaceHolderDescription": "Vennligst legg til vedlegg", + "ListItemAttachmentslPlaceHolderButtonLabel": "Legge", + "mapsErrorMessage": "Det oppstod en feil under lasting av kartet", + "mapsLoadingText": "Lasting", + "mapsSearchButtonText": "Søk", + "mapsTitlePrefix": "Kart over", + "ListViewFilterLabel": "Filtrer listen", + "HeaderNormalText": "Vanlig tekst", + "HeaderH2": "Overskrift 1", + "HeaderH3": "Overskrift 2", + "HeaderH4": "Overskrift 3", + "HeaderBlockQuote": "Sitat", + "AlignLeft": "Juster venstre", + "AlignCenter": "Sentrum", + "AlignRight": "Juster høyre", + "AlignJustify": "Rettferdiggjøre", + "ListBullet": "Punktliste", + "ListNumbered": "Nummerert liste", + "StyleTitle": "Stil", + "BoldTitle": "Fet (Ctrl + B)", + "ItalicTitle": "Kursiv (Ctrl + I)", + "UnderlineTitle": "Understreking (Ctrl + U)", + "AlignTitle": "Justere", + "ListTitle": "Listen", + "LinkTitle": "Hyperkobling", + "ImageTitle": "Bilde", + "MoreTitle": "Mer", + "FormattingPaneTitle": "Tekstformatering", + "CloseButton": "Lukke", + "InsertLinkTitle": "Sett inn kobling", + "InsertImageTitle": "Sett inn bilde", + "AddressFieldLabel": "Adresse", + "TextToDisplayLabel": "Tekst som skal vises", + "SaveButtonLabel": "Lagre", + "CancelButtonLabel": "Avbryte", + "RemoveLinkLabel": "Fjern kobling", + "ParagraphSectionTitle": "Avsnitt", + "HyperlinkSectionTitle": "Hyperkobling", + "UndoTitle": "Angre (Ctrl + Z)", + "RedoTitle": "Gjør om (CTRL + Y)", + "ClearFormattingTitle": "Fjern all formatering", + "FontStyleTitle": "Skriftstil", + "FontSizeTitle": "Skriftstørrelse", + "StrikethroughTitle": "Gjennomstreking", + "SuperscriptTitle": "Hevet skrift", + "SubscriptTitle": "Senket skrift", + "FontColorLabel": "Skriftfarge", + "AutomaticFontColor": "Automatisk", + "HighlightColorLabel": "Uthevingsfarge", + "NoColorHighlightColor": "Ingen farge", + "IncreaseIndentTitle": "Øk innrykk", + "DecreaseIndentTitle": "Reduser innrykk", + "ThemeColorsGroupName": "Temafarger", + "HighlightColorsGroupName": "Utheve farger", + "StandardColorsGroupName": "Standard farger", + "CustomColorsGroupName": "Egendefinerte farger", + "ThemeColorDarker": "Tema mørkere", + "ThemeColorDark": "Tema mørk", + "ThemeColorDarkAlt": "Tema mørk alternativ", + "ThemeColorPrimary": "Primære tema", + "ThemeColorSecondary": "Tema sekundære", + "ThemeColorTertiary": "Nøytral tertiær", + "ThemeColorNeutralSecondary": "Nøytral sekundær", + "ThemeColorNeutralPrimaryAlt": "Nøytral primær alternativ", + "ThemeColorNeutralPrimary": "Nøytral primær", + "ThemeColorNeutralDark": "Nøytral mørk", + "HighlightColorYellow": "Gul", + "HighlightColorGreen": "Grønn", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Blå", + "HighlightColorRed": "Rød", + "HighlightColorDarkblue": "Mørkeblå", + "HighlightColorTeal": "Teal", + "HighlightColorDarkgreen": "Mørkegrønne", + "HighlightColorPurple": "Lilla", + "HighlightColorMaroon": "Rødbrun", + "HighlightColorGold": "Gull", + "HighlightColorDarkgrey": "Mørk grå", + "HighlightColorGrey": "Grå", + "HighlightColorBlack": "Svart", + "StandardColorDarkred": "Mørk rød", + "StandardColorRed": "Rød", + "StandardColorOrange": "Oransje", + "StandardColorYellow": "Gul", + "StandardColorLightgreen": "Lys grønn", + "StandardColorGreen": "Grønn", + "StandardColorLightblue": "Lys blå", + "StandardColorBlue": "Blå", + "StandardColorDarkblue": "Mørkeblå", + "StandardColorPurple": "Lilla", + "DatePickerMonthLongJanuary": "Januar", + "DatePickerMonthShortJanuary": "Jan", + "DatePickerMonthLongFebruary": "Februar", + "DatePickerMonthShortFebruary": "Feb", + "DatePickerMonthLongMarch": "Mars", + "DatePickerMonthShortMarch": "Mar", + "DatePickerMonthLongApril": "April", + "DatePickerMonthShortApril": "April", + "DatePickerMonthLongMay": "Kan", + "DatePickerMonthShortMay": "Kan", + "DatePickerMonthLongJune": "Juni", + "DatePickerMonthShortJune": "Juni", + "DatePickerMonthLongJuly": "Juli", + "DatePickerMonthShortJuly": "Juli", + "DatePickerMonthLongAugust": "August", + "DatePickerMonthShortAugust": "Aug", + "DatePickerMonthLongSeptember": "September", + "DatePickerMonthShortSeptember": "Sept", + "DatePickerMonthLongOctober": "Oktober", + "DatePickerMonthShortOctober": "Okt", + "DatePickerMonthLongNovember": "November", + "DatePickerMonthShortNovember": "Nov", + "DatePickerMonthLongDecember": "Desember", + "DatePickerMonthShortDecember": "Des", + "DatePickerDayLongSunday": "Søndag", + "DatePickerDayShortSunday": "Solen", + "DatePickerDayLongMonday": "Mandag", + "DatePickerDayShortMonday": "Min", + "DatePickerDayLongTuesday": "Tirsdag", + "DatePickerDayShortTuesday": "Tue", + "DatePickerDayLongWednesday": "Onsdag", + "DatePickerDayShortWednesday": "Ons", + "DatePickerDayLongThursday": "Torsdag", + "DatePickerDayShortThursday": "Høst", + "DatePickerDayLongFriday": "Fredag", + "DatePickerDayShortFriday": "Fr", + "DatePickerDayLongSaturday": "Lørdag", + "DatePickerDayShortSaturday": "Satt", + "DatePickerGoToToday": "Dag", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Dato", + "DateTimePickerTime": "Tid", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Feil time verdi", + "DateTimePickerMinuteValueInvalid": "Feil minuttverdi", + "DateTimePickerSecondValueInvalid": "Feil andre verdi", + "DateTimePickerTextErrorMessage": "Angi en gyldig dato", + "AddFileButtonLabel": "Legg til fil", + "AddImageButtonLabel": "Legg til bilde", + "AriaCellValue": "{0} kolonne {1}", + "FilePickerCancelButtonLabel": "Avbryte", + "CantValidateValidationMessage": "Vi kunne ikke bekrefte denne koblingen. 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 dem.", + "DateFormat": "MM/DD/åååå hh: mm A", + "DocumentLabelTemplate": "{0}, dokument, endret {1}, redigert av {2}, privat", + "DocumentLibraries": "Dokumentbiblioteker", + "EditedByNamePlate": "redigert av ", + "EmptyFileSize": "0 byte", + "FilePickerHeader": "Fil velger", + "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, endret {1}, redigert av {2}, {3} elementer, privat", + "FromLinkLinkLabel": "Fra en kobling", + "ImageAltText": ". {0} bilde", + "ImageAriaLabelTemplate": ". {0} bilde", + "ImageLayoutPlaceholderText": "Oppsett", + "ImageSizePlaceholderText": "Bildestørrelse", + "ItemChildCountField": "Antall underordnede elementer", + "LayoutOptionAll": "Alle", + "LayoutOptionSquare": "Kvadratisk", + "LayoutOptionTall": "Høye", + "LayoutOptionWide": "Bredt", + "LearnMoreLink": "få mer informasjon.", + "LicenseOptionAll": "Alle", + "LicenseOptionAny": "Creative Commons bare", + "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": "Flislagt utsikt", + "ListLayoutTileDescription": "Vise elementer med forhåndsvisninger av fliser", + "ListOptionsAlt": "Vis alternativer. {0} valgt.", + "ListOptionsTitle": "Åpne menyen for visningsalternativer", + "Loading": "Lasting...", + "ModifiedByField": "Endret av", + "ModifiedField": "Endret dato", + "NameField": "navn", + "No": "nei", + "ProvidedValueIsInvalid": "Angitt verdi 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 din.", + "NoResultsBadEnglish": "Det finnes ingen resultater. 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}, modifisert {2}, redigert av {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Dette elementet er fra OneDrive-webområdet. Filer og mapper i OneDrive er private med mindre du deler dem. Har du delt denne filen med område medlemmene slik at de kan tilgangen den?", + "OneDriveConfirmDialogTitle": "Bare sjekker...", + "OneDriveEmptyFolderAlt": "Tøm 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": "Nylig brukte dokumenter", + "RecentImagesHeader": "Nylige bilder", + "RecentLinkLabel": "Siste", + "SearchBoxPlaceholder": "Søk på weben", + "SearchResultAlt": "Bilde resultatet for {0}.", + "SearchResultAriaLabel": "Trykk på 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", + "Kb", + "Mb", + "Gb", + "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": "Kol onne operasjoner for filtype Trykk for å sortere etter filtype", + "UploadFileHeader": "Last opp fil", + "UploadImageHeader": "Last opp bilde", + "UploadLinkLabel": "Laste opp", + "WebSearchLinkLabel": "Søk på weben", + "StockImagesLinkLabel": "Arkivbilder", + "StockImagesHeader": "Arkivbilder", + "Yes": "ja", + "NewFolderNamePlaceholder": "Skriv inn mappenavnet", + "FolderFilterBoxPlaceholder": "Filtrere mapper etter navn", + "FolderExplorerLoading": "Laster inn mapper...", + "FolderExplorerNoItems": "Denne mappen har ingen undermapper.", + "NewFolderIncorrectSymbolsError": "Skriv inn et navn som ikke inneholder noen av disse tegnene: \" * : < > ? / |.", + "SomethingWentWrong": "Noe gikk galt", + "SelectedLabel": "Valgt", + "SelectIcon": "Velg ikon", + "TreeViewExpandTitle": "Utvid dette elementet", + "TreeViewCollapseTitle": "Skjul dette elementet", + "CollectionDataEmptyFields": "Det ble ikke angitt noen felt for innsamlingsdataene.", + "CollectionDataEmptyValue": "Ingen data i samlingen din.", + "CollectionAddRowButtonLabel": "Legge til data i samlingen", + "CollectionDeleteRowButtonLabel": "Slette gjeldende rad", + "CollectionSaveAndAddButtonLabel": "Legge til og lagre", + "CollectionDataItemShowErrorsLabel": "Vis radfeil", + "CollectionDataItemFieldRequiredLabel": "Feltet er obligatorisk.", + "CollectionDataItemMissingFields": "Feltsamlingen er tom.", + "InvalidUrlError": "Den angitte URL-adressen er ikke gyldig", + "CollectionDataSearch": "Søke", + "MyTeamsLoadingMessage": "laste inn teamene dine", + "MyTeamsMessageError": "Noe gikk galt mens du lastet inn teamene dine, prøv senere eller oppdater nettleseren", + "MyTeamsNoTeamsMessage": "Du har ingen team", + "MyTeamsTeamChannelPublicMessage": "Offentlige kanaler", + "MyTeamsTeamChannelTypeMessage": "Private kanaler", + "TeamChannelPickerFontIconFavoriteText": "Favoritt", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privat kanal", + "TeamChannelPickerSugestionHeaderText": "Foreslåtte teamkanaler", + "TeamPickerButtonRemoveTitle": "fjerne", + "TeamPickernoResultsFoundText": "Finner ingen team", + "TeamPickerSugestionsHeaderText": "Foreslåtte team", + "TeamsChannelPickerButtonRemoveTitle": "fjerne", + "TeamsChannelPickerNoresultsFoundText": "Finner ingen kanaler", + "ViewMore": "Vis mer", + "DynamicFormLoading": "Lasting...", + "DynamicFormPleaseWait": "Vent...", + "DynamicFormRequiredErrorMessage": "Du kan ikke la dette stå tomt.", + "DynamicFormTermPanelTitle": "Velg term", + "DynamicFormEnterURLPlaceholder": "Skriv inn en URL-adresse", + "DynamicFormEnterDescriptionPlaceholder": "Alternativ tekst", + "customDisplayName": "Bruk denne plasseringen:", + "ListItemCommentDIalogDeleteSubText": "Er du sikker på at du vil slette denne kommentaren?", + "ListItemCommentsDialogDeleteTitle": "Bekreft sletting av kommentar", + "ListItemCommentsLabel": "Kommentarer", + "ListItemCommentsNoCommentsLabel": "Det finnes ingen kommentarer", + "OrgAssetsLinkLabel": "Egen organisasjon", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/nl-nl.ts b/src/loc/nl-nl.ts index 5633c3529..cfcc82686 100644 --- a/src/loc/nl-nl.ts +++ b/src/loc/nl-nl.ts @@ -2,339 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Website broodkruimelpad", - "ListViewGroupEmptyLabel": "Leeg", - "WebPartTitlePlaceholder": "Webonderdeel titel", - "WebPartTitleLabel": "Titel ingeven", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Over een paar seconden", - "L_RelativeDateTime_AFewSeconds": "Een paar seconden geleden", - "L_RelativeDateTime_AboutAMinuteFuture": "Over 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": "Gisteren", - "L_RelativeDateTime_TomorrowAndTime": "Morgen om {0}", - "L_RelativeDateTime_YesterdayAndTime": "Gisteren om {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} om {1}", - "L_RelativeDateTime_XDaysFuture": "{0} dag vanaf nu||{0} dagen vanaf nu", - "L_RelativeDateTime_XDays": "{0} dag geleden||{0} dagen geleden", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Vandaag" - }, - "SendEmailTo": "Stuur een mail naar {0}", - "StartChatWith": "Start een gesprek met {0}", - "Contact": "Contacteer", - "UpdateProfile": "Profiel aanpassen", - "TaxonomyPickerNoTerms": "Termen set heeft geen termen beschikbaar", - "TaxonomyPickerExpandTitle": "Vouw de termen set uit", - "TaxonomyPickerMenuTermSet": "Menu van de termen set", - "TaxonomyPickerInLabel": "In", - "TaxonomyPickerTermSetLabel": "Termen set", - "peoplePickerComponentTooltipMessage": "Personen kiezen", - "peoplePickerComponentErrorMessage": "Verplicht veld", - "peoplePickerSuggestionsHeaderText": "Voorgestelde personen", - "peoplePickerLoadingText": "Laden", - "PeoplePickerSearchText": "Personen worden opgehaald", - "PeoplePickerGroupNotFound": "Groep niet gevonden.", - "genericNoResultsFoundText": "Geen resultaten gevonden", - "ListItemPickerSelectValue": "Selecteer veld", - "ListItemAttachmentsActionDeleteIconTitle": "Verwijderen", - "ListItemAttachmentsactionDeleteTitle": "Verwijderen", - "ListItemAttachmentsfileDeletedMsg": "Bestand {0} verwijderd", - "ListItemAttachmentsfileDeleteError": "Probleem bij het verwijderen van het bestand: {0}, rede {1}", - "ListItemAttachmentserrorLoadAttachments": "Probleem bij het laden van de bijlage, rede: {0}", - "ListItemAttachmentsconfirmDelete": "Ben je zeker dat je het bestand {0} wilt verwijderen?", - "ListItemAttachmentsdialogTitle": "Bijlage van lijstitem", - "ListItemAttachmentsdialogOKbuttonLabel": "OK", - "ListItemAttachmentsdialogCancelButtonLabel": "Annuleren", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Verwijderen", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Bijlage toevoegen", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Bijlage toevoegen", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Het bestand {0} kon niet toegevoegd worden, rede: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Bijlage toevoegen", - "ListItemAttachmentsloadingMessage": "Bestand opladen ...", - "ListItemAttachmentslPlaceHolderIconText": "Bijlage van lijstitem", - "ListItemAttachmentslPlaceHolderDescription": "Voeg een bijlage toe", - "ListItemAttachmentslPlaceHolderButtonLabel": "Toevoegen", - "mapsErrorMessage": "Er is een fout opgetreden bij het laden van de kaart", - "mapsLoadingText": "Laden", - "mapsSearchButtonText": "Zoeken", - "mapsTitlePrefix": "Kaart van", - "ListViewFilterLabel": "Filter de lijst", - "HeaderNormalText": "Normale tekst", - "HeaderH2": "Rubriek 1", - "HeaderH3": "Rubriek 2", - "HeaderH4": "Rubriek 3", - "HeaderBlockQuote": "Blikvangercitaat", - "AlignLeft": "Links uitlijnen", - "AlignCenter": "Center", - "AlignRight": "Rechts uitlijnen", - "AlignJustify": "Rechtvaardigen", - "ListBullet": "Lijst met opsommingstekens", - "ListNumbered": "Genummerde lijst", - "StyleTitle": "Stijl", - "BoldTitle": "Vet (CTRL + B)", - "ItalicTitle": "Cursief (CTRL + I)", - "UnderlineTitle": "Onderstrepen (CTRL + U)", - "AlignTitle": "Uitlijnen", - "ListTitle": "Lijst", - "LinkTitle": "Hyperlink", - "ImageTitle": "Afbeelding", - "MoreTitle": "Meer", - "FormattingPaneTitle": "Tekstopmaak", - "CloseButton": "Sluiten", - "InsertLinkTitle": "Koppeling invoegen", - "InsertImageTitle": "Afbeelding invoegen", - "AddressFieldLabel": "Adres", - "TextToDisplayLabel": "Weer te geven tekst", - "SaveButtonLabel": "Opslaan", - "CancelButtonLabel": "Annuleren", - "RemoveLinkLabel": "Koppeling verwijderen", - "ParagraphSectionTitle": "Lid", - "HyperlinkSectionTitle": "Hyperlink", - "UndoTitle": "Ongedaan maken (CTRL + Z)", - "RedoTitle": "Opnieuw (CTRL + Y)", - "ClearFormattingTitle": "Alle opmaak wissen", - "FontStyleTitle": "Tekenstijl", - "FontSizeTitle": "Tekengrootte", - "StrikethroughTitle": "Doorhalen", - "SuperscriptTitle": "Superscript", - "SubscriptTitle": "Subscript", - "FontColorLabel": "Tekstkleur", - "AutomaticFontColor": "Automatisch", - "HighlightColorLabel": "Markeerkleur", - "NoColorHighlightColor": "Geen kleur", - "IncreaseIndentTitle": "Inspringing vergroten", - "DecreaseIndentTitle": "Inspringing verkleinen", - "ThemeColorsGroupName": "Themakleuren", - "HighlightColorsGroupName": "Markeerkleuren", - "StandardColorsGroupName": "Standaard kleuren", - "CustomColorsGroupName": "Aangepaste kleuren", - "ThemeColorDarker": "Thema donkerder", - "ThemeColorDark": "Thema donker", - "ThemeColorDarkAlt": "Thema donker afwisselend", - "ThemeColorPrimary": "Thema primair", - "ThemeColorSecondary": "Thema secundair", - "ThemeColorTertiary": "Neutraal tertiair", - "ThemeColorNeutralSecondary": "Neutraal secundair", - "ThemeColorNeutralPrimaryAlt": "Neutrale primaire alternatieve", - "ThemeColorNeutralPrimary": "Neutraal primair", - "ThemeColorNeutralDark": "Neutraal donker", - "HighlightColorYellow": "Geel", - "HighlightColorGreen": "Groene", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Blauwe", - "HighlightColorRed": "Rode", - "HighlightColorDarkblue": "Donkerblauw", - "HighlightColorTeal": "Teal", - "HighlightColorDarkgreen": "Donkergroen", - "HighlightColorPurple": "Paarse", - "HighlightColorMaroon": "Maroon", - "HighlightColorGold": "Goud", - "HighlightColorDarkgrey": "Donkergrijs", - "HighlightColorGrey": "Grijs", - "HighlightColorBlack": "Zwarte", - "StandardColorDarkred": "Donkerrood", - "StandardColorRed": "Rode", - "StandardColorOrange": "Oranje", - "StandardColorYellow": "Geel", - "StandardColorLightgreen": "Licht groen", - "StandardColorGreen": "Groene", - "StandardColorLightblue": "Licht blauw", - "StandardColorBlue": "Blauwe", - "StandardColorDarkblue": "Donkerblauw", - "StandardColorPurple": "Paarse", - "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", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Dag", - "DateTimePickerTime": "Tijd", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Foute uur waarde", - "AddFileButtonLabel": "Bestand toevoegen", - "AddImageButtonLabel": "Afbeelding toevoegen", - "AriaCellValue": "{0} kolom {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": "Kies bestand", - "ChooseImageLinkLabel": "Afbeelding kiezen", - "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", - "CopyrightWarning": "U bent verantwoordelijk voor het respecteren van de rechten van anderen, waaronder het auteursrecht.", - "CreativeCommonsMessage": "Deze resultaten zijn gelabeld met Creative Commons-licenties. Controleer de licenties om ervoor te zorgen dat u voldoet.", - "DateFormat": "MM/DD/JJJJ uu: mm A", - "DocumentLabelTemplate": "{0}, document, gewijzigd {1}, bewerkt door {2}, privé", - "DocumentLibraries": "Document bibliotheken", - "EditedByNamePlate": "bewerkt door ", - "EmptyFileSize": "0 bytes", - "FilePickerHeader": "Bestandskiezer", - "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, gewijzigd {1}, bewerkt door {2}, {3} items, privé", - "FromLinkLinkLabel": "Via een koppeling", - "ImageAltText": ". {0} afbeelding", - "ImageAriaLabelTemplate": ". {0} afbeelding", - "ImageLayoutPlaceholderText": "Indeling", - "ImageSizePlaceholderText": "Afbeeldingsgrootte", - "ItemChildCountField": "Aantal kinderen van artikel", - "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 in OneDrive voor bedrijven of SharePoint Online plakken", - "LinkHeader": "Via een koppeling", - "LinkImageInstructions": "Een koppeling naar een afbeelding in OneDrive voor bedrijven of SharePoint Online plakken", - "ListLayoutAriaLabel": "Bekijk opties. {0} {1}.", - "ListLayoutCompact": "Compacte weergave", - "ListLayoutCompactDescription": "Items en Details in een compacte lijst weergeven", - "ListLayoutList": "Lijstweergave", - "ListLayoutListDescrition": "Items en Details in een lijst weergeven", - "ListLayoutTile": "Tegelweergave", - "ListLayoutTileDescription": "Items met tegel voorbeelden weergeven", - "ListOptionsAlt": "Bekijk opties. {0} geselecteerd.", - "ListOptionsTitle": "Het menu Weergaveopties openen", - "Loading": "Laden...", - "ModifiedByField": "Gewijzigd door", - "ModifiedField": "Wijzigingsdatum", - "NameField": "Naam", - "No": "No", - "ProvidedValueIsInvalid": "De opgegeven waarde is ongeldig", - "NoExternalLinksValidationMessage": "We ondersteunen alleen het linken naar bestanden in uw eigen organisatie.", - "NoImageValidationMessage": "Dit is geen koppeling naar een bestandstype dat we ondersteunen. U alleen een koppeling maken naar een afbeelding.", - "NoRecentFiles": "Geen recente bestanden", - "NoRecentFilesDescription": "Probeer een bestand van je site te selecteren of upload het van je 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 object is afkomstig van je OneDrive-site. Bestanden en mappen in OneDrive zijn privé tenzij je ze deelt. Heeft u dit bestand gedeeld met uw siteleden zodat ze het kunnen Cess?", - "OneDriveConfirmDialogTitle": "Gewoon controleren...", - "OneDriveEmptyFolderAlt": "Lege map", - "OneDriveEmptyFolderDescription": "Als u bestanden wilt toevoegen, gaat u naar OneDrive. U ook bestanden toevoegen aan deze map met behulp van 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": "Mogelijk gemaakt door Bing", - "RecentDocumentsHeader": "Recente documenten", - "RecentImagesHeader": "Recente afbeeldingen", - "RecentLinkLabel": "Recente", - "SearchBoxPlaceholder": "Zoeken op het web", - "SearchResultAlt": "Beeld resultaat 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 grote", - "SizeOptionLarge": "Grote", - "SizeOptionMedium": "Medium", - "SizeOptionSmall": "Kleine", - "SizeUnit": [ - "Bytes", - "Kb", - "Mb", - "Gb", - "Tb", - "PB", - "Eb", - "BV", - "Yb" - ], - "SorryWebSearch": "Sorry, deze functie is niet geïmplementeerd in dit voorbeeld, omdat er een Bing API-sleutel vereist.", - "SortedAscending": "Gesorteerd op A tot Z", - "SortedDescending": "Gesorteerd Z naar A", - "TypeAriaLabel": "Kolom bewerkingen voor bestandstype, druk op om te sorteren op bestandstype", - "UploadFileHeader": "Bestand uploaden", - "UploadImageHeader": "Afbeelding uploaden", - "UploadLinkLabel": "Uploaden", - "WebSearchLinkLabel": "Zoeken op het web", - "Yes": "Ja", - "SelectedLabel": "Geselecteerd", - "SelectIcon": "Selecteer pictogram", - "StockImagesLinkLabel": "Stockfoto's", - "StockImagesHeader": "Stockfoto's", - "OrgAssetsLinkLabel": "Uw organisatie" - }; -}); + "Save": "Redden", + "Cancel": "Annuleren", + "SiteBreadcrumbLabel": "Website broodkruimelpad", + "ListViewGroupEmptyLabel": "Leeg", + "WebPartTitlePlaceholder": "Webonderdeel titel", + "WebPartTitleLabel": "Titel ingeven", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Over een paar seconden", + "L_RelativeDateTime_AFewSeconds": "Een paar seconden geleden", + "L_RelativeDateTime_AboutAMinuteFuture": "Over 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": "Gisteren", + "L_RelativeDateTime_TomorrowAndTime": "Morgen om {0}", + "L_RelativeDateTime_YesterdayAndTime": "Gisteren om {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} om {1}", + "L_RelativeDateTime_XDaysFuture": "{0} dag vanaf nu||{0} dagen vanaf nu", + "L_RelativeDateTime_XDays": "{0} dag geleden||{0} dagen geleden", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Vandaag" + }, + "SendEmailTo": "Stuur een mail naar {0}", + "StartChatWith": "Start een gesprek met {0}", + "Contact": "Contacteer", + "UpdateProfile": "Profiel aanpassen", + "TaxonomyPickerNoTerms": "Termen set heeft geen termen beschikbaar", + "TaxonomyPickerExpandTitle": "Vouw de termen set uit", + "TaxonomyPickerMenuTermSet": "Menu van de termen set", + "TaxonomyPickerInLabel": "In", + "TaxonomyPickerTermSetLabel": "Termen set", + "TaxonomyPickerTermsNotFound": "De volgende geselecteerde term(en) is(en) niet gevonden in het termenarchief: {0}", + "TaxonomyPickerInvalidTerms": "Ongeldige term(en) repareren: {0}", + "peoplePickerComponentTooltipMessage": "Personen kiezen", + "peoplePickerComponentErrorMessage": "Verplicht veld", + "peoplePickerSuggestionsHeaderText": "Voorgestelde personen", + "peoplePickerLoadingText": "Laden", + "PeoplePickerSearchText": "Personen worden opgehaald", + "PeoplePickerGroupNotFound": "Groep niet gevonden.", + "genericNoResultsFoundText": "Geen resultaten gevonden", + "ListItemPickerSelectValue": "Selecteer veld", + "ListItemAttachmentsActionDeleteIconTitle": "Verwijderen", + "ListItemAttachmentsactionDeleteTitle": "Verwijderen", + "ListItemAttachmentsfileDeletedMsg": "Bestand {0} verwijderd", + "ListItemAttachmentsfileDeleteError": "Probleem bij het verwijderen van het bestand: {0}, rede {1}", + "ListItemAttachmentserrorLoadAttachments": "Probleem bij het laden van de bijlage, rede: {0}", + "ListItemAttachmentsconfirmDelete": "Ben je zeker dat je het bestand {0} wilt verwijderen?", + "ListItemAttachmentsdialogTitle": "Bijlage van lijstitem", + "ListItemAttachmentsdialogOKbuttonLabel": "OK", + "ListItemAttachmentsdialogCancelButtonLabel": "Annuleren", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Verwijderen", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Bijlage toevoegen", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Bijlage toevoegen", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Het bestand {0} kon niet toegevoegd worden, rede: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Bijlage toevoegen", + "ListItemAttachmentsloadingMessage": "Bestand opladen ...", + "ListItemAttachmentslPlaceHolderIconText": "Bijlage van lijstitem", + "ListItemAttachmentslPlaceHolderDescription": "Voeg een bijlage toe", + "ListItemAttachmentslPlaceHolderButtonLabel": "Toevoegen", + "mapsErrorMessage": "Er is een fout opgetreden bij het laden van de kaart", + "mapsLoadingText": "Laden", + "mapsSearchButtonText": "Zoeken", + "mapsTitlePrefix": "Kaart van", + "ListViewFilterLabel": "Filter de lijst", + "HeaderNormalText": "Normale tekst", + "HeaderH2": "Rubriek 1", + "HeaderH3": "Rubriek 2", + "HeaderH4": "Rubriek 3", + "HeaderBlockQuote": "Blikvangercitaat", + "AlignLeft": "Links uitlijnen", + "AlignCenter": "Middelpunt", + "AlignRight": "Rechts uitlijnen", + "AlignJustify": "Rechtvaardigen", + "ListBullet": "Lijst met opsommingstekens", + "ListNumbered": "Genummerde lijst", + "StyleTitle": "Stijl", + "BoldTitle": "Vet (CTRL + B)", + "ItalicTitle": "Cursief (CTRL + I)", + "UnderlineTitle": "Onderstrepen (CTRL + U)", + "AlignTitle": "Uitlijnen", + "ListTitle": "Lijst", + "LinkTitle": "Hyperlink", + "ImageTitle": "Afbeelding", + "MoreTitle": "Meer", + "FormattingPaneTitle": "Tekstopmaak", + "CloseButton": "Sluiten", + "InsertLinkTitle": "Koppeling invoegen", + "InsertImageTitle": "Afbeelding invoegen", + "AddressFieldLabel": "Adres", + "TextToDisplayLabel": "Weer te geven tekst", + "SaveButtonLabel": "Opslaan", + "CancelButtonLabel": "Annuleren", + "RemoveLinkLabel": "Koppeling verwijderen", + "ParagraphSectionTitle": "Lid", + "HyperlinkSectionTitle": "Hyperlink", + "UndoTitle": "Ongedaan maken (CTRL + Z)", + "RedoTitle": "Opnieuw (CTRL + Y)", + "ClearFormattingTitle": "Alle opmaak wissen", + "FontStyleTitle": "Tekenstijl", + "FontSizeTitle": "Tekengrootte", + "StrikethroughTitle": "Doorhalen", + "SuperscriptTitle": "Superscript", + "SubscriptTitle": "Subscript", + "FontColorLabel": "Tekstkleur", + "AutomaticFontColor": "Automatisch", + "HighlightColorLabel": "Markeerkleur", + "NoColorHighlightColor": "Geen kleur", + "IncreaseIndentTitle": "Inspringing vergroten", + "DecreaseIndentTitle": "Inspringing verkleinen", + "ThemeColorsGroupName": "Themakleuren", + "HighlightColorsGroupName": "Markeerkleuren", + "StandardColorsGroupName": "Standaard kleuren", + "CustomColorsGroupName": "Aangepaste kleuren", + "ThemeColorDarker": "Thema donkerder", + "ThemeColorDark": "Thema donker", + "ThemeColorDarkAlt": "Thema donker afwisselend", + "ThemeColorPrimary": "Thema primair", + "ThemeColorSecondary": "Thema secundair", + "ThemeColorTertiary": "Neutraal tertiair", + "ThemeColorNeutralSecondary": "Neutraal secundair", + "ThemeColorNeutralPrimaryAlt": "Neutrale primaire alternatieve", + "ThemeColorNeutralPrimary": "Neutraal primair", + "ThemeColorNeutralDark": "Neutraal donker", + "HighlightColorYellow": "Geel", + "HighlightColorGreen": "Groene", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Blauwe", + "HighlightColorRed": "Rode", + "HighlightColorDarkblue": "Donkerblauw", + "HighlightColorTeal": "Taling", + "HighlightColorDarkgreen": "Donkergroen", + "HighlightColorPurple": "Paarse", + "HighlightColorMaroon": "Bosneger", + "HighlightColorGold": "Goud", + "HighlightColorDarkgrey": "Donkergrijs", + "HighlightColorGrey": "Grijs", + "HighlightColorBlack": "Zwarte", + "StandardColorDarkred": "Donkerrood", + "StandardColorRed": "Rode", + "StandardColorOrange": "Oranje", + "StandardColorYellow": "Geel", + "StandardColorLightgreen": "Licht groen", + "StandardColorGreen": "Groene", + "StandardColorLightblue": "Licht blauw", + "StandardColorBlue": "Blauwe", + "StandardColorDarkblue": "Donkerblauw", + "StandardColorPurple": "Paarse", + "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", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Dag", + "DateTimePickerTime": "Tijd", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Foute uur waarde", + "DateTimePickerMinuteValueInvalid": "Onjuiste minuutwaarde", + "DateTimePickerSecondValueInvalid": "Onjuiste tweede waarde", + "DateTimePickerTextErrorMessage": "Voer een geldige datum in", + "AddFileButtonLabel": "Bestand toevoegen", + "AddImageButtonLabel": "Afbeelding toevoegen", + "AriaCellValue": "{0} kolom {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": "Kies bestand", + "ChooseImageLinkLabel": "Afbeelding kiezen", + "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", + "CopyrightWarning": "U bent verantwoordelijk voor het respecteren van de rechten van anderen, waaronder het auteursrecht.", + "CreativeCommonsMessage": "Deze resultaten zijn gelabeld met Creative Commons-licenties. Controleer de licenties om ervoor te zorgen dat u voldoet.", + "DateFormat": "MM/DD/JJJJ uu: mm A", + "DocumentLabelTemplate": "{0}, document, gewijzigd {1}, bewerkt door {2}, privé", + "DocumentLibraries": "Document bibliotheken", + "EditedByNamePlate": "bewerkt door ", + "EmptyFileSize": "0 bytes", + "FilePickerHeader": "Bestandskiezer", + "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, gewijzigd {1}, bewerkt door {2}, {3} items, privé", + "FromLinkLinkLabel": "Via een koppeling", + "ImageAltText": ". {0} afbeelding", + "ImageAriaLabelTemplate": ". {0} afbeelding", + "ImageLayoutPlaceholderText": "Indeling", + "ImageSizePlaceholderText": "Afbeeldingsgrootte", + "ItemChildCountField": "Aantal kinderen van artikel", + "LayoutOptionAll": "Alle", + "LayoutOptionSquare": "Vierkant", + "LayoutOptionTall": "Lang", + "LayoutOptionWide": "Breed", + "LearnMoreLink": "Meer informatie.", + "LicenseOptionAll": "Alle", + "LicenseOptionAny": "Alleen Creative Commons", + "LicensePlaceholderText": "Licentie", + "LinkFileInstructions": "Een koppeling naar een bestand in OneDrive voor bedrijven of SharePoint Online plakken", + "LinkHeader": "Via een koppeling", + "LinkImageInstructions": "Een koppeling naar een afbeelding in OneDrive voor bedrijven of SharePoint Online plakken", + "ListLayoutAriaLabel": "Bekijk opties. {0} {1}.", + "ListLayoutCompact": "Compacte weergave", + "ListLayoutCompactDescription": "Items en Details in een compacte lijst weergeven", + "ListLayoutList": "Lijstweergave", + "ListLayoutListDescrition": "Items en Details in een lijst weergeven", + "ListLayoutTile": "Tegelweergave", + "ListLayoutTileDescription": "Items met tegel voorbeelden weergeven", + "ListOptionsAlt": "Bekijk opties. {0} geselecteerd.", + "ListOptionsTitle": "Het menu Weergaveopties openen", + "Loading": "Laden...", + "ModifiedByField": "Gewijzigd door", + "ModifiedField": "Wijzigingsdatum", + "NameField": "Naam", + "No": "Nee", + "ProvidedValueIsInvalid": "De opgegeven waarde is ongeldig", + "NoExternalLinksValidationMessage": "We ondersteunen alleen het linken naar bestanden in uw eigen organisatie.", + "NoImageValidationMessage": "Dit is geen koppeling naar een bestandstype dat we ondersteunen. U alleen een koppeling maken naar een afbeelding.", + "NoRecentFiles": "Geen recente bestanden", + "NoRecentFilesDescription": "Probeer een bestand van je site te selecteren of upload het van je 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 object is afkomstig van je OneDrive-site. Bestanden en mappen in OneDrive zijn privé tenzij je ze deelt. Heeft u dit bestand gedeeld met uw siteleden zodat ze het kunnen Cess?", + "OneDriveConfirmDialogTitle": "Gewoon controleren...", + "OneDriveEmptyFolderAlt": "Lege map", + "OneDriveEmptyFolderDescription": "Als u bestanden wilt toevoegen, gaat u naar OneDrive. U ook bestanden toevoegen aan deze map met behulp van 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": "Openen", + "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": "Mogelijk gemaakt door Bing", + "RecentDocumentsHeader": "Recente documenten", + "RecentImagesHeader": "Recente afbeeldingen", + "RecentLinkLabel": "Recente", + "SearchBoxPlaceholder": "Zoeken op het web", + "SearchResultAlt": "Beeld resultaat voor {0}.", + "SearchResultAriaLabel": "Druk op ENTER om de afbeeldingsbron in een nieuw tabblad te openen.", + "Selected": "Geselecteerde", + "SharingField": "Delen", + "SharingPrivate": "Privé", + "SharingShared": "Gedeelde", + "SiteLinkLabel": "Ligging", + "SizeOptionAll": "Alle", + "SizeOptionExtraLarge": "Extra grote", + "SizeOptionLarge": "Grote", + "SizeOptionMedium": "Gemiddeld", + "SizeOptionSmall": "Kleine", + "SizeUnit": [ + "Bytes", + "Kb", + "Mb", + "Gb", + "Tb", + "PB", + "Eb", + "BV", + "Yb" + ], + "SorryWebSearch": "Sorry, deze functie is niet geïmplementeerd in dit voorbeeld, omdat er een Bing API-sleutel vereist.", + "SortedAscending": "Gesorteerd op A tot Z", + "SortedDescending": "Gesorteerd Z naar A", + "TypeAriaLabel": "Kolom bewerkingen voor bestandstype, druk op om te sorteren op bestandstype", + "UploadFileHeader": "Bestand uploaden", + "UploadImageHeader": "Afbeelding uploaden", + "UploadLinkLabel": "Uploaden", + "WebSearchLinkLabel": "Zoeken op het web", + "StockImagesLinkLabel": "Stockfoto's", + "StockImagesHeader": "Stockfoto's", + "Yes": "Ja", + "NewFolderNamePlaceholder": "Voer de naam van uw map in", + "FolderFilterBoxPlaceholder": "Mappen filteren op naam", + "FolderExplorerLoading": "Mappen worden geladen...", + "FolderExplorerNoItems": "Deze map heeft geen submappen.", + "NewFolderIncorrectSymbolsError": "Voer een naam in die geen van deze tekens bevat: \" * : < > ? / |.", + "SomethingWentWrong": "Er is iets misgegaan.", + "SelectedLabel": "Geselecteerd", + "SelectIcon": "Selecteer pictogram", + "TreeViewExpandTitle": "Dit item uitvouwen", + "TreeViewCollapseTitle": "Dit item samenvouwen", + "CollectionDataEmptyFields": "Er zijn geen velden opgegeven voor de verzamelingsgegevens.", + "CollectionDataEmptyValue": "Geen gegevens in uw collectie.", + "CollectionAddRowButtonLabel": "Gegevens toevoegen aan de verzameling", + "CollectionDeleteRowButtonLabel": "De huidige rij verwijderen", + "CollectionSaveAndAddButtonLabel": "Toevoegen en opslaan", + "CollectionDataItemShowErrorsLabel": "Rijfouten weergeven", + "CollectionDataItemFieldRequiredLabel": "Veld is vereist.", + "CollectionDataItemMissingFields": "Veldenverzameling is leeg!", + "InvalidUrlError": "De opgegeven URL is ongeldig", + "CollectionDataSearch": "Zoeken", + "MyTeamsLoadingMessage": "laden van uw teams", + "MyTeamsMessageError": "Er is iets misgegaan tijdens het laden van uw teams, probeer het later of vernieuw de browser", + "MyTeamsNoTeamsMessage": "Je hebt geen teams.", + "MyTeamsTeamChannelPublicMessage": "Openbare kanalen", + "MyTeamsTeamChannelTypeMessage": "Privékanalen", + "TeamChannelPickerFontIconFavoriteText": "Favoriet", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privékanaal", + "TeamChannelPickerSugestionHeaderText": "Voorgestelde teamkanalen", + "TeamPickerButtonRemoveTitle": "verwijderen", + "TeamPickernoResultsFoundText": "Geen teams gevonden", + "TeamPickerSugestionsHeaderText": "Voorgestelde teams", + "TeamsChannelPickerButtonRemoveTitle": "verwijderen", + "TeamsChannelPickerNoresultsFoundText": "Geen kanalen gevonden", + "ViewMore": "Bekijk meer", + "DynamicFormLoading": "Laden...", + "DynamicFormPleaseWait": "Een ogenblik geduld...", + "DynamicFormRequiredErrorMessage": "Je kunt dit niet leeg laten.", + "DynamicFormTermPanelTitle": "Selecteer Term", + "DynamicFormEnterURLPlaceholder": "Voer een URL in", + "DynamicFormEnterDescriptionPlaceholder": "Alternatieve tekst", + "customDisplayName": "Gebruik deze locatie:", + "ListItemCommentDIalogDeleteSubText": "Weet u zeker dat u deze opmerking wilt verwijderen?", + "ListItemCommentsDialogDeleteTitle": "Opmerking verwijderen bevestigen", + "ListItemCommentsLabel": "Opmerkingen", + "ListItemCommentsNoCommentsLabel": "Er is geen commentaar", + "OrgAssetsLinkLabel": "Uw organisatie", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/pl-pl.ts b/src/loc/pl-pl.ts index 5e2485490..c0c61e825 100644 --- a/src/loc/pl-pl.ts +++ b/src/loc/pl-pl.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Strona nawigacyjnej", - "ListViewGroupEmptyLabel": "Pusty", - "WebPartTitlePlaceholder": "Tytuł składnika Web Part", - "WebPartTitleLabel": "Dodawanie tytułu", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "W ciągu kilku sekund", - "L_RelativeDateTime_AFewSeconds": "Kilka sekund temu", - "L_RelativeDateTime_AboutAMinuteFuture": "W około minutę", - "L_RelativeDateTime_AboutAMinute": "Około minuty temu", - "L_RelativeDateTime_XMinutesFuture": "W {0} minutę||W {0} minut", - "L_RelativeDateTime_XMinutes": "{0} minutę temu||{0} minut temu", - "L_RelativeDateTime_XMinutesFutureIntervals": "1||2-", - "L_RelativeDateTime_XMinutesIntervals": "1||2-", - "L_RelativeDateTime_AboutAnHourFuture": "W około godzinę", - "L_RelativeDateTime_AboutAnHour": "Około godziny temu", - "L_RelativeDateTime_Tomorrow": "Jutro", - "L_RelativeDateTime_Yesterday": "Dokonana wczoraj", - "L_RelativeDateTime_TomorrowAndTime": "Jutro w {0}", - "L_RelativeDateTime_YesterdayAndTime": "Wczoraj o {0}", - "L_RelativeDateTime_XHoursFuture": "W {0} godzinę||W {0} godzinach", - "L_RelativeDateTime_XHours": "{0} godzinę temu||{0} godzin temu", - "L_RelativeDateTime_XHoursFutureIntervals": "1||2-", - "L_RelativeDateTime_XHoursIntervals": "1||2-", - "L_RelativeDateTime_DayAndTime": "{0} w {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": "Dziś" - }, - "SendEmailTo": "Wyślij e-mail do {0}", - "StartChatWith": "Rozpocznij czat z {0}", - "Contact": "Kontakt", - "UpdateProfile": "Aktualizowanie profilu", - "TaxonomyPickerNoTerms": "Zestaw terminów nie zawiera żadnych terminów", - "TaxonomyPickerExpandTitle": "Rozwiń ten zestaw Term", - "TaxonomyPickerMenuTermSet": "Menu dla zestawu Term", - "TaxonomyPickerInLabel": "Cala", - "TaxonomyPickerTermSetLabel": "Zestaw Term", - "peoplePickerComponentTooltipMessage": "Selektor osób", - "peoplePickerComponentErrorMessage": "Pole wymagane", - "peoplePickerSuggestionsHeaderText": "Sugerowana ludzie", - "peoplePickerLoadingText": "Ładowania", - "PeoplePickerSearchText": "Pobieranie użytkowników", - "PeoplePickerGroupNotFound": "Nie można odnaleźć grupy.", - "genericNoResultsFoundText": "Nie znaleziono wyników", - "ListItemPickerSelectValue": "Wybierz wartość", - "ListItemAttachmentsActionDeleteIconTitle": "Usunąć", - "ListItemAttachmentsactionDeleteTitle": "Usunąć", - "ListItemAttachmentsfileDeletedMsg": "Usunięte {0} plików", - "ListItemAttachmentsfileDeleteError": "Błąd podczas usuwania pliku: {0}, Przyczyna {1}", - "ListItemAttachmentserrorLoadAttachments": "Błąd w załączniku elementu listy obciążenia, Przyczyna: {0}", - "ListItemAttachmentsconfirmDelete": "Czy na pewno chcesz wysłać załącznik {0} do kosza witryny?", - "ListItemAttachmentsdialogTitle": "Załącznik elementu listy", - "ListItemAttachmentsdialogOKbuttonLabel": "Ok", - "ListItemAttachmentsdialogCancelButtonLabel": "Anuluj", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Usunąć", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Dodaj załącznik", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Dodaj załącznik", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Plik nie {0} dołączony, Przyczyna: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Dodaj załącznik", - "ListItemAttachmentsloadingMessage": "Przesyłanie pliku...", - "ListItemAttachmentslPlaceHolderIconText": "Załącznik elementu listy", - "ListItemAttachmentslPlaceHolderDescription": "Proszę dodać załącznik", - "ListItemAttachmentslPlaceHolderButtonLabel": "Dodaj", - "mapsErrorMessage": "Wystąpił błąd podczas ładowania mapy", - "mapsLoadingText": "Ładowania", - "mapsSearchButtonText": "Szukaj", - "mapsTitlePrefix": "Mapa", - "ListViewFilterLabel": "Filtrowanie listy", - "HeaderNormalText": "Zwykły tekst", - "HeaderH2": "Dział 1", - "HeaderH3": "Dział 2", - "HeaderH4": "Dział 3", - "HeaderBlockQuote": "Wyciągnij ofertę", - "AlignLeft": "Wyrównaj do lewej", - "AlignCenter": "Centrum", - "AlignRight": "Wyrównaj do prawej", - "AlignJustify": "Uzasadnić", - "ListBullet": "Lista punktowana", - "ListNumbered": "Lista numerowana", - "StyleTitle": "Stylu", - "BoldTitle": "Pogrubienie (Ctrl + B)", - "ItalicTitle": "Kursywa (Ctrl + I)", - "UnderlineTitle": "Podkreślenie (Ctrl + U)", - "AlignTitle": "Wyrównaj", - "ListTitle": "Listy", - "LinkTitle": "Hiperłącze", - "MoreTitle": "Więcej", - "FormattingPaneTitle": "Formatowanie tekstu", - "CloseButton": "Zamknij", - "InsertLinkTitle": "Wstaw odnośnik", - "AddressFieldLabel": "Adres", - "TextToDisplayLabel": "Tekst do wyświetlenia", - "SaveButtonLabel": "Zapisz", - "CancelButtonLabel": "Anuluj", - "RemoveLinkLabel": "Usuń łącze", - "ParagraphSectionTitle": "Ustęp", - "HyperlinkSectionTitle": "Hiperłącze", - "UndoTitle": "Cofnij (Ctrl + Z)", - "RedoTitle": "Powtórz (Ctrl + Y)", - "ClearFormattingTitle": "Wyczyść wszystkie formatowanie", - "FontStyleTitle": "Styl czcionki", - "FontSizeTitle": "Rozmiar czcionki", - "StrikethroughTitle": "Przekreślenie", - "SuperscriptTitle": "Indeks górny", - "SubscriptTitle": "Indeks dolny", - "FontColorLabel": "Kolor czcionki", - "AutomaticFontColor": "Automatyczne", - "HighlightColorLabel": "Kolor podświetlenia", - "NoColorHighlightColor": "Brak koloru", - "IncreaseIndentTitle": "Zwiększ wcięcie", - "DecreaseIndentTitle": "Zmniejsz wcięcie", - "ThemeColorsGroupName": "Kolory motywu", - "HighlightColorsGroupName": "Wyróżnianie kolorów", - "StandardColorsGroupName": "Kolory standardowe", - "CustomColorsGroupName": "Kolory niestandardowe", - "ThemeColorDarker": "Ciemniejsze motywy", - "ThemeColorDark": "Temat ciemny", - "ThemeColorDarkAlt": "Temat ciemny zastępca", - "ThemeColorPrimary": "Temat podstawowy", - "ThemeColorSecondary": "Motyw pomocniczy", - "ThemeColorTertiary": "Neutralny trzeciorzędny", - "ThemeColorNeutralSecondary": "Neutralny wtórny", - "ThemeColorNeutralPrimaryAlt": "Neutralny podstawowy alternatywny", - "ThemeColorNeutralPrimary": "Neutralny podstawowy", - "ThemeColorNeutralDark": "Neutralny ciemny", - "HighlightColorYellow": "Żółty", - "HighlightColorGreen": "Zielony", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Niebieski", - "HighlightColorRed": "Czerwony", - "HighlightColorDarkblue": "Ciemnoniebieski", - "HighlightColorTeal": "Teal", - "HighlightColorDarkgreen": "Ciemnozielony", - "HighlightColorPurple": "Fioletowy", - "HighlightColorMaroon": "Bordowy", - "HighlightColorGold": "Złoto", - "HighlightColorDarkgrey": "Ciemnoszary", - "HighlightColorGrey": "Szary", - "HighlightColorBlack": "Czarny", - "StandardColorDarkred": "Ciemnoczerwony", - "StandardColorRed": "Czerwony", - "StandardColorOrange": "Pomarańczowy", - "StandardColorYellow": "Żółty", - "StandardColorLightgreen": "Jasnozielony", - "StandardColorGreen": "Zielony", - "StandardColorLightblue": "Jasnoniebieski", - "StandardColorBlue": "Niebieski", - "StandardColorDarkblue": "Ciemnoniebieski", - "StandardColorPurple": "Fioletowy", - "DatePickerMonthLongJanuary": "Stycznia", - "DatePickerMonthShortJanuary": "Jan", - "DatePickerMonthLongFebruary": "Lut", - "DatePickerMonthShortFebruary": "Lutego", - "DatePickerMonthLongMarch": "Mar", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "Kwietnia", - "DatePickerMonthShortApril": "Kwiecień", - "DatePickerMonthLongMay": "Może", - "DatePickerMonthShortMay": "Może", - "DatePickerMonthLongJune": "Czerwca", - "DatePickerMonthShortJune": "Cze", - "DatePickerMonthLongJuly": "Lipca", - "DatePickerMonthShortJuly": "Lip", - "DatePickerMonthLongAugust": "Sierpnia", - "DatePickerMonthShortAugust": "Sierpnia", - "DatePickerMonthLongSeptember": "Września", - "DatePickerMonthShortSeptember": "Siedem", - "DatePickerMonthLongOctober": "Października", - "DatePickerMonthShortOctober": "Października", - "DatePickerMonthLongNovember": "Listopada", - "DatePickerMonthShortNovember": "Listopada", - "DatePickerMonthLongDecember": "Grudnia", - "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": "Dziś", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Data", - "DateTimePickerTime": "Czas", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Nieprawidłowa wartość godziny", - "AddFileButtonLabel": "Dodaj plik", - "AddImageButtonLabel": "Dodaj obraz", - "AriaCellValue": "kolumna {0} {1}", - "FilePickerCancelButtonLabel": "Anuluj", - "CantValidateValidationMessage": "Nie mogliśmy zweryfikować tego linku. Proszę sprawdzić link i spróbować ponownie.", - "ChangeFileLinkLabel": "Zmień plik", - "ChangeImageLinkLabel": "Zmiana 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. Zapoznaj się z licencjami, aby upewnić się, że są zgodne.", - "DateFormat": "MM/DD/rrrr hh: mm A", - "DocumentLabelTemplate": "{0}, dokument, zmodyfikowany {1}, edytowane przez {2}, prywatne", - "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, zmodyfikowany {1}, edytowane przez {2}, {3} elementy, prywatne", - "FromLinkLinkLabel": "Z linku", - "ImageAltText": ". {0} obraz", - "ImageAriaLabelTemplate": ". {0} obraz", - "ImageLayoutPlaceholderText": "Układ", - "ImageSizePlaceholderText": "Rozmiar obrazu", - "ItemChildCountField": "Liczba podrzędnych elementów", - "LayoutOptionAll": "Wszystkie", - "LayoutOptionSquare": "Placu", - "LayoutOptionTall": "Wysoki", - "LayoutOptionWide": "Szeroki", - "LearnMoreLink": "Dowiedz się więcej.", - "LicenseOptionAll": "Wszystkie", - "LicenseOptionAny": "Tylko Creative Commons", - "LicensePlaceholderText": "Licencji", - "LinkFileInstructions": "Wklej łącze do pliku w OneDrive dla firmy lub SharePoint Online", - "LinkHeader": "Z linku", - "LinkImageInstructions": "Wklej łącze do obrazu w OneDrive dla firmy lub SharePoint Online", - "ListLayoutAriaLabel": "Opcje widoku. {0} {1}.", - "ListLayoutCompact": "Kompaktowy widok", - "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 płytek", - "ListLayoutTileDescription": "Wyświetlanie elementów z podglądem kafelków", - "ListOptionsAlt": "Opcje widoku. {0} zaznaczone.", - "ListOptionsTitle": "Otwórz menu opcji widoku", - "Loading": "Ładowania...", - "ModifiedByField": "Zmodyfikowany przez", - "ModifiedField": "Data modyfikacji", - "NameField": "Nazwa", - "No": "Nr", - "ProvidedValueIsInvalid": "Podana wartość jest nieprawidłowa", - "NoExternalLinksValidationMessage": "Obsłuż tylko łącza do plików w Twojej organizacji.", - "NoImageValidationMessage": "Nie jest to łącze do typu pliku, który obsłuży. Można połączyć tylko z obrazem.", - "NoRecentFiles": "Brak najnowszych plików", - "NoRecentFilesDescription": "Spróbuj wybrać plik z witryny lub przesłać 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}, zmodyfikowane {2}, edytowane przez {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Ten element jest z witryny OneDrive. Pliki i foldery w usłudze OneDrive są prywatne, chyba że są udostępniane. Czy udostępniony ten plik z członkami witryny, aby mogli go ostęp?", - "OneDriveConfirmDialogTitle": "Wystarczy sprawdzić...", - "OneDriveEmptyFolderAlt": "Pusty folder", - "OneDriveEmptyFolderDescription": "Aby dodać pliki, przejdź do usługi OneDrive. Można również dodać pliki do tego folderu za pomocą aplikacji OneDrive na komputerze.", - "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 dostarczone przez organizację", - "PoweredByBing": "Zasilany przez Bing", - "RecentDocumentsHeader": "Ostatnie dokumenty", - "RecentImagesHeader": "Ostatnie Zdjęcia", - "RecentLinkLabel": "Którzy niedawno się tam", - "SearchBoxPlaceholder": "Wyszukiwanie w Internecie", - "SearchResultAlt": "Wynik obrazu dla {0}.", - "SearchResultAriaLabel": "Naciśnij ENTER, aby otworzyć źródło obrazu w nowej karcie.", - "Selected": "Wybrane", - "SharingField": "Udostępnianie", - "SharingPrivate": "Prywatny", - "SharingShared": "Udostępnionych", - "SiteLinkLabel": "Witryny", - "SizeOptionAll": "Wszystkie", - "SizeOptionExtraLarge": "Bardzo duże", - "SizeOptionLarge": "Dużych", - "SizeOptionMedium": "Średni", - "SizeOptionSmall": "Małe", - "SizeUnit": [ - "Bajtów", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Np", - "Yb" - ], - "SorryWebSearch": "Przepraszamy, ta funkcja nie jest zaimplementowana w tym przykładzie, ponieważ wymaga klucza interfejsu API usługi Bing.", - "SortedAscending": "Sortowane od A do Z", - "SortedDescending": "Sortowane Z do A", - "TypeAriaLabel": "Operacje kolumnowe dla typ pliku, naciśnij, aby posortować według typu pliku", - "UploadFileHeader": "Prześlij plik", - "UploadImageHeader": "Prześlij obraz", - "UploadLinkLabel": "Przesłać", - "WebSearchLinkLabel": "Wyszukiwanie w Internecie", - "Yes": "Tak", - "SelectedLabel": "Wybrany", - "SelectIcon": "Wybierz ikonę", - "StockImagesLinkLabel": "Zdjęcia stockowe", - "StockImagesHeader": "Zdjęcia stockowe", - "OrgAssetsLinkLabel": "Twoja organizacja" - }; -}); + "Save": "Zapisać", + "Cancel": "Anuluj", + "SiteBreadcrumbLabel": "Strona nawigacyjnej", + "ListViewGroupEmptyLabel": "Pusty", + "WebPartTitlePlaceholder": "Tytuł składnika Web Part", + "WebPartTitleLabel": "Dodawanie tytułu", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "W ciągu kilku sekund", + "L_RelativeDateTime_AFewSeconds": "Kilka sekund temu", + "L_RelativeDateTime_AboutAMinuteFuture": "W około minutę", + "L_RelativeDateTime_AboutAMinute": "Około minuty temu", + "L_RelativeDateTime_XMinutesFuture": "W {0} minutę||W {0} minut", + "L_RelativeDateTime_XMinutes": "{0} minutę temu||{0} minut temu", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "W około godzinę", + "L_RelativeDateTime_AboutAnHour": "Około godziny temu", + "L_RelativeDateTime_Tomorrow": "Jutro", + "L_RelativeDateTime_Yesterday": "Dokonana wczoraj", + "L_RelativeDateTime_TomorrowAndTime": "Jutro w {0}", + "L_RelativeDateTime_YesterdayAndTime": "Wczoraj o {0}", + "L_RelativeDateTime_XHoursFuture": "W {0} godzinę||W {0} godzinach", + "L_RelativeDateTime_XHours": "{0} godzinę temu||{0} godzin temu", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{0} w {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": "Dziś" + }, + "SendEmailTo": "Wyślij e-mail do {0}", + "StartChatWith": "Rozpocznij czat z {0}", + "Contact": "Kontakt", + "UpdateProfile": "Aktualizowanie profilu", + "TaxonomyPickerNoTerms": "Zestaw terminów nie zawiera żadnych terminów", + "TaxonomyPickerExpandTitle": "Rozwiń ten zestaw Term", + "TaxonomyPickerMenuTermSet": "Menu dla zestawu Term", + "TaxonomyPickerInLabel": "Cala", + "TaxonomyPickerTermSetLabel": "Zestaw Term", + "TaxonomyPickerTermsNotFound": "Nie można znaleźć kolejnych wybranych terminów w magazynie terminów: {0}", + "TaxonomyPickerInvalidTerms": "Napraw nieprawidłowe terminy: {0}", + "peoplePickerComponentTooltipMessage": "Selektor osób", + "peoplePickerComponentErrorMessage": "Pole wymagane", + "peoplePickerSuggestionsHeaderText": "Sugerowana ludzie", + "peoplePickerLoadingText": "Ładowania", + "PeoplePickerSearchText": "Pobieranie użytkowników", + "PeoplePickerGroupNotFound": "Nie można odnaleźć grupy.", + "genericNoResultsFoundText": "Nie znaleziono wyników", + "ListItemPickerSelectValue": "Wybierz wartość", + "ListItemAttachmentsActionDeleteIconTitle": "Usunąć", + "ListItemAttachmentsactionDeleteTitle": "Usunąć", + "ListItemAttachmentsfileDeletedMsg": "Usunięte {0} plików", + "ListItemAttachmentsfileDeleteError": "Błąd podczas usuwania pliku: {0}, Przyczyna {1}", + "ListItemAttachmentserrorLoadAttachments": "Błąd w załączniku elementu listy obciążenia, Przyczyna: {0}", + "ListItemAttachmentsconfirmDelete": "Czy na pewno chcesz wysłać załącznik {0} do kosza witryny?", + "ListItemAttachmentsdialogTitle": "Załącznik elementu listy", + "ListItemAttachmentsdialogOKbuttonLabel": "Ok", + "ListItemAttachmentsdialogCancelButtonLabel": "Anuluj", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Usunąć", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Dodaj załącznik", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Dodaj załącznik", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Plik nie {0} dołączony, Przyczyna: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Dodaj załącznik", + "ListItemAttachmentsloadingMessage": "Przesyłanie pliku...", + "ListItemAttachmentslPlaceHolderIconText": "Załącznik elementu listy", + "ListItemAttachmentslPlaceHolderDescription": "Proszę dodać załącznik", + "ListItemAttachmentslPlaceHolderButtonLabel": "Dodaj", + "mapsErrorMessage": "Wystąpił błąd podczas ładowania mapy", + "mapsLoadingText": "Ładowania", + "mapsSearchButtonText": "Szukaj", + "mapsTitlePrefix": "Mapa", + "ListViewFilterLabel": "Filtrowanie listy", + "HeaderNormalText": "Zwykły tekst", + "HeaderH2": "Dział 1", + "HeaderH3": "Dział 2", + "HeaderH4": "Dział 3", + "HeaderBlockQuote": "Wyciągnij ofertę", + "AlignLeft": "Wyrównaj do lewej", + "AlignCenter": "Centrum", + "AlignRight": "Wyrównaj do prawej", + "AlignJustify": "Uzasadnić", + "ListBullet": "Lista punktowana", + "ListNumbered": "Lista numerowana", + "StyleTitle": "Stylu", + "BoldTitle": "Pogrubienie (Ctrl + B)", + "ItalicTitle": "Kursywa (Ctrl + I)", + "UnderlineTitle": "Podkreślenie (Ctrl + U)", + "AlignTitle": "Wyrównaj", + "ListTitle": "Listy", + "LinkTitle": "Hiperłącze", + "ImageTitle": "Obraz", + "MoreTitle": "Więcej", + "FormattingPaneTitle": "Formatowanie tekstu", + "CloseButton": "Zamknij", + "InsertLinkTitle": "Wstaw odnośnik", + "InsertImageTitle": "Wstaw obraz", + "AddressFieldLabel": "Adres", + "TextToDisplayLabel": "Tekst do wyświetlenia", + "SaveButtonLabel": "Zapisz", + "CancelButtonLabel": "Anuluj", + "RemoveLinkLabel": "Usuń łącze", + "ParagraphSectionTitle": "Ustęp", + "HyperlinkSectionTitle": "Hiperłącze", + "UndoTitle": "Cofnij (Ctrl + Z)", + "RedoTitle": "Powtórz (Ctrl + Y)", + "ClearFormattingTitle": "Wyczyść wszystkie formatowanie", + "FontStyleTitle": "Styl czcionki", + "FontSizeTitle": "Rozmiar czcionki", + "StrikethroughTitle": "Przekreślenie", + "SuperscriptTitle": "Indeks górny", + "SubscriptTitle": "Indeks dolny", + "FontColorLabel": "Kolor czcionki", + "AutomaticFontColor": "Automatyczne", + "HighlightColorLabel": "Kolor podświetlenia", + "NoColorHighlightColor": "Brak koloru", + "IncreaseIndentTitle": "Zwiększ wcięcie", + "DecreaseIndentTitle": "Zmniejsz wcięcie", + "ThemeColorsGroupName": "Kolory motywu", + "HighlightColorsGroupName": "Wyróżnianie kolorów", + "StandardColorsGroupName": "Kolory standardowe", + "CustomColorsGroupName": "Kolory niestandardowe", + "ThemeColorDarker": "Ciemniejsze motywy", + "ThemeColorDark": "Temat ciemny", + "ThemeColorDarkAlt": "Temat ciemny zastępca", + "ThemeColorPrimary": "Temat podstawowy", + "ThemeColorSecondary": "Motyw pomocniczy", + "ThemeColorTertiary": "Neutralny trzeciorzędny", + "ThemeColorNeutralSecondary": "Neutralny wtórny", + "ThemeColorNeutralPrimaryAlt": "Neutralny podstawowy alternatywny", + "ThemeColorNeutralPrimary": "Neutralny podstawowy", + "ThemeColorNeutralDark": "Neutralny ciemny", + "HighlightColorYellow": "Żółty", + "HighlightColorGreen": "Zielony", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Niebieski", + "HighlightColorRed": "Czerwony", + "HighlightColorDarkblue": "Ciemnoniebieski", + "HighlightColorTeal": "Teal", + "HighlightColorDarkgreen": "Ciemnozielony", + "HighlightColorPurple": "Fioletowy", + "HighlightColorMaroon": "Bordowy", + "HighlightColorGold": "Złoto", + "HighlightColorDarkgrey": "Ciemnoszary", + "HighlightColorGrey": "Szary", + "HighlightColorBlack": "Czarny", + "StandardColorDarkred": "Ciemnoczerwony", + "StandardColorRed": "Czerwony", + "StandardColorOrange": "Pomarańczowy", + "StandardColorYellow": "Żółty", + "StandardColorLightgreen": "Jasnozielony", + "StandardColorGreen": "Zielony", + "StandardColorLightblue": "Jasnoniebieski", + "StandardColorBlue": "Niebieski", + "StandardColorDarkblue": "Ciemnoniebieski", + "StandardColorPurple": "Fioletowy", + "DatePickerMonthLongJanuary": "Stycznia", + "DatePickerMonthShortJanuary": "Jan", + "DatePickerMonthLongFebruary": "Lut", + "DatePickerMonthShortFebruary": "Lutego", + "DatePickerMonthLongMarch": "Mar", + "DatePickerMonthShortMarch": "Marzec", + "DatePickerMonthLongApril": "Kwietnia", + "DatePickerMonthShortApril": "Kwiecień", + "DatePickerMonthLongMay": "Może", + "DatePickerMonthShortMay": "Może", + "DatePickerMonthLongJune": "Czerwca", + "DatePickerMonthShortJune": "Cze", + "DatePickerMonthLongJuly": "Lipca", + "DatePickerMonthShortJuly": "Lip", + "DatePickerMonthLongAugust": "Sierpnia", + "DatePickerMonthShortAugust": "Sierpnia", + "DatePickerMonthLongSeptember": "Września", + "DatePickerMonthShortSeptember": "Siedem", + "DatePickerMonthLongOctober": "Października", + "DatePickerMonthShortOctober": "Października", + "DatePickerMonthLongNovember": "Listopada", + "DatePickerMonthShortNovember": "Listopada", + "DatePickerMonthLongDecember": "Grudnia", + "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": "Sob", + "DatePickerGoToToday": "Dziś", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Data", + "DateTimePickerTime": "Czas", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Nieprawidłowa wartość godziny", + "DateTimePickerMinuteValueInvalid": "Nieprawidłowa wartość minutowa", + "DateTimePickerSecondValueInvalid": "Nieprawidłowa druga wartość", + "DateTimePickerTextErrorMessage": "Podaj prawidłową datę", + "AddFileButtonLabel": "Dodaj plik", + "AddImageButtonLabel": "Dodaj obraz", + "AriaCellValue": "kolumna {0} {1}", + "FilePickerCancelButtonLabel": "Anuluj", + "CantValidateValidationMessage": "Nie mogliśmy zweryfikować tego linku. Proszę sprawdzić link i spróbować ponownie.", + "ChangeFileLinkLabel": "Zmień plik", + "ChangeImageLinkLabel": "Zmiana 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. Zapoznaj się z licencjami, aby upewnić się, że są zgodne.", + "DateFormat": "MM/DD/rrrr hh: mm A", + "DocumentLabelTemplate": "{0}, dokument, zmodyfikowany {1}, edytowane przez {2}, prywatne", + "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, zmodyfikowany {1}, edytowane przez {2}, {3} elementy, prywatne", + "FromLinkLinkLabel": "Z linku", + "ImageAltText": ". {0} obraz", + "ImageAriaLabelTemplate": ". {0} obraz", + "ImageLayoutPlaceholderText": "Układ", + "ImageSizePlaceholderText": "Rozmiar obrazu", + "ItemChildCountField": "Liczba podrzędnych elementów", + "LayoutOptionAll": "Wszystkie", + "LayoutOptionSquare": "Placu", + "LayoutOptionTall": "Wysoki", + "LayoutOptionWide": "Szeroki", + "LearnMoreLink": "Dowiedz się więcej.", + "LicenseOptionAll": "Wszystkie", + "LicenseOptionAny": "Tylko Creative Commons", + "LicensePlaceholderText": "Licencji", + "LinkFileInstructions": "Wklej łącze do pliku w OneDrive dla firmy lub SharePoint Online", + "LinkHeader": "Z linku", + "LinkImageInstructions": "Wklej łącze do obrazu w OneDrive dla firmy lub SharePoint Online", + "ListLayoutAriaLabel": "Opcje widoku. {0} {1}.", + "ListLayoutCompact": "Kompaktowy widok", + "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 płytek", + "ListLayoutTileDescription": "Wyświetlanie elementów z podglądem kafelków", + "ListOptionsAlt": "Opcje widoku. {0} zaznaczone.", + "ListOptionsTitle": "Otwórz menu opcji widoku", + "Loading": "Ładowania...", + "ModifiedByField": "Zmodyfikowany przez", + "ModifiedField": "Data modyfikacji", + "NameField": "Nazwa", + "No": "Nr", + "ProvidedValueIsInvalid": "Podana wartość jest nieprawidłowa", + "NoExternalLinksValidationMessage": "Obsłuż tylko łącza do plików w Twojej organizacji.", + "NoImageValidationMessage": "Nie jest to łącze do typu pliku, który obsłuży. Można połączyć tylko z obrazem.", + "NoRecentFiles": "Brak najnowszych plików", + "NoRecentFilesDescription": "Spróbuj wybrać plik z witryny lub przesłać 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}, zmodyfikowane {2}, edytowane przez {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Ten element jest z witryny OneDrive. Pliki i foldery w usłudze OneDrive są prywatne, chyba że są udostępniane. Czy udostępniony ten plik z członkami witryny, aby mogli go ostęp?", + "OneDriveConfirmDialogTitle": "Wystarczy sprawdzić...", + "OneDriveEmptyFolderAlt": "Pusty folder", + "OneDriveEmptyFolderDescription": "Aby dodać pliki, przejdź do usługi OneDrive. Można również dodać pliki do tego folderu za pomocą aplikacji OneDrive na komputerze.", + "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 dostarczone przez organizację", + "PoweredByBing": "Zasilany przez Bing", + "RecentDocumentsHeader": "Ostatnie dokumenty", + "RecentImagesHeader": "Ostatnie Zdjęcia", + "RecentLinkLabel": "Którzy niedawno się tam", + "SearchBoxPlaceholder": "Wyszukiwanie w Internecie", + "SearchResultAlt": "Wynik obrazu dla {0}.", + "SearchResultAriaLabel": "Naciśnij ENTER, aby otworzyć źródło obrazu w nowej karcie.", + "Selected": "Wybrane", + "SharingField": "Udostępnianie", + "SharingPrivate": "Prywatny", + "SharingShared": "Udostępnionych", + "SiteLinkLabel": "Witryny", + "SizeOptionAll": "Wszystkie", + "SizeOptionExtraLarge": "Bardzo duże", + "SizeOptionLarge": "Dużych", + "SizeOptionMedium": "Średni", + "SizeOptionSmall": "Małe", + "SizeUnit": [ + "Bajtów", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Np", + "Yb" + ], + "SorryWebSearch": "Przepraszamy, ta funkcja nie jest zaimplementowana w tym przykładzie, ponieważ wymaga klucza interfejsu API usługi Bing.", + "SortedAscending": "Sortowane od A do Z", + "SortedDescending": "Sortowane Z do A", + "TypeAriaLabel": "Operacje kolumnowe dla typ pliku, naciśnij, aby posortować według typu pliku", + "UploadFileHeader": "Prześlij plik", + "UploadImageHeader": "Prześlij obraz", + "UploadLinkLabel": "Przesłać", + "WebSearchLinkLabel": "Wyszukiwanie w Internecie", + "StockImagesLinkLabel": "Zdjęcia stockowe", + "StockImagesHeader": "Zdjęcia stockowe", + "Yes": "Tak", + "NewFolderNamePlaceholder": "Wprowadź nazwę folderu", + "FolderFilterBoxPlaceholder": "Filtrowanie folderów według nazwy", + "FolderExplorerLoading": "Ładowanie folderów...", + "FolderExplorerNoItems": "Ten folder nie ma żadnych podfolderów.", + "NewFolderIncorrectSymbolsError": "Wpisz nazwę, która nie zawiera żadnego z następujących znaków: \" * : < > ? / |.", + "SomethingWentWrong": "Coś poszło nie tak", + "SelectedLabel": "Wybrany", + "SelectIcon": "Wybierz ikonę", + "TreeViewExpandTitle": "Rozwiń ten element", + "TreeViewCollapseTitle": "Zwiń ten element", + "CollectionDataEmptyFields": "Nie podano żadnych pól dla danych kolekcji.", + "CollectionDataEmptyValue": "Brak danych w Twojej kolekcji.", + "CollectionAddRowButtonLabel": "Dodawanie danych do kolekcji", + "CollectionDeleteRowButtonLabel": "Usuwanie bieżącego wiersza", + "CollectionSaveAndAddButtonLabel": "Dodawanie i zapisywanie", + "CollectionDataItemShowErrorsLabel": "Pokaż błędy wierszy", + "CollectionDataItemFieldRequiredLabel": "Pole jest wymagane.", + "CollectionDataItemMissingFields": "Kolekcja Fields jest pusta!", + "InvalidUrlError": "Podany adres URL jest nieprawidłowy", + "CollectionDataSearch": "Szukać", + "MyTeamsLoadingMessage": "ładowanie zespołów", + "MyTeamsMessageError": "Coś poszło nie tak podczas ładowania zespołów, spróbuj później lub odśwież przeglądarkę", + "MyTeamsNoTeamsMessage": "Nie masz żadnych zespołów", + "MyTeamsTeamChannelPublicMessage": "Kanały publiczne", + "MyTeamsTeamChannelTypeMessage": "Kanały prywatne", + "TeamChannelPickerFontIconFavoriteText": "Ulubiony", + "TeamChannelPickerFontIconPrivateChannelTitle": "Kanał prywatny", + "TeamChannelPickerSugestionHeaderText": "Sugerowane kanały zespołu", + "TeamPickerButtonRemoveTitle": "usunąć", + "TeamPickernoResultsFoundText": "Nie znaleziono zespołów", + "TeamPickerSugestionsHeaderText": "Sugerowane zespoły", + "TeamsChannelPickerButtonRemoveTitle": "usunąć", + "TeamsChannelPickerNoresultsFoundText": "Nie znaleziono kanałów", + "ViewMore": "Zobacz więcej", + "DynamicFormLoading": "Ładowania...", + "DynamicFormPleaseWait": "Czekaj...", + "DynamicFormRequiredErrorMessage": "Nie możesz pozostawić tego pola pustego.", + "DynamicFormTermPanelTitle": "Wybierz termin", + "DynamicFormEnterURLPlaceholder": "Wpisz adres URL", + "DynamicFormEnterDescriptionPlaceholder": "Tekst alternatywny", + "customDisplayName": "Użyj tej lokalizacji:", + "ListItemCommentDIalogDeleteSubText": "Czy na pewno chcesz usunąć ten komentarz?", + "ListItemCommentsDialogDeleteTitle": "Potwierdź Usuń komentarz", + "ListItemCommentsLabel": "Komentarze", + "ListItemCommentsNoCommentsLabel": "Brak komentarzy", + "OrgAssetsLinkLabel": "Twoja organizacja", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/pt-pt.ts b/src/loc/pt-pt.ts index b2d55e2d5..344664928 100644 --- a/src/loc/pt-pt.ts +++ b/src/loc/pt-pt.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Tem a certeza que quer eliminar este comentário?", - ListItemCommentsDialogDeleteTitle: "Confirmar Eliminar Comentário", - ListItemCommentsLabel: "Comentários", - ListItemCommentsNoCommentsLabel: "Sem Comentários", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "Neste momento não tens nenhum Team", - MyTeamsMessageDontHaveTeams: "Neste momento não tens nenhum Team", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Site pãora", - "ListViewGroupEmptyLabel": "Vazio", - "WebPartTitlePlaceholder": "Título da parte da Web", - "WebPartTitleLabel": "Adicionar um título", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Em poucos segundos", - "L_RelativeDateTime_AFewSeconds": "Há alguns segundos.", - "L_RelativeDateTime_AboutAMinuteFuture": "Em cerca de um minuto", - "L_RelativeDateTime_AboutAMinute": "Cerca de um minuto atrás", - "L_RelativeDateTime_XMinutesFuture": "Em {0} minuto || 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": "Cerca de uma hora atrás", - "L_RelativeDateTime_Tomorrow": "Amanhã", - "L_RelativeDateTime_Yesterday": "Ontem", - "L_RelativeDateTime_TomorrowAndTime": "Amanhã, no {0}", - "L_RelativeDateTime_YesterdayAndTime": "Ontem, no {0}", - "L_RelativeDateTime_XHoursFuture": "Em {0} hora || Em {0} horas", - "L_RelativeDateTime_XHours": "{0} hora atrás|| {0} horas atrás", - "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", - "L_RelativeDateTime_XHoursIntervals": "1|| 2-", - "L_RelativeDateTime_DayAndTime": "{0} na {1}", - "L_RelativeDateTime_XDaysFuture": "{0} dia a partir de agora| | {0} dias a partir de agora", - "L_RelativeDateTime_XDays": "{0} dia atrás|| {0} dias atrás", - "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", - "L_RelativeDateTime_XDaysIntervals": "1|| 2-", - "L_RelativeDateTime_Today": "Hoje" - }, - "SendEmailTo": "Envie um e-mail para {0}", - "StartChatWith": "Comece uma conversa com {0}", - "Contact": "Contato", - "UpdateProfile": "Atualize seu perfil", - "TaxonomyPickerNoTerms": "Conjunto de prazos não contém termos", - "TaxonomyPickerExpandTitle": "Expandir este conjunto de prazos", - "TaxonomyPickerMenuTermSet": "Menu para conjunto de prazos", - "TaxonomyPickerInLabel": "Em", - "TaxonomyPickerTermSetLabel": "Conjunto de prazos", - "peoplePickerComponentTooltipMessage": "Pessoas Picker", - "peoplePickerComponentErrorMessage": "Campo necessário", - "peoplePickerSuggestionsHeaderText": "Pessoas sugeridas", - "peoplePickerLoadingText": "Carregar", - "PeoplePickerSearchText": "Buscando usuários", - "PeoplePickerGroupNotFound": "O grupo não pôde ser encontrado.", - "genericNoResultsFoundText": "Não foram encontrados resultados", - "ListItemPickerSelectValue": "Selecione valor", - "ListItemAttachmentsActionDeleteIconTitle": "Excluir", - "ListItemAttachmentsactionDeleteTitle": "Excluir", - "ListItemAttachmentsfileDeletedMsg": "Arquivo {0} excluído", - "ListItemAttachmentsfileDeleteError": "Erro no arquivo de exclusão: {0}, razão {1}", - "ListItemAttachmentserrorLoadAttachments": "Erro no anexo do item da lista de carga, razão: {0}", - "ListItemAttachmentsconfirmDelete": "Tem certeza de que deseja enviar o anexo {0} para o site reciclar bin?", - "ListItemAttachmentsdialogTitle": "Anexo do item da lista", - "ListItemAttachmentsdialogOKbuttonLabel": "Okey", - "ListItemAttachmentsdialogCancelButtonLabel": "Cancelar", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Excluir", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Adicionar anexo", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Adicionar anexo", - "ListItemAttachmentsuploadAttachmentErrorMsg": "O arquivo não {0} anexado, razão: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Adicionar anexo", - "ListItemAttachmentsloadingMessage": "Upload de arquivo ...", - "ListItemAttachmentslPlaceHolderIconText": "Anexo do item da lista", - "ListItemAttachmentslPlaceHolderDescription": "Por favor, adicione o anexo", - "ListItemAttachmentslPlaceHolderButtonLabel": "Adicionar", - "mapsErrorMessage": "Houve um erro ao carregar o mapa", - "mapsLoadingText": "Carregar", - "mapsSearchButtonText": "Busca", - "mapsTitlePrefix": "Mapa de", - "ListViewFilterLabel": "Filtrar a lista", - "HeaderNormalText": "Texto normal", - "HeaderH2": "Posição 1", - "HeaderH3": "Rumo 2", - "HeaderH4": "Rumo 3", - "HeaderBlockQuote": "Puxar citação", - "AlignLeft": "Alinhar à esquerda", - "AlignCenter": "Centro", - "AlignRight": "Alinhar direito", - "AlignJustify": "Justificar", - "ListBullet": "Lista bulleted", - "ListNumbered": "Lista numerada", - "StyleTitle": "Estilo", - "BoldTitle": "Negrito (Ctrl+B)", - "ItalicTitle": "Itálico (Ctrl+I)", - "UnderlineTitle": "Sublinhe (Ctrl+U)", - "AlignTitle": "Alinhar", - "ListTitle": "Lista", - "LinkTitle": "Hiperlink", - "MoreTitle": "Mais", - "FormattingPaneTitle": "Formatação de texto", - "CloseButton": "Perto", - "InsertLinkTitle": "Inserir link", - "AddressFieldLabel": "Endereço", - "TextToDisplayLabel": "Texto para exibir", - "SaveButtonLabel": "Salvar", - "CancelButtonLabel": "Cancelar", - "RemoveLinkLabel": "Remover o link", - "ParagraphSectionTitle": "Parágrafo", - "HyperlinkSectionTitle": "Hiperlink", - "UndoTitle": "Desfazer (Ctrl+Z)", - "RedoTitle": "Redo (Ctrl+Y) Redo (Ctrl + Y)", - "ClearFormattingTitle": "Limpar todas as formatação", - "FontStyleTitle": "Estilo de fonte", - "FontSizeTitle": "Tamanho da fonte", - "StrikethroughTitle": "Tachado", - "SuperscriptTitle": "Sobrescrito", - "SubscriptTitle": "Subscrito", - "FontColorLabel": "Cor da fonte", - "AutomaticFontColor": "Automático", - "HighlightColorLabel": "Destaque a cor", - "NoColorHighlightColor": "Sem cor", - "IncreaseIndentTitle": "Aumento do recuo", - "DecreaseIndentTitle": "Diminuição do recuo", - "ThemeColorsGroupName": "Cores do tema", - "HighlightColorsGroupName": "Destaque cores", - "StandardColorsGroupName": "Cores padrão", - "CustomColorsGroupName": "Cores personalizadas", - "ThemeColorDarker": "Tema mais escuro", - "ThemeColorDark": "Tema escuro", - "ThemeColorDarkAlt": "Tema escuro alternativo", - "ThemeColorPrimary": "Tema primário", - "ThemeColorSecondary": "Tema secundário", - "ThemeColorTertiary": "Terciário neutro", - "ThemeColorNeutralSecondary": "Secundário neutro", - "ThemeColorNeutralPrimaryAlt": "Suplente primário neutro", - "ThemeColorNeutralPrimary": "Primária neutra", - "ThemeColorNeutralDark": "Escuro neutro", - "HighlightColorYellow": "Amarelo", - "HighlightColorGreen": "Verde", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Azul", - "HighlightColorRed": "Vermelho", - "HighlightColorDarkblue": "Azul escuro", - "HighlightColorTeal": "Teal", - "HighlightColorDarkgreen": "Verde escuro", - "HighlightColorPurple": "Roxo", - "HighlightColorMaroon": "Marrom", - "HighlightColorGold": "Ouro", - "HighlightColorDarkgrey": "Cinza escuro", - "HighlightColorGrey": "Cinza", - "HighlightColorBlack": "Preto", - "StandardColorDarkred": "Vermelho escuro", - "StandardColorRed": "Vermelho", - "StandardColorOrange": "Laranja", - "StandardColorYellow": "Amarelo", - "StandardColorLightgreen": "Verde claro", - "StandardColorGreen": "Verde", - "StandardColorLightblue": "Azul claro", - "StandardColorBlue": "Azul", - "StandardColorDarkblue": "Azul escuro", - "StandardColorPurple": "Roxo", - "DatePickerMonthLongJanuary": "Janeiro", - "DatePickerMonthShortJanuary": "Janeiro", - "DatePickerMonthLongFebruary": "Fevereiro", - "DatePickerMonthShortFebruary": "Fevereiro", - "DatePickerMonthLongMarch": "Março", - "DatePickerMonthShortMarch": "Março", - "DatePickerMonthLongApril": "Abril", - "DatePickerMonthShortApril": "Abril", - "DatePickerMonthLongMay": "Pode", - "DatePickerMonthShortMay": "Pode", - "DatePickerMonthLongJune": "Junho", - "DatePickerMonthShortJune": "Jun", - "DatePickerMonthLongJuly": "Julho", - "DatePickerMonthShortJuly": "Jul", - "DatePickerMonthLongAugust": "Agosto", - "DatePickerMonthShortAugust": "Agosto", - "DatePickerMonthLongSeptember": "Setembro", - "DatePickerMonthShortSeptember": "Sete", - "DatePickerMonthLongOctober": "Outubro", - "DatePickerMonthShortOctober": "Outubro", - "DatePickerMonthLongNovember": "Novembro", - "DatePickerMonthShortNovember": "Novembro", - "DatePickerMonthLongDecember": "Dezembro", - "DatePickerMonthShortDecember": "Dezembro", - "DatePickerDayLongSunday": "Domingo", - "DatePickerDayShortSunday": "Sol", - "DatePickerDayLongMonday": "Segunda-feira", - "DatePickerDayShortMonday": "Meu", - "DatePickerDayLongTuesday": "Terça", - "DatePickerDayShortTuesday": "Ter", - "DatePickerDayLongWednesday": "Quarta", - "DatePickerDayShortWednesday": "Qua", - "DatePickerDayLongThursday": "Quinta", - "DatePickerDayShortThursday": "Qui", - "DatePickerDayLongFriday": "Sexta", - "DatePickerDayShortFriday": "Sex", - "DatePickerDayLongSaturday": "Sábado", - "DatePickerDayShortSaturday": "Sentado", - "DatePickerGoToToday": "Hoje", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Data", - "DateTimePickerTime": "Tempo", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Valor incorreto da hora", - "AddFileButtonLabel": "Adicionar arquivo", - "AddImageButtonLabel": "Adicionar imagem", - "AriaCellValue": "coluna {0}, {1}", - "FilePickerCancelButtonLabel": "Cancelar", - "CantValidateValidationMessage": "Não pudemos verificar este link. Por favor, verifique o link e tente novamente.", - "ChangeFileLinkLabel": "Alterar o arquivo", - "ChangeImageLinkLabel": "Mudar a imagem", - "ChooseFileLinkLabel": "Escolha o arquivo", - "ChooseImageLinkLabel": "Escolha a imagem", - "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", - "CopyrightWarning": "Você é responsável por respeitar os direitos dos outros, incluindo direitos autorais.", - "CreativeCommonsMessage": "Esses resultados são marcados com licenças Creative Commons. Reveja as licenças para garantir que você cumpra.", - "DateFormat": "MM/DD/YYYY hh: mm A", - "DocumentLabelTemplate": "{0}, Documento, {1} modificado, editado por {2}, Private", - "DocumentLibraries": "Bibliotecas de documentos", - "EditedByNamePlate": "editado por ", - "EmptyFileSize": "0 bytes", - "FilePickerHeader": "Selecionador de arquivos", - "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} modificada, editado por {2}, {3} itens, Private", - "FromLinkLinkLabel": "A partir de um link", - "ImageAltText": ". Imagem {0}", - "ImageAriaLabelTemplate": ". Imagem {0}", - "ImageLayoutPlaceholderText": "Layout", - "ImageSizePlaceholderText": "Tamanho da imagem", - "ItemChildCountField": "Contagem de crianças", - "LayoutOptionAll": "Todos", - "LayoutOptionSquare": "Praça", - "LayoutOptionTall": "Alto", - "LayoutOptionWide": "Larga", - "LearnMoreLink": "Saiba Mais.", - "LicenseOptionAll": "Todos", - "LicenseOptionAny": "Creative Commons apenas", - "LicensePlaceholderText": "Licença", - "LinkFileInstructions": "Colar um link para um arquivo no OneDrive for Business ou SharePoint Online", - "LinkHeader": "A partir de um link", - "LinkImageInstructions": "Colar um link para uma imagem no OneDrive for Business ou SharePoint Online", - "ListLayoutAriaLabel": "Opções de visualização. {0} {1} .", - "ListLayoutCompact": "Vista compacta", - "ListLayoutCompactDescription": "Veja itens e detalhes em uma lista compacta", - "ListLayoutList": "Vista da lista", - "ListLayoutListDescrition": "Veja itens e detalhes em uma lista", - "ListLayoutTile": "Vista da telha", - "ListLayoutTileDescription": "Veja itens com visualizações de azulejos", - "ListOptionsAlt": "Opções de visualização. {0} selecionados .", - "ListOptionsTitle": "Abra o menu de opções de visualização", - "Loading": "Carregar...", - "ModifiedByField": "Modificado por", - "ModifiedField": "Data modificada", - "NameField": "Nome", - "No": "Não", - "ProvidedValueIsInvalid": "O valor fornecido é inválido", - "NoExternalLinksValidationMessage": "Nós só suportamos links para arquivos em sua própria organização.", - "NoImageValidationMessage": "Este não é um link para um tipo de arquivo que apoiamos. Você só pode ligar para uma imagem.", - "NoRecentFiles": "Sem arquivos recentes", - "NoRecentFilesDescription": "Tente selecionar um arquivo do seu site ou fazer upload de um do seu dispositivo.", - "NoResultsBadEnglish": "Não há nenhum resultado encontrado. Tente alterar as opções 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}, {2} modificada, editado por {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Este item é do seu site OneDrive. Arquivos e pastas no OneDrive são privados, a menos que você compartilhá-los. Você compartilhou esse arquivo com os membros do seu site para que eles possam ccess-lo?", - "OneDriveConfirmDialogTitle": "Só verificando...", - "OneDriveEmptyFolderAlt": "Pasta vazia", - "OneDriveEmptyFolderDescription": "Para adicionar arquivos, acesse seu OneDrive. Você também pode adicionar arquivos a esta pasta usando o aplicativo 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": "Arquivos", - "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 arquivos 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": "Pressione entrar para abrir a fonte de imagem em uma nova guia.", - "Selected": "Selecionado", - "SharingField": "Compartilhar", - "SharingPrivate": "Privada", - "SharingShared": "Compartilhado", - "SiteLinkLabel": "Site", - "SizeOptionAll": "Todos", - "SizeOptionExtraLarge": "Extra Grande", - "SizeOptionLarge": "Grande", - "SizeOptionMedium": "Médio", - "SizeOptionSmall": "Pequeno", - "SizeUnit": [ - "Bytes", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Eg", - "Yb" - ], - "SorryWebSearch": "Desculpe, essa função não é implementada nesta amostra, porque exigiria uma chave de API do Bing.", - "SortedAscending": "Classificado de A a Z", - "SortedDescending": "Classificado Z para A", - "TypeAriaLabel": "Operações de coluna para o tipo de arquivo, pressione para classificar no tipo de arquivo", - "UploadFileHeader": "Arquivar do upload", - "UploadImageHeader": "Upload de imagem", - "UploadLinkLabel": "Carregar", - "WebSearchLinkLabel": "Pesquisa na Web", - "Yes": "Sim", - "SelectedLabel": "Selecionado", - "SelectIcon": "Selecionar ícone", - "StockImagesLinkLabel": "Banco de imagens", - "StockImagesHeader": "Banco de imagens", - "OrgAssetsLinkLabel": "Sua organização" - }; -}); + "Save": "Salvar", + "Cancel": "Cancelar", + "SiteBreadcrumbLabel": "Site pãora", + "ListViewGroupEmptyLabel": "Vazio", + "WebPartTitlePlaceholder": "Título da parte da Web", + "WebPartTitleLabel": "Adicionar um título", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Em poucos segundos", + "L_RelativeDateTime_AFewSeconds": "Há alguns segundos.", + "L_RelativeDateTime_AboutAMinuteFuture": "Em cerca de um minuto", + "L_RelativeDateTime_AboutAMinute": "Cerca de um minuto atrás", + "L_RelativeDateTime_XMinutesFuture": "Em {0} minuto || 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": "Cerca de uma hora atrás", + "L_RelativeDateTime_Tomorrow": "Amanhã", + "L_RelativeDateTime_Yesterday": "Ontem", + "L_RelativeDateTime_TomorrowAndTime": "Amanhã, no {0}", + "L_RelativeDateTime_YesterdayAndTime": "Ontem, no {0}", + "L_RelativeDateTime_XHoursFuture": "Em {0} hora || Em {0} horas", + "L_RelativeDateTime_XHours": "{0} hora atrás|| {0} horas atrás", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{0} na {1}", + "L_RelativeDateTime_XDaysFuture": "{0} dia a partir de agora| | {0} dias a partir de agora", + "L_RelativeDateTime_XDays": "{0} dia atrás|| {0} dias atrás", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Hoje" + }, + "SendEmailTo": "Envie um e-mail para {0}", + "StartChatWith": "Comece uma conversa com {0}", + "Contact": "Contato", + "UpdateProfile": "Atualize seu perfil", + "TaxonomyPickerNoTerms": "Conjunto de prazos não contém termos", + "TaxonomyPickerExpandTitle": "Expandir este conjunto de prazos", + "TaxonomyPickerMenuTermSet": "Menu para conjunto de prazos", + "TaxonomyPickerInLabel": "Em", + "TaxonomyPickerTermSetLabel": "Conjunto de prazos", + "TaxonomyPickerTermsNotFound": "Os próximos termos selecionados não puderam ser encontrados na loja de termos: {0}", + "TaxonomyPickerInvalidTerms": "Por favor, corrija os prazos inválidos: {0}", + "peoplePickerComponentTooltipMessage": "Pessoas Picker", + "peoplePickerComponentErrorMessage": "Campo necessário", + "peoplePickerSuggestionsHeaderText": "Pessoas sugeridas", + "peoplePickerLoadingText": "Carregar", + "PeoplePickerSearchText": "Buscando usuários", + "PeoplePickerGroupNotFound": "O grupo não pôde ser encontrado.", + "genericNoResultsFoundText": "Não foram encontrados resultados", + "ListItemPickerSelectValue": "Selecione valor", + "ListItemAttachmentsActionDeleteIconTitle": "Excluir", + "ListItemAttachmentsactionDeleteTitle": "Excluir", + "ListItemAttachmentsfileDeletedMsg": "Arquivo {0} excluído", + "ListItemAttachmentsfileDeleteError": "Erro no arquivo de exclusão: {0}, razão {1}", + "ListItemAttachmentserrorLoadAttachments": "Erro no anexo do item da lista de carga, razão: {0}", + "ListItemAttachmentsconfirmDelete": "Tem certeza de que deseja enviar o anexo {0} para o site reciclar bin?", + "ListItemAttachmentsdialogTitle": "Anexo do item da lista", + "ListItemAttachmentsdialogOKbuttonLabel": "Okey", + "ListItemAttachmentsdialogCancelButtonLabel": "Cancelar", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Excluir", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Adicionar anexo", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Adicionar anexo", + "ListItemAttachmentsuploadAttachmentErrorMsg": "O arquivo não {0} anexado, razão: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Adicionar anexo", + "ListItemAttachmentsloadingMessage": "Upload de arquivo ...", + "ListItemAttachmentslPlaceHolderIconText": "Anexo do item da lista", + "ListItemAttachmentslPlaceHolderDescription": "Por favor, adicione o anexo", + "ListItemAttachmentslPlaceHolderButtonLabel": "Adicionar", + "mapsErrorMessage": "Houve um erro ao carregar o mapa", + "mapsLoadingText": "Carregar", + "mapsSearchButtonText": "Busca", + "mapsTitlePrefix": "Mapa de", + "ListViewFilterLabel": "Filtrar a lista", + "HeaderNormalText": "Texto normal", + "HeaderH2": "Posição 1", + "HeaderH3": "Rumo 2", + "HeaderH4": "Rumo 3", + "HeaderBlockQuote": "Puxar citação", + "AlignLeft": "Alinhar à esquerda", + "AlignCenter": "Centro", + "AlignRight": "Alinhar direito", + "AlignJustify": "Justificar", + "ListBullet": "Lista bulleted", + "ListNumbered": "Lista numerada", + "StyleTitle": "Estilo", + "BoldTitle": "Negrito (Ctrl+B)", + "ItalicTitle": "Itálico (Ctrl+I)", + "UnderlineTitle": "Sublinhe (Ctrl+U)", + "AlignTitle": "Alinhar", + "ListTitle": "Lista", + "LinkTitle": "Hiperlink", + "ImageTitle": "Imagem", + "MoreTitle": "Mais", + "FormattingPaneTitle": "Formatação de texto", + "CloseButton": "Perto", + "InsertLinkTitle": "Inserir link", + "InsertImageTitle": "Inserir imagem", + "AddressFieldLabel": "Endereço", + "TextToDisplayLabel": "Texto para exibir", + "SaveButtonLabel": "Salvar", + "CancelButtonLabel": "Cancelar", + "RemoveLinkLabel": "Remover o link", + "ParagraphSectionTitle": "Parágrafo", + "HyperlinkSectionTitle": "Hiperlink", + "UndoTitle": "Desfazer (Ctrl+Z)", + "RedoTitle": "Redo (Ctrl+Y) Redo (Ctrl + Y)", + "ClearFormattingTitle": "Limpar todas as formatação", + "FontStyleTitle": "Estilo de fonte", + "FontSizeTitle": "Tamanho da fonte", + "StrikethroughTitle": "Tachado", + "SuperscriptTitle": "Sobrescrito", + "SubscriptTitle": "Subscrito", + "FontColorLabel": "Cor da fonte", + "AutomaticFontColor": "Automático", + "HighlightColorLabel": "Destaque a cor", + "NoColorHighlightColor": "Sem cor", + "IncreaseIndentTitle": "Aumento do recuo", + "DecreaseIndentTitle": "Diminuição do recuo", + "ThemeColorsGroupName": "Cores do tema", + "HighlightColorsGroupName": "Destaque cores", + "StandardColorsGroupName": "Cores padrão", + "CustomColorsGroupName": "Cores personalizadas", + "ThemeColorDarker": "Tema mais escuro", + "ThemeColorDark": "Tema escuro", + "ThemeColorDarkAlt": "Tema escuro alternativo", + "ThemeColorPrimary": "Tema primário", + "ThemeColorSecondary": "Tema secundário", + "ThemeColorTertiary": "Terciário neutro", + "ThemeColorNeutralSecondary": "Secundário neutro", + "ThemeColorNeutralPrimaryAlt": "Suplente primário neutro", + "ThemeColorNeutralPrimary": "Primária neutra", + "ThemeColorNeutralDark": "Escuro neutro", + "HighlightColorYellow": "Amarelo", + "HighlightColorGreen": "Verde", + "HighlightColorAqua": "Rio Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Azul", + "HighlightColorRed": "Vermelho", + "HighlightColorDarkblue": "Azul escuro", + "HighlightColorTeal": "Rio Teal", + "HighlightColorDarkgreen": "Verde escuro", + "HighlightColorPurple": "Roxo", + "HighlightColorMaroon": "Marrom", + "HighlightColorGold": "Ouro", + "HighlightColorDarkgrey": "Cinza escuro", + "HighlightColorGrey": "Cinza", + "HighlightColorBlack": "Preto", + "StandardColorDarkred": "Vermelho escuro", + "StandardColorRed": "Vermelho", + "StandardColorOrange": "Laranja", + "StandardColorYellow": "Amarelo", + "StandardColorLightgreen": "Verde claro", + "StandardColorGreen": "Verde", + "StandardColorLightblue": "Azul claro", + "StandardColorBlue": "Azul", + "StandardColorDarkblue": "Azul escuro", + "StandardColorPurple": "Roxo", + "DatePickerMonthLongJanuary": "Janeiro", + "DatePickerMonthShortJanuary": "Janeiro", + "DatePickerMonthLongFebruary": "Fevereiro", + "DatePickerMonthShortFebruary": "Fevereiro", + "DatePickerMonthLongMarch": "Março", + "DatePickerMonthShortMarch": "Março", + "DatePickerMonthLongApril": "Abril", + "DatePickerMonthShortApril": "Abril", + "DatePickerMonthLongMay": "Pode", + "DatePickerMonthShortMay": "Pode", + "DatePickerMonthLongJune": "Junho", + "DatePickerMonthShortJune": "Jun", + "DatePickerMonthLongJuly": "Julho", + "DatePickerMonthShortJuly": "Jul", + "DatePickerMonthLongAugust": "Agosto", + "DatePickerMonthShortAugust": "Agosto", + "DatePickerMonthLongSeptember": "Setembro", + "DatePickerMonthShortSeptember": "Sete", + "DatePickerMonthLongOctober": "Outubro", + "DatePickerMonthShortOctober": "Outubro", + "DatePickerMonthLongNovember": "Novembro", + "DatePickerMonthShortNovember": "Novembro", + "DatePickerMonthLongDecember": "Dezembro", + "DatePickerMonthShortDecember": "Dezembro", + "DatePickerDayLongSunday": "Domingo", + "DatePickerDayShortSunday": "Sol", + "DatePickerDayLongMonday": "Segunda-feira", + "DatePickerDayShortMonday": "Meu", + "DatePickerDayLongTuesday": "Terça", + "DatePickerDayShortTuesday": "Ter", + "DatePickerDayLongWednesday": "Quarta", + "DatePickerDayShortWednesday": "Qua", + "DatePickerDayLongThursday": "Quinta", + "DatePickerDayShortThursday": "Qui", + "DatePickerDayLongFriday": "Sexta", + "DatePickerDayShortFriday": "Sex", + "DatePickerDayLongSaturday": "Sábado", + "DatePickerDayShortSaturday": "Sentado", + "DatePickerGoToToday": "Hoje", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Data", + "DateTimePickerTime": "Tempo", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Valor incorreto da hora", + "DateTimePickerMinuteValueInvalid": "Valor de minutos incorreto", + "DateTimePickerSecondValueInvalid": "Segundo valor incorreto", + "DateTimePickerTextErrorMessage": "Por favor, insira uma data válida", + "AddFileButtonLabel": "Adicionar arquivo", + "AddImageButtonLabel": "Adicionar imagem", + "AriaCellValue": "coluna {0}, {1}", + "FilePickerCancelButtonLabel": "Cancelar", + "CantValidateValidationMessage": "Não pudemos verificar este link. Por favor, verifique o link e tente novamente.", + "ChangeFileLinkLabel": "Alterar o arquivo", + "ChangeImageLinkLabel": "Mudar a imagem", + "ChooseFileLinkLabel": "Escolha o arquivo", + "ChooseImageLinkLabel": "Escolha a imagem", + "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", + "CopyrightWarning": "Você é responsável por respeitar os direitos dos outros, incluindo direitos autorais.", + "CreativeCommonsMessage": "Esses resultados são marcados com licenças Creative Commons. Reveja as licenças para garantir que você cumpra.", + "DateFormat": "MM/DD/YYYY hh: mm A", + "DocumentLabelTemplate": "{0}, Documento, {1} modificado, editado por {2}, Private", + "DocumentLibraries": "Bibliotecas de documentos", + "EditedByNamePlate": "editado por ", + "EmptyFileSize": "0 bytes", + "FilePickerHeader": "Selecionador de arquivos", + "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} modificada, editado por {2}, {3} itens, Private", + "FromLinkLinkLabel": "A partir de um link", + "ImageAltText": ". Imagem {0}", + "ImageAriaLabelTemplate": ". Imagem {0}", + "ImageLayoutPlaceholderText": "Layout", + "ImageSizePlaceholderText": "Tamanho da imagem", + "ItemChildCountField": "Contagem de crianças", + "LayoutOptionAll": "Todos", + "LayoutOptionSquare": "Praça", + "LayoutOptionTall": "Alto", + "LayoutOptionWide": "Larga", + "LearnMoreLink": "Saiba Mais.", + "LicenseOptionAll": "Todos", + "LicenseOptionAny": "Creative Commons apenas", + "LicensePlaceholderText": "Licença", + "LinkFileInstructions": "Colar um link para um arquivo no OneDrive for Business ou SharePoint Online", + "LinkHeader": "A partir de um link", + "LinkImageInstructions": "Colar um link para uma imagem no OneDrive for Business ou SharePoint Online", + "ListLayoutAriaLabel": "Opções de visualização. {0} {1} .", + "ListLayoutCompact": "Vista compacta", + "ListLayoutCompactDescription": "Veja itens e detalhes em uma lista compacta", + "ListLayoutList": "Vista da lista", + "ListLayoutListDescrition": "Veja itens e detalhes em uma lista", + "ListLayoutTile": "Vista da telha", + "ListLayoutTileDescription": "Veja itens com visualizações de azulejos", + "ListOptionsAlt": "Opções de visualização. {0} selecionados .", + "ListOptionsTitle": "Abra o menu de opções de visualização", + "Loading": "Carregar...", + "ModifiedByField": "Modificado por", + "ModifiedField": "Data modificada", + "NameField": "Nome", + "No": "Não", + "ProvidedValueIsInvalid": "O valor fornecido é inválido", + "NoExternalLinksValidationMessage": "Nós só suportamos links para arquivos em sua própria organização.", + "NoImageValidationMessage": "Este não é um link para um tipo de arquivo que apoiamos. Você só pode ligar para uma imagem.", + "NoRecentFiles": "Sem arquivos recentes", + "NoRecentFilesDescription": "Tente selecionar um arquivo do seu site ou fazer upload de um do seu dispositivo.", + "NoResultsBadEnglish": "Não há nenhum resultado encontrado. Tente alterar as opções 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}, {2} modificada, editado por {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Este item é do seu site OneDrive. Arquivos e pastas no OneDrive são privados, a menos que você compartilhá-los. Você compartilhou esse arquivo com os membros do seu site para que eles possam ccess-lo?", + "OneDriveConfirmDialogTitle": "Só verificando...", + "OneDriveEmptyFolderAlt": "Pasta vazia", + "OneDriveEmptyFolderDescription": "Para adicionar arquivos, acesse seu OneDrive. Você também pode adicionar arquivos a esta pasta usando o aplicativo 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": "Arquivos", + "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 arquivos 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": "Pressione entrar para abrir a fonte de imagem em uma nova guia.", + "Selected": "Selecionado", + "SharingField": "Compartilhar", + "SharingPrivate": "Privada", + "SharingShared": "Compartilhado", + "SiteLinkLabel": "Site", + "SizeOptionAll": "Todos", + "SizeOptionExtraLarge": "Extra Grande", + "SizeOptionLarge": "Grande", + "SizeOptionMedium": "Médio", + "SizeOptionSmall": "Pequeno", + "SizeUnit": [ + "Bytes", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Eg", + "Yb" + ], + "SorryWebSearch": "Desculpe, essa função não é implementada nesta amostra, porque exigiria uma chave de API do Bing.", + "SortedAscending": "Classificado de A a Z", + "SortedDescending": "Classificado Z para A", + "TypeAriaLabel": "Operações de coluna para o tipo de arquivo, pressione para classificar no tipo de arquivo", + "UploadFileHeader": "Arquivar do upload", + "UploadImageHeader": "Upload de imagem", + "UploadLinkLabel": "Carregar", + "WebSearchLinkLabel": "Pesquisa na Web", + "StockImagesLinkLabel": "Banco de imagens", + "StockImagesHeader": "Banco de imagens", + "Yes": "Sim", + "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.", + "NewFolderIncorrectSymbolsError": "Por favor, insira um nome que não inclua nenhum destes personagens: \" * : < > ? / |.", + "SomethingWentWrong": "Algo correu mal.", + "SelectedLabel": "Selecionado", + "SelectIcon": "Selecionar ícone", + "TreeViewExpandTitle": "Expandir este item", + "TreeViewCollapseTitle": "Destrua este item", + "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.", + "CollectionDataItemMissingFields": "A coleção de campos está vazia!", + "InvalidUrlError": "O URL fornecido não é válido", + "CollectionDataSearch": "Pesquisar", + "MyTeamsLoadingMessage": "carregando as suas equipas", + "MyTeamsMessageError": "Algo correu mal ao carregar as suas equipas, por favor, tente mais tarde ou refresque o navegador", + "MyTeamsNoTeamsMessage": "Neste momento não tens nenhum Team", + "MyTeamsTeamChannelPublicMessage": "Canais Públicos", + "MyTeamsTeamChannelTypeMessage": "Canais Privados", + "TeamChannelPickerFontIconFavoriteText": "Favorito", + "TeamChannelPickerFontIconPrivateChannelTitle": "Canal Privado", + "TeamChannelPickerSugestionHeaderText": "Canais de Equipa Sugeridos", + "TeamPickerButtonRemoveTitle": "remover", + "TeamPickernoResultsFoundText": "Nenhuma equipa encontrada", + "TeamPickerSugestionsHeaderText": "Equipas Sugeridas", + "TeamsChannelPickerButtonRemoveTitle": "remover", + "TeamsChannelPickerNoresultsFoundText": "Não há canais encontrados", + "ViewMore": "Ver mais", + "DynamicFormLoading": "A carregar...", + "DynamicFormPleaseWait": "Aguarde...", + "DynamicFormRequiredErrorMessage": "Não pode deixar isto em branco.", + "DynamicFormTermPanelTitle": "Selecione Termo", + "DynamicFormEnterURLPlaceholder": "Insira um URL", + "DynamicFormEnterDescriptionPlaceholder": "Texto alternativo", + "customDisplayName": "Utilize este local:", + "ListItemCommentDIalogDeleteSubText": "Tem a certeza que quer eliminar este comentário?", + "ListItemCommentsDialogDeleteTitle": "Confirmar Eliminar Comentário", + "ListItemCommentsLabel": "Comentários", + "ListItemCommentsNoCommentsLabel": "Sem Comentários", + "OrgAssetsLinkLabel": "Sua organização", + "MyTeamsMessageDontHaveTeams": "Neste momento não tens nenhum Team" +}; +}); \ No newline at end of file diff --git a/src/loc/ro-ro.ts b/src/loc/ro-ro.ts index 2e4ad30a6..b88b1815a 100644 --- a/src/loc/ro-ro.ts +++ b/src/loc/ro-ro.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Site-ul breadcrumb", - "ListViewGroupEmptyLabel": "Gol", - "WebPartTitlePlaceholder": "Titlu parte Web", - "WebPartTitleLabel": "Adăugarea unui titlu", - "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} minute||În {0} minute", - "L_RelativeDateTime_XMinutes": "{0} minut în urmă||{0} minute în urmă", - "L_RelativeDateTime_XMinutesFutureIntervals": "1||2-", - "L_RelativeDateTime_XMinutesIntervals": "1||2-", - "L_RelativeDateTime_AboutAnHourFuture": "Într-o oră", - "L_RelativeDateTime_AboutAnHour": "Acum o oră", - "L_RelativeDateTime_Tomorrow": "Mâine", - "L_RelativeDateTime_Yesterday": "Făcută ieri", - "L_RelativeDateTime_TomorrowAndTime": "Mâine la {0}", - "L_RelativeDateTime_YesterdayAndTime": "Ieri la {0}", - "L_RelativeDateTime_XHoursFuture": "În {0} oră||În {0} ore", - "L_RelativeDateTime_XHours": "{0} oră în urmă||{0} ore în urmă", - "L_RelativeDateTime_XHoursFutureIntervals": "1||2-", - "L_RelativeDateTime_XHoursIntervals": "1||2-", - "L_RelativeDateTime_DayAndTime": "{0} la {1}", - "L_RelativeDateTime_XDaysFuture": "{0} zi de acum||{0} zile de acum", - "L_RelativeDateTime_XDays": "{0} zi în urmă||{0} zile în urmă", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Astăzi" - }, - "SendEmailTo": "Trimiteți un e-mail la {0}", - "StartChatWith": "Începeți o conversație cu {0}", - "Contact": "Contact", - "UpdateProfile": "Actualizați-vă profilul", - "TaxonomyPickerNoTerms": "Setul de termeni nu conține niciun", - "TaxonomyPickerExpandTitle": "Extindeți acest set de termeni", - "TaxonomyPickerMenuTermSet": "Meniu pentru set de termeni", - "TaxonomyPickerInLabel": "In", - "TaxonomyPickerTermSetLabel": "Set de termeni", - "peoplePickerComponentTooltipMessage": "Selector persoane", - "peoplePickerComponentErrorMessage": "Câmp obligatoriu", - "peoplePickerSuggestionsHeaderText": "Persoane sugerate", - "peoplePickerLoadingText": "Încărcare", - "PeoplePickerSearchText": "Preluarea utilizatorilor", - "PeoplePickerGroupNotFound": "Imposibil de găsit grupul.", - "genericNoResultsFoundText": "Nu s-au găsit rezultate", - "ListItemPickerSelectValue": "Selectare valoare", - "ListItemAttachmentsActionDeleteIconTitle": "Şterge", - "ListItemAttachmentsactionDeleteTitle": "Şterge", - "ListItemAttachmentsfileDeletedMsg": "Fișier {0} șters", - "ListItemAttachmentsfileDeleteError": "Eroare la ștergerea fișierului: {0}, motiv {1}", - "ListItemAttachmentserrorLoadAttachments": "Eroare pe atașare element listă de încărcare, motiv: {0}", - "ListItemAttachmentsconfirmDelete": "Sigur trimiteți atașarea {0} la Coșul de reciclare a site-ului?", - "ListItemAttachmentsdialogTitle": "Atașare element listă", - "ListItemAttachmentsdialogOKbuttonLabel": "ok", - "ListItemAttachmentsdialogCancelButtonLabel": "Anula", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Şterge", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Adăugare atașare", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Adăugare atașare", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Fișierul nu {0} atașat, motiv: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Adăugare atașare", - "ListItemAttachmentsloadingMessage": "Se încarcă fișierul...", - "ListItemAttachmentslPlaceHolderIconText": "Atașare element listă", - "ListItemAttachmentslPlaceHolderDescription": "Vă rugăm să adăugați atașament", - "ListItemAttachmentslPlaceHolderButtonLabel": "Adăugare", - "mapsErrorMessage": "Eroare la încărcarea hărții", - "mapsLoadingText": "Încărcare", - "mapsSearchButtonText": "Căutaţi", - "mapsTitlePrefix": "Harta", - "ListViewFilterLabel": "Filtrați lista", - "HeaderNormalText": "Text normal", - "HeaderH2": "Titlul 1", - "HeaderH3": "Titlu 2", - "HeaderH4": "Rubrica 3", - "HeaderBlockQuote": "Trage citat", - "AlignLeft": "Aliniere la stânga", - "AlignCenter": "Centrul", - "AlignRight": "Aliniere la dreapta", - "AlignJustify": "Justifica", - "ListBullet": "Listă cu marcatori", - "ListNumbered": "Listă numerotată", - "StyleTitle": "Stil", - "BoldTitle": "Bold (Ctrl + B)", - "ItalicTitle": "Italic (Ctrl + I)", - "UnderlineTitle": "Subliniere (Ctrl + U)", - "AlignTitle": "Aliniaţi", - "ListTitle": "Listă", - "LinkTitle": "Hyperlink", - "MoreTitle": "Mai multe", - "FormattingPaneTitle": "Formatarea textului", - "CloseButton": "Închide", - "InsertLinkTitle": "Inserare legătură", - "AddressFieldLabel": "Adresa", - "TextToDisplayLabel": "Text de afișat", - "SaveButtonLabel": "Salva", - "CancelButtonLabel": "Anula", - "RemoveLinkLabel": "Eliminare legătură", - "ParagraphSectionTitle": "Alineatul (", - "HyperlinkSectionTitle": "Hyperlink", - "UndoTitle": "Anulare (Ctrl + Z)", - "RedoTitle": "Refacere (Ctrl + Y)", - "ClearFormattingTitle": "Goliți toate formatele", - "FontStyleTitle": "Stil font", - "FontSizeTitle": "Dimensiune font", - "StrikethroughTitle": "Tăiat", - "SuperscriptTitle": "Exponent", - "SubscriptTitle": "Indice", - "FontColorLabel": "Culoare font", - "AutomaticFontColor": "Automată", - "HighlightColorLabel": "Evidențiere culoare", - "NoColorHighlightColor": "Fără culoare", - "IncreaseIndentTitle": "Mărire indent", - "DecreaseIndentTitle": "Scădere indent", - "ThemeColorsGroupName": "Culorile temei", - "HighlightColorsGroupName": "Evidențiere culori", - "StandardColorsGroupName": "Culori standard", - "CustomColorsGroupName": "Culori particularizate", - "ThemeColorDarker": "Tematica mai inchisa", - "ThemeColorDark": "Temă întunecată", - "ThemeColorDarkAlt": "Temă întuneric alternativ", - "ThemeColorPrimary": "Tema primară", - "ThemeColorSecondary": "Tematica secundar", - "ThemeColorTertiary": "Terțiar neutru", - "ThemeColorNeutralSecondary": "Secundar neutru", - "ThemeColorNeutralPrimaryAlt": "Alternativ primar neutru", - "ThemeColorNeutralPrimary": "Primar neutru", - "ThemeColorNeutralDark": "Întuneric neutru", - "HighlightColorYellow": "Galben", - "HighlightColorGreen": "Verde", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Albastru", - "HighlightColorRed": "Roşu", - "HighlightColorDarkblue": "Albastru închis", - "HighlightColorTeal": "Teal", - "HighlightColorDarkgreen": "Verde închis", - "HighlightColorPurple": "Violet", - "HighlightColorMaroon": "Maroon", - "HighlightColorGold": "Aur", - "HighlightColorDarkgrey": "Gri", - "HighlightColorGrey": "Gri", - "HighlightColorBlack": "Negru", - "StandardColorDarkred": "Roșu închis", - "StandardColorRed": "Roşu", - "StandardColorOrange": "Portocaliu", - "StandardColorYellow": "Galben", - "StandardColorLightgreen": "Verde deschis", - "StandardColorGreen": "Verde", - "StandardColorLightblue": "Albastru deschis", - "StandardColorBlue": "Albastru", - "StandardColorDarkblue": "Albastru închis", - "StandardColorPurple": "Violet", - "DatePickerMonthLongJanuary": "Ianuarie", - "DatePickerMonthShortJanuary": "Ianuarie", - "DatePickerMonthLongFebruary": "Februarie", - "DatePickerMonthShortFebruary": "Februarie", - "DatePickerMonthLongMarch": "Martie", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "Aprilie", - "DatePickerMonthShortApril": "Apr", - "DatePickerMonthLongMay": "Pot", - "DatePickerMonthShortMay": "Pot", - "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": "Sat", - "DatePickerGoToToday": "Astăzi", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Data", - "DateTimePickerTime": "Timp", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Valoare oră incorectă", - "AddFileButtonLabel": "Adăugare fișier", - "AddImageButtonLabel": "Adăugare imagine", - "AriaCellValue": "{0} coloană, {1}", - "FilePickerCancelButtonLabel": "Anula", - "CantValidateValidationMessage": "Nu am putut verifica acest link. Vă rugăm să verificați link-ul și încercați din nou.", - "ChangeFileLinkLabel": "Modificare fișier", - "ChangeImageLinkLabel": "Modificare imagine", - "ChooseFileLinkLabel": "Alegere fișier", - "ChooseImageLinkLabel": "Alege imaginea", - "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", - "CopyrightWarning": "Sunteți responsabil pentru respectarea drepturilor celorlalți, inclusiv a dreptului de autor.", - "CreativeCommonsMessage": "Aceste rezultate sunt etichetate cu licențe Creative Commons. Revizuiți licențele pentru a vă asigura că respectați.", - "DateFormat": "MM/ZZ/AAAA 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}, pliant, {1} modificat, editat de {2}, articole {3}, privat", - "FromLinkLinkLabel": "De la un link", - "ImageAltText": ". {0} imagine", - "ImageAriaLabelTemplate": ". {0} imagine", - "ImageLayoutPlaceholderText": "Aspect", - "ImageSizePlaceholderText": "Dimensiunea imaginii", - "ItemChildCountField": "Contor copii articol", - "LayoutOptionAll": "Toate", - "LayoutOptionSquare": "Pătrat", - "LayoutOptionTall": "Înalt", - "LayoutOptionWide": "Largă", - "LearnMoreLink": "află mai multe.", - "LicenseOptionAll": "Toate", - "LicenseOptionAny": "Creative Commons numai", - "LicensePlaceholderText": "Licenţă", - "LinkFileInstructions": "Lipiți un link la un fișier în OneDrive for Business sau SharePoint Online", - "LinkHeader": "De la un link", - "LinkImageInstructions": "Lipiți un link la o imagine în OneDrive for Business sau SharePoint Online", - "ListLayoutAriaLabel": "Vizualizați opțiunile. {0} {1}.", - "ListLayoutCompact": "Vizualizare compactă", - "ListLayoutCompactDescription": "Vizualizarea elementelor și detaliilor într-o listă compactă", - "ListLayoutList": "Vizualizare listă", - "ListLayoutListDescrition": "Vizualizarea elementelor și detaliilor dintr-o listă", - "ListLayoutTile": "Vizualizare dală", - "ListLayoutTileDescription": "Vizualizarea elementelor cu examinări de țiglă", - "ListOptionsAlt": "Vizualizați opțiunile. {0} selectată.", - "ListOptionsTitle": "Deschiderea meniului opțiunilor de vizualizare", - "Loading": "Încărcare...", - "ModifiedByField": "Modificat de", - "ModifiedField": "Data modificării", - "NameField": "nume", - "No": "nu", - "ProvidedValueIsInvalid": "Valoarea furnizată nu este validă", - "NoExternalLinksValidationMessage": "Sprijinim doar legarea la fișiere din propria organizație.", - "NoImageValidationMessage": "Acest lucru nu este un link către un tip de fișier pe care îl sprijinim. Aveți posibilitatea să legați doar la o imagine.", - "NoRecentFiles": "Fără fișiere recente", - "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 dacă nu le partajați. Ați partajat acest fișier cu membrii site-ului dvs., astfel încât acestea să poată să-l ccess?", - "OneDriveConfirmDialogTitle": "Doar de verificare...", - "OneDriveEmptyFolderAlt": "Folder gol", - "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": "Powered by 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": "Extra mare", - "SizeOptionLarge": "Mare", - "SizeOptionMedium": "Mediu", - "SizeOptionSmall": "Mici", - "SizeUnit": [ - "Octeţi", - "Kb", - "Mb", - "Gb", - "Tb", - "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 la a la Z", - "SortedDescending": "Sortare Z la A", - "TypeAriaLabel": "Operațiuni de coloană pentru tipul de fișier, apăsați pentru a sorta pe tipul de fișier", - "UploadFileHeader": "Încărcați fișierul", - "UploadImageHeader": "Încărcați imaginea", - "UploadLinkLabel": "Încărcaţi", - "WebSearchLinkLabel": "Căutare pe web", - "Yes": "da", - "SelectedLabel": "Selectat", - "SelectIcon": "Selectare pictogramă", - "StockImagesLinkLabel": "Imagini stoc", - "StockImagesHeader": "Imagini stoc", - "OrgAssetsLinkLabel": "Organizația dvs." - }; -}); + "Save": "Salva", + "Cancel": "Anula", + "SiteBreadcrumbLabel": "Site-ul breadcrumb", + "ListViewGroupEmptyLabel": "Gol", + "WebPartTitlePlaceholder": "Titlu parte Web", + "WebPartTitleLabel": "Adăugarea unui titlu", + "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} minute||În {0} minute", + "L_RelativeDateTime_XMinutes": "{0} minut în urmă||{0} minute în urmă", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "Într-o oră", + "L_RelativeDateTime_AboutAnHour": "Acum o oră", + "L_RelativeDateTime_Tomorrow": "Mâine", + "L_RelativeDateTime_Yesterday": "Făcută ieri", + "L_RelativeDateTime_TomorrowAndTime": "Mâine la {0}", + "L_RelativeDateTime_YesterdayAndTime": "Ieri la {0}", + "L_RelativeDateTime_XHoursFuture": "În {0} oră||În {0} ore", + "L_RelativeDateTime_XHours": "{0} oră în urmă||{0} ore în urmă", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{0} la {1}", + "L_RelativeDateTime_XDaysFuture": "{0} zi de acum||{0} zile de acum", + "L_RelativeDateTime_XDays": "{0} zi în urmă||{0} zile în urmă", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Astăzi" + }, + "SendEmailTo": "Trimiteți un e-mail la {0}", + "StartChatWith": "Începeți o conversație cu {0}", + "Contact": "Contact", + "UpdateProfile": "Actualizați-vă profilul", + "TaxonomyPickerNoTerms": "Setul de termeni nu conține niciun", + "TaxonomyPickerExpandTitle": "Extindeți acest set de termeni", + "TaxonomyPickerMenuTermSet": "Meniu pentru set de termeni", + "TaxonomyPickerInLabel": "In", + "TaxonomyPickerTermSetLabel": "Set de termeni", + "TaxonomyPickerTermsNotFound": "Următorul (următoarele) termen(e) selectat(e) nu a putut fi găsit(e) în depozitul de termeni: {0}", + "TaxonomyPickerInvalidTerms": "Vă rugăm să remediați termenul ( termen) nevalid(e): {0}", + "peoplePickerComponentTooltipMessage": "Selector persoane", + "peoplePickerComponentErrorMessage": "Câmp obligatoriu", + "peoplePickerSuggestionsHeaderText": "Persoane sugerate", + "peoplePickerLoadingText": "Încărcare", + "PeoplePickerSearchText": "Preluarea utilizatorilor", + "PeoplePickerGroupNotFound": "Imposibil de găsit grupul.", + "genericNoResultsFoundText": "Nu s-au găsit rezultate", + "ListItemPickerSelectValue": "Selectare valoare", + "ListItemAttachmentsActionDeleteIconTitle": "Şterge", + "ListItemAttachmentsactionDeleteTitle": "Şterge", + "ListItemAttachmentsfileDeletedMsg": "Fișier {0} șters", + "ListItemAttachmentsfileDeleteError": "Eroare la ștergerea fișierului: {0}, motiv {1}", + "ListItemAttachmentserrorLoadAttachments": "Eroare pe atașare element listă de încărcare, motiv: {0}", + "ListItemAttachmentsconfirmDelete": "Sigur trimiteți atașarea {0} la Coșul de reciclare a site-ului?", + "ListItemAttachmentsdialogTitle": "Atașare element listă", + "ListItemAttachmentsdialogOKbuttonLabel": "ok", + "ListItemAttachmentsdialogCancelButtonLabel": "Anula", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Şterge", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Adăugare atașare", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Adăugare atașare", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Fișierul nu {0} atașat, motiv: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Adăugare atașare", + "ListItemAttachmentsloadingMessage": "Se încarcă fișierul...", + "ListItemAttachmentslPlaceHolderIconText": "Atașare element listă", + "ListItemAttachmentslPlaceHolderDescription": "Vă rugăm să adăugați atașament", + "ListItemAttachmentslPlaceHolderButtonLabel": "Adăugare", + "mapsErrorMessage": "Eroare la încărcarea hărții", + "mapsLoadingText": "Încărcare", + "mapsSearchButtonText": "Căutaţi", + "mapsTitlePrefix": "Harta", + "ListViewFilterLabel": "Filtrați lista", + "HeaderNormalText": "Text normal", + "HeaderH2": "Titlul 1", + "HeaderH3": "Titlu 2", + "HeaderH4": "Rubrica 3", + "HeaderBlockQuote": "Trage citat", + "AlignLeft": "Aliniere la stânga", + "AlignCenter": "Centrul", + "AlignRight": "Aliniere la dreapta", + "AlignJustify": "Justifica", + "ListBullet": "Listă cu marcatori", + "ListNumbered": "Listă numerotată", + "StyleTitle": "Stil", + "BoldTitle": "Bold (Ctrl + B)", + "ItalicTitle": "Italic (Ctrl + I)", + "UnderlineTitle": "Subliniere (Ctrl + U)", + "AlignTitle": "Aliniaţi", + "ListTitle": "Listă", + "LinkTitle": "Hyperlink", + "ImageTitle": "Imagine", + "MoreTitle": "Mai multe", + "FormattingPaneTitle": "Formatarea textului", + "CloseButton": "Închide", + "InsertLinkTitle": "Inserare legătură", + "InsertImageTitle": "Inserare imagine", + "AddressFieldLabel": "Adresa", + "TextToDisplayLabel": "Text de afișat", + "SaveButtonLabel": "Salva", + "CancelButtonLabel": "Anula", + "RemoveLinkLabel": "Eliminare legătură", + "ParagraphSectionTitle": "Alineatul (", + "HyperlinkSectionTitle": "Hyperlink", + "UndoTitle": "Anulare (Ctrl + Z)", + "RedoTitle": "Refacere (Ctrl + Y)", + "ClearFormattingTitle": "Goliți toate formatele", + "FontStyleTitle": "Stil font", + "FontSizeTitle": "Dimensiune font", + "StrikethroughTitle": "Tăiat", + "SuperscriptTitle": "Exponent", + "SubscriptTitle": "Indice", + "FontColorLabel": "Culoare font", + "AutomaticFontColor": "Automată", + "HighlightColorLabel": "Evidențiere culoare", + "NoColorHighlightColor": "Fără culoare", + "IncreaseIndentTitle": "Mărire indent", + "DecreaseIndentTitle": "Scădere indent", + "ThemeColorsGroupName": "Culorile temei", + "HighlightColorsGroupName": "Evidențiere culori", + "StandardColorsGroupName": "Culori standard", + "CustomColorsGroupName": "Culori particularizate", + "ThemeColorDarker": "Tematica mai inchisa", + "ThemeColorDark": "Temă întunecată", + "ThemeColorDarkAlt": "Temă întuneric alternativ", + "ThemeColorPrimary": "Tema primară", + "ThemeColorSecondary": "Tematica secundar", + "ThemeColorTertiary": "Terțiar neutru", + "ThemeColorNeutralSecondary": "Secundar neutru", + "ThemeColorNeutralPrimaryAlt": "Alternativ primar neutru", + "ThemeColorNeutralPrimary": "Primar neutru", + "ThemeColorNeutralDark": "Întuneric neutru", + "HighlightColorYellow": "Galben", + "HighlightColorGreen": "Verde", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Albastru", + "HighlightColorRed": "Roşu", + "HighlightColorDarkblue": "Albastru închis", + "HighlightColorTeal": "Teal", + "HighlightColorDarkgreen": "Verde închis", + "HighlightColorPurple": "Violet", + "HighlightColorMaroon": "Maroon", + "HighlightColorGold": "Aur", + "HighlightColorDarkgrey": "Gri", + "HighlightColorGrey": "Gri", + "HighlightColorBlack": "Negru", + "StandardColorDarkred": "Roșu închis", + "StandardColorRed": "Roşu", + "StandardColorOrange": "Portocaliu", + "StandardColorYellow": "Galben", + "StandardColorLightgreen": "Verde deschis", + "StandardColorGreen": "Verde", + "StandardColorLightblue": "Albastru deschis", + "StandardColorBlue": "Albastru", + "StandardColorDarkblue": "Albastru închis", + "StandardColorPurple": "Violet", + "DatePickerMonthLongJanuary": "Ianuarie", + "DatePickerMonthShortJanuary": "Ianuarie", + "DatePickerMonthLongFebruary": "Februarie", + "DatePickerMonthShortFebruary": "Februarie", + "DatePickerMonthLongMarch": "Martie", + "DatePickerMonthShortMarch": "Mar", + "DatePickerMonthLongApril": "Aprilie", + "DatePickerMonthShortApril": "Apr", + "DatePickerMonthLongMay": "Pot", + "DatePickerMonthShortMay": "Pot", + "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": "Dum", + "DatePickerDayLongMonday": "Luni", + "DatePickerDayShortMonday": "Meu", + "DatePickerDayLongTuesday": "Marţi", + "DatePickerDayShortTuesday": "Mar", + "DatePickerDayLongWednesday": "Miercuri", + "DatePickerDayShortWednesday": "Mier", + "DatePickerDayLongThursday": "Joi", + "DatePickerDayShortThursday": "Joi", + "DatePickerDayLongFriday": "Vineri", + "DatePickerDayShortFriday": "Vineri", + "DatePickerDayLongSaturday": "Sâmbătă", + "DatePickerDayShortSaturday": "Sâm", + "DatePickerGoToToday": "Astăzi", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Data", + "DateTimePickerTime": "Timp", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Valoare oră incorectă", + "DateTimePickerMinuteValueInvalid": "Valoare incorectă a minutei", + "DateTimePickerSecondValueInvalid": "A doua valoare incorectă", + "DateTimePickerTextErrorMessage": "Vă rugăm să introduceți o dată validă", + "AddFileButtonLabel": "Adăugare fișier", + "AddImageButtonLabel": "Adăugare imagine", + "AriaCellValue": "{0} coloană, {1}", + "FilePickerCancelButtonLabel": "Anula", + "CantValidateValidationMessage": "Nu am putut verifica acest link. Vă rugăm să verificați link-ul și încercați din nou.", + "ChangeFileLinkLabel": "Modificare fișier", + "ChangeImageLinkLabel": "Modificare imagine", + "ChooseFileLinkLabel": "Alegere fișier", + "ChooseImageLinkLabel": "Alege imaginea", + "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", + "CopyrightWarning": "Sunteți responsabil pentru respectarea drepturilor celorlalți, inclusiv a dreptului de autor.", + "CreativeCommonsMessage": "Aceste rezultate sunt etichetate cu licențe Creative Commons. Revizuiți licențele pentru a vă asigura că respectați.", + "DateFormat": "MM/ZZ/AAAA 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}, pliant, {1} modificat, editat de {2}, articole {3}, privat", + "FromLinkLinkLabel": "De la un link", + "ImageAltText": ". {0} imagine", + "ImageAriaLabelTemplate": ". {0} imagine", + "ImageLayoutPlaceholderText": "Aspect", + "ImageSizePlaceholderText": "Dimensiunea imaginii", + "ItemChildCountField": "Contor copii articol", + "LayoutOptionAll": "Toate", + "LayoutOptionSquare": "Pătrat", + "LayoutOptionTall": "Înalt", + "LayoutOptionWide": "Largă", + "LearnMoreLink": "află mai multe.", + "LicenseOptionAll": "Toate", + "LicenseOptionAny": "Creative Commons numai", + "LicensePlaceholderText": "Licenţă", + "LinkFileInstructions": "Lipiți un link la un fișier în OneDrive for Business sau SharePoint Online", + "LinkHeader": "De la un link", + "LinkImageInstructions": "Lipiți un link la o imagine în OneDrive for Business sau SharePoint Online", + "ListLayoutAriaLabel": "Vizualizați opțiunile. {0} {1}.", + "ListLayoutCompact": "Vizualizare compactă", + "ListLayoutCompactDescription": "Vizualizarea elementelor și detaliilor într-o listă compactă", + "ListLayoutList": "Vizualizare listă", + "ListLayoutListDescrition": "Vizualizarea elementelor și detaliilor dintr-o listă", + "ListLayoutTile": "Vizualizare dală", + "ListLayoutTileDescription": "Vizualizarea elementelor cu examinări de țiglă", + "ListOptionsAlt": "Vizualizați opțiunile. {0} selectată.", + "ListOptionsTitle": "Deschiderea meniului opțiunilor de vizualizare", + "Loading": "Încărcare...", + "ModifiedByField": "Modificat de", + "ModifiedField": "Data modificării", + "NameField": "nume", + "No": "nu", + "ProvidedValueIsInvalid": "Valoarea furnizată nu este validă", + "NoExternalLinksValidationMessage": "Sprijinim doar legarea la fișiere din propria organizație.", + "NoImageValidationMessage": "Acest lucru nu este un link către un tip de fișier pe care îl sprijinim. Aveți posibilitatea să legați doar la o imagine.", + "NoRecentFiles": "Fără fișiere recente", + "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 dacă nu le partajați. Ați partajat acest fișier cu membrii site-ului dvs., astfel încât acestea să poată să-l ccess?", + "OneDriveConfirmDialogTitle": "Doar de verificare...", + "OneDriveEmptyFolderAlt": "Folder gol", + "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": "Extra mare", + "SizeOptionLarge": "Mare", + "SizeOptionMedium": "Mediu", + "SizeOptionSmall": "Mici", + "SizeUnit": [ + "Octeţi", + "Kb", + "Mb", + "Gb", + "Tb", + "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 la a la Z", + "SortedDescending": "Sortare Z la A", + "TypeAriaLabel": "Operațiuni de coloană pentru tipul de fișier, apăsați pentru a sorta pe tipul de fișier", + "UploadFileHeader": "Încărcați fișierul", + "UploadImageHeader": "Încărcați imaginea", + "UploadLinkLabel": "Încărcaţi", + "WebSearchLinkLabel": "Căutare pe web", + "StockImagesLinkLabel": "Imagini stoc", + "StockImagesHeader": "Imagini stoc", + "Yes": "da", + "NewFolderNamePlaceholder": "Introduceți numele folderului", + "FolderFilterBoxPlaceholder": "Filtrarea folderelor după nume", + "FolderExplorerLoading": "Încărcarea dosare...", + "FolderExplorerNoItems": "Acest folder nu are subfoldere.", + "NewFolderIncorrectSymbolsError": "Vă rugăm să introduceți un nume care nu include niciunul dintre aceste caractere: \" * : < > ? / |.", + "SomethingWentWrong": "Ceva nu a mers bine", + "SelectedLabel": "Selectat", + "SelectIcon": "Selectare pictogramă", + "TreeViewExpandTitle": "Extindeți acest element", + "TreeViewCollapseTitle": "Restrângerea acestui element", + "CollectionDataEmptyFields": "Nu au fost furnizate 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ăugarea și salvarea", + "CollectionDataItemShowErrorsLabel": "Afișarea erorilor de rând", + "CollectionDataItemFieldRequiredLabel": "Câmpul este necesar.", + "CollectionDataItemMissingFields": "Colecția de câmpuri este goală!", + "InvalidUrlError": "ADRESA URL furnizată nu este validă", + "CollectionDataSearch": "Căutare", + "MyTeamsLoadingMessage": "încărcarea echipelor", + "MyTeamsMessageError": "Ceva nu a mers bine în timp ce vă încărcați echipele, încercați mai târziu sau reîmprospătați browserul", + "MyTeamsNoTeamsMessage": "Nu ai echipe", + "MyTeamsTeamChannelPublicMessage": "Canale publice", + "MyTeamsTeamChannelTypeMessage": "Canale private", + "TeamChannelPickerFontIconFavoriteText": "Favorit", + "TeamChannelPickerFontIconPrivateChannelTitle": "Canal privat", + "TeamChannelPickerSugestionHeaderText": "Canale de echipă sugerate", + "TeamPickerButtonRemoveTitle": "depărta", + "TeamPickernoResultsFoundText": "Nu s-au găsit echipe", + "TeamPickerSugestionsHeaderText": "Echipe sugerate", + "TeamsChannelPickerButtonRemoveTitle": "depărta", + "TeamsChannelPickerNoresultsFoundText": "Nu s-au găsit canale", + "ViewMore": "Vezi mai mult", + "DynamicFormLoading": "Încărcare...", + "DynamicFormPleaseWait": "Te rog să aştepţi...", + "DynamicFormRequiredErrorMessage": "Nu poți lăsa acest gol.", + "DynamicFormTermPanelTitle": "Selectați Termen", + "DynamicFormEnterURLPlaceholder": "Introduceți o adresă URL", + "DynamicFormEnterDescriptionPlaceholder": "Text alternativ", + "customDisplayName": "Utilizați această locație:", + "ListItemCommentDIalogDeleteSubText": "Sunteți sigur că doriți să ștergeți acest comentariu?", + "ListItemCommentsDialogDeleteTitle": "Confirmați ștergerea comentariului", + "ListItemCommentsLabel": "Comentarii", + "ListItemCommentsNoCommentsLabel": "Nu există comentarii", + "OrgAssetsLinkLabel": "Organizația dvs.", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/ru-ru.ts b/src/loc/ru-ru.ts index 3c8db88bc..ce3dba043 100644 --- a/src/loc/ru-ru.ts +++ b/src/loc/ru-ru.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Цепочка навигации сайта", - "ListViewGroupEmptyLabel": "Не назначено", - "WebPartTitlePlaceholder": "Заголовок веб-части", - "WebPartTitleLabel": "Добавить заголовок", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Через несколько секунд", - "L_RelativeDateTime_AFewSeconds": "Несколько секунд назад", - "L_RelativeDateTime_AboutAMinuteFuture": "Примерно через минуту", - "L_RelativeDateTime_AboutAMinute": "Примерно минуту назад", - "L_RelativeDateTime_XMinutesFuture": "Через {0} мин", - "L_RelativeDateTime_XMinutes": "{0} мин назад", - "L_RelativeDateTime_XMinutesFutureIntervals": "1-", - "L_RelativeDateTime_XMinutesIntervals": "1-", - "L_RelativeDateTime_AboutAnHourFuture": "Примерно через час", - "L_RelativeDateTime_AboutAnHour": "Примерно час назад", - "L_RelativeDateTime_Tomorrow": "Завтра", - "L_RelativeDateTime_Yesterday": "Вчера", - "L_RelativeDateTime_TomorrowAndTime": "Завтра в {0}", - "L_RelativeDateTime_YesterdayAndTime": "Вчера в {0}", - "L_RelativeDateTime_XHoursFuture": "Через {0} ч", - "L_RelativeDateTime_XHours": "{0} ч назад", - "L_RelativeDateTime_XHoursFutureIntervals": "1-", - "L_RelativeDateTime_XHoursIntervals": "1-", - "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": "Сегодня" - }, - "SendEmailTo": "Отправить сообщение {0}", - "StartChatWith": "Начать чат с {0}", - "Contact": "Контакт", - "UpdateProfile": "Обновить мой профиль", - "TaxonomyPickerNoTerms": "Данный набор терминов пуст", - "TaxonomyPickerExpandTitle": "Развернуть этот набор терминов", - "TaxonomyPickerMenuTermSet": "Меню для набора терминов", - "TaxonomyPickerInLabel": "в", - "TaxonomyPickerTermSetLabel": "Набор терминов", - "peoplePickerComponentTooltipMessage": "Выбор пользователей", - "peoplePickerComponentErrorMessage": "Обязательное поле", - "peoplePickerSuggestionsHeaderText": "Предложенные варианты", - "peoplePickerLoadingText": "Загрузка", - "PeoplePickerSearchText": "Получение пользователей", - "PeoplePickerGroupNotFound": "Группа не найдена.", - "genericNoResultsFoundText": "Нет результатов, удовлетворяющих условиям", - "ListItemPickerSelectValue": "Выбрать значение", - "ListItemAttachmentsActionDeleteIconTitle": "Удалить", - "ListItemAttachmentsactionDeleteTitle": "Удалить", - "ListItemAttachmentsfileDeletedMsg": "Файл {0} был удален", - "ListItemAttachmentsfileDeleteError": "Ошибка при удалении файла: {0}, причина {1}", - "ListItemAttachmentserrorLoadAttachments": "Ошибка при загрузке вложения, причина: {0}", - "ListItemAttachmentsconfirmDelete": "Вы уверены, что хотите отправить вложение {0} в корзину?", - "ListItemAttachmentsdialogTitle": "Вложение", - "ListItemAttachmentsdialogOKbuttonLabel": "Хорошо", - "ListItemAttachmentsdialogCancelButtonLabel": "Отмена", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Удалить", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Добавить вложение", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Добавить вложение", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Файл {0} не был добавлен, причина: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Добавить вложение", - "ListItemAttachmentsloadingMessage": "Загрузка файла ...", - "ListItemAttachmentslPlaceHolderIconText": "Вложение", - "ListItemAttachmentslPlaceHolderDescription": "Please Добавить вложение", - "ListItemAttachmentslPlaceHolderButtonLabel": "Добавить", - "mapsErrorMessage": "Во время загрузки карты произошла ошибка", - "mapsLoadingText": "Загрузка", - "mapsSearchButtonText": "Поиск", - "mapsTitlePrefix": "Карта", - "ListViewFilterLabel": "Фильтр", - "HeaderNormalText": "Обычный", - "HeaderH2": "Заголовок 1", - "HeaderH3": "Заголовок 2", - "HeaderH4": "Заголовок 3", - "HeaderBlockQuote": "Цитата", - "AlignLeft": "Выравнять слева", - "AlignCenter": "Выравнять по центру", - "AlignRight": "Выравнять справа", - "AlignJustify": "Выравнять по ширине", - "ListBullet": "Маркеры", - "ListNumbered": "Нумерация", - "StyleTitle": "Стиль текста", - "BoldTitle": "Полужирный (Ctrl+B)", - "ItalicTitle": "Курсив (Ctrl+I)", - "UnderlineTitle": "Подчеркнутый (Ctrl+U)", - "AlignTitle": "Выравнивание", - "ListTitle": "Список", - "LinkTitle": "Ссылка", - "MoreTitle": "Больше", - "FormattingPaneTitle": "Форматирование текста", - "CloseButton": "Закрыть", - "InsertLinkTitle": "Вставить ссылку", - "AddressFieldLabel": "Адрес", - "TextToDisplayLabel": "Заголовок", - "SaveButtonLabel": "Сохранить", - "CancelButtonLabel": "Отменить", - "RemoveLinkLabel": "Удалить ссылку", - "ParagraphSectionTitle": "Параграф", - "HyperlinkSectionTitle": "Ссылка", - "UndoTitle": "Отменить (Ctrl+Z)", - "RedoTitle": "Вернуть (Ctrl+Y)", - "ClearFormattingTitle": "Сбросить форматирование", - "FontStyleTitle": "Шрифт", - "FontSizeTitle": "Размер", - "StrikethroughTitle": "Подчеркнутый", - "SuperscriptTitle": "Надстрочный", - "SubscriptTitle": "Подстрочный", - "FontColorLabel": "Цвет", - "AutomaticFontColor": "Авто", - "HighlightColorLabel": "Цвет выделения", - "NoColorHighlightColor": "Нет цвета", - "IncreaseIndentTitle": "Увеличить отступ", - "DecreaseIndentTitle": "Уменьшить отступ", - "ThemeColorsGroupName": "Цвета темы", - "HighlightColorsGroupName": "Цвета выделения", - "StandardColorsGroupName": "Стандартные цвета", - "CustomColorsGroupName": "Пользовательские цвета", - "ThemeColorDarker": "Темнее", - "ThemeColorDark": "Темный", - "ThemeColorDarkAlt": "Альтернативный темный", - "ThemeColorPrimary": "Основной", - "ThemeColorSecondary": "Второстепенный", - "ThemeColorTertiary": "Третичный", - "ThemeColorNeutralSecondary": "Нейтральный второстепенный", - "ThemeColorNeutralPrimaryAlt": "Основной нейтральный альтернативный", - "ThemeColorNeutralPrimary": "Основной нейтральный", - "ThemeColorNeutralDark": "Нейтральный темный", - "HighlightColorYellow": "Желтый", - "HighlightColorGreen": "Зеленый", - "HighlightColorAqua": "Цвет морской волный", - "HighlightColorMagenta": "Пурпурный", - "HighlightColorBlue": "Синий", - "HighlightColorRed": "Красный", - "HighlightColorDarkblue": "Темно-синий", - "HighlightColorTeal": "Бирюзовый", - "HighlightColorDarkgreen": "Темно-зеленый", - "HighlightColorPurple": "Фиолетовый", - "HighlightColorMaroon": "Бордовый", - "HighlightColorGold": "Золотой", - "HighlightColorDarkgrey": "Темно-сервый", - "HighlightColorGrey": "Серый", - "HighlightColorBlack": "Черный", - "StandardColorDarkred": "Темно-красный", - "StandardColorRed": "Красный", - "StandardColorOrange": "Оранжевый", - "StandardColorYellow": "Желтый", - "StandardColorLightgreen": "Светло-зеленый", - "StandardColorGreen": "Зеленый", - "StandardColorLightblue": "Светло-синий", - "StandardColorBlue": "Синий", - "StandardColorDarkblue": "Темно-синий", - "StandardColorPurple": "Фиолетовый", - "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": "Сегодня", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Дата", - "DateTimePickerTime": "Время", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Значение часов введено неверно", - "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": "DD/MM/YYYY hh: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": "Только 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 находятся в частном доступе до тех пор, пока не Вы не поделитесь ими. Проверьте, что Вы поделились данным файлом с Вашими коллегами, чтобы они могли работать с ним.", - "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": [ - "байт", - "Кб", - "Мб", - "Гб", - "Тб", - "Пб", - "Еб", - "Зб", - "Иб" - ], - "SorryWebSearch": "Извините, данная функция не реализована в примере, так как требует ключа API для Bing", - "SortedAscending": "Отсортировано А - Я", - "SortedDescending": "Отсортировано Я - А", - "TypeAriaLabel": "Операции колонки Тип файла. Нажмите, чтобы отфильтровать по типу файла", - "UploadFileHeader": "Загрузить файл", - "UploadImageHeader": "Загрузить изображение", - "UploadLinkLabel": "Загрузить", - "WebSearchLinkLabel": "Поиск по Веб", - "Yes": "Да", - "SelectedLabel": "Выбранный", - "SelectIcon": "Выбрать значок", - "StockImagesLinkLabel": "Стоковые изображения", - "StockImagesHeader": "Стоковые изображения", - "OrgAssetsLinkLabel": "Ваша организация" - }; -}); + "Save": "Спасать", + "Cancel": "Отмена", + "SiteBreadcrumbLabel": "Цепочка навигации сайта", + "ListViewGroupEmptyLabel": "Не назначено", + "WebPartTitlePlaceholder": "Заголовок веб-части", + "WebPartTitleLabel": "Добавить заголовок", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Через несколько секунд", + "L_RelativeDateTime_AFewSeconds": "Несколько секунд назад", + "L_RelativeDateTime_AboutAMinuteFuture": "Примерно через минуту", + "L_RelativeDateTime_AboutAMinute": "Примерно минуту назад", + "L_RelativeDateTime_XMinutesFuture": "Через {0} мин", + "L_RelativeDateTime_XMinutes": "{0} мин назад", + "L_RelativeDateTime_XMinutesFutureIntervals": "1-", + "L_RelativeDateTime_XMinutesIntervals": "1-", + "L_RelativeDateTime_AboutAnHourFuture": "Примерно через час", + "L_RelativeDateTime_AboutAnHour": "Примерно час назад", + "L_RelativeDateTime_Tomorrow": "Завтра", + "L_RelativeDateTime_Yesterday": "Вчера", + "L_RelativeDateTime_TomorrowAndTime": "Завтра в {0}", + "L_RelativeDateTime_YesterdayAndTime": "Вчера в {0}", + "L_RelativeDateTime_XHoursFuture": "Через {0} ч", + "L_RelativeDateTime_XHours": "{0} ч назад", + "L_RelativeDateTime_XHoursFutureIntervals": "1-", + "L_RelativeDateTime_XHoursIntervals": "1-", + "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": "Сегодня" + }, + "SendEmailTo": "Отправить сообщение {0}", + "StartChatWith": "Начать чат с {0}", + "Contact": "Контакт", + "UpdateProfile": "Обновить мой профиль", + "TaxonomyPickerNoTerms": "Данный набор терминов пуст", + "TaxonomyPickerExpandTitle": "Развернуть этот набор терминов", + "TaxonomyPickerMenuTermSet": "Меню для набора терминов", + "TaxonomyPickerInLabel": "в", + "TaxonomyPickerTermSetLabel": "Набор терминов", + "TaxonomyPickerTermsNotFound": "В хранилище терминов не удалось найти следующие выбранные термины: {0}", + "TaxonomyPickerInvalidTerms": "Пожалуйста, исправьте недопустимые термины: {0}", + "peoplePickerComponentTooltipMessage": "Выбор пользователей", + "peoplePickerComponentErrorMessage": "Обязательное поле", + "peoplePickerSuggestionsHeaderText": "Предложенные варианты", + "peoplePickerLoadingText": "Загрузка", + "PeoplePickerSearchText": "Получение пользователей", + "PeoplePickerGroupNotFound": "Группа не найдена.", + "genericNoResultsFoundText": "Нет результатов, удовлетворяющих условиям", + "ListItemPickerSelectValue": "Выбрать значение", + "ListItemAttachmentsActionDeleteIconTitle": "Удалить", + "ListItemAttachmentsactionDeleteTitle": "Удалить", + "ListItemAttachmentsfileDeletedMsg": "Файл {0} был удален", + "ListItemAttachmentsfileDeleteError": "Ошибка при удалении файла: {0}, причина {1}", + "ListItemAttachmentserrorLoadAttachments": "Ошибка при загрузке вложения, причина: {0}", + "ListItemAttachmentsconfirmDelete": "Вы уверены, что хотите отправить вложение {0} в корзину?", + "ListItemAttachmentsdialogTitle": "Вложение", + "ListItemAttachmentsdialogOKbuttonLabel": "Хорошо", + "ListItemAttachmentsdialogCancelButtonLabel": "Отмена", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Удалить", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Добавить вложение", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Добавить вложение", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Файл {0} не был добавлен, причина: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Добавить вложение", + "ListItemAttachmentsloadingMessage": "Загрузка файла ...", + "ListItemAttachmentslPlaceHolderIconText": "Вложение", + "ListItemAttachmentslPlaceHolderDescription": "Please Добавить вложение", + "ListItemAttachmentslPlaceHolderButtonLabel": "Добавить", + "mapsErrorMessage": "Во время загрузки карты произошла ошибка", + "mapsLoadingText": "Загрузка", + "mapsSearchButtonText": "Поиск", + "mapsTitlePrefix": "Карта", + "ListViewFilterLabel": "Фильтр", + "HeaderNormalText": "Обычный", + "HeaderH2": "Заголовок 1", + "HeaderH3": "Заголовок 2", + "HeaderH4": "Заголовок 3", + "HeaderBlockQuote": "Цитата", + "AlignLeft": "Выравнять слева", + "AlignCenter": "Выравнять по центру", + "AlignRight": "Выравнять справа", + "AlignJustify": "Выравнять по ширине", + "ListBullet": "Маркеры", + "ListNumbered": "Нумерация", + "StyleTitle": "Стиль текста", + "BoldTitle": "Полужирный (Ctrl+B)", + "ItalicTitle": "Курсив (Ctrl+I)", + "UnderlineTitle": "Подчеркнутый (Ctrl+U)", + "AlignTitle": "Выравнивание", + "ListTitle": "Список", + "LinkTitle": "Ссылка", + "ImageTitle": "Образ", + "MoreTitle": "Больше", + "FormattingPaneTitle": "Форматирование текста", + "CloseButton": "Закрыть", + "InsertLinkTitle": "Вставить ссылку", + "InsertImageTitle": "Вставка изображения", + "AddressFieldLabel": "Адрес", + "TextToDisplayLabel": "Заголовок", + "SaveButtonLabel": "Сохранить", + "CancelButtonLabel": "Отменить", + "RemoveLinkLabel": "Удалить ссылку", + "ParagraphSectionTitle": "Параграф", + "HyperlinkSectionTitle": "Ссылка", + "UndoTitle": "Отменить (Ctrl+Z)", + "RedoTitle": "Вернуть (Ctrl+Y)", + "ClearFormattingTitle": "Сбросить форматирование", + "FontStyleTitle": "Шрифт", + "FontSizeTitle": "Размер", + "StrikethroughTitle": "Подчеркнутый", + "SuperscriptTitle": "Надстрочный", + "SubscriptTitle": "Подстрочный", + "FontColorLabel": "Цвет", + "AutomaticFontColor": "Авто", + "HighlightColorLabel": "Цвет выделения", + "NoColorHighlightColor": "Нет цвета", + "IncreaseIndentTitle": "Увеличить отступ", + "DecreaseIndentTitle": "Уменьшить отступ", + "ThemeColorsGroupName": "Цвета темы", + "HighlightColorsGroupName": "Цвета выделения", + "StandardColorsGroupName": "Стандартные цвета", + "CustomColorsGroupName": "Пользовательские цвета", + "ThemeColorDarker": "Темнее", + "ThemeColorDark": "Темный", + "ThemeColorDarkAlt": "Альтернативный темный", + "ThemeColorPrimary": "Основной", + "ThemeColorSecondary": "Второстепенный", + "ThemeColorTertiary": "Третичный", + "ThemeColorNeutralSecondary": "Нейтральный второстепенный", + "ThemeColorNeutralPrimaryAlt": "Основной нейтральный альтернативный", + "ThemeColorNeutralPrimary": "Основной нейтральный", + "ThemeColorNeutralDark": "Нейтральный темный", + "HighlightColorYellow": "Желтый", + "HighlightColorGreen": "Зеленый", + "HighlightColorAqua": "Цвет морской волный", + "HighlightColorMagenta": "Пурпурный", + "HighlightColorBlue": "Синий", + "HighlightColorRed": "Красный", + "HighlightColorDarkblue": "Темно-синий", + "HighlightColorTeal": "Бирюзовый", + "HighlightColorDarkgreen": "Темно-зеленый", + "HighlightColorPurple": "Фиолетовый", + "HighlightColorMaroon": "Бордовый", + "HighlightColorGold": "Золотой", + "HighlightColorDarkgrey": "Темно-сервый", + "HighlightColorGrey": "Серый", + "HighlightColorBlack": "Черный", + "StandardColorDarkred": "Темно-красный", + "StandardColorRed": "Красный", + "StandardColorOrange": "Оранжевый", + "StandardColorYellow": "Желтый", + "StandardColorLightgreen": "Светло-зеленый", + "StandardColorGreen": "Зеленый", + "StandardColorLightblue": "Светло-синий", + "StandardColorBlue": "Синий", + "StandardColorDarkblue": "Темно-синий", + "StandardColorPurple": "Фиолетовый", + "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": "Сегодня", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Дата", + "DateTimePickerTime": "Время", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Значение часов введено неверно", + "DateTimePickerMinuteValueInvalid": "Неверное значение минуты", + "DateTimePickerSecondValueInvalid": "Неверное второе значение", + "DateTimePickerTextErrorMessage": "Пожалуйста, введите действительную дату", + "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": "DD/MM/YYYY hh: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": "Только 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 находятся в частном доступе до тех пор, пока не Вы не поделитесь ими. Проверьте, что Вы поделились данным файлом с Вашими коллегами, чтобы они могли работать с ним.", + "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": [ + "байт", + "Кб", + "Мб", + "Гб", + "Тб", + "Пб", + "Еб", + "Зб", + "Иб" + ], + "SorryWebSearch": "Извините, данная функция не реализована в примере, так как требует ключа API для Bing", + "SortedAscending": "Отсортировано А - Я", + "SortedDescending": "Отсортировано Я - А", + "TypeAriaLabel": "Операции колонки Тип файла. Нажмите, чтобы отфильтровать по типу файла", + "UploadFileHeader": "Загрузить файл", + "UploadImageHeader": "Загрузить изображение", + "UploadLinkLabel": "Загрузить", + "WebSearchLinkLabel": "Поиск по Веб", + "StockImagesLinkLabel": "Стоковые изображения", + "StockImagesHeader": "Стоковые изображения", + "Yes": "Да", + "NewFolderNamePlaceholder": "Введите имя папки", + "FolderFilterBoxPlaceholder": "Фильтрация папок по имени", + "FolderExplorerLoading": "Загрузка папок...", + "FolderExplorerNoItems": "Эта папка не имеет вложенных папок.", + "NewFolderIncorrectSymbolsError": "Пожалуйста, введите имя, которое не включает ни один из этих символов: \" * : < > ? / |.", + "SomethingWentWrong": "Что-то пошло не так", + "SelectedLabel": "Выбранный", + "SelectIcon": "Выбрать значок", + "TreeViewExpandTitle": "Развернуть этот элемент", + "TreeViewCollapseTitle": "Свернуть этот элемент", + "CollectionDataEmptyFields": "Для данных сбора не было указано никаких полей.", + "CollectionDataEmptyValue": "Нет данных в вашей коллекции.", + "CollectionAddRowButtonLabel": "Добавление данных в коллекцию", + "CollectionDeleteRowButtonLabel": "Удаление текущей строки", + "CollectionSaveAndAddButtonLabel": "Добавление и сохранение", + "CollectionDataItemShowErrorsLabel": "Показать ошибки строк", + "CollectionDataItemFieldRequiredLabel": "Поле обязательно для заполнения.", + "CollectionDataItemMissingFields": "Коллекция полей пуста!", + "InvalidUrlError": "Недопустимый указанный URL-адрес", + "CollectionDataSearch": "Искать", + "MyTeamsLoadingMessage": "загрузка команд", + "MyTeamsMessageError": "Что-то пошло не так при загрузке ваших команд, пожалуйста, попробуйте позже или обновите браузер", + "MyTeamsNoTeamsMessage": "У вас нет команд", + "MyTeamsTeamChannelPublicMessage": "Общедоступные каналы", + "MyTeamsTeamChannelTypeMessage": "Частные каналы", + "TeamChannelPickerFontIconFavoriteText": "Любимый", + "TeamChannelPickerFontIconPrivateChannelTitle": "Частный канал", + "TeamChannelPickerSugestionHeaderText": "Рекомендуемые каналы команды", + "TeamPickerButtonRemoveTitle": "убирать", + "TeamPickernoResultsFoundText": "Команды не найдены", + "TeamPickerSugestionsHeaderText": "Рекомендуемые команды", + "TeamsChannelPickerButtonRemoveTitle": "убирать", + "TeamsChannelPickerNoresultsFoundText": "Каналы не найдены", + "ViewMore": "Смотреть больше", + "DynamicFormLoading": "Погрузка...", + "DynamicFormPleaseWait": "Подождите...", + "DynamicFormRequiredErrorMessage": "Вы не можете оставить это пустым.", + "DynamicFormTermPanelTitle": "Выберите термин", + "DynamicFormEnterURLPlaceholder": "Введите URL-адрес", + "DynamicFormEnterDescriptionPlaceholder": "Альтернативный текст", + "customDisplayName": "Используйте это расположение:", + "ListItemCommentDIalogDeleteSubText": "Вы уверены, что хотите удалить этот комментарий?", + "ListItemCommentsDialogDeleteTitle": "Подтвердить удаление комментария", + "ListItemCommentsLabel": "Комментарии", + "ListItemCommentsNoCommentsLabel": "Нет комментариев", + "OrgAssetsLinkLabel": "Ваша организация", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/sk-sk.ts b/src/loc/sk-sk.ts index f1efcc483..1decde573 100644 --- a/src/loc/sk-sk.ts +++ b/src/loc/sk-sk.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Menu", - "ListViewGroupEmptyLabel": "Prázdne", - "WebPartTitlePlaceholder": "Názov webovej časti", - "WebPartTitleLabel": "Pridanie titulu", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Za niekoľko 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": "V {0} minute||Za {0} minút", - "L_RelativeDateTime_XMinutes": "{0} pred minútou||{0} minútami", - "L_RelativeDateTime_XMinutesFutureIntervals": "1||2-", - "L_RelativeDateTime_XMinutesIntervals": "1||2-", - "L_RelativeDateTime_AboutAnHourFuture": "Asi za hodinu", - "L_RelativeDateTime_AboutAnHour": "Asi pred hodinou", - "L_RelativeDateTime_Tomorrow": "Zajtra", - "L_RelativeDateTime_Yesterday": "Uskutočnená včera o", - "L_RelativeDateTime_TomorrowAndTime": "Zajtra v {0}", - "L_RelativeDateTime_YesterdayAndTime": "Včera na {0}", - "L_RelativeDateTime_XHoursFuture": "Za {0} hodinu||V {0} hodín", - "L_RelativeDateTime_XHours": "{0} pred hodinou||{0} hodín pred", - "L_RelativeDateTime_XHoursFutureIntervals": "1||2-", - "L_RelativeDateTime_XHoursIntervals": "1||2-", - "L_RelativeDateTime_DayAndTime": "{0} zariadení {1}", - "L_RelativeDateTime_XDaysFuture": "{0} deň od teraz||{0} dní od teraz", - "L_RelativeDateTime_XDays": "{0} deň dozadu||{0} pred dňami", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Uskutočnená dnes o" - }, - "SendEmailTo": "Pošlite e-mail na {0}", - "StartChatWith": "Spustenie rozhovoru s {0}", - "Contact": "Kontakt", - "UpdateProfile": "Aktualizujte svoj profil", - "TaxonomyPickerNoTerms": "Množina výrazov neobsahuje žiadne výrazy", - "TaxonomyPickerExpandTitle": "Rozbaliť túto množinu výrazov", - "TaxonomyPickerMenuTermSet": "Menu pre množinu výrazov", - "TaxonomyPickerInLabel": "Palcov", - "TaxonomyPickerTermSetLabel": "Množina výrazov", - "peoplePickerComponentTooltipMessage": "Výber ľudí", - "peoplePickerComponentErrorMessage": "Povinné pole", - "peoplePickerSuggestionsHeaderText": "Navrhovaných ľudí", - "peoplePickerLoadingText": "Nahrávanie", - "PeoplePickerSearchText": "Načítavajú sa používatelia", - "PeoplePickerGroupNotFound": "Skupina sa nenašla.", - "genericNoResultsFoundText": "Nenašli sa žiadne výsledky", - "ListItemPickerSelectValue": "Vybrať hodnotu", - "ListItemAttachmentsActionDeleteIconTitle": "Odstrániť", - "ListItemAttachmentsactionDeleteTitle": "Odstrániť", - "ListItemAttachmentsfileDeletedMsg": "Súbor {0} odstránený", - "ListItemAttachmentsfileDeleteError": "Chyba pri odstránení súboru: {0}, dôvod {1}", - "ListItemAttachmentserrorLoadAttachments": "Chyba pri načítaní prílohy položky zoznamu, dôvod: {0}", - "ListItemAttachmentsconfirmDelete": "Naozaj chcete odoslať prílohu {0} do Koša lokality?", - "ListItemAttachmentsdialogTitle": "Príloha položky zoznamu", - "ListItemAttachmentsdialogOKbuttonLabel": "OK", - "ListItemAttachmentsdialogCancelButtonLabel": "Zrušiť", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Odstrániť", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Pridať prílohu", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Pridať prílohu", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Súbor {0} nie je priložený, dôvod: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Pridať prílohu", - "ListItemAttachmentsloadingMessage": "Nahráva sa súbor...", - "ListItemAttachmentslPlaceHolderIconText": "Príloha položky zoznamu", - "ListItemAttachmentslPlaceHolderDescription": "Prosím, pridajte prílohu", - "ListItemAttachmentslPlaceHolderButtonLabel": "Pridať", - "mapsErrorMessage": "Počas načítania mapy sa vyskytla chyba", - "mapsLoadingText": "Nahrávanie", - "mapsSearchButtonText": "Hľadať", - "mapsTitlePrefix": "Mapa mesta", - "ListViewFilterLabel": "Filtrovanie zoznamu", - "HeaderNormalText": "Normálny text", - "HeaderH2": "Nadpis 1", - "HeaderH3": "Nadpis 2", - "HeaderH4": "Nadpis 3", - "HeaderBlockQuote": "Citácia", - "AlignLeft": "Zarovnať doľava", - "AlignCenter": "Zarovnať do stredu", - "AlignRight": "Zarovnať doprava", - "AlignJustify": "Odôvodniť", - "ListBullet": "Zoznam s odrážkami", - "ListNumbered": "Číslovaný zoznam", - "StyleTitle": "Štýl", - "BoldTitle": "Tučné (Ctrl + B)", - "ItalicTitle": "Kurzíva (Ctrl + I)", - "UnderlineTitle": "Podčiarknutie (Ctrl + U)", - "AlignTitle": "Zarovnať", - "ListTitle": "Zoznam", - "LinkTitle": "Hypertextové prepojenie", - "MoreTitle": "Viac", - "FormattingPaneTitle": "Formátovanie textu", - "CloseButton": "Zatvoriť", - "InsertLinkTitle": "Vložiť prepojenie", - "AddressFieldLabel": "Adresa", - "TextToDisplayLabel": "Text, ktorý sa má zobraziť", - "SaveButtonLabel": "Uložiť", - "CancelButtonLabel": "Zrušiť", - "RemoveLinkLabel": "Odstrániť prepojenie", - "ParagraphSectionTitle": "Odsek", - "HyperlinkSectionTitle": "Hypertextové prepojenie", - "UndoTitle": "Späť (Ctrl + Z)", - "RedoTitle": "Znova (Ctrl + Y)", - "ClearFormattingTitle": "Vymazať všetko formátovanie", - "FontStyleTitle": "Štýl písma", - "FontSizeTitle": "Veľkosť písma", - "StrikethroughTitle": "Prečiarknutie", - "SuperscriptTitle": "Horný index", - "SubscriptTitle": "Dolný index", - "FontColorLabel": "Farba písma", - "AutomaticFontColor": "Automatické", - "HighlightColorLabel": "Farba zvýraznenia", - "NoColorHighlightColor": "Bez farby", - "IncreaseIndentTitle": "Zväčšiť zarážku", - "DecreaseIndentTitle": "Zmenšiť zarážku", - "ThemeColorsGroupName": "Farby motívu", - "HighlightColorsGroupName": "Zvýrazniť farby", - "StandardColorsGroupName": "Štandardné farby", - "CustomColorsGroupName": "Vlastné farby", - "ThemeColorDarker": "Tmavšia téma", - "ThemeColorDark": "Tmavá téma", - "ThemeColorDarkAlt": "Alternatívna tmavá téma", - "ThemeColorPrimary": "Primárna téma", - "ThemeColorSecondary": "Sekundárna téma", - "ThemeColorTertiary": "Ďalšia téma", - "ThemeColorNeutralSecondary": "Neutrána sekundárna téma", - "ThemeColorNeutralPrimaryAlt": "Alternatívna primárna téma", - "ThemeColorNeutralPrimary": "Neutrána primárna téma", - "ThemeColorNeutralDark": "Neutrálna tmavá téma", - "HighlightColorYellow": "Žltá", - "HighlightColorGreen": "Zelená", - "HighlightColorAqua": "Bledomodrá", - "HighlightColorMagenta": "Purpurová", - "HighlightColorBlue": "Modrá", - "HighlightColorRed": "Červená", - "HighlightColorDarkblue": "Tmavomodrá", - "HighlightColorTeal": "Zelenomodrá", - "HighlightColorDarkgreen": "Tmavozelená", - "HighlightColorPurple": "Fialová", - "HighlightColorMaroon": "Gaštanovohnedá", - "HighlightColorGold": "Zlatá", - "HighlightColorDarkgrey": "Tmavošedá", - "HighlightColorGrey": "Šedá", - "HighlightColorBlack": "Čierna", - "StandardColorDarkred": "Tmavočervená", - "StandardColorRed": "Červená", - "StandardColorOrange": "Oranžová", - "StandardColorYellow": "Žltá", - "StandardColorLightgreen": "Svetlozelená", - "StandardColorGreen": "Zelená", - "StandardColorLightblue": "Svetlomodrá", - "StandardColorBlue": "Modrá", - "StandardColorDarkblue": "Tmavomodrá", - "StandardColorPurple": "Fialová", - "DatePickerMonthLongJanuary": "Január", - "DatePickerMonthShortJanuary": "Jan", - "DatePickerMonthLongFebruary": "Február", - "DatePickerMonthShortFebruary": "Feb", - "DatePickerMonthLongMarch": "Marec", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "Apríl", - "DatePickerMonthShortApril": "Apr", - "DatePickerMonthLongMay": "Máj", - "DatePickerMonthShortMay": "Máj", - "DatePickerMonthLongJune": "Jún", - "DatePickerMonthShortJune": "Jún", - "DatePickerMonthLongJuly": "Júl", - "DatePickerMonthShortJuly": "Júl", - "DatePickerMonthLongAugust": "August", - "DatePickerMonthShortAugust": "Aug", - "DatePickerMonthLongSeptember": "September", - "DatePickerMonthShortSeptember": "Sep", - "DatePickerMonthLongOctober": "Október", - "DatePickerMonthShortOctober": "Okt", - "DatePickerMonthLongNovember": "November", - "DatePickerMonthShortNovember": "Nov", - "DatePickerMonthLongDecember": "December", - "DatePickerMonthShortDecember": "Dec", - "DatePickerDayLongSunday": "Nedeľa", - "DatePickerDayShortSunday": "Ne", - "DatePickerDayLongMonday": "Pondelok", - "DatePickerDayShortMonday": "Po", - "DatePickerDayLongTuesday": "Utorok", - "DatePickerDayShortTuesday": "Ut", - "DatePickerDayLongWednesday": "Streda", - "DatePickerDayShortWednesday": "St", - "DatePickerDayLongThursday": "Štvrtok", - "DatePickerDayShortThursday": "Št", - "DatePickerDayLongFriday": "Piatok", - "DatePickerDayShortFriday": "Pi", - "DatePickerDayLongSaturday": "Sobotu", - "DatePickerDayShortSaturday": "So", - "DatePickerGoToToday": "Uskutočnená dnes o", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Dátum", - "DateTimePickerTime": "Čas", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Nesprávna hodinová hodnota", - "AddFileButtonLabel": "Pridať súbor", - "AddImageButtonLabel": "Pridať obrázok", - "AriaCellValue": "{0} stĺpci {1}", - "FilePickerCancelButtonLabel": "Zrušiť", - "CantValidateValidationMessage": "Nemohli sme overiť tento odkaz. Skontrolujte prosím odkaz a skúste to znova.", - "ChangeFileLinkLabel": "Zmeniť súbor", - "ChangeImageLinkLabel": "Zmeniť obrázok", - "ChooseFileLinkLabel": "Vyberte súbor", - "ChooseImageLinkLabel": "Vyberte obrázok", - "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", - "CopyrightWarning": "Zodpovedáte za rešpektovanie práv ostatných, vrátane autorských práv.", - "CreativeCommonsMessage": "Tieto výsledky sú označené licenciou Creative Commons. Skontrolujte licencie, aby ste zaistili súlad.", - "DateFormat": "MM/DD/rrrr hh: mm A", - "DocumentLabelTemplate": "{0}, dokument, upravený {1}, editovaný {2}, súkromný", - "DocumentLibraries": "Knižnice dokumentov", - "EditedByNamePlate": "editoval ", - "EmptyFileSize": "0 bajtov", - "FilePickerHeader": "Výber súboru", - "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, upravený {1}, editovaný {2}, {3} položky, súkromné", - "FromLinkLinkLabel": "Z odkazu", - "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": "Štvorec", - "LayoutOptionTall": "Vysoký", - "LayoutOptionWide": "Široký", - "LearnMoreLink": "zistiť viac.", - "LicenseOptionAll": "Všetky", - "LicenseOptionAny": "Len Creative Commons", - "LicensePlaceholderText": "Licencie", - "LinkFileInstructions": "Pridanie prepojenia na súbor v službe OneDrive for Business alebo SharePoint Online", - "LinkHeader": "Z odkazu", - "LinkImageInstructions": "Pridanie prepojenia na obrázok v službe OneDrive for Business alebo SharePoint Online", - "ListLayoutAriaLabel": "Možnosti zobrazenia. {0} {1}.", - "ListLayoutCompact": "Kompaktný pohľad", - "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 pomocou ukážok dlaždíc", - "ListOptionsAlt": "Možnosti zobrazenia. {0} vybraté.", - "ListOptionsTitle": "Otvorenie ponuky Zobraziť možnosti", - "Loading": "Nahrávanie...", - "ModifiedByField": "Upravený", - "ModifiedField": "Dátum úpravy", - "NameField": "meno", - "No": "nie", - "ProvidedValueIsInvalid": "Poskytnutá hodnota je neplatná", - "NoExternalLinksValidationMessage": "Podporujeme len prepojenie na súbory vo vašej vlastnej organizácii.", - "NoImageValidationMessage": "Toto nie je odkaz na typ súboru, ktorý podporujeme. Môžete odkazovať len na obrázok.", - "NoRecentFiles": "Žiadne nedávne súbory", - "NoRecentFilesDescription": "Skúste vybrať súbor z webu alebo ho nahrajte zo zariadenia.", - "NoResultsBadEnglish": "Neexistuje žiadny výsledok hľadania. Pokúste sa 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}, editované {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Táto položka je z lokality OneDrive. Súbory a priečinky v službe OneDrive sú súkromné, pokiaľ ich nezdieľate. Zdieľali ste tento súbor s členmi vašej stránky, aby mohli rístup to?", - "OneDriveConfirmDialogTitle": "Len kontrola...", - "OneDriveEmptyFolderAlt": "Prázdny priečinok", - "OneDriveEmptyFolderDescription": "Ak chcete pridať súbory, prejdite do svojho 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, ktoré poskytuje vaša organizácia", - "PoweredByBing": "Spravované Bing", - "RecentDocumentsHeader": "Nedávne 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 otvoríte zdroj obrazu 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", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Napr", - "YB" - ], - "SorryWebSearch": "Ospravedlňujeme sa, táto funkcia nie je implementovaná v tejto vzorke, pretože to by vyžadovalo Bing API kľúč.", - "SortedAscending": "Zoradené vzostupne", - "SortedDescending": "Zoradené zostupne", - "TypeAriaLabel": "Operácie stĺpcov pre typ súboru, stlačte na zoradenie na typ súboru", - "UploadFileHeader": "Nahrať súbor", - "UploadImageHeader": "Nahrať obrázok", - "UploadLinkLabel": "Nahrať", - "WebSearchLinkLabel": "Vyhľadávanie na webe", - "Yes": "áno", - "SelectedLabel": "Zvolené", - "SelectIcon": "Vybrať ikonu", - "StockImagesLinkLabel": "Skladové obrázky", - "StockImagesHeader": "Skladové obrázky", - "OrgAssetsLinkLabel": "Vašej organizácie" - }; -}); + "Save": "Zachrániť", + "Cancel": "Zrušiť", + "SiteBreadcrumbLabel": "Menu", + "ListViewGroupEmptyLabel": "Prázdne", + "WebPartTitlePlaceholder": "Názov webovej časti", + "WebPartTitleLabel": "Pridanie titulu", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Za niekoľko 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": "V {0} minute||Za {0} minút", + "L_RelativeDateTime_XMinutes": "{0} pred minútou||{0} minútami", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "Asi za hodinu", + "L_RelativeDateTime_AboutAnHour": "Asi pred hodinou", + "L_RelativeDateTime_Tomorrow": "Zajtra", + "L_RelativeDateTime_Yesterday": "Uskutočnená včera o", + "L_RelativeDateTime_TomorrowAndTime": "Zajtra v {0}", + "L_RelativeDateTime_YesterdayAndTime": "Včera na {0}", + "L_RelativeDateTime_XHoursFuture": "Za {0} hodinu||V {0} hodín", + "L_RelativeDateTime_XHours": "{0} pred hodinou||{0} hodín pred", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{0} zariadení {1}", + "L_RelativeDateTime_XDaysFuture": "{0} deň od teraz||{0} dní od teraz", + "L_RelativeDateTime_XDays": "{0} deň dozadu||{0} pred dňami", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Uskutočnená dnes o" + }, + "SendEmailTo": "Pošlite e-mail na {0}", + "StartChatWith": "Spustenie rozhovoru s {0}", + "Contact": "Kontakt", + "UpdateProfile": "Aktualizujte svoj profil", + "TaxonomyPickerNoTerms": "Množina výrazov neobsahuje žiadne výrazy", + "TaxonomyPickerExpandTitle": "Rozbaliť túto množinu výrazov", + "TaxonomyPickerMenuTermSet": "Menu pre množinu výrazov", + "TaxonomyPickerInLabel": "Palcov", + "TaxonomyPickerTermSetLabel": "Množina výrazov", + "TaxonomyPickerTermsNotFound": "Nasledujúce vybraté výrazy sa nenašli v ukladací priestor výrazov: {0}", + "TaxonomyPickerInvalidTerms": "Opravte neplatné výrazy: {0}", + "peoplePickerComponentTooltipMessage": "Výber ľudí", + "peoplePickerComponentErrorMessage": "Povinné pole", + "peoplePickerSuggestionsHeaderText": "Navrhovaných ľudí", + "peoplePickerLoadingText": "Nahrávanie", + "PeoplePickerSearchText": "Načítavajú sa používatelia", + "PeoplePickerGroupNotFound": "Skupina sa nenašla.", + "genericNoResultsFoundText": "Nenašli sa žiadne výsledky", + "ListItemPickerSelectValue": "Vybrať hodnotu", + "ListItemAttachmentsActionDeleteIconTitle": "Odstrániť", + "ListItemAttachmentsactionDeleteTitle": "Odstrániť", + "ListItemAttachmentsfileDeletedMsg": "Súbor {0} odstránený", + "ListItemAttachmentsfileDeleteError": "Chyba pri odstránení súboru: {0}, dôvod {1}", + "ListItemAttachmentserrorLoadAttachments": "Chyba pri načítaní prílohy položky zoznamu, dôvod: {0}", + "ListItemAttachmentsconfirmDelete": "Naozaj chcete odoslať prílohu {0} do Koša lokality?", + "ListItemAttachmentsdialogTitle": "Príloha položky zoznamu", + "ListItemAttachmentsdialogOKbuttonLabel": "OK", + "ListItemAttachmentsdialogCancelButtonLabel": "Zrušiť", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Odstrániť", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Pridať prílohu", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Pridať prílohu", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Súbor {0} nie je priložený, dôvod: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Pridať prílohu", + "ListItemAttachmentsloadingMessage": "Nahráva sa súbor...", + "ListItemAttachmentslPlaceHolderIconText": "Príloha položky zoznamu", + "ListItemAttachmentslPlaceHolderDescription": "Prosím, pridajte prílohu", + "ListItemAttachmentslPlaceHolderButtonLabel": "Pridať", + "mapsErrorMessage": "Počas načítania mapy sa vyskytla chyba", + "mapsLoadingText": "Nahrávanie", + "mapsSearchButtonText": "Hľadať", + "mapsTitlePrefix": "Mapa mesta", + "ListViewFilterLabel": "Filtrovanie zoznamu", + "HeaderNormalText": "Normálny text", + "HeaderH2": "Nadpis 1", + "HeaderH3": "Nadpis 2", + "HeaderH4": "Nadpis 3", + "HeaderBlockQuote": "Citácia", + "AlignLeft": "Zarovnať doľava", + "AlignCenter": "Zarovnať do stredu", + "AlignRight": "Zarovnať doprava", + "AlignJustify": "Odôvodniť", + "ListBullet": "Zoznam s odrážkami", + "ListNumbered": "Číslovaný zoznam", + "StyleTitle": "Štýl", + "BoldTitle": "Tučné (Ctrl + B)", + "ItalicTitle": "Kurzíva (Ctrl + I)", + "UnderlineTitle": "Podčiarknutie (Ctrl + U)", + "AlignTitle": "Zarovnať", + "ListTitle": "Zoznam", + "LinkTitle": "Hypertextové prepojenie", + "ImageTitle": "Obraz", + "MoreTitle": "Viac", + "FormattingPaneTitle": "Formátovanie textu", + "CloseButton": "Zatvoriť", + "InsertLinkTitle": "Vložiť prepojenie", + "InsertImageTitle": "Vložiť obrázok", + "AddressFieldLabel": "Adresa", + "TextToDisplayLabel": "Text, ktorý sa má zobraziť", + "SaveButtonLabel": "Uložiť", + "CancelButtonLabel": "Zrušiť", + "RemoveLinkLabel": "Odstrániť prepojenie", + "ParagraphSectionTitle": "Odsek", + "HyperlinkSectionTitle": "Hypertextové prepojenie", + "UndoTitle": "Späť (Ctrl + Z)", + "RedoTitle": "Znova (Ctrl + Y)", + "ClearFormattingTitle": "Vymazať všetko formátovanie", + "FontStyleTitle": "Štýl písma", + "FontSizeTitle": "Veľkosť písma", + "StrikethroughTitle": "Prečiarknutie", + "SuperscriptTitle": "Horný index", + "SubscriptTitle": "Dolný index", + "FontColorLabel": "Farba písma", + "AutomaticFontColor": "Automatické", + "HighlightColorLabel": "Farba zvýraznenia", + "NoColorHighlightColor": "Bez farby", + "IncreaseIndentTitle": "Zväčšiť zarážku", + "DecreaseIndentTitle": "Zmenšiť zarážku", + "ThemeColorsGroupName": "Farby motívu", + "HighlightColorsGroupName": "Zvýrazniť farby", + "StandardColorsGroupName": "Štandardné farby", + "CustomColorsGroupName": "Vlastné farby", + "ThemeColorDarker": "Tmavšia téma", + "ThemeColorDark": "Tmavá téma", + "ThemeColorDarkAlt": "Alternatívna tmavá téma", + "ThemeColorPrimary": "Primárna téma", + "ThemeColorSecondary": "Sekundárna téma", + "ThemeColorTertiary": "Ďalšia téma", + "ThemeColorNeutralSecondary": "Neutrána sekundárna téma", + "ThemeColorNeutralPrimaryAlt": "Alternatívna primárna téma", + "ThemeColorNeutralPrimary": "Neutrána primárna téma", + "ThemeColorNeutralDark": "Neutrálna tmavá téma", + "HighlightColorYellow": "Žltá", + "HighlightColorGreen": "Zelená", + "HighlightColorAqua": "Bledomodrá", + "HighlightColorMagenta": "Purpurová", + "HighlightColorBlue": "Modrá", + "HighlightColorRed": "Červená", + "HighlightColorDarkblue": "Tmavomodrá", + "HighlightColorTeal": "Zelenomodrá", + "HighlightColorDarkgreen": "Tmavozelená", + "HighlightColorPurple": "Fialová", + "HighlightColorMaroon": "Gaštanovohnedá", + "HighlightColorGold": "Zlatá", + "HighlightColorDarkgrey": "Tmavošedá", + "HighlightColorGrey": "Šedá", + "HighlightColorBlack": "Čierna", + "StandardColorDarkred": "Tmavočervená", + "StandardColorRed": "Červená", + "StandardColorOrange": "Oranžová", + "StandardColorYellow": "Žltá", + "StandardColorLightgreen": "Svetlozelená", + "StandardColorGreen": "Zelená", + "StandardColorLightblue": "Svetlomodrá", + "StandardColorBlue": "Modrá", + "StandardColorDarkblue": "Tmavomodrá", + "StandardColorPurple": "Fialová", + "DatePickerMonthLongJanuary": "Január", + "DatePickerMonthShortJanuary": "Jan", + "DatePickerMonthLongFebruary": "Február", + "DatePickerMonthShortFebruary": "Feb", + "DatePickerMonthLongMarch": "Marec", + "DatePickerMonthShortMarch": "Mar", + "DatePickerMonthLongApril": "Apríl", + "DatePickerMonthShortApril": "Apríla", + "DatePickerMonthLongMay": "Máj", + "DatePickerMonthShortMay": "Máj", + "DatePickerMonthLongJune": "Jún", + "DatePickerMonthShortJune": "Jún", + "DatePickerMonthLongJuly": "Júl", + "DatePickerMonthShortJuly": "Júl", + "DatePickerMonthLongAugust": "August", + "DatePickerMonthShortAugust": "Aug", + "DatePickerMonthLongSeptember": "September", + "DatePickerMonthShortSeptember": "Sep", + "DatePickerMonthLongOctober": "Október", + "DatePickerMonthShortOctober": "Okt", + "DatePickerMonthLongNovember": "November", + "DatePickerMonthShortNovember": "Nov", + "DatePickerMonthLongDecember": "December", + "DatePickerMonthShortDecember": "Dec", + "DatePickerDayLongSunday": "Nedeľa", + "DatePickerDayShortSunday": "Ne", + "DatePickerDayLongMonday": "Pondelok", + "DatePickerDayShortMonday": "Po", + "DatePickerDayLongTuesday": "Utorok", + "DatePickerDayShortTuesday": "Ut", + "DatePickerDayLongWednesday": "Streda", + "DatePickerDayShortWednesday": "St", + "DatePickerDayLongThursday": "Štvrtok", + "DatePickerDayShortThursday": "Št", + "DatePickerDayLongFriday": "Piatok", + "DatePickerDayShortFriday": "Pi", + "DatePickerDayLongSaturday": "Sobotu", + "DatePickerDayShortSaturday": "So", + "DatePickerGoToToday": "Uskutočnená dnes o", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Dátum", + "DateTimePickerTime": "Čas", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Nesprávna hodinová hodnota", + "DateTimePickerMinuteValueInvalid": "Nesprávna minútová hodnota", + "DateTimePickerSecondValueInvalid": "Nesprávna druhá hodnota", + "DateTimePickerTextErrorMessage": "Zadajte platný dátum", + "AddFileButtonLabel": "Pridať súbor", + "AddImageButtonLabel": "Pridať obrázok", + "AriaCellValue": "{0} stĺpci {1}", + "FilePickerCancelButtonLabel": "Zrušiť", + "CantValidateValidationMessage": "Nemohli sme overiť tento odkaz. Skontrolujte prosím odkaz a skúste to znova.", + "ChangeFileLinkLabel": "Zmeniť súbor", + "ChangeImageLinkLabel": "Zmeniť obrázok", + "ChooseFileLinkLabel": "Vyberte súbor", + "ChooseImageLinkLabel": "Vyberte obrázok", + "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", + "CopyrightWarning": "Zodpovedáte za rešpektovanie práv ostatných, vrátane autorských práv.", + "CreativeCommonsMessage": "Tieto výsledky sú označené licenciou Creative Commons. Skontrolujte licencie, aby ste zaistili súlad.", + "DateFormat": "MM/DD/rrrr hh: mm A", + "DocumentLabelTemplate": "{0}, dokument, upravený {1}, editovaný {2}, súkromný", + "DocumentLibraries": "Knižnice dokumentov", + "EditedByNamePlate": "editoval ", + "EmptyFileSize": "0 bajtov", + "FilePickerHeader": "Výber súboru", + "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, upravený {1}, editovaný {2}, {3} položky, súkromné", + "FromLinkLinkLabel": "Z odkazu", + "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": "Štvorec", + "LayoutOptionTall": "Vysoký", + "LayoutOptionWide": "Široký", + "LearnMoreLink": "zistiť viac.", + "LicenseOptionAll": "Všetky", + "LicenseOptionAny": "Len Creative Commons", + "LicensePlaceholderText": "Licencie", + "LinkFileInstructions": "Pridanie prepojenia na súbor v službe OneDrive for Business alebo SharePoint Online", + "LinkHeader": "Z odkazu", + "LinkImageInstructions": "Pridanie prepojenia na obrázok v službe OneDrive for Business alebo SharePoint Online", + "ListLayoutAriaLabel": "Možnosti zobrazenia. {0} {1}.", + "ListLayoutCompact": "Kompaktný pohľad", + "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 pomocou ukážok dlaždíc", + "ListOptionsAlt": "Možnosti zobrazenia. {0} vybraté.", + "ListOptionsTitle": "Otvorenie ponuky Zobraziť možnosti", + "Loading": "Nahrávanie...", + "ModifiedByField": "Upravený", + "ModifiedField": "Dátum úpravy", + "NameField": "meno", + "No": "nie", + "ProvidedValueIsInvalid": "Poskytnutá hodnota je neplatná", + "NoExternalLinksValidationMessage": "Podporujeme len prepojenie na súbory vo vašej vlastnej organizácii.", + "NoImageValidationMessage": "Toto nie je odkaz na typ súboru, ktorý podporujeme. Môžete odkazovať len na obrázok.", + "NoRecentFiles": "Žiadne nedávne súbory", + "NoRecentFilesDescription": "Skúste vybrať súbor z webu alebo ho nahrajte zo zariadenia.", + "NoResultsBadEnglish": "Neexistuje žiadny výsledok hľadania. Pokúste sa 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}, editované {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Táto položka je z lokality OneDrive. Súbory a priečinky v službe OneDrive sú súkromné, pokiaľ ich nezdieľate. Zdieľali ste tento súbor s členmi vašej stránky, aby mohli rístup to?", + "OneDriveConfirmDialogTitle": "Len kontrola...", + "OneDriveEmptyFolderAlt": "Prázdny priečinok", + "OneDriveEmptyFolderDescription": "Ak chcete pridať súbory, prejdite do svojho 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, ktoré poskytuje vaša organizácia", + "PoweredByBing": "Spravované Bing", + "RecentDocumentsHeader": "Nedávne 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 otvoríte zdroj obrazu 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", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Napr", + "YB" + ], + "SorryWebSearch": "Ospravedlňujeme sa, táto funkcia nie je implementovaná v tejto vzorke, pretože to by vyžadovalo Bing API kľúč.", + "SortedAscending": "Zoradené vzostupne", + "SortedDescending": "Zoradené zostupne", + "TypeAriaLabel": "Operácie stĺpcov pre typ súboru, stlačte na zoradenie na typ súboru", + "UploadFileHeader": "Nahrať súbor", + "UploadImageHeader": "Nahrať obrázok", + "UploadLinkLabel": "Nahrať", + "WebSearchLinkLabel": "Vyhľadávanie na webe", + "StockImagesLinkLabel": "Skladové obrázky", + "StockImagesHeader": "Skladové obrázky", + "Yes": "áno", + "NewFolderNamePlaceholder": "Zadajte názov priečinka", + "FolderFilterBoxPlaceholder": "Filtrovanie priečinkov podľa názvu", + "FolderExplorerLoading": "Načítavajú sa priečinky...", + "FolderExplorerNoItems": "Tento priečinok neobsahuje žiadne podpriečinky.", + "NewFolderIncorrectSymbolsError": "Zadajte meno, ktoré neobsahuje žiadny z týchto znakov: \" * : < >? / |.", + "SomethingWentWrong": "Niečo sa pokazilo", + "SelectedLabel": "Zvolené", + "SelectIcon": "Vybrať ikonu", + "TreeViewExpandTitle": "Rozbaliť túto položku", + "TreeViewCollapseTitle": "Zbaliť túto položku", + "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 potrebné.", + "CollectionDataItemMissingFields": "Zbierka polí je prázdna!", + "InvalidUrlError": "Zadaná adresa URL nie je platná", + "CollectionDataSearch": "Hľadať", + "MyTeamsLoadingMessage": "načítanie tímov", + "MyTeamsMessageError": "Pri načítavaní tímov sa niečo pokazilo, skúste to neskôr alebo obnovte prehliadač", + "MyTeamsNoTeamsMessage": "Nemáte žiadne tímy.", + "MyTeamsTeamChannelPublicMessage": "Verejné kanály", + "MyTeamsTeamChannelTypeMessage": "Súkromné kanály", + "TeamChannelPickerFontIconFavoriteText": "Obľúbený", + "TeamChannelPickerFontIconPrivateChannelTitle": "Súkromný kanál", + "TeamChannelPickerSugestionHeaderText": "Navrhované tímové kanály", + "TeamPickerButtonRemoveTitle": "odstrániť", + "TeamPickernoResultsFoundText": "Nenašli sa žiadne tímy", + "TeamPickerSugestionsHeaderText": "Navrhované tímy", + "TeamsChannelPickerButtonRemoveTitle": "odstrániť", + "TeamsChannelPickerNoresultsFoundText": "Nenašli sa žiadne kanály", + "ViewMore": "Zobraziť viac", + "DynamicFormLoading": "Nakladanie...", + "DynamicFormPleaseWait": "Prosím počkajte...", + "DynamicFormRequiredErrorMessage": "Nemôžeš to nechať prázdne.", + "DynamicFormTermPanelTitle": "Vybrať výraz", + "DynamicFormEnterURLPlaceholder": "Zadanie adresy URL", + "DynamicFormEnterDescriptionPlaceholder": "Alternatívny text", + "customDisplayName": "Použite toto umiestnenie:", + "ListItemCommentDIalogDeleteSubText": "Naozaj chcete odstrániť tento komentár?", + "ListItemCommentsDialogDeleteTitle": "Potvrdiť odstránenie komentára", + "ListItemCommentsLabel": "Komentáre", + "ListItemCommentsNoCommentsLabel": "Nie sú žiadne komentáre", + "OrgAssetsLinkLabel": "Vašej organizácie", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/sr-latn-rs.ts b/src/loc/sr-latn-rs.ts index 356857a4c..bf4a616cb 100644 --- a/src/loc/sr-latn-rs.ts +++ b/src/loc/sr-latn-rs.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Putanja Veb lokacije", - "ListViewGroupEmptyLabel": "Prazna", - "WebPartTitlePlaceholder": "Naslov Web Part modula", - "WebPartTitleLabel": "Dodavanje naslova", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Za nekoliko sekundi", - "L_RelativeDateTime_AFewSeconds": "Prije par sekundi", - "L_RelativeDateTime_AboutAMinuteFuture": "Za minutu", - "L_RelativeDateTime_AboutAMinute": "Prije minut", - "L_RelativeDateTime_XMinutesFuture": "U {0} minutu||U {0} minuta", - "L_RelativeDateTime_XMinutes": "{0} minut ago||pre {0} minuta", - "L_RelativeDateTime_XMinutesFutureIntervals": "1||2", - "L_RelativeDateTime_XMinutesIntervals": "1||2", - "L_RelativeDateTime_AboutAnHourFuture": "Za oko sat vremena", - "L_RelativeDateTime_AboutAnHour": "Prije sat vremena", - "L_RelativeDateTime_Tomorrow": "Sutra", - "L_RelativeDateTime_Yesterday": "Juиe", - "L_RelativeDateTime_TomorrowAndTime": "Sutra u {0}", - "L_RelativeDateTime_YesterdayAndTime": "Juče u {0}", - "L_RelativeDateTime_XHoursFuture": "U {0} sat||U {0} časova", - "L_RelativeDateTime_XHours": "pre {0} sat||pre {0} sati", - "L_RelativeDateTime_XHoursFutureIntervals": "1||2", - "L_RelativeDateTime_XHoursIntervals": "1||2", - "L_RelativeDateTime_DayAndTime": "{0} u {1}", - "L_RelativeDateTime_XDaysFuture": "{0} dan od sada||{0} dana od sada", - "L_RelativeDateTime_XDays": "pre {0} dana||pre {0} dana", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2", - "L_RelativeDateTime_XDaysIntervals": "1||2", - "L_RelativeDateTime_Today": "Danas" - }, - "SendEmailTo": "Slanje e-poruke {0}", - "StartChatWith": "Započnite ćaskanje sa {0}", - "Contact": "Kontakt", - "UpdateProfile": "Ažurirajte svoj profil", - "TaxonomyPickerNoTerms": "Skup termina ne sadrži nijedan termin", - "TaxonomyPickerExpandTitle": "Proširi ovaj skup termina", - "TaxonomyPickerMenuTermSet": "Meni za skup termina", - "TaxonomyPickerInLabel": "Inča", - "TaxonomyPickerTermSetLabel": "Skup termina", - "peoplePickerComponentTooltipMessage": "Birač osoba", - "peoplePickerComponentErrorMessage": "Zahtevano polje", - "peoplePickerSuggestionsHeaderText": "Predložene osobe", - "peoplePickerLoadingText": "Učitavanje", - "PeoplePickerSearchText": "Prenošenje korisnika", - "PeoplePickerGroupNotFound": "Grupa nije mogla biti pronađena.", - "genericNoResultsFoundText": "Nisu pronađeni rezultati", - "ListItemPickerSelectValue": "Izaberi vrednost", - "ListItemAttachmentsActionDeleteIconTitle": "Izbrišete", - "ListItemAttachmentsactionDeleteTitle": "Izbrišete", - "ListItemAttachmentsfileDeletedMsg": "Datoteka {0} izbrisana", - "ListItemAttachmentsfileDeleteError": "Greška pri brisanju datoteke: {0}, razlog {1}", - "ListItemAttachmentserrorLoadAttachments": "Greška pri učitavanju priloga stavke liste, razlog: {0}", - "ListItemAttachmentsconfirmDelete": "Želite li zaista da pošaljete prilog {0} korpi za otpatke lokacije?", - "ListItemAttachmentsdialogTitle": "Prilog stavke liste", - "ListItemAttachmentsdialogOKbuttonLabel": "u redu", - "ListItemAttachmentsdialogCancelButtonLabel": "Otkaži", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Izbrišete", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Dodaj prilog", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Dodaj prilog", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Datoteka {0} nije priložena, razlog: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Dodaj prilog", - "ListItemAttachmentsloadingMessage": "Otpremanje datoteke...", - "ListItemAttachmentslPlaceHolderIconText": "Prilog stavke liste", - "ListItemAttachmentslPlaceHolderDescription": "Dodajte prilog", - "ListItemAttachmentslPlaceHolderButtonLabel": "Dodaj", - "mapsErrorMessage": "Došlo je do greške prilikom učitavanja mape", - "mapsLoadingText": "Učitavanje", - "mapsSearchButtonText": "Pretrage", - "mapsTitlePrefix": "Karta", - "ListViewFilterLabel": "Filtrirajte listu", - "HeaderNormalText": "Normalan tekst", - "HeaderH2": "Naslov 1", - "HeaderH3": "Naslov 2", - "HeaderH4": "Naslov 3", - "HeaderBlockQuote": "Povuci ponudu", - "AlignLeft": "Poravnaj levo", - "AlignCenter": "Centar", - "AlignRight": "Poravnaj desno", - "AlignJustify": "Opravda", - "ListBullet": "Lista sa znakovima za nabrajanje", - "ListNumbered": "Numerisana lista", - "StyleTitle": "Stil", - "BoldTitle": "Podebljano (Ctrl + B)", - "ItalicTitle": "Kurziv (Ctrl + I)", - "UnderlineTitle": "Podvlačenje (CTRL + U)", - "AlignTitle": "Poravnaj", - "ListTitle": "Liste", - "LinkTitle": "Hipervezu", - "MoreTitle": "Viљe", - "FormattingPaneTitle": "Oblikovanje teksta", - "CloseButton": "Zatvorite", - "InsertLinkTitle": "Umetni vezu", - "AddressFieldLabel": "Adresa", - "TextToDisplayLabel": "Tekst za prikazivanje", - "SaveButtonLabel": "Sačuvaj", - "CancelButtonLabel": "Otkaži", - "RemoveLinkLabel": "Ukloni vezu", - "ParagraphSectionTitle": "Pasusa", - "HyperlinkSectionTitle": "Hipervezu", - "UndoTitle": "Opozovi radnju (Ctrl + Z)", - "RedoTitle": "Ponovi radnju (Ctrl + Y)", - "ClearFormattingTitle": "Obriši sva oblikovanja", - "FontStyleTitle": "Stil fonta", - "FontSizeTitle": "Veličina fonta", - "StrikethroughTitle": "Precrtani tekst", - "SuperscriptTitle": "Eksponentni tekst", - "SubscriptTitle": "Indeksni tekst", - "FontColorLabel": "Boja fonta", - "AutomaticFontColor": "Automatsko", - "HighlightColorLabel": "Boja za isticanje", - "NoColorHighlightColor": "Bez boje", - "IncreaseIndentTitle": "Povećaj uvlačenje", - "DecreaseIndentTitle": "Smanji uvlačenje pasusa", - "ThemeColorsGroupName": "Boje teme", - "HighlightColorsGroupName": "Isticanje boja", - "StandardColorsGroupName": "Standardne boje", - "CustomColorsGroupName": "Prilagođene boje", - "ThemeColorDarker": "Tema tamnija", - "ThemeColorDark": "Tema \"tamno\"", - "ThemeColorDarkAlt": "Tema \"tamnoplava\"", - "ThemeColorPrimary": "Glavna tema", - "ThemeColorSecondary": "Pomoćna tema", - "ThemeColorTertiary": "Neutralni Tercijarni", - "ThemeColorNeutralSecondary": "Neutralni sekundarni", - "ThemeColorNeutralPrimaryAlt": "Neutralni primarni alternativni", - "ThemeColorNeutralPrimary": "Neutralni primarni", - "ThemeColorNeutralDark": "Neutralna tamna", - "HighlightColorYellow": "Ћuti", - "HighlightColorGreen": "Zeleni", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Plavi", - "HighlightColorRed": "Crveni", - "HighlightColorDarkblue": "Tamnoplava", - "HighlightColorTeal": "Tamnozelena", - "HighlightColorDarkgreen": "Tamno zelena", - "HighlightColorPurple": "Ljubiиasti", - "HighlightColorMaroon": "Bordo", - "HighlightColorGold": "Zlato", - "HighlightColorDarkgrey": "Tamno sivo", - "HighlightColorGrey": "Grey", - "HighlightColorBlack": "Crni", - "StandardColorDarkred": "Tamno crveno", - "StandardColorRed": "Crveni", - "StandardColorOrange": "Narandћasto", - "StandardColorYellow": "Ћuti", - "StandardColorLightgreen": "Svetlozelena", - "StandardColorGreen": "Zeleni", - "StandardColorLightblue": "Svetlo plava", - "StandardColorBlue": "Plavi", - "StandardColorDarkblue": "Tamnoplava", - "StandardColorPurple": "Ljubiиasti", - "DatePickerMonthLongJanuary": "Januara", - "DatePickerMonthShortJanuary": "Jan", - "DatePickerMonthLongFebruary": "Februara", - "DatePickerMonthShortFebruary": "Feb", - "DatePickerMonthLongMarch": "Marta", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "Aprila", - "DatePickerMonthShortApril": "Apr", - "DatePickerMonthLongMay": "Moћda", - "DatePickerMonthShortMay": "Moћda", - "DatePickerMonthLongJune": "Juna", - "DatePickerMonthShortJune": "Dћun", - "DatePickerMonthLongJuly": "Jula", - "DatePickerMonthShortJuly": "Jul", - "DatePickerMonthLongAugust": "Avgusta", - "DatePickerMonthShortAugust": "Aug", - "DatePickerMonthLongSeptember": "Septembra", - "DatePickerMonthShortSeptember": "Sedam", - "DatePickerMonthLongOctober": "Oktobra", - "DatePickerMonthShortOctober": "Oct", - "DatePickerMonthLongNovember": "Novembra", - "DatePickerMonthShortNovember": "Nov", - "DatePickerMonthLongDecember": "Decembra", - "DatePickerMonthShortDecember": "Dec", - "DatePickerDayLongSunday": "Nedelju", - "DatePickerDayShortSunday": "Sunce", - "DatePickerDayLongMonday": "Ponedeljak", - "DatePickerDayShortMonday": "Moj", - "DatePickerDayLongTuesday": "Utorak", - "DatePickerDayShortTuesday": "Uto", - "DatePickerDayLongWednesday": "Srede", - "DatePickerDayShortWednesday": "Wed", - "DatePickerDayLongThursday": "Иetvrtak", - "DatePickerDayShortThursday": "Čet", - "DatePickerDayLongFriday": "Petak", - "DatePickerDayShortFriday": "Fri", - "DatePickerDayLongSaturday": "Subotu", - "DatePickerDayShortSaturday": "Sedeo", - "DatePickerGoToToday": "Danas", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Datum", - "DateTimePickerTime": "Vreme", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Netačna vrednost sata", - "AddFileButtonLabel": "Dodaj datoteku", - "AddImageButtonLabel": "Dodaj sliku", - "AriaCellValue": "{0} kolonu, {1}", - "FilePickerCancelButtonLabel": "Otkaži", - "CantValidateValidationMessage": "Nije bilo moguće potvrditi ovu vezu. Proverite vezu i pokušajte ponovo.", - "ChangeFileLinkLabel": "Promeni datoteku", - "ChangeImageLinkLabel": "Promena slike", - "ChooseFileLinkLabel": "Odaberi datoteku", - "ChooseImageLinkLabel": "Odaberi sliku", - "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", - "CopyrightWarning": "Vi ste odgovorni za poštovanje prava drugih, uključujući autorska prava.", - "CreativeCommonsMessage": "Ovi rezultati su označeni Creative-ovim licencama. Pregledajte licence da biste se uverili da ste u skladu.", - "DateFormat": "MM/DD/YYYY HH: mm A", - "DocumentLabelTemplate": "{0}, dokument, izmenjeno {1}, uređivao {2}, privatno", - "DocumentLibraries": "Biblioteke dokumenata", - "EditedByNamePlate": "uređivao ", - "EmptyFileSize": "0 bajtova", - "FilePickerHeader": "Birač 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}, fasciklu, modificirane {1}, uređuju {2}, {3} stavke, privatno", - "FromLinkLinkLabel": "Iz veze", - "ImageAltText": ". {0} slika", - "ImageAriaLabelTemplate": ". {0} slika", - "ImageLayoutPlaceholderText": "Raspored", - "ImageSizePlaceholderText": "Veličina slike", - "ItemChildCountField": "Broj podređenih stavki", - "LayoutOptionAll": "Sve", - "LayoutOptionSquare": "Kvadratnih", - "LayoutOptionTall": "Visok", - "LayoutOptionWide": "Љirom", - "LearnMoreLink": "uči više.", - "LicenseOptionAll": "Sve", - "LicenseOptionAny": "Samo Creative samo", - "LicensePlaceholderText": "Dozvolu", - "LinkFileInstructions": "Lepljenje veze do datoteke u usluzi OneDrive za poslovno ili SharePoint online", - "LinkHeader": "Iz veze", - "LinkImageInstructions": "Lepljenje veze ka slici u usluzi OneDrive za posao ili SharePoint online", - "ListLayoutAriaLabel": "Opcije prikaza. {0} {1}.", - "ListLayoutCompact": "Sažeti prikaz", - "ListLayoutCompactDescription": "Prikazivanje stavki i detalja u sažetom listu", - "ListLayoutList": "Prikaz liste", - "ListLayoutListDescrition": "Prikazivanje stavki i detalja u listi", - "ListLayoutTile": "Prikaz pločice", - "ListLayoutTileDescription": "Prikaži stavke sa pregledima pločica", - "ListOptionsAlt": "Opcije prikaza. {0} izabran.", - "ListOptionsTitle": "Otvaranje menija \"Opcije prikaza\"", - "Loading": "Učitavanje...", - "ModifiedByField": "Izmenio", - "ModifiedField": "Datum izmene", - "NameField": "Ime", - "No": "ne", - "ProvidedValueIsInvalid": "Data vrednost je nevažeća", - "NoExternalLinksValidationMessage": "Mi samo podržavamo 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 nedavnih datoteka", - "NoRecentFilesDescription": "Pokušajte da izaberete datoteku sa vaše lokacije ili otpremite jednu 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}, modificirane {2}, uređuju {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Ova stavka je sa vaše OneDrive lokacije. Datoteke i fascikle u usluzi OneDrive su privatne ako ih ne delite. Da li ste delili ovu datoteku sa članovima lokacije kako bi mogli da je svaraju?", - "OneDriveConfirmDialogTitle": "Samo Provjeravanje...", - "OneDriveEmptyFolderAlt": "Isprazni fasciklu", - "OneDriveEmptyFolderDescription": "Da biste dodali datoteke, idite u OneDrive. Takođe možete dodati datoteke u ovu fasciklu pomoću OneDrive aplikacije za vaš 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": "Powered by Bing", - "RecentDocumentsHeader": "Nedavni dokumenti", - "RecentImagesHeader": "Nedavne slike", - "RecentLinkLabel": "Nedavne", - "SearchBoxPlaceholder": "Pretraživanje Weba", - "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 velik", - "SizeOptionLarge": "Velike", - "SizeOptionMedium": "Srednje", - "SizeOptionSmall": "Mali", - "SizeUnit": [ - "Bajtova", - "Kb", - "Mb", - "Gb", - "Tb", - "PB", - "EB", - "Npr", - "YB" - ], - "SorryWebSearch": "Nažalost, ova funkcija nije primenjena u ovom uzorku zato što bi to zahtevalo Bing API ključ.", - "SortedAscending": "Sortiran od A do Z", - "SortedDescending": "Sortiran od ž do A", - "TypeAriaLabel": "Operacije kolona za tip datoteke, pritisnite da biste sortirali po tipu datoteke", - "UploadFileHeader": "Otpremi datoteku", - "UploadImageHeader": "Otpremi sliku", - "UploadLinkLabel": "Otpremanje", - "WebSearchLinkLabel": "Pretraživanje Weba", - "Yes": "Da", - "SelectedLabel": "Izabrano", - "SelectIcon": "Izaberite ikonu", - "StockImagesLinkLabel": "Berzanske slike", - "StockImagesHeader": "Berzanske slike", - "OrgAssetsLinkLabel": "Vaša organizacija" - }; -}); + "Save": "Sačuvaj", + "Cancel": "Otkaži", + "SiteBreadcrumbLabel": "Putanja Veb lokacije", + "ListViewGroupEmptyLabel": "Prazna", + "WebPartTitlePlaceholder": "Naslov Web Part modula", + "WebPartTitleLabel": "Dodavanje naslova", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Za nekoliko sekundi", + "L_RelativeDateTime_AFewSeconds": "Prije par sekundi", + "L_RelativeDateTime_AboutAMinuteFuture": "Za minutu", + "L_RelativeDateTime_AboutAMinute": "Prije minut", + "L_RelativeDateTime_XMinutesFuture": "U {0} minutu||U {0} minuta", + "L_RelativeDateTime_XMinutes": "{0} minut ago||pre {0} minuta", + "L_RelativeDateTime_XMinutesFutureIntervals": "1||2", + "L_RelativeDateTime_XMinutesIntervals": "1||2", + "L_RelativeDateTime_AboutAnHourFuture": "Za oko sat vremena", + "L_RelativeDateTime_AboutAnHour": "Prije sat vremena", + "L_RelativeDateTime_Tomorrow": "Sutra", + "L_RelativeDateTime_Yesterday": "Juиe", + "L_RelativeDateTime_TomorrowAndTime": "Sutra u {0}", + "L_RelativeDateTime_YesterdayAndTime": "Juče u {0}", + "L_RelativeDateTime_XHoursFuture": "U {0} sat||U {0} časova", + "L_RelativeDateTime_XHours": "pre {0} sat||pre {0} sati", + "L_RelativeDateTime_XHoursFutureIntervals": "1||2", + "L_RelativeDateTime_XHoursIntervals": "1||2", + "L_RelativeDateTime_DayAndTime": "{0} u {1}", + "L_RelativeDateTime_XDaysFuture": "{0} dan od sada||{0} dana od sada", + "L_RelativeDateTime_XDays": "pre {0} dana||pre {0} dana", + "L_RelativeDateTime_XDaysFutureIntervals": "1||2", + "L_RelativeDateTime_XDaysIntervals": "1||2", + "L_RelativeDateTime_Today": "Danas" + }, + "SendEmailTo": "Slanje e-poruke {0}", + "StartChatWith": "Započnite ćaskanje sa {0}", + "Contact": "Kontakt", + "UpdateProfile": "Ažurirajte svoj profil", + "TaxonomyPickerNoTerms": "Skup termina ne sadrži nijedan termin", + "TaxonomyPickerExpandTitle": "Proširi ovaj skup termina", + "TaxonomyPickerMenuTermSet": "Meni za skup termina", + "TaxonomyPickerInLabel": "Inča", + "TaxonomyPickerTermSetLabel": "Skup termina", + "TaxonomyPickerTermsNotFound": "Sledeći izabrani termini nisu mogli biti pronađeni u prodavnici termina: {0}", + "TaxonomyPickerInvalidTerms": "Popravite nevažeće termine: {0}", + "peoplePickerComponentTooltipMessage": "Birač osoba", + "peoplePickerComponentErrorMessage": "Zahtevano polje", + "peoplePickerSuggestionsHeaderText": "Predložene osobe", + "peoplePickerLoadingText": "Učitavanje", + "PeoplePickerSearchText": "Prenošenje korisnika", + "PeoplePickerGroupNotFound": "Grupa nije mogla biti pronađena.", + "genericNoResultsFoundText": "Nisu pronađeni rezultati", + "ListItemPickerSelectValue": "Izaberi vrednost", + "ListItemAttachmentsActionDeleteIconTitle": "Izbrišete", + "ListItemAttachmentsactionDeleteTitle": "Izbrišete", + "ListItemAttachmentsfileDeletedMsg": "Datoteka {0} izbrisana", + "ListItemAttachmentsfileDeleteError": "Greška pri brisanju datoteke: {0}, razlog {1}", + "ListItemAttachmentserrorLoadAttachments": "Greška pri učitavanju priloga stavke liste, razlog: {0}", + "ListItemAttachmentsconfirmDelete": "Želite li zaista da pošaljete prilog {0} korpi za otpatke lokacije?", + "ListItemAttachmentsdialogTitle": "Prilog stavke liste", + "ListItemAttachmentsdialogOKbuttonLabel": "u redu", + "ListItemAttachmentsdialogCancelButtonLabel": "Otkaži", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Izbrišete", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Dodaj prilog", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Dodaj prilog", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Datoteka {0} nije priložena, razlog: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Dodaj prilog", + "ListItemAttachmentsloadingMessage": "Otpremanje datoteke...", + "ListItemAttachmentslPlaceHolderIconText": "Prilog stavke liste", + "ListItemAttachmentslPlaceHolderDescription": "Dodajte prilog", + "ListItemAttachmentslPlaceHolderButtonLabel": "Dodaj", + "mapsErrorMessage": "Došlo je do greške prilikom učitavanja mape", + "mapsLoadingText": "Učitavanje", + "mapsSearchButtonText": "Pretrage", + "mapsTitlePrefix": "Karta", + "ListViewFilterLabel": "Filtrirajte listu", + "HeaderNormalText": "Normalan tekst", + "HeaderH2": "Naslov 1", + "HeaderH3": "Naslov 2", + "HeaderH4": "Naslov 3", + "HeaderBlockQuote": "Povuci ponudu", + "AlignLeft": "Poravnaj levo", + "AlignCenter": "Centar", + "AlignRight": "Poravnaj desno", + "AlignJustify": "Opravda", + "ListBullet": "Lista sa znakovima za nabrajanje", + "ListNumbered": "Numerisana lista", + "StyleTitle": "Stil", + "BoldTitle": "Podebljano (Ctrl + B)", + "ItalicTitle": "Kurziv (Ctrl + I)", + "UnderlineTitle": "Podvlačenje (CTRL + U)", + "AlignTitle": "Poravnaj", + "ListTitle": "Liste", + "LinkTitle": "Hipervezu", + "ImageTitle": "Slika", + "MoreTitle": "Viљe", + "FormattingPaneTitle": "Oblikovanje teksta", + "CloseButton": "Zatvorite", + "InsertLinkTitle": "Umetni vezu", + "InsertImageTitle": "Umetni sliku", + "AddressFieldLabel": "Adresa", + "TextToDisplayLabel": "Tekst za prikazivanje", + "SaveButtonLabel": "Sačuvaj", + "CancelButtonLabel": "Otkaži", + "RemoveLinkLabel": "Ukloni vezu", + "ParagraphSectionTitle": "Pasusa", + "HyperlinkSectionTitle": "Hipervezu", + "UndoTitle": "Opozovi radnju (Ctrl + Z)", + "RedoTitle": "Ponovi radnju (Ctrl + Y)", + "ClearFormattingTitle": "Obriši sva oblikovanja", + "FontStyleTitle": "Stil fonta", + "FontSizeTitle": "Veličina fonta", + "StrikethroughTitle": "Precrtani tekst", + "SuperscriptTitle": "Eksponentni tekst", + "SubscriptTitle": "Indeksni tekst", + "FontColorLabel": "Boja fonta", + "AutomaticFontColor": "Automatsko", + "HighlightColorLabel": "Boja za isticanje", + "NoColorHighlightColor": "Bez boje", + "IncreaseIndentTitle": "Povećaj uvlačenje", + "DecreaseIndentTitle": "Smanji uvlačenje pasusa", + "ThemeColorsGroupName": "Boje teme", + "HighlightColorsGroupName": "Isticanje boja", + "StandardColorsGroupName": "Standardne boje", + "CustomColorsGroupName": "Prilagođene boje", + "ThemeColorDarker": "Tema tamnija", + "ThemeColorDark": "Tema \"tamno\"", + "ThemeColorDarkAlt": "Tema \"tamnoplava\"", + "ThemeColorPrimary": "Glavna tema", + "ThemeColorSecondary": "Pomoćna tema", + "ThemeColorTertiary": "Neutralni Tercijarni", + "ThemeColorNeutralSecondary": "Neutralni sekundarni", + "ThemeColorNeutralPrimaryAlt": "Neutralni primarni alternativni", + "ThemeColorNeutralPrimary": "Neutralni primarni", + "ThemeColorNeutralDark": "Neutralna tamna", + "HighlightColorYellow": "Ћuti", + "HighlightColorGreen": "Zeleni", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Plavi", + "HighlightColorRed": "Crveni", + "HighlightColorDarkblue": "Tamnoplava", + "HighlightColorTeal": "Tamnozelena", + "HighlightColorDarkgreen": "Tamno zelena", + "HighlightColorPurple": "Ljubiиasti", + "HighlightColorMaroon": "Bordo", + "HighlightColorGold": "Zlato", + "HighlightColorDarkgrey": "Tamno sivo", + "HighlightColorGrey": "Grey", + "HighlightColorBlack": "Crni", + "StandardColorDarkred": "Tamno crveno", + "StandardColorRed": "Crveni", + "StandardColorOrange": "Narandћasto", + "StandardColorYellow": "Ћuti", + "StandardColorLightgreen": "Svetlozelena", + "StandardColorGreen": "Zeleni", + "StandardColorLightblue": "Svetlo plava", + "StandardColorBlue": "Plavi", + "StandardColorDarkblue": "Tamnoplava", + "StandardColorPurple": "Ljubiиasti", + "DatePickerMonthLongJanuary": "Januara", + "DatePickerMonthShortJanuary": "Jan", + "DatePickerMonthLongFebruary": "Februara", + "DatePickerMonthShortFebruary": "Feb", + "DatePickerMonthLongMarch": "Marta", + "DatePickerMonthShortMarch": "Mar", + "DatePickerMonthLongApril": "Aprila", + "DatePickerMonthShortApril": "Apr", + "DatePickerMonthLongMay": "Moћda", + "DatePickerMonthShortMay": "Moћda", + "DatePickerMonthLongJune": "Juna", + "DatePickerMonthShortJune": "Dћun", + "DatePickerMonthLongJuly": "Jula", + "DatePickerMonthShortJuly": "Jul", + "DatePickerMonthLongAugust": "Avgusta", + "DatePickerMonthShortAugust": "Aug", + "DatePickerMonthLongSeptember": "Septembra", + "DatePickerMonthShortSeptember": "Sedam", + "DatePickerMonthLongOctober": "Oktobra", + "DatePickerMonthShortOctober": "Oct", + "DatePickerMonthLongNovember": "Novembra", + "DatePickerMonthShortNovember": "Nov", + "DatePickerMonthLongDecember": "Decembra", + "DatePickerMonthShortDecember": "Dec", + "DatePickerDayLongSunday": "Nedelju", + "DatePickerDayShortSunday": "Sunce", + "DatePickerDayLongMonday": "Ponedeljak", + "DatePickerDayShortMonday": "Moj", + "DatePickerDayLongTuesday": "Utorak", + "DatePickerDayShortTuesday": "Uto", + "DatePickerDayLongWednesday": "Srede", + "DatePickerDayShortWednesday": "Wed", + "DatePickerDayLongThursday": "Иetvrtak", + "DatePickerDayShortThursday": "Čet", + "DatePickerDayLongFriday": "Petak", + "DatePickerDayShortFriday": "Fri", + "DatePickerDayLongSaturday": "Subotu", + "DatePickerDayShortSaturday": "Sedeo", + "DatePickerGoToToday": "Danas", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Datum", + "DateTimePickerTime": "Vreme", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Netačna vrednost sata", + "DateTimePickerMinuteValueInvalid": "Netačna minutna vrednost", + "DateTimePickerSecondValueInvalid": "Netačna druga vrednost", + "DateTimePickerTextErrorMessage": "Unesite važeći datum", + "AddFileButtonLabel": "Dodaj datoteku", + "AddImageButtonLabel": "Dodaj sliku", + "AriaCellValue": "{0} kolonu, {1}", + "FilePickerCancelButtonLabel": "Otkaži", + "CantValidateValidationMessage": "Nije bilo moguće potvrditi ovu vezu. Proverite vezu i pokušajte ponovo.", + "ChangeFileLinkLabel": "Promeni datoteku", + "ChangeImageLinkLabel": "Promena slike", + "ChooseFileLinkLabel": "Odaberi datoteku", + "ChooseImageLinkLabel": "Odaberi sliku", + "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", + "CopyrightWarning": "Vi ste odgovorni za poštovanje prava drugih, uključujući autorska prava.", + "CreativeCommonsMessage": "Ovi rezultati su označeni Creative-ovim licencama. Pregledajte licence da biste se uverili da ste u skladu.", + "DateFormat": "MM/DD/YYYY HH: mm A", + "DocumentLabelTemplate": "{0}, dokument, izmenjeno {1}, uređivao {2}, privatno", + "DocumentLibraries": "Biblioteke dokumenata", + "EditedByNamePlate": "uređivao ", + "EmptyFileSize": "0 bajtova", + "FilePickerHeader": "Birač 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}, fasciklu, modificirane {1}, uređuju {2}, {3} stavke, privatno", + "FromLinkLinkLabel": "Iz veze", + "ImageAltText": ". {0} slika", + "ImageAriaLabelTemplate": ". {0} slika", + "ImageLayoutPlaceholderText": "Raspored", + "ImageSizePlaceholderText": "Veličina slike", + "ItemChildCountField": "Broj podređenih stavki", + "LayoutOptionAll": "Sve", + "LayoutOptionSquare": "Kvadratnih", + "LayoutOptionTall": "Visok", + "LayoutOptionWide": "Љirom", + "LearnMoreLink": "uči više.", + "LicenseOptionAll": "Sve", + "LicenseOptionAny": "Samo Creative samo", + "LicensePlaceholderText": "Dozvolu", + "LinkFileInstructions": "Lepljenje veze do datoteke u usluzi OneDrive za poslovno ili SharePoint online", + "LinkHeader": "Iz veze", + "LinkImageInstructions": "Lepljenje veze ka slici u usluzi OneDrive za posao ili SharePoint online", + "ListLayoutAriaLabel": "Opcije prikaza. {0} {1}.", + "ListLayoutCompact": "Sažeti prikaz", + "ListLayoutCompactDescription": "Prikazivanje stavki i detalja u sažetom listu", + "ListLayoutList": "Prikaz liste", + "ListLayoutListDescrition": "Prikazivanje stavki i detalja u listi", + "ListLayoutTile": "Prikaz pločice", + "ListLayoutTileDescription": "Prikaži stavke sa pregledima pločica", + "ListOptionsAlt": "Opcije prikaza. {0} izabran.", + "ListOptionsTitle": "Otvaranje menija \"Opcije prikaza\"", + "Loading": "Učitavanje...", + "ModifiedByField": "Izmenio", + "ModifiedField": "Datum izmene", + "NameField": "Ime", + "No": "ne", + "ProvidedValueIsInvalid": "Data vrednost je nevažeća", + "NoExternalLinksValidationMessage": "Mi samo podržavamo 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 nedavnih datoteka", + "NoRecentFilesDescription": "Pokušajte da izaberete datoteku sa vaše lokacije ili otpremite jednu 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}, modificirane {2}, uređuju {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Ova stavka je sa vaše OneDrive lokacije. Datoteke i fascikle u usluzi OneDrive su privatne ako ih ne delite. Da li ste delili ovu datoteku sa članovima lokacije kako bi mogli da je svaraju?", + "OneDriveConfirmDialogTitle": "Samo Provjeravanje...", + "OneDriveEmptyFolderAlt": "Isprazni fasciklu", + "OneDriveEmptyFolderDescription": "Da biste dodali datoteke, idite u OneDrive. Takođe možete dodati datoteke u ovu fasciklu pomoću OneDrive aplikacije za vaš 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 pomoću usluge Bing", + "RecentDocumentsHeader": "Nedavni dokumenti", + "RecentImagesHeader": "Nedavne slike", + "RecentLinkLabel": "Nedavne", + "SearchBoxPlaceholder": "Pretraživanje Weba", + "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 velik", + "SizeOptionLarge": "Velike", + "SizeOptionMedium": "Srednje", + "SizeOptionSmall": "Mali", + "SizeUnit": [ + "Bajtova", + "Kb", + "Mb", + "Gb", + "Tb", + "PB", + "PAS", + "Npr", + "YB" + ], + "SorryWebSearch": "Nažalost, ova funkcija nije primenjena u ovom uzorku zato što bi to zahtevalo Bing API ključ.", + "SortedAscending": "Sortiran od A do Z", + "SortedDescending": "Sortiran od ž do A", + "TypeAriaLabel": "Operacije kolona za tip datoteke, pritisnite da biste sortirali po tipu datoteke", + "UploadFileHeader": "Otpremi datoteku", + "UploadImageHeader": "Otpremi sliku", + "UploadLinkLabel": "Otpremanje", + "WebSearchLinkLabel": "Pretraživanje Weba", + "StockImagesLinkLabel": "Berzanske slike", + "StockImagesHeader": "Berzanske slike", + "Yes": "Da", + "NewFolderNamePlaceholder": "Unesite ime fascikle", + "FolderFilterBoxPlaceholder": "Filtriranje fascikli po imenu", + "FolderExplorerLoading": "Učitavanje fascikli...", + "FolderExplorerNoItems": "Ova fascikla nema potfascikle.", + "NewFolderIncorrectSymbolsError": "Unesite ime koje ne sadrži nijedan od ovih znakova: \" * : < > ? / |.", + "SomethingWentWrong": "Nešto je pošlo naopako", + "SelectedLabel": "Izabrano", + "SelectIcon": "Izaberite ikonu", + "TreeViewExpandTitle": "Razvij ovu stavku", + "TreeViewCollapseTitle": "Skupi ovu stavku", + "CollectionDataEmptyFields": "Za podatke o prikupljanju nisu obezbeđena 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 redu", + "CollectionDataItemFieldRequiredLabel": "Polje je obavezno.", + "CollectionDataItemMissingFields": "Kolekcija polja je prazna!", + "InvalidUrlError": "Navedena URL adresa nije važeća", + "CollectionDataSearch": "Pretrage", + "MyTeamsLoadingMessage": "učitavanje vaših timova", + "MyTeamsMessageError": "Ako je nešto pošlo naopako prilikom učitavanja vaših timova, pokušajte kasnije ili osvežite pregledač", + "MyTeamsNoTeamsMessage": "Nemaš timove", + "MyTeamsTeamChannelPublicMessage": "Javni kanali", + "MyTeamsTeamChannelTypeMessage": "Privatni kanali", + "TeamChannelPickerFontIconFavoriteText": "Omiljeni", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privatni kanal", + "TeamChannelPickerSugestionHeaderText": "Predloženi kanali tima", + "TeamPickerButtonRemoveTitle": "Uklonite", + "TeamPickernoResultsFoundText": "Nije pronađen nijedan tim", + "TeamPickerSugestionsHeaderText": "Predloženi timovi", + "TeamsChannelPickerButtonRemoveTitle": "Uklonite", + "TeamsChannelPickerNoresultsFoundText": "Nisu pronađeni kanali", + "ViewMore": "Prikaži više", + "DynamicFormLoading": "Učitavanje...", + "DynamicFormPleaseWait": "Molim te sačekaj...", + "DynamicFormRequiredErrorMessage": "Ne možeš ovo da ostaviš prazno.", + "DynamicFormTermPanelTitle": "Izaberi termin", + "DynamicFormEnterURLPlaceholder": "Unesite URL adresu", + "DynamicFormEnterDescriptionPlaceholder": "Alternativni tekst", + "customDisplayName": "Koristi ovu lokaciju:", + "ListItemCommentDIalogDeleteSubText": "Želite li zaista da izbrišete ovaj komentar?", + "ListItemCommentsDialogDeleteTitle": "Potvrda brisanja komentara", + "ListItemCommentsLabel": "Komentare", + "ListItemCommentsNoCommentsLabel": "Nema komentara", + "OrgAssetsLinkLabel": "Vaša organizacija", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/sv-se.ts b/src/loc/sv-se.ts index 2432de18b..71b445a5e 100644 --- a/src/loc/sv-se.ts +++ b/src/loc/sv-se.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Brödsmulemeny", - "ListViewGroupEmptyLabel": "Tom", - "WebPartTitlePlaceholder": "Webbdelstitel", - "WebPartTitleLabel": "Ange titel", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Om några sekunder", - "L_RelativeDateTime_AFewSeconds": "För några sekunder sedan", - "L_RelativeDateTime_AboutAMinuteFuture": "Om ungefär en minut", - "L_RelativeDateTime_AboutAMinute": "För ungefär en minut sedan", - "L_RelativeDateTime_XMinutesFuture": "Om {0} minut||Om {0} minuter", - "L_RelativeDateTime_XMinutes": "För {0} minut sedan||För {0} minuter sedan", - "L_RelativeDateTime_XMinutesFutureIntervals": "1||2-", - "L_RelativeDateTime_XMinutesIntervals": "1||2-", - "L_RelativeDateTime_AboutAnHourFuture": "Om ungefär en timme", - "L_RelativeDateTime_AboutAnHour": "För ungefär en timme sedan", - "L_RelativeDateTime_Tomorrow": "Imorgon", - "L_RelativeDateTime_Yesterday": "Igår", - "L_RelativeDateTime_TomorrowAndTime": "Imorgon vid {0}", - "L_RelativeDateTime_YesterdayAndTime": "Igår vid {0}", - "L_RelativeDateTime_XHoursFuture": "Om {0} timme||Om {0} timmar", - "L_RelativeDateTime_XHours": "För {0} timme sedan||För {0} timmar sedan", - "L_RelativeDateTime_XHoursFutureIntervals": "1||2-", - "L_RelativeDateTime_XHoursIntervals": "1||2-", - "L_RelativeDateTime_DayAndTime": "{0} på {1}", - "L_RelativeDateTime_XDaysFuture": "Om {0} dag||Om {0} dagar", - "L_RelativeDateTime_XDays": "För {0} dag sedan||För {0} dagar sedan", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Idag" - }, - "SendEmailTo": "Skicka epost till {0}", - "StartChatWith": "Börja en chat med {0}", - "Contact": "Kontakt", - "UpdateProfile": "Uppdatera din profil", - "TaxonomyPickerNoTerms": "Termuppsättningen innehåller inga termer", - "TaxonomyPickerExpandTitle": "Expandera termuppsättningen", - "TaxonomyPickerMenuTermSet": "Meny för termuppsättning", - "TaxonomyPickerInLabel": "I", - "TaxonomyPickerTermSetLabel": "Termuppsättning", - "peoplePickerComponentTooltipMessage": "Personväljare", - "peoplePickerComponentErrorMessage": "Obligatoriskt fält", - "peoplePickerSuggestionsHeaderText": "Föreslagna personer", - "peoplePickerLoadingText": "Laddar", - "PeoplePickerSearchText": "Hämtar användare", - "PeoplePickerGroupNotFound": "Gruppen kunde inte hittas.", - "genericNoResultsFoundText": "Inga sökträffar", - "ListItemPickerSelectValue": "Ange ett värde", - "ListItemAttachmentsActionDeleteIconTitle": "Ta bort", - "ListItemAttachmentsactionDeleteTitle": "Ta bort", - "ListItemAttachmentsfileDeletedMsg": "Filen {0} raderades", - "ListItemAttachmentsfileDeleteError": "Fel vid radering av fil: {0}, orsak {1}", - "ListItemAttachmentserrorLoadAttachments": "Fel vid laddning av bilaga, orsak: {0}", - "ListItemAttachmentsconfirmDelete": "Vill du verkligen flytta bilagan {0} till papperskorgen?", - "ListItemAttachmentsdialogTitle": "Bilaga", - "ListItemAttachmentsdialogOKbuttonLabel": "Okej", - "ListItemAttachmentsdialogCancelButtonLabel": "Avbryt", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Ta bort", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Lägg till bilaga", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Lägg till bilaga", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Filen {0} kunde inte bifogas, orsak: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Lägg till bilaga", - "ListItemAttachmentsloadingMessage": "Laddar upp filen...", - "ListItemAttachmentslPlaceHolderIconText": "Bilaga", - "ListItemAttachmentslPlaceHolderDescription": "Lägg till en bilaga", - "ListItemAttachmentslPlaceHolderButtonLabel": "Lägg till", - "mapsErrorMessage": "Ett fel uppstod vid laddning av kartan", - "mapsLoadingText": "Laddar", - "mapsSearchButtonText": "Sök", - "mapsTitlePrefix": "Karta över", - "ListViewFilterLabel": "Filtrera listan", - "HeaderNormalText": "Normal text", - "HeaderH2": "Rubrik 1", - "HeaderH3": "Rubrik 2", - "HeaderH4": "Rubrik 3", - "HeaderBlockQuote": "Citat", - "AlignLeft": "Vänsterjustera", - "AlignCenter": "Centrera", - "AlignRight": "Högerjustera", - "AlignJustify": "Motivera", - "ListBullet": "Punktlista", - "ListNumbered": "Numrerad lista", - "StyleTitle": "Stil", - "BoldTitle": "Fet (Ctrl+B)", - "ItalicTitle": "Kursiv (Ctrl+I)", - "UnderlineTitle": "Understruken (Ctrl+U)", - "AlignTitle": "Justera", - "ListTitle": "Lista", - "LinkTitle": "Hyperlänk", - "MoreTitle": "Mer", - "FormattingPaneTitle": "Textformatering", - "CloseButton": "Stäng", - "InsertLinkTitle": "Infoga länk", - "AddressFieldLabel": "Adress", - "TextToDisplayLabel": "Visningstext", - "SaveButtonLabel": "Spara", - "CancelButtonLabel": "Avbryt", - "RemoveLinkLabel": "Ta bort länk", - "ParagraphSectionTitle": "Stycke", - "HyperlinkSectionTitle": "Hyperlänk", - "UndoTitle": "Ångra (Ctrl+Z)", - "RedoTitle": "Gör om (Ctrl + Y)", - "ClearFormattingTitle": "Rensa all formatering", - "FontStyleTitle": "Font", - "FontSizeTitle": "Fontstorlek ", - "StrikethroughTitle": "Genomstruken", - "SuperscriptTitle": "Upphöjt", - "SubscriptTitle": "Nedsänkt", - "FontColorLabel": "Textfärg", - "AutomaticFontColor": "Automatisk", - "HighlightColorLabel": "Framhävd färg", - "NoColorHighlightColor": "Ingen färg", - "IncreaseIndentTitle": "Öka indentering", - "DecreaseIndentTitle": "Minska indentering", - "ThemeColorsGroupName": "Temafärger", - "HighlightColorsGroupName": "Framhävda färger", - "StandardColorsGroupName": "Standardfärger", - "CustomColorsGroupName": "Anpassade färger", - "ThemeColorDarker": "Mörkare tema", - "ThemeColorDark": "Mörkt tema", - "ThemeColorDarkAlt": "Mörkt alternativt tema", - "ThemeColorPrimary": "Primärt tema", - "ThemeColorSecondary": "Andrahandstema", - "ThemeColorTertiary": "Neutralt tredjeval", - "ThemeColorNeutralSecondary": "Neutralt andrahandsval", - "ThemeColorNeutralPrimaryAlt": "Neutralt primärt alternativ", - "ThemeColorNeutralPrimary": "Neutralt primärt", - "ThemeColorNeutralDark": "Neutralt mörkt", - "HighlightColorYellow": "Gul", - "HighlightColorGreen": "Grön", - "HighlightColorAqua": "Vatten", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Blå", - "HighlightColorRed": "Röd", - "HighlightColorDarkblue": "Mörkblå", - "HighlightColorTeal": "Beige", - "HighlightColorDarkgreen": "Mörkgrön", - "HighlightColorPurple": "Lila", - "HighlightColorMaroon": "Brun", - "HighlightColorGold": "Guld", - "HighlightColorDarkgrey": "Mörkgrå", - "HighlightColorGrey": "Grå", - "HighlightColorBlack": "Svart", - "StandardColorDarkred": "Mörkröd", - "StandardColorRed": "Röd", - "StandardColorOrange": "Orange", - "StandardColorYellow": "Gul", - "StandardColorLightgreen": "Ljusgrön", - "StandardColorGreen": "Grönn", - "StandardColorLightblue": "Ljusblå", - "StandardColorBlue": "Blå", - "StandardColorDarkblue": "Mörkblå", - "StandardColorPurple": "Lila", - "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": "Sep", - "DatePickerMonthLongOctober": "Oktober", - "DatePickerMonthShortOctober": "Okt", - "DatePickerMonthLongNovember": "November", - "DatePickerMonthShortNovember": "November", - "DatePickerMonthLongDecember": "December", - "DatePickerMonthShortDecember": "December", - "DatePickerDayLongSunday": "Söndag", - "DatePickerDayShortSunday": "Sön", - "DatePickerDayLongMonday": "Månday", - "DatePickerDayShortMonday": "Mån", - "DatePickerDayLongTuesday": "Tisday", - "DatePickerDayShortTuesday": "Tis", - "DatePickerDayLongWednesday": "Onsday", - "DatePickerDayShortWednesday": "Ons", - "DatePickerDayLongThursday": "Torsday", - "DatePickerDayShortThursday": "Tor", - "DatePickerDayLongFriday": "Fredag", - "DatePickerDayShortFriday": "Fre", - "DatePickerDayLongSaturday": "Lörday", - "DatePickerDayShortSaturday": "Lör", - "DatePickerGoToToday": "Idag", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Datum", - "DateTimePickerTime": "Tid", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Ogiltigt timvärde", - "AddFileButtonLabel": "Lägg till fil", - "AddImageButtonLabel": "Lägg till bild", - "AriaCellValue": "{0} kolumn {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 Arkiv", - "ChooseImageLinkLabel": "Välj bild", - "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", - "CopyrightWarning": "Du är ansvarig för att respektera andras rättigheter, 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.", - "DateFormat": "MM/DD/ÅÅÅÅ 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": "Antal underordnade objekt", - "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": "Vy över kakel", - "ListLayoutTileDescription": "Visa objekt med panel förhandsgranskningar", - "ListOptionsAlt": "Visa alternativ. {0} valt.", - "ListOptionsTitle": "Öppna menyn Visa alternativ", - "Loading": "Laddar...", - "ModifiedByField": "Modifierad av", - "ModifiedField": "Ändrat datum", - "NameField": "Namn", - "No": "Nej", - "ProvidedValueIsInvalid": "Det angivna värdet är ogiltigt", - "NoExternalLinksValidationMessage": "Vi stöder bara länkning till filer i din egen organisation.", - "NoImageValidationMessage": "Detta är inte en 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 din webbplats eller ladda upp en från din enhet.", - "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 är från din OneDrive-webbplats. Filer och mappar på OneDrive är privata om du inte delar dem. Har du delat denna fil med din webbplatsmedlemmar så att de kan ccess det?", - "OneDriveConfirmDialogTitle": "Bara kontrollera...", - "OneDriveEmptyFolderAlt": "Tom mapp", - "OneDriveEmptyFolderDescription": "Om du vill lägga till filer går du till 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 dokument", - "RecentImagesHeader": "Senaste 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", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "T.ex", - "Yb" - ], - "SorryWebSearch": "Den här funktionen implementeras inte i det här exemplet eftersom den kräver en API-nyckel för Bing.", - "SortedAscending": "Sorterad A till ö", - "SortedDescending": "Sorteras Z till en", - "TypeAriaLabel": "Kolumn åtgärder för filtyp, tryck för att sortera efter filtyp", - "UploadFileHeader": "Ladda upp fil", - "UploadImageHeader": "Ladda upp bild", - "UploadLinkLabel": "Uppladdning", - "WebSearchLinkLabel": "Webbsökning", - "Yes": "Ja", - "SelectedLabel": "Vald", - "SelectIcon": "Välj ikon", - "StockImagesLinkLabel": "Lagerbilder", - "StockImagesHeader": "Lagerbilder", - "OrgAssetsLinkLabel": "Din organisation" - }; -}); + "Save": "Spara", + "Cancel": "Annullera", + "SiteBreadcrumbLabel": "Brödsmulemeny", + "ListViewGroupEmptyLabel": "Tom", + "WebPartTitlePlaceholder": "Webbdelstitel", + "WebPartTitleLabel": "Ange titel", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Om några sekunder", + "L_RelativeDateTime_AFewSeconds": "För några sekunder sedan", + "L_RelativeDateTime_AboutAMinuteFuture": "Om ungefär en minut", + "L_RelativeDateTime_AboutAMinute": "För ungefär en minut sedan", + "L_RelativeDateTime_XMinutesFuture": "Om {0} minut||Om {0} minuter", + "L_RelativeDateTime_XMinutes": "För {0} minut sedan||För {0} minuter sedan", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "Om ungefär en timme", + "L_RelativeDateTime_AboutAnHour": "För ungefär en timme sedan", + "L_RelativeDateTime_Tomorrow": "Imorgon", + "L_RelativeDateTime_Yesterday": "Igår", + "L_RelativeDateTime_TomorrowAndTime": "Imorgon vid {0}", + "L_RelativeDateTime_YesterdayAndTime": "Igår vid {0}", + "L_RelativeDateTime_XHoursFuture": "Om {0} timme||Om {0} timmar", + "L_RelativeDateTime_XHours": "För {0} timme sedan||För {0} timmar sedan", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{0} på {1}", + "L_RelativeDateTime_XDaysFuture": "Om {0} dag||Om {0} dagar", + "L_RelativeDateTime_XDays": "För {0} dag sedan||För {0} dagar sedan", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Idag" + }, + "SendEmailTo": "Skicka epost till {0}", + "StartChatWith": "Börja en chat med {0}", + "Contact": "Kontakt", + "UpdateProfile": "Uppdatera din profil", + "TaxonomyPickerNoTerms": "Termuppsättningen innehåller inga termer", + "TaxonomyPickerExpandTitle": "Expandera termuppsättningen", + "TaxonomyPickerMenuTermSet": "Meny för termuppsättning", + "TaxonomyPickerInLabel": "I", + "TaxonomyPickerTermSetLabel": "Termuppsättning", + "TaxonomyPickerTermsNotFound": "Det gick inte att hitta nästa valda term i termarkivet: {0}", + "TaxonomyPickerInvalidTerms": "Åtgärda ogiltiga termer: {0}", + "peoplePickerComponentTooltipMessage": "Personväljare", + "peoplePickerComponentErrorMessage": "Obligatoriskt fält", + "peoplePickerSuggestionsHeaderText": "Föreslagna personer", + "peoplePickerLoadingText": "Laddar", + "PeoplePickerSearchText": "Hämtar användare", + "PeoplePickerGroupNotFound": "Gruppen kunde inte hittas.", + "genericNoResultsFoundText": "Inga sökträffar", + "ListItemPickerSelectValue": "Ange ett värde", + "ListItemAttachmentsActionDeleteIconTitle": "Ta bort", + "ListItemAttachmentsactionDeleteTitle": "Ta bort", + "ListItemAttachmentsfileDeletedMsg": "Filen {0} raderades", + "ListItemAttachmentsfileDeleteError": "Fel vid radering av fil: {0}, orsak {1}", + "ListItemAttachmentserrorLoadAttachments": "Fel vid laddning av bilaga, orsak: {0}", + "ListItemAttachmentsconfirmDelete": "Vill du verkligen flytta bilagan {0} till papperskorgen?", + "ListItemAttachmentsdialogTitle": "Bilaga", + "ListItemAttachmentsdialogOKbuttonLabel": "Okej", + "ListItemAttachmentsdialogCancelButtonLabel": "Avbryt", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Ta bort", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Lägg till bilaga", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Lägg till bilaga", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Filen {0} kunde inte bifogas, orsak: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Lägg till bilaga", + "ListItemAttachmentsloadingMessage": "Laddar upp filen...", + "ListItemAttachmentslPlaceHolderIconText": "Bilaga", + "ListItemAttachmentslPlaceHolderDescription": "Lägg till en bilaga", + "ListItemAttachmentslPlaceHolderButtonLabel": "Lägg till", + "mapsErrorMessage": "Ett fel uppstod vid laddning av kartan", + "mapsLoadingText": "Laddar", + "mapsSearchButtonText": "Sök", + "mapsTitlePrefix": "Karta över", + "ListViewFilterLabel": "Filtrera listan", + "HeaderNormalText": "Normal text", + "HeaderH2": "Rubrik 1", + "HeaderH3": "Rubrik 2", + "HeaderH4": "Rubrik 3", + "HeaderBlockQuote": "Citat", + "AlignLeft": "Vänsterjustera", + "AlignCenter": "Centrera", + "AlignRight": "Högerjustera", + "AlignJustify": "Motivera", + "ListBullet": "Punktlista", + "ListNumbered": "Numrerad lista", + "StyleTitle": "Stil", + "BoldTitle": "Fet (Ctrl+B)", + "ItalicTitle": "Kursiv (Ctrl+I)", + "UnderlineTitle": "Understruken (Ctrl+U)", + "AlignTitle": "Justera", + "ListTitle": "Lista", + "LinkTitle": "Hyperlänk", + "ImageTitle": "Bild", + "MoreTitle": "Mer", + "FormattingPaneTitle": "Textformatering", + "CloseButton": "Stäng", + "InsertLinkTitle": "Infoga länk", + "InsertImageTitle": "Infoga bild", + "AddressFieldLabel": "Adress", + "TextToDisplayLabel": "Visningstext", + "SaveButtonLabel": "Spara", + "CancelButtonLabel": "Avbryt", + "RemoveLinkLabel": "Ta bort länk", + "ParagraphSectionTitle": "Stycke", + "HyperlinkSectionTitle": "Hyperlänk", + "UndoTitle": "Ångra (Ctrl+Z)", + "RedoTitle": "Gör om (Ctrl + Y)", + "ClearFormattingTitle": "Rensa all formatering", + "FontStyleTitle": "Font", + "FontSizeTitle": "Fontstorlek ", + "StrikethroughTitle": "Genomstruken", + "SuperscriptTitle": "Upphöjt", + "SubscriptTitle": "Nedsänkt", + "FontColorLabel": "Textfärg", + "AutomaticFontColor": "Automatisk", + "HighlightColorLabel": "Framhävd färg", + "NoColorHighlightColor": "Ingen färg", + "IncreaseIndentTitle": "Öka indentering", + "DecreaseIndentTitle": "Minska indentering", + "ThemeColorsGroupName": "Temafärger", + "HighlightColorsGroupName": "Framhävda färger", + "StandardColorsGroupName": "Standardfärger", + "CustomColorsGroupName": "Anpassade färger", + "ThemeColorDarker": "Mörkare tema", + "ThemeColorDark": "Mörkt tema", + "ThemeColorDarkAlt": "Mörkt alternativt tema", + "ThemeColorPrimary": "Primärt tema", + "ThemeColorSecondary": "Andrahandstema", + "ThemeColorTertiary": "Neutralt tredjeval", + "ThemeColorNeutralSecondary": "Neutralt andrahandsval", + "ThemeColorNeutralPrimaryAlt": "Neutralt primärt alternativ", + "ThemeColorNeutralPrimary": "Neutralt primärt", + "ThemeColorNeutralDark": "Neutralt mörkt", + "HighlightColorYellow": "Gul", + "HighlightColorGreen": "Grön", + "HighlightColorAqua": "Vatten", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Blå", + "HighlightColorRed": "Röd", + "HighlightColorDarkblue": "Mörkblå", + "HighlightColorTeal": "Beige", + "HighlightColorDarkgreen": "Mörkgrön", + "HighlightColorPurple": "Lila", + "HighlightColorMaroon": "Brun", + "HighlightColorGold": "Guld", + "HighlightColorDarkgrey": "Mörkgrå", + "HighlightColorGrey": "Grå", + "HighlightColorBlack": "Svart", + "StandardColorDarkred": "Mörkröd", + "StandardColorRed": "Röd", + "StandardColorOrange": "Apelsin", + "StandardColorYellow": "Gul", + "StandardColorLightgreen": "Ljusgrön", + "StandardColorGreen": "Grönn", + "StandardColorLightblue": "Ljusblå", + "StandardColorBlue": "Blå", + "StandardColorDarkblue": "Mörkblå", + "StandardColorPurple": "Lila", + "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": "Sep", + "DatePickerMonthLongOctober": "Oktober", + "DatePickerMonthShortOctober": "Okt", + "DatePickerMonthLongNovember": "November", + "DatePickerMonthShortNovember": "November", + "DatePickerMonthLongDecember": "December", + "DatePickerMonthShortDecember": "December", + "DatePickerDayLongSunday": "Söndag", + "DatePickerDayShortSunday": "Sön", + "DatePickerDayLongMonday": "Månday", + "DatePickerDayShortMonday": "Mån", + "DatePickerDayLongTuesday": "Tisday", + "DatePickerDayShortTuesday": "Tis", + "DatePickerDayLongWednesday": "Onsday", + "DatePickerDayShortWednesday": "Ons", + "DatePickerDayLongThursday": "Torsday", + "DatePickerDayShortThursday": "Tor", + "DatePickerDayLongFriday": "Fredag", + "DatePickerDayShortFriday": "Fre", + "DatePickerDayLongSaturday": "Lörday", + "DatePickerDayShortSaturday": "Lör", + "DatePickerGoToToday": "Idag", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Datum", + "DateTimePickerTime": "Tid", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Ogiltigt timvärde", + "DateTimePickerMinuteValueInvalid": "Felaktigt minutvärde", + "DateTimePickerSecondValueInvalid": "Felaktigt andra värde", + "DateTimePickerTextErrorMessage": "Ange ett giltigt datum", + "AddFileButtonLabel": "Lägg till fil", + "AddImageButtonLabel": "Lägg till bild", + "AriaCellValue": "{0} kolumn {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 Arkiv", + "ChooseImageLinkLabel": "Välj bild", + "CopyrightUrl": "https://www.microsoft.com/en-US/legal/copyright/default.aspx", + "CopyrightWarning": "Du är ansvarig för att respektera andras rättigheter, 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.", + "DateFormat": "MM/DD/ÅÅÅÅ 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": "Antal underordnade objekt", + "LayoutOptionAll": "Alla", + "LayoutOptionSquare": "Torg", + "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": "Vy över kakel", + "ListLayoutTileDescription": "Visa objekt med panel förhandsgranskningar", + "ListOptionsAlt": "Visa alternativ. {0} valt.", + "ListOptionsTitle": "Öppna menyn Visa alternativ", + "Loading": "Laddar...", + "ModifiedByField": "Modifierad av", + "ModifiedField": "Ändrat datum", + "NameField": "Namn", + "No": "Nej", + "ProvidedValueIsInvalid": "Det angivna värdet är ogiltigt", + "NoExternalLinksValidationMessage": "Vi stöder bara länkning till filer i din egen organisation.", + "NoImageValidationMessage": "Detta är inte en 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 din webbplats eller ladda upp en från din enhet.", + "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 är från din OneDrive-webbplats. Filer och mappar på OneDrive är privata om du inte delar dem. Har du delat denna fil med din webbplatsmedlemmar så att de kan ccess det?", + "OneDriveConfirmDialogTitle": "Bara kontrollera...", + "OneDriveEmptyFolderAlt": "Tom mapp", + "OneDriveEmptyFolderDescription": "Om du vill lägga till filer går du till 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 dokument", + "RecentImagesHeader": "Senaste 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", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "T.ex", + "Yb" + ], + "SorryWebSearch": "Den här funktionen implementeras inte i det här exemplet eftersom den kräver en API-nyckel för Bing.", + "SortedAscending": "Sorterad A till ö", + "SortedDescending": "Sorteras Z till en", + "TypeAriaLabel": "Kolumn åtgärder för filtyp, tryck för att sortera efter filtyp", + "UploadFileHeader": "Ladda upp fil", + "UploadImageHeader": "Ladda upp bild", + "UploadLinkLabel": "Uppladdning", + "WebSearchLinkLabel": "Webbsökning", + "StockImagesLinkLabel": "Lagerbilder", + "StockImagesHeader": "Lagerbilder", + "Yes": "Ja", + "NewFolderNamePlaceholder": "Ange mappnamnet", + "FolderFilterBoxPlaceholder": "Filtrera mappar efter namn", + "FolderExplorerLoading": "Läser in mappar...", + "FolderExplorerNoItems": "Den här mappen har inga undermappar.", + "NewFolderIncorrectSymbolsError": "Ange ett namn som inte innehåller något av följande tecken: \" * : < > ? / |.", + "SomethingWentWrong": "Något gick fel", + "SelectedLabel": "Vald", + "SelectIcon": "Välj ikon", + "TreeViewExpandTitle": "Expandera det här objektet", + "TreeViewCollapseTitle": "Komprimera det här objektet", + "CollectionDataEmptyFields": "Inga fält angavs för insamlingsdata.", + "CollectionDataEmptyValue": "Inga data i din samling.", + "CollectionAddRowButtonLabel": "Lägga till data i samlingen", + "CollectionDeleteRowButtonLabel": "Ta bort den aktuella raden", + "CollectionSaveAndAddButtonLabel": "Lägga till och spara", + "CollectionDataItemShowErrorsLabel": "Visa radfel", + "CollectionDataItemFieldRequiredLabel": "Fältet krävs.", + "CollectionDataItemMissingFields": "Fältsamlingen är tom!", + "InvalidUrlError": "Den angivna URL:en är inte giltig", + "CollectionDataSearch": "Söka", + "MyTeamsLoadingMessage": "ladda dina team", + "MyTeamsMessageError": "Något gick fel när du laddade dina team, försök senare eller uppdatera webbläsaren", + "MyTeamsNoTeamsMessage": "Du har inga lag.", + "MyTeamsTeamChannelPublicMessage": "Offentliga kanaler", + "MyTeamsTeamChannelTypeMessage": "Privata kanaler", + "TeamChannelPickerFontIconFavoriteText": "Favorit", + "TeamChannelPickerFontIconPrivateChannelTitle": "Privat kanal", + "TeamChannelPickerSugestionHeaderText": "Föreslagna teamkanaler", + "TeamPickerButtonRemoveTitle": "avlägsna", + "TeamPickernoResultsFoundText": "Inga team hittades", + "TeamPickerSugestionsHeaderText": "Föreslagna team", + "TeamsChannelPickerButtonRemoveTitle": "avlägsna", + "TeamsChannelPickerNoresultsFoundText": "Inga kanaler hittades", + "ViewMore": "Visa mer", + "DynamicFormLoading": "Lastning...", + "DynamicFormPleaseWait": "Snälla vänta...", + "DynamicFormRequiredErrorMessage": "Du kan inte lämna det här tomt.", + "DynamicFormTermPanelTitle": "Välj term", + "DynamicFormEnterURLPlaceholder": "Ange en URL", + "DynamicFormEnterDescriptionPlaceholder": "Alternativ text", + "customDisplayName": "Använd den här platsen:", + "ListItemCommentDIalogDeleteSubText": "Vill du ta bort den här kommentaren?", + "ListItemCommentsDialogDeleteTitle": "Bekräfta ta bort kommentar", + "ListItemCommentsLabel": "Kommentarer", + "ListItemCommentsNoCommentsLabel": "Det finns inga kommentarer", + "OrgAssetsLinkLabel": "Din organisation", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/tr-tr.ts b/src/loc/tr-tr.ts index 6dde89a0e..8f734180c 100644 --- a/src/loc/tr-tr.ts +++ b/src/loc/tr-tr.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Web sitesi kırıntısı", - "ListViewGroupEmptyLabel": "Boş", - "WebPartTitlePlaceholder": "Web parçası başlığı", - "WebPartTitleLabel": "Başlık ekleme", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Birkaç saniye içinde", - "L_RelativeDateTime_AFewSeconds": "Birkaç saniye önce", - "L_RelativeDateTime_AboutAMinuteFuture": "Bir dakika içinde", - "L_RelativeDateTime_AboutAMinute": "Yaklaşık bir dakika önce", - "L_RelativeDateTime_XMinutesFuture": "{0} dakikada|| {0} dakikada", - "L_RelativeDateTime_XMinutes": "{0} dakika önce|| {0} dakika önce", - "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", - "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", - "L_RelativeDateTime_AboutAnHourFuture": "Bir saat içinde", - "L_RelativeDateTime_AboutAnHour": "Yaklaşık bir saat önce", - "L_RelativeDateTime_Tomorrow": "Yarın", - "L_RelativeDateTime_Yesterday": "Dün", - "L_RelativeDateTime_TomorrowAndTime": "Yarın {0}'da", - "L_RelativeDateTime_YesterdayAndTime": "Dün {0}'da", - "L_RelativeDateTime_XHoursFuture": "{0} saat içinde|| {0} saat içinde", - "L_RelativeDateTime_XHours": "{0} saat önce|| {0} saat önce", - "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", - "L_RelativeDateTime_XHoursIntervals": "1|| 2-", - "L_RelativeDateTime_DayAndTime": "{1}'de {0}", - "L_RelativeDateTime_XDaysFuture": "{0} gün sonra|| {0} gün sonra", - "L_RelativeDateTime_XDays": "{0} gün önce|| {0} gün önce", - "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", - "L_RelativeDateTime_XDaysIntervals": "1|| 2-", - "L_RelativeDateTime_Today": "Bugün" - }, - "SendEmailTo": "{0}'a e-posta gönderme", - "StartChatWith": "{0} ile sohbet başlatın", - "Contact": "Iletişim", - "UpdateProfile": "Profilinizi güncelleyin", - "TaxonomyPickerNoTerms": "Terim kümesi herhangi bir koşul içermez", - "TaxonomyPickerExpandTitle": "Bu Terim Kümesini Genişlet", - "TaxonomyPickerMenuTermSet": "Dönem Seti Menüsü", - "TaxonomyPickerInLabel": "Inç", - "TaxonomyPickerTermSetLabel": "Dönem Seti", - "peoplePickerComponentTooltipMessage": "İnsanlar Picker", - "peoplePickerComponentErrorMessage": "Gerekli Alan", - "peoplePickerSuggestionsHeaderText": "Önerilen Kişiler", - "peoplePickerLoadingText": "Yükleme", - "PeoplePickerSearchText": "Kullanıcıları alma", - "PeoplePickerGroupNotFound": "Grup bulunamadı.", - "genericNoResultsFoundText": "Sonuç bulunamadı", - "ListItemPickerSelectValue": "Değer seçin", - "ListItemAttachmentsActionDeleteIconTitle": "Silmek", - "ListItemAttachmentsactionDeleteTitle": "Silmek", - "ListItemAttachmentsfileDeletedMsg": "Dosya {0} silindi", - "ListItemAttachmentsfileDeleteError": "Silme dosyasındaki hata: {0}, neden {1}", - "ListItemAttachmentserrorLoadAttachments": "Yük listesi madde ekinde hata, neden: {0}", - "ListItemAttachmentsconfirmDelete": "Eki {0} site geri dönüşüm kutusuna göndermek istediğinizden emin misiniz?", - "ListItemAttachmentsdialogTitle": "Liste Öğesi Eki", - "ListItemAttachmentsdialogOKbuttonLabel": "Tamam", - "ListItemAttachmentsdialogCancelButtonLabel": "İptal", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Silmek", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Ek Ekle", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Ek Ekle", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Dosya {0} eklenmez, neden: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Ek Ekle", - "ListItemAttachmentsloadingMessage": "Dosya yükleme ...", - "ListItemAttachmentslPlaceHolderIconText": "Liste Öğesi Eki", - "ListItemAttachmentslPlaceHolderDescription": "Lütfen Ek Ekleyin", - "ListItemAttachmentslPlaceHolderButtonLabel": "Ekle", - "mapsErrorMessage": "Haritayı yüklerken bir hata oluştu", - "mapsLoadingText": "Yükleme", - "mapsSearchButtonText": "Arama", - "mapsTitlePrefix": "Harita", - "ListViewFilterLabel": "Listeye filtre uygulayın", - "HeaderNormalText": "Normal metin", - "HeaderH2": "Başlık 1", - "HeaderH3": "Başlık 2", - "HeaderH4": "Başlık 3", - "HeaderBlockQuote": "Teklif çekme", - "AlignLeft": "Sola hizala", - "AlignCenter": "Merkezi", - "AlignRight": "Sağa hizala", - "AlignJustify": "Haklı", - "ListBullet": "Madde işaretli liste", - "ListNumbered": "Numaralı liste", - "StyleTitle": "Stil", - "BoldTitle": "Kalın (Ctrl+B)", - "ItalicTitle": "Italik (Ctrl+I)", - "UnderlineTitle": "Altı çizili (Ctrl+U)", - "AlignTitle": "Hizalamak", - "ListTitle": "Liste", - "LinkTitle": "Köprü", - "MoreTitle": "-nda daha fazla", - "FormattingPaneTitle": "Metin biçimlendirme", - "CloseButton": "Yakın", - "InsertLinkTitle": "Bağlantı ekle", - "AddressFieldLabel": "Adres", - "TextToDisplayLabel": "Görüntülenecek metin", - "SaveButtonLabel": "Kaydetmek", - "CancelButtonLabel": "İptal", - "RemoveLinkLabel": "Bağlantıyı kaldırma", - "ParagraphSectionTitle": "Paragraf", - "HyperlinkSectionTitle": "Köprü", - "UndoTitle": "Geri Ala(Ctrl+Z)", - "RedoTitle": "Yeniden Yapma (Ctrl+Y)", - "ClearFormattingTitle": "Tüm biçimlendirmeyi temizle", - "FontStyleTitle": "Yazı tipi stili", - "FontSizeTitle": "Yazı tipi boyutu", - "StrikethroughTitle": "Üstü çizili", - "SuperscriptTitle": "Üstsimge", - "SubscriptTitle": "Altsimge", - "FontColorLabel": "Yazı Tipi Rengi", - "AutomaticFontColor": "Otomatik", - "HighlightColorLabel": "Rengi vurgulama", - "NoColorHighlightColor": "Renk yok", - "IncreaseIndentTitle": "Girintiyi artırın", - "DecreaseIndentTitle": "Girintiyi azaltma", - "ThemeColorsGroupName": "Tema renkleri", - "HighlightColorsGroupName": "Renkleri vurgulama", - "StandardColorsGroupName": "Standart renkler", - "CustomColorsGroupName": "Özel Renkler", - "ThemeColorDarker": "Tema daha koyu", - "ThemeColorDark": "Tema karanlık", - "ThemeColorDarkAlt": "Tema karanlık alternatif", - "ThemeColorPrimary": "Tema birincil", - "ThemeColorSecondary": "Tema ikincil", - "ThemeColorTertiary": "Nötr üçüncül", - "ThemeColorNeutralSecondary": "Nötr ikincil", - "ThemeColorNeutralPrimaryAlt": "Nötr birincil alternatif", - "ThemeColorNeutralPrimary": "Nötr birincil", - "ThemeColorNeutralDark": "Nötr karanlık", - "HighlightColorYellow": "Sarı", - "HighlightColorGreen": "Yeşil", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Kırmızı", - "HighlightColorBlue": "Mavi", - "HighlightColorRed": "Kırmızı", - "HighlightColorDarkblue": "Lacivert", - "HighlightColorTeal": "Çamurcun", - "HighlightColorDarkgreen": "Koyu yeşil", - "HighlightColorPurple": "Mor", - "HighlightColorMaroon": "Maroon", - "HighlightColorGold": "Altın", - "HighlightColorDarkgrey": "Koyu gri", - "HighlightColorGrey": "Gri", - "HighlightColorBlack": "Siyah", - "StandardColorDarkred": "Koyu kırmızı", - "StandardColorRed": "Kırmızı", - "StandardColorOrange": "Turuncu", - "StandardColorYellow": "Sarı", - "StandardColorLightgreen": "Açık yeşil", - "StandardColorGreen": "Yeşil", - "StandardColorLightblue": "Açık mavi", - "StandardColorBlue": "Mavi", - "StandardColorDarkblue": "Lacivert", - "StandardColorPurple": "Mor", - "DatePickerMonthLongJanuary": "Ocak", - "DatePickerMonthShortJanuary": "Ocak", - "DatePickerMonthLongFebruary": "Şubat", - "DatePickerMonthShortFebruary": "Şubat", - "DatePickerMonthLongMarch": "Mart", - "DatePickerMonthShortMarch": "Mart", - "DatePickerMonthLongApril": "Nisan", - "DatePickerMonthShortApril": "Nisan", - "DatePickerMonthLongMay": "Olabilir", - "DatePickerMonthShortMay": "Olabilir", - "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", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Tarih", - "DateTimePickerTime": "Zaman", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Yanlış saat değeri", - "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", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Örneğin", - "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", - "SelectedLabel": "Seçili", - "SelectIcon": "Simge seç", - "StockImagesLinkLabel": "Hazır fotoğraflar", - "StockImagesHeader": "Hazır fotoğraflar", - "OrgAssetsLinkLabel": "Kuruluşunuz" - }; -}); + "Save": "Kurtarmak", + "Cancel": "İptal", + "SiteBreadcrumbLabel": "Web sitesi kırıntısı", + "ListViewGroupEmptyLabel": "Boş", + "WebPartTitlePlaceholder": "Web parçası başlığı", + "WebPartTitleLabel": "Başlık ekleme", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Birkaç saniye içinde", + "L_RelativeDateTime_AFewSeconds": "Birkaç saniye önce", + "L_RelativeDateTime_AboutAMinuteFuture": "Bir dakika içinde", + "L_RelativeDateTime_AboutAMinute": "Yaklaşık bir dakika önce", + "L_RelativeDateTime_XMinutesFuture": "{0} dakikada|| {0} dakikada", + "L_RelativeDateTime_XMinutes": "{0} dakika önce|| {0} dakika önce", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "Bir saat içinde", + "L_RelativeDateTime_AboutAnHour": "Yaklaşık bir saat önce", + "L_RelativeDateTime_Tomorrow": "Yarın", + "L_RelativeDateTime_Yesterday": "Dün", + "L_RelativeDateTime_TomorrowAndTime": "Yarın {0}'da", + "L_RelativeDateTime_YesterdayAndTime": "Dün {0}'da", + "L_RelativeDateTime_XHoursFuture": "{0} saat içinde|| {0} saat içinde", + "L_RelativeDateTime_XHours": "{0} saat önce|| {0} saat önce", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{1}'de {0}", + "L_RelativeDateTime_XDaysFuture": "{0} gün sonra|| {0} gün sonra", + "L_RelativeDateTime_XDays": "{0} gün önce|| {0} gün önce", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Bugün" + }, + "SendEmailTo": "{0}'a e-posta gönderme", + "StartChatWith": "{0} ile sohbet başlatın", + "Contact": "Iletişim", + "UpdateProfile": "Profilinizi güncelleyin", + "TaxonomyPickerNoTerms": "Terim kümesi herhangi bir koşul içermez", + "TaxonomyPickerExpandTitle": "Bu Terim Kümesini Genişlet", + "TaxonomyPickerMenuTermSet": "Dönem Seti Menüsü", + "TaxonomyPickerInLabel": "Inç", + "TaxonomyPickerTermSetLabel": "Dönem Seti", + "TaxonomyPickerTermsNotFound": "Bir sonraki seçili terimler terim deposunda bulunamadı: {0}", + "TaxonomyPickerInvalidTerms": "Lütfen geçersiz terimleri düzeltin): {0}", + "peoplePickerComponentTooltipMessage": "İnsanlar Picker", + "peoplePickerComponentErrorMessage": "Gerekli Alan", + "peoplePickerSuggestionsHeaderText": "Önerilen Kişiler", + "peoplePickerLoadingText": "Yükleme", + "PeoplePickerSearchText": "Kullanıcıları alma", + "PeoplePickerGroupNotFound": "Grup bulunamadı.", + "genericNoResultsFoundText": "Sonuç bulunamadı", + "ListItemPickerSelectValue": "Değer seçin", + "ListItemAttachmentsActionDeleteIconTitle": "Silmek", + "ListItemAttachmentsactionDeleteTitle": "Silmek", + "ListItemAttachmentsfileDeletedMsg": "Dosya {0} silindi", + "ListItemAttachmentsfileDeleteError": "Silme dosyasındaki hata: {0}, neden {1}", + "ListItemAttachmentserrorLoadAttachments": "Yük listesi madde ekinde hata, neden: {0}", + "ListItemAttachmentsconfirmDelete": "Eki {0} site geri dönüşüm kutusuna göndermek istediğinizden emin misiniz?", + "ListItemAttachmentsdialogTitle": "Liste Öğesi Eki", + "ListItemAttachmentsdialogOKbuttonLabel": "Tamam", + "ListItemAttachmentsdialogCancelButtonLabel": "İptal", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Silmek", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Ek Ekle", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Ek Ekle", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Dosya {0} eklenmez, neden: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Ek Ekle", + "ListItemAttachmentsloadingMessage": "Dosya yükleme ...", + "ListItemAttachmentslPlaceHolderIconText": "Liste Öğesi Eki", + "ListItemAttachmentslPlaceHolderDescription": "Lütfen Ek Ekleyin", + "ListItemAttachmentslPlaceHolderButtonLabel": "Ekle", + "mapsErrorMessage": "Haritayı yüklerken bir hata oluştu", + "mapsLoadingText": "Yükleme", + "mapsSearchButtonText": "Arama", + "mapsTitlePrefix": "Harita", + "ListViewFilterLabel": "Listeye filtre uygulayın", + "HeaderNormalText": "Normal metin", + "HeaderH2": "Başlık 1", + "HeaderH3": "Başlık 2", + "HeaderH4": "Başlık 3", + "HeaderBlockQuote": "Teklif çekme", + "AlignLeft": "Sola hizala", + "AlignCenter": "Merkezi", + "AlignRight": "Sağa hizala", + "AlignJustify": "Haklı", + "ListBullet": "Madde işaretli liste", + "ListNumbered": "Numaralı liste", + "StyleTitle": "Stil", + "BoldTitle": "Kalın (Ctrl+B)", + "ItalicTitle": "Italik (Ctrl+I)", + "UnderlineTitle": "Altı çizili (Ctrl+U)", + "AlignTitle": "Hizalamak", + "ListTitle": "Liste", + "LinkTitle": "Köprü", + "ImageTitle": "Resim", + "MoreTitle": "-nda daha fazla", + "FormattingPaneTitle": "Metin biçimlendirme", + "CloseButton": "Yakın", + "InsertLinkTitle": "Bağlantı ekle", + "InsertImageTitle": "Resim ekle", + "AddressFieldLabel": "Adres", + "TextToDisplayLabel": "Görüntülenecek metin", + "SaveButtonLabel": "Kaydetmek", + "CancelButtonLabel": "İptal", + "RemoveLinkLabel": "Bağlantıyı kaldırma", + "ParagraphSectionTitle": "Paragraf", + "HyperlinkSectionTitle": "Köprü", + "UndoTitle": "Geri Ala(Ctrl+Z)", + "RedoTitle": "Yeniden Yapma (Ctrl+Y)", + "ClearFormattingTitle": "Tüm biçimlendirmeyi temizle", + "FontStyleTitle": "Yazı tipi stili", + "FontSizeTitle": "Yazı tipi boyutu", + "StrikethroughTitle": "Üstü çizili", + "SuperscriptTitle": "Üstsimge", + "SubscriptTitle": "Altsimge", + "FontColorLabel": "Yazı Tipi Rengi", + "AutomaticFontColor": "Otomatik", + "HighlightColorLabel": "Rengi vurgulama", + "NoColorHighlightColor": "Renk yok", + "IncreaseIndentTitle": "Girintiyi artırın", + "DecreaseIndentTitle": "Girintiyi azaltma", + "ThemeColorsGroupName": "Tema renkleri", + "HighlightColorsGroupName": "Renkleri vurgulama", + "StandardColorsGroupName": "Standart renkler", + "CustomColorsGroupName": "Özel Renkler", + "ThemeColorDarker": "Tema daha koyu", + "ThemeColorDark": "Tema karanlık", + "ThemeColorDarkAlt": "Tema karanlık alternatif", + "ThemeColorPrimary": "Tema birincil", + "ThemeColorSecondary": "Tema ikincil", + "ThemeColorTertiary": "Nötr üçüncül", + "ThemeColorNeutralSecondary": "Nötr ikincil", + "ThemeColorNeutralPrimaryAlt": "Nötr birincil alternatif", + "ThemeColorNeutralPrimary": "Nötr birincil", + "ThemeColorNeutralDark": "Nötr karanlık", + "HighlightColorYellow": "Sarı", + "HighlightColorGreen": "Yeşil", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Kırmızı", + "HighlightColorBlue": "Mavi", + "HighlightColorRed": "Kırmızı", + "HighlightColorDarkblue": "Lacivert", + "HighlightColorTeal": "Çamurcun", + "HighlightColorDarkgreen": "Koyu yeşil", + "HighlightColorPurple": "Mor", + "HighlightColorMaroon": "Bordo", + "HighlightColorGold": "Altın", + "HighlightColorDarkgrey": "Koyu gri", + "HighlightColorGrey": "Gri", + "HighlightColorBlack": "Siyah", + "StandardColorDarkred": "Koyu kırmızı", + "StandardColorRed": "Kırmızı", + "StandardColorOrange": "Turuncu", + "StandardColorYellow": "Sarı", + "StandardColorLightgreen": "Açık yeşil", + "StandardColorGreen": "Yeşil", + "StandardColorLightblue": "Açık mavi", + "StandardColorBlue": "Mavi", + "StandardColorDarkblue": "Lacivert", + "StandardColorPurple": "Mor", + "DatePickerMonthLongJanuary": "Ocak", + "DatePickerMonthShortJanuary": "Ocak", + "DatePickerMonthLongFebruary": "Şubat", + "DatePickerMonthShortFebruary": "Şubat", + "DatePickerMonthLongMarch": "Mart", + "DatePickerMonthShortMarch": "Mart", + "DatePickerMonthLongApril": "Nisan", + "DatePickerMonthShortApril": "Nisan", + "DatePickerMonthLongMay": "Olabilir", + "DatePickerMonthShortMay": "Olabilir", + "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": "Cumartesi", + "DatePickerGoToToday": "Bugün", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Tarih", + "DateTimePickerTime": "Zaman", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Yanlış saat değeri", + "DateTimePickerMinuteValueInvalid": "Yanlış dakika değeri", + "DateTimePickerSecondValueInvalid": "Yanlış ikinci değer", + "DateTimePickerTextErrorMessage": "Lütfen geçerli bir tarih girin", + "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", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Örneğin", + "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", + "StockImagesLinkLabel": "Hazır fotoğraflar", + "StockImagesHeader": "Hazır fotoğraflar", + "Yes": "Evet", + "NewFolderNamePlaceholder": "Klasör adınızı girin", + "FolderFilterBoxPlaceholder": "Klasörleri ada göre filtreleme", + "FolderExplorerLoading": "Klasörler yükleniyor...", + "FolderExplorerNoItems": "Bu klasörde alt klasör yok.", + "NewFolderIncorrectSymbolsError": "Lütfen bu karakterlerin hiçbirini içermeyen bir ad girin: \" * : < > ? / |.", + "SomethingWentWrong": "Bir şeyler ters gitti.", + "SelectedLabel": "Seçili", + "SelectIcon": "Simge seç", + "TreeViewExpandTitle": "Bu öğeyi genişlet", + "TreeViewCollapseTitle": "Bu öğeyi daralt", + "CollectionDataEmptyFields": "Koleksiyon verileri için alan sağlanmadı.", + "CollectionDataEmptyValue": "Koleksiyonunuzdaki veri yok.", + "CollectionAddRowButtonLabel": "Koleksiyona veri ekleme", + "CollectionDeleteRowButtonLabel": "Geçerli satırı silme", + "CollectionSaveAndAddButtonLabel": "Ekleme ve kaydetme", + "CollectionDataItemShowErrorsLabel": "Satır hatalarını göster", + "CollectionDataItemFieldRequiredLabel": "Alan gereklidir.", + "CollectionDataItemMissingFields": "Alanlar koleksiyonu boş!", + "InvalidUrlError": "Sağlanan URL geçerli değil", + "CollectionDataSearch": "Aramak", + "MyTeamsLoadingMessage": "ekiplerinizi yükleme", + "MyTeamsMessageError": "Ekiplerinizi yüklerken bir şeyler ters gitti, lütfen daha sonra deneyin veya tarayıcıyı yenileyin", + "MyTeamsNoTeamsMessage": "Hiç takımın yok.", + "MyTeamsTeamChannelPublicMessage": "Genel Kanallar", + "MyTeamsTeamChannelTypeMessage": "Özel Kanallar", + "TeamChannelPickerFontIconFavoriteText": "Gözde", + "TeamChannelPickerFontIconPrivateChannelTitle": "Özel Kanal", + "TeamChannelPickerSugestionHeaderText": "Önerilen Ekip Kanalları", + "TeamPickerButtonRemoveTitle": "kaldırmak", + "TeamPickernoResultsFoundText": "Takım bulunamadı", + "TeamPickerSugestionsHeaderText": "Önerilen Takımlar", + "TeamsChannelPickerButtonRemoveTitle": "kaldırmak", + "TeamsChannelPickerNoresultsFoundText": "Kanal bulunamadı", + "ViewMore": "Daha fazla görüntüle", + "DynamicFormLoading": "Yükleme...", + "DynamicFormPleaseWait": "Lütfen bekleyin...", + "DynamicFormRequiredErrorMessage": "Bunu boş bırakamazsın.", + "DynamicFormTermPanelTitle": "Terim Seç", + "DynamicFormEnterURLPlaceholder": "URL girme", + "DynamicFormEnterDescriptionPlaceholder": "Alternatif metin", + "customDisplayName": "Bu konumu kullan:", + "ListItemCommentDIalogDeleteSubText": "Bu yorumu silmek istediğinizden emin misiniz?", + "ListItemCommentsDialogDeleteTitle": "Açıklamayı Sil'i Onayla", + "ListItemCommentsLabel": "Yorum", + "ListItemCommentsNoCommentsLabel": "Yorum Yok", + "OrgAssetsLinkLabel": "Kuruluşunuz", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/vi-vn.ts b/src/loc/vi-vn.ts index f543479f2..ae02b379d 100644 --- a/src/loc/vi-vn.ts +++ b/src/loc/vi-vn.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "Trang web mẩu bánh mì", - "ListViewGroupEmptyLabel": "Rỗng", - "WebPartTitlePlaceholder": "Web phần tiêu đề", - "WebPartTitleLabel": "Thêm tiêu đề", - "DateTime": { - "L_RelativeDateTime_AFewSecondsFuture": "Trong vài giây", - "L_RelativeDateTime_AFewSeconds": "Cách đây một vài giây", - "L_RelativeDateTime_AboutAMinuteFuture": "Trong khoảng một phút", - "L_RelativeDateTime_AboutAMinute": "Khoảng một phút trước", - "L_RelativeDateTime_XMinutesFuture": "Trong {0} phút||Trong {0} phút", - "L_RelativeDateTime_XMinutes": "{0} phút trước||{0} phút trước", - "L_RelativeDateTime_XMinutesFutureIntervals": "1||2-", - "L_RelativeDateTime_XMinutesIntervals": "1||2-", - "L_RelativeDateTime_AboutAnHourFuture": "Trong khoảng một giờ", - "L_RelativeDateTime_AboutAnHour": "Cách đây khoảng một giờ", - "L_RelativeDateTime_Tomorrow": "Mai", - "L_RelativeDateTime_Yesterday": "Ngày hôm qua", - "L_RelativeDateTime_TomorrowAndTime": "Ngày mai lúc {0}", - "L_RelativeDateTime_YesterdayAndTime": "Hôm qua lúc {0}", - "L_RelativeDateTime_XHoursFuture": "Trong {0} giờ||Trong {0} giờ", - "L_RelativeDateTime_XHours": "{0} giờ trước||{0} giờ trước", - "L_RelativeDateTime_XHoursFutureIntervals": "1||2-", - "L_RelativeDateTime_XHoursIntervals": "1||2-", - "L_RelativeDateTime_DayAndTime": "{0} lúc {1}", - "L_RelativeDateTime_XDaysFuture": "{0} ngày từ bây giờ||{0} ngày từ bây giờ", - "L_RelativeDateTime_XDays": "{0} ngày trước||{0} ngày trước", - "L_RelativeDateTime_XDaysFutureIntervals": "1||2-", - "L_RelativeDateTime_XDaysIntervals": "1||2-", - "L_RelativeDateTime_Today": "Nay" - }, - "SendEmailTo": "Gửi email đến {0}", - "StartChatWith": "Bắt đầu trò chuyện với {0}", - "Contact": "Liên hệ", - "UpdateProfile": "Cập nhật hồ sơ của bạn", - "TaxonomyPickerNoTerms": "Bộ hạn không chứa bất kỳ thuật ngữ nào", - "TaxonomyPickerExpandTitle": "Mở rộng bộ hạn này", - "TaxonomyPickerMenuTermSet": "Menu cho bộ hạn", - "TaxonomyPickerInLabel": "In", - "TaxonomyPickerTermSetLabel": "Bộ hạn", - "peoplePickerComponentTooltipMessage": "Bộ chọn người", - "peoplePickerComponentErrorMessage": "Trường bắt buộc", - "peoplePickerSuggestionsHeaderText": "Người đề nghị", - "peoplePickerLoadingText": "Tải", - "PeoplePickerSearchText": "Lấy người dùng", - "PeoplePickerGroupNotFound": "Không tìm thấy nhóm.", - "genericNoResultsFoundText": "Không tìm thấy kết quả", - "ListItemPickerSelectValue": "Chọn giá trị", - "ListItemAttachmentsActionDeleteIconTitle": "Xóa", - "ListItemAttachmentsactionDeleteTitle": "Xóa", - "ListItemAttachmentsfileDeletedMsg": "Xóa {0} tệp", - "ListItemAttachmentsfileDeleteError": "Lỗi trên xóa tệp: {0}, lý do {1}", - "ListItemAttachmentserrorLoadAttachments": "Lỗi tải phần đính kèm danh sách mục, lý do: {0}", - "ListItemAttachmentsconfirmDelete": "Bạn có chắc bạn muốn gửi phần đính kèm {0} vào thùng rác trang web không?", - "ListItemAttachmentsdialogTitle": "Danh sách mục đính kèm", - "ListItemAttachmentsdialogOKbuttonLabel": "Ok", - "ListItemAttachmentsdialogCancelButtonLabel": "Hủy bỏ", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Xóa", - "ListItemAttachmentsuploadAttachmentDialogTitle": "Thêm tệp đính kèm", - "ListItemAttachmentsuploadAttachmentButtonLabel": "Thêm tệp đính kèm", - "ListItemAttachmentsuploadAttachmentErrorMsg": "Các tập tin {0} không đính kèm, lý do: {1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "Thêm tệp đính kèm", - "ListItemAttachmentsloadingMessage": "Tải lên tệp...", - "ListItemAttachmentslPlaceHolderIconText": "Danh sách mục đính kèm", - "ListItemAttachmentslPlaceHolderDescription": "Xin vui lòng thêm đính kèm", - "ListItemAttachmentslPlaceHolderButtonLabel": "Thêm", - "mapsErrorMessage": "Có lỗi khi tải bản đồ", - "mapsLoadingText": "Tải", - "mapsSearchButtonText": "Tìm", - "mapsTitlePrefix": "Bản đồ", - "ListViewFilterLabel": "Lọc danh sách", - "HeaderNormalText": "Văn bản bình thường", - "HeaderH2": "Nhóm 1", - "HeaderH3": "Nhóm 2", - "HeaderH4": "Nhóm 3", - "HeaderBlockQuote": "Kéo báo giá", - "AlignLeft": "Canh lề trái", - "AlignCenter": "Trung tâm", - "AlignRight": "Canh lề phải", - "AlignJustify": "Biện minh cho", - "ListBullet": "Danh sách có dấu đầu dòng", - "ListNumbered": "Danh sách số", - "StyleTitle": "Phong cách", - "BoldTitle": "Đậm (Ctrl + B)", - "ItalicTitle": "Italic (Ctrl + I)", - "UnderlineTitle": "Gạch dưới (Ctrl + U)", - "AlignTitle": "Align", - "ListTitle": "Danh sách", - "LinkTitle": "Liên kết", - "MoreTitle": "Thêm", - "FormattingPaneTitle": "Định dạng văn bản", - "CloseButton": "Đóng", - "InsertLinkTitle": "Chèn liên kết", - "AddressFieldLabel": "Địa chỉ", - "TextToDisplayLabel": "Văn bản để hiển thị", - "SaveButtonLabel": "Lưu", - "CancelButtonLabel": "Hủy bỏ", - "RemoveLinkLabel": "Xóa liên kết", - "ParagraphSectionTitle": "Đoạn", - "HyperlinkSectionTitle": "Liên kết", - "UndoTitle": "Hoàn tác (Ctrl + Z)", - "RedoTitle": "Làm lại (Ctrl + Y)", - "ClearFormattingTitle": "Xóa tất cả định dạng", - "FontStyleTitle": "Kiểu phông", - "FontSizeTitle": "Cỡ chữ", - "StrikethroughTitle": "Gạch ngang", - "SuperscriptTitle": "Superscript", - "SubscriptTitle": "Subscript", - "FontColorLabel": "Màu phông", - "AutomaticFontColor": "Tự động", - "HighlightColorLabel": "Màu nổi bật", - "NoColorHighlightColor": "Không có màu", - "IncreaseIndentTitle": "Tăng thụt lề", - "DecreaseIndentTitle": "Giảm thụt lề", - "ThemeColorsGroupName": "Màu sắc chủ đề", - "HighlightColorsGroupName": "Tô sáng màu", - "StandardColorsGroupName": "Màu tiêu chuẩn", - "CustomColorsGroupName": "Màu sắc tùy chỉnh", - "ThemeColorDarker": "Chủ đề tối hơn", - "ThemeColorDark": "Chủ đề tối", - "ThemeColorDarkAlt": "Chủ đề Dark Alternate", - "ThemeColorPrimary": "Chủ đề chính", - "ThemeColorSecondary": "Chủ đề thứ cấp", - "ThemeColorTertiary": "Trung lập đại học", - "ThemeColorNeutralSecondary": "Trung học thứ cấp", - "ThemeColorNeutralPrimaryAlt": "Trung tính tiểu học thay thế", - "ThemeColorNeutralPrimary": "Trung lập tiểu học", - "ThemeColorNeutralDark": "Tối trung tính", - "HighlightColorYellow": "Màu vàng", - "HighlightColorGreen": "Xanh", - "HighlightColorAqua": "Aqua", - "HighlightColorMagenta": "Magenta", - "HighlightColorBlue": "Blue", - "HighlightColorRed": "Đỏ", - "HighlightColorDarkblue": "Xanh đậm", - "HighlightColorTeal": "Teal", - "HighlightColorDarkgreen": "Xanh đậm", - "HighlightColorPurple": "Tím", - "HighlightColorMaroon": "Maroon", - "HighlightColorGold": "Vàng", - "HighlightColorDarkgrey": "Xám sẫm", - "HighlightColorGrey": "Màu xám", - "HighlightColorBlack": "Đen", - "StandardColorDarkred": "Đỏ sẫm", - "StandardColorRed": "Đỏ", - "StandardColorOrange": "Orange", - "StandardColorYellow": "Màu vàng", - "StandardColorLightgreen": "Xanh lá cây nhạt", - "StandardColorGreen": "Xanh", - "StandardColorLightblue": "Xanh dương nhạt", - "StandardColorBlue": "Blue", - "StandardColorDarkblue": "Xanh đậm", - "StandardColorPurple": "Tím", - "DatePickerMonthLongJanuary": "Tháng", - "DatePickerMonthShortJanuary": "Jan", - "DatePickerMonthLongFebruary": "Ngày", - "DatePickerMonthShortFebruary": "Tháng hai", - "DatePickerMonthLongMarch": "Tháng", - "DatePickerMonthShortMarch": "Mar", - "DatePickerMonthLongApril": "Vào ngày", - "DatePickerMonthShortApril": "Apr", - "DatePickerMonthLongMay": "Có thể", - "DatePickerMonthShortMay": "Có thể", - "DatePickerMonthLongJune": "Vào ngày", - "DatePickerMonthShortJune": "Jun", - "DatePickerMonthLongJuly": "Vào ngày", - "DatePickerMonthShortJuly": "Tháng bảy", - "DatePickerMonthLongAugust": "Tháng tám", - "DatePickerMonthShortAugust": "Tháng tám", - "DatePickerMonthLongSeptember": "Tháng chín", - "DatePickerMonthShortSeptember": "Bảy", - "DatePickerMonthLongOctober": "Vào ngày", - "DatePickerMonthShortOctober": "Tháng mười", - "DatePickerMonthLongNovember": "Ngày", - "DatePickerMonthShortNovember": "Ngày", - "DatePickerMonthLongDecember": "Ngày", - "DatePickerMonthShortDecember": "Tháng mười hai", - "DatePickerDayLongSunday": "Sunday", - "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ứ 5", - "DatePickerDayLongFriday": "Thứ sáu", - "DatePickerDayShortFriday": "Thứ sáu", - "DatePickerDayLongSaturday": "Thứ bảy", - "DatePickerDayShortSaturday": "Ngồi", - "DatePickerGoToToday": "Nay", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "Ngày", - "DateTimePickerTime": "Thời gian", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "Giá trị giờ không đúng", - "AddFileButtonLabel": "Thêm tệp", - "AddImageButtonLabel": "Thêm hình ảnh", - "AriaCellValue": "cột {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 tin", - "ChangeImageLinkLabel": "Thay đổi hình ảnh", - "ChooseFileLinkLabel": "Chọn tập tin", - "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 bản quyền.", - "CreativeCommonsMessage": "Những kết quả này được gắn thẻ với giấy phép Creative Commons. Hãy đánh giá 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, thay đổi {1}, chỉnh sửa bởi {2}, Private", - "DocumentLibraries": "Thư viện tài liệu", - "EditedByNamePlate": "được sửa đổi 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, thay đổi {1}, chỉnh sửa bởi {2}, các mục {3}, riêng", - "FromLinkLinkLabel": "Từ một liên kết", - "ImageAltText": ". {0} hình ảnh", - "ImageAriaLabelTemplate": ". {0} hình ảnh", - "ImageLayoutPlaceholderText": "Bố trí", - "ImageSizePlaceholderText": "Kích thước hình ảnh", - "ItemChildCountField": "Mục con số", - "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 liên kết tới tệp trong OneDrive cho doanh nghiệp hoặc SharePoint trực tuyến", - "LinkHeader": "Từ một liên kết", - "LinkImageInstructions": "Dán liên kết đến hình ảnh trong OneDrive dành cho doanh nghiệp hoặc SharePoint trực tuyến", - "ListLayoutAriaLabel": "Xem tùy chọn. {0} {1}.", - "ListLayoutCompact": "Xem nhỏ gọn", - "ListLayoutCompactDescription": "Xem các mục và chi tiết trong danh sách nhỏ gọn", - "ListLayoutList": "Xem danh sách", - "ListLayoutListDescrition": "Xem các mục và chi tiết trong danh sách", - "ListLayoutTile": "Xem lát", - "ListLayoutTileDescription": "Xem các mục có bài xem trước lát", - "ListOptionsAlt": "Xem tùy chọn. {0} được chọn.", - "ListOptionsTitle": "Mở menu tùy chọn xem", - "Loading": "Tải...", - "ModifiedByField": "Được sửa đổi bởi", - "ModifiedField": "Ngày sửa đổi", - "NameField": "Tên", - "No": "Không", - "ProvidedValueIsInvalid": "Giá trị 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 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": "Hãy thử chọn một tệp từ trang web của bạn hoặc tải một tập tin 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}, {2} thay đổi, chỉnh sửa bởi {3}, {4}, {5}", - "OneDriveConfirmDialogBody": "Mục này là từ trang web OneDrive của bạn. Các 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 trang web của mình để họ có thể x nó?", - "OneDriveConfirmDialogTitle": "Chỉ cần kiểm tra...", - "OneDriveEmptyFolderAlt": "Thư mục rỗng", - "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 bạn.", - "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 trố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": "Powered by 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 hình ảnh trong một 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": "Trung bình", - "SizeOptionSmall": "Nhỏ", - "SizeUnit": [ - "Byte", - "Kb", - "Mb", - "Gb", - "Tb", - "Pb", - "Eb", - "Ví dụ", - "Yb" - ], - "SorryWebSearch": "Xin lỗi, chức năng này không được thực hiện trong mẫu này, bởi vì nó đòi hỏi một khóa Bing API.", - "SortedAscending": "Sắp xếp A đến Z", - "SortedDescending": "Đã sắp xếp từ Z đến A", - "TypeAriaLabel": "Cột hoạt động cho loại tệp, nhấn để sắp xếp loại tệp", - "UploadFileHeader": "Tải tệp lên", - "UploadImageHeader": "Tải lên hình ảnh", - "UploadLinkLabel": "Tải lên", - "WebSearchLinkLabel": "Tìm kiếm trên web", - "Yes": "Có", - "SelectedLabel": "Đã chọn", - "SelectIcon": "Chọn biểu tượng", - "StockImagesLinkLabel": "Hình ảnh chứng khoán", - "StockImagesHeader": "Hình ảnh chứng khoán", - "OrgAssetsLinkLabel": "Tổ chức của bạn" - }; -}); + "Save": "Cứu", + "Cancel": "Hủy", + "SiteBreadcrumbLabel": "Trang web mẩu bánh mì", + "ListViewGroupEmptyLabel": "Rỗng", + "WebPartTitlePlaceholder": "Web phần tiêu đề", + "WebPartTitleLabel": "Thêm tiêu đề", + "DateTime": { + "L_RelativeDateTime_AFewSecondsFuture": "Trong vài giây", + "L_RelativeDateTime_AFewSeconds": "Cách đây một vài giây", + "L_RelativeDateTime_AboutAMinuteFuture": "Trong khoảng một phút", + "L_RelativeDateTime_AboutAMinute": "Khoảng một phút trước", + "L_RelativeDateTime_XMinutesFuture": "Trong {0} phút||Trong {0} phút", + "L_RelativeDateTime_XMinutes": "{0} phút trước||{0} phút trước", + "L_RelativeDateTime_XMinutesFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XMinutesIntervals": "1|| 2-", + "L_RelativeDateTime_AboutAnHourFuture": "Trong khoảng một giờ", + "L_RelativeDateTime_AboutAnHour": "Cách đây khoảng một giờ", + "L_RelativeDateTime_Tomorrow": "Mai", + "L_RelativeDateTime_Yesterday": "Ngày hôm qua", + "L_RelativeDateTime_TomorrowAndTime": "Ngày mai lúc {0}", + "L_RelativeDateTime_YesterdayAndTime": "Hôm qua lúc {0}", + "L_RelativeDateTime_XHoursFuture": "Trong {0} giờ||Trong {0} giờ", + "L_RelativeDateTime_XHours": "{0} giờ trước||{0} giờ trước", + "L_RelativeDateTime_XHoursFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XHoursIntervals": "1|| 2-", + "L_RelativeDateTime_DayAndTime": "{0} lúc {1}", + "L_RelativeDateTime_XDaysFuture": "{0} ngày từ bây giờ||{0} ngày từ bây giờ", + "L_RelativeDateTime_XDays": "{0} ngày trước||{0} ngày trước", + "L_RelativeDateTime_XDaysFutureIntervals": "1|| 2-", + "L_RelativeDateTime_XDaysIntervals": "1|| 2-", + "L_RelativeDateTime_Today": "Nay" + }, + "SendEmailTo": "Gửi email đến {0}", + "StartChatWith": "Bắt đầu trò chuyện với {0}", + "Contact": "Liên hệ", + "UpdateProfile": "Cập nhật hồ sơ của bạn", + "TaxonomyPickerNoTerms": "Bộ hạn không chứa bất kỳ thuật ngữ nào", + "TaxonomyPickerExpandTitle": "Mở rộng bộ hạn này", + "TaxonomyPickerMenuTermSet": "Menu cho bộ hạn", + "TaxonomyPickerInLabel": "In", + "TaxonomyPickerTermSetLabel": "Bộ hạn", + "TaxonomyPickerTermsNotFound": "Không thể tìm thấy thuật ngữ được chọn tiếp theo trong cửa hàng thuật ngữ: {0}", + "TaxonomyPickerInvalidTerms": "Vui lòng sửa (các) thuật ngữ không hợp lệ): {0}", + "peoplePickerComponentTooltipMessage": "Bộ chọn người", + "peoplePickerComponentErrorMessage": "Trường bắt buộc", + "peoplePickerSuggestionsHeaderText": "Người đề nghị", + "peoplePickerLoadingText": "Tải", + "PeoplePickerSearchText": "Lấy người dùng", + "PeoplePickerGroupNotFound": "Không tìm thấy nhóm.", + "genericNoResultsFoundText": "Không tìm thấy kết quả", + "ListItemPickerSelectValue": "Chọn giá trị", + "ListItemAttachmentsActionDeleteIconTitle": "Xóa", + "ListItemAttachmentsactionDeleteTitle": "Xóa", + "ListItemAttachmentsfileDeletedMsg": "Xóa {0} tệp", + "ListItemAttachmentsfileDeleteError": "Lỗi trên xóa tệp: {0}, lý do {1}", + "ListItemAttachmentserrorLoadAttachments": "Lỗi tải phần đính kèm danh sách mục, lý do: {0}", + "ListItemAttachmentsconfirmDelete": "Bạn có chắc bạn muốn gửi phần đính kèm {0} vào thùng rác trang web không?", + "ListItemAttachmentsdialogTitle": "Danh sách mục đính kèm", + "ListItemAttachmentsdialogOKbuttonLabel": "Ok", + "ListItemAttachmentsdialogCancelButtonLabel": "Hủy bỏ", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "Xóa", + "ListItemAttachmentsuploadAttachmentDialogTitle": "Thêm tệp đính kèm", + "ListItemAttachmentsuploadAttachmentButtonLabel": "Thêm tệp đính kèm", + "ListItemAttachmentsuploadAttachmentErrorMsg": "Các tập tin {0} không đính kèm, lý do: {1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "Thêm tệp đính kèm", + "ListItemAttachmentsloadingMessage": "Tải lên tệp...", + "ListItemAttachmentslPlaceHolderIconText": "Danh sách mục đính kèm", + "ListItemAttachmentslPlaceHolderDescription": "Xin vui lòng thêm đính kèm", + "ListItemAttachmentslPlaceHolderButtonLabel": "Thêm", + "mapsErrorMessage": "Có lỗi khi tải bản đồ", + "mapsLoadingText": "Tải", + "mapsSearchButtonText": "Tìm", + "mapsTitlePrefix": "Bản đồ", + "ListViewFilterLabel": "Lọc danh sách", + "HeaderNormalText": "Văn bản bình thường", + "HeaderH2": "Nhóm 1", + "HeaderH3": "Nhóm 2", + "HeaderH4": "Nhóm 3", + "HeaderBlockQuote": "Kéo báo giá", + "AlignLeft": "Canh lề trái", + "AlignCenter": "Trung tâm", + "AlignRight": "Canh lề phải", + "AlignJustify": "Biện minh cho", + "ListBullet": "Danh sách có dấu đầu dòng", + "ListNumbered": "Danh sách số", + "StyleTitle": "Phong cách", + "BoldTitle": "Đậm (Ctrl + B)", + "ItalicTitle": "Italic (Ctrl + I)", + "UnderlineTitle": "Gạch dưới (Ctrl + U)", + "AlignTitle": "Align", + "ListTitle": "Danh sách", + "LinkTitle": "Liên kết", + "ImageTitle": "Ảnh", + "MoreTitle": "Thêm", + "FormattingPaneTitle": "Định dạng văn bản", + "CloseButton": "Đóng", + "InsertLinkTitle": "Chèn liên kết", + "InsertImageTitle": "Chèn ảnh", + "AddressFieldLabel": "Địa chỉ", + "TextToDisplayLabel": "Văn bản để hiển thị", + "SaveButtonLabel": "Lưu", + "CancelButtonLabel": "Hủy bỏ", + "RemoveLinkLabel": "Xóa liên kết", + "ParagraphSectionTitle": "Đoạn", + "HyperlinkSectionTitle": "Liên kết", + "UndoTitle": "Hoàn tác (Ctrl + Z)", + "RedoTitle": "Làm lại (Ctrl + Y)", + "ClearFormattingTitle": "Xóa tất cả định dạng", + "FontStyleTitle": "Kiểu phông", + "FontSizeTitle": "Cỡ chữ", + "StrikethroughTitle": "Gạch ngang", + "SuperscriptTitle": "Chỉ số trên", + "SubscriptTitle": "Chỉ số dưới", + "FontColorLabel": "Màu phông", + "AutomaticFontColor": "Tự động", + "HighlightColorLabel": "Màu nổi bật", + "NoColorHighlightColor": "Không có màu", + "IncreaseIndentTitle": "Tăng thụt lề", + "DecreaseIndentTitle": "Giảm thụt lề", + "ThemeColorsGroupName": "Màu sắc chủ đề", + "HighlightColorsGroupName": "Tô sáng màu", + "StandardColorsGroupName": "Màu tiêu chuẩn", + "CustomColorsGroupName": "Màu sắc tùy chỉnh", + "ThemeColorDarker": "Chủ đề tối hơn", + "ThemeColorDark": "Chủ đề tối", + "ThemeColorDarkAlt": "Chủ đề Dark Alternate", + "ThemeColorPrimary": "Chủ đề chính", + "ThemeColorSecondary": "Chủ đề thứ cấp", + "ThemeColorTertiary": "Trung lập đại học", + "ThemeColorNeutralSecondary": "Trung học thứ cấp", + "ThemeColorNeutralPrimaryAlt": "Trung tính tiểu học thay thế", + "ThemeColorNeutralPrimary": "Trung lập tiểu học", + "ThemeColorNeutralDark": "Tối trung tính", + "HighlightColorYellow": "Màu vàng", + "HighlightColorGreen": "Xanh", + "HighlightColorAqua": "Aqua", + "HighlightColorMagenta": "Magenta", + "HighlightColorBlue": "Xanh", + "HighlightColorRed": "Đỏ", + "HighlightColorDarkblue": "Xanh đậm", + "HighlightColorTeal": "Mòng két", + "HighlightColorDarkgreen": "Xanh đậm", + "HighlightColorPurple": "Tím", + "HighlightColorMaroon": "Màu hạt dẻ", + "HighlightColorGold": "Vàng", + "HighlightColorDarkgrey": "Xám sẫm", + "HighlightColorGrey": "Màu xám", + "HighlightColorBlack": "Đen", + "StandardColorDarkred": "Đỏ sẫm", + "StandardColorRed": "Đỏ", + "StandardColorOrange": "Cam", + "StandardColorYellow": "Màu vàng", + "StandardColorLightgreen": "Xanh lá cây nhạt", + "StandardColorGreen": "Xanh", + "StandardColorLightblue": "Xanh dương nhạt", + "StandardColorBlue": "Xanh", + "StandardColorDarkblue": "Xanh đậm", + "StandardColorPurple": "Tím", + "DatePickerMonthLongJanuary": "Tháng", + "DatePickerMonthShortJanuary": "Jan", + "DatePickerMonthLongFebruary": "Ngày", + "DatePickerMonthShortFebruary": "Tháng hai", + "DatePickerMonthLongMarch": "Tháng", + "DatePickerMonthShortMarch": "Mar", + "DatePickerMonthLongApril": "Vào ngày", + "DatePickerMonthShortApril": "Apr", + "DatePickerMonthLongMay": "Có thể", + "DatePickerMonthShortMay": "Có thể", + "DatePickerMonthLongJune": "Vào ngày", + "DatePickerMonthShortJune": "Jun", + "DatePickerMonthLongJuly": "Vào ngày", + "DatePickerMonthShortJuly": "Tháng bảy", + "DatePickerMonthLongAugust": "Tháng tám", + "DatePickerMonthShortAugust": "Tháng tám", + "DatePickerMonthLongSeptember": "Tháng chín", + "DatePickerMonthShortSeptember": "Bảy", + "DatePickerMonthLongOctober": "Vào ngày", + "DatePickerMonthShortOctober": "Tháng mười", + "DatePickerMonthLongNovember": "Ngày", + "DatePickerMonthShortNovember": "Ngày", + "DatePickerMonthLongDecember": "Ngày", + "DatePickerMonthShortDecember": "Tháng mười hai", + "DatePickerDayLongSunday": "Chủ nhật", + "DatePickerDayShortSunday": "Chủ nhật", + "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ứ 5", + "DatePickerDayLongFriday": "Thứ sáu", + "DatePickerDayShortFriday": "Thứ sáu", + "DatePickerDayLongSaturday": "Thứ bảy", + "DatePickerDayShortSaturday": "Ngồi", + "DatePickerGoToToday": "Nay", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "Ngày", + "DateTimePickerTime": "Thời gian", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "Giá trị giờ không đúng", + "DateTimePickerMinuteValueInvalid": "Giá trị phút không chính xác", + "DateTimePickerSecondValueInvalid": "Giá trị thứ hai không chính xác", + "DateTimePickerTextErrorMessage": "Vui lòng nhập ngày hợp lệ", + "AddFileButtonLabel": "Thêm tệp", + "AddImageButtonLabel": "Thêm hình ảnh", + "AriaCellValue": "cột {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 tin", + "ChangeImageLinkLabel": "Thay đổi hình ảnh", + "ChooseFileLinkLabel": "Chọn tập tin", + "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 bản quyền.", + "CreativeCommonsMessage": "Những kết quả này được gắn thẻ với giấy phép Creative Commons. Hãy đánh giá 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, thay đổi {1}, chỉnh sửa bởi {2}, Private", + "DocumentLibraries": "Thư viện tài liệu", + "EditedByNamePlate": "được sửa đổi 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, thay đổi {1}, chỉnh sửa bởi {2}, các mục {3}, riêng", + "FromLinkLinkLabel": "Từ một liên kết", + "ImageAltText": ". {0} hình ảnh", + "ImageAriaLabelTemplate": ". {0} hình ảnh", + "ImageLayoutPlaceholderText": "Bố trí", + "ImageSizePlaceholderText": "Kích thước hình ảnh", + "ItemChildCountField": "Mục con số", + "LayoutOptionAll": "Tất cả", + "LayoutOptionSquare": "Vuông", + "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 liên kết tới tệp trong OneDrive cho doanh nghiệp hoặc SharePoint trực tuyến", + "LinkHeader": "Từ một liên kết", + "LinkImageInstructions": "Dán liên kết đến hình ảnh trong OneDrive dành cho doanh nghiệp hoặc SharePoint trực tuyến", + "ListLayoutAriaLabel": "Xem tùy chọn. {0} {1}.", + "ListLayoutCompact": "Xem nhỏ gọn", + "ListLayoutCompactDescription": "Xem các mục và chi tiết trong danh sách nhỏ gọn", + "ListLayoutList": "Xem danh sách", + "ListLayoutListDescrition": "Xem các mục và chi tiết trong danh sách", + "ListLayoutTile": "Xem lát", + "ListLayoutTileDescription": "Xem các mục có bài xem trước lát", + "ListOptionsAlt": "Xem tùy chọn. {0} được chọn.", + "ListOptionsTitle": "Mở menu tùy chọn xem", + "Loading": "Tải...", + "ModifiedByField": "Được sửa đổi bởi", + "ModifiedField": "Ngày sửa đổi", + "NameField": "Tên", + "No": "Không", + "ProvidedValueIsInvalid": "Giá trị 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 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": "Hãy thử chọn một tệp từ trang web của bạn hoặc tải một tập tin 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}, {2} thay đổi, chỉnh sửa bởi {3}, {4}, {5}", + "OneDriveConfirmDialogBody": "Mục này là từ trang web OneDrive của bạn. Các 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 trang web của mình để họ có thể x nó?", + "OneDriveConfirmDialogTitle": "Chỉ cần kiểm tra...", + "OneDriveEmptyFolderAlt": "Thư mục rỗng", + "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 bạn.", + "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 trố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 cung cấp 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 hình ảnh trong một 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": "Trung bình", + "SizeOptionSmall": "Nhỏ", + "SizeUnit": [ + "Byte", + "Kb", + "Mb", + "Gb", + "Tb", + "Pb", + "Eb", + "Ví dụ", + "Yb" + ], + "SorryWebSearch": "Xin lỗi, chức năng này không được thực hiện trong mẫu này, bởi vì nó đòi hỏi một khóa Bing API.", + "SortedAscending": "Sắp xếp A đến Z", + "SortedDescending": "Đã sắp xếp từ Z đến A", + "TypeAriaLabel": "Cột hoạt động cho loại tệp, nhấn để sắp xếp loại tệp", + "UploadFileHeader": "Tải tệp lên", + "UploadImageHeader": "Tải lên hình ảnh", + "UploadLinkLabel": "Tải lên", + "WebSearchLinkLabel": "Tìm kiếm trên web", + "StockImagesLinkLabel": "Hình ảnh chứng khoán", + "StockImagesHeader": "Hình ảnh chứng khoán", + "Yes": "Có", + "NewFolderNamePlaceholder": "Nhập tên cặp của bạn", + "FolderFilterBoxPlaceholder": "Lọc cặp theo tên", + "FolderExplorerLoading": "Đang tải cặp...", + "FolderExplorerNoItems": "Cặp này không có bất kỳ cặp con nào.", + "NewFolderIncorrectSymbolsError": "Vui lòng nhập một cái tên không bao gồm bất kỳ ký tự nào trong số này: \" * : < >? / |.", + "SomethingWentWrong": "Có gì đó không ổn", + "SelectedLabel": "Đã chọn", + "SelectIcon": "Chọn biểu tượng", + "TreeViewExpandTitle": "rộng mục này", + "TreeViewCollapseTitle": "Thu gọn mục này", + "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": "Lĩnh vực là cần thiết.", + "CollectionDataItemMissingFields": "Bộ sưu tập trường trống!", + "InvalidUrlError": "URL được cung cấp không hợp lệ", + "CollectionDataSearch": "Tìm kiếm", + "MyTeamsLoadingMessage": "tải nhóm của bạn", + "MyTeamsMessageError": "Có gì đó không ổn trong khi tải nhóm của bạn, vui lòng thử sau hoặc làm mới trình duyệt", + "MyTeamsNoTeamsMessage": "Bạn không có bất kỳ đội nào", + "MyTeamsTeamChannelPublicMessage": "Kênh công cộng", + "MyTeamsTeamChannelTypeMessage": "Kênh riêng tư", + "TeamChannelPickerFontIconFavoriteText": "Yêu thích", + "TeamChannelPickerFontIconPrivateChannelTitle": "Kênh riêng", + "TeamChannelPickerSugestionHeaderText": "Các kênh nhóm được đề xuất", + "TeamPickerButtonRemoveTitle": "triệt", + "TeamPickernoResultsFoundText": "Không tìm thấy đội", + "TeamPickerSugestionsHeaderText": "Các đội được đề xuất", + "TeamsChannelPickerButtonRemoveTitle": "triệt", + "TeamsChannelPickerNoresultsFoundText": "Không tìm thấy kênh", + "ViewMore": "Xem thêm", + "DynamicFormLoading": "Tải...", + "DynamicFormPleaseWait": "Hãy chờ...", + "DynamicFormRequiredErrorMessage": "Bạn không thể để trống này.", + "DynamicFormTermPanelTitle": "Chọn Thuật ngữ", + "DynamicFormEnterURLPlaceholder": "Nhập URL", + "DynamicFormEnterDescriptionPlaceholder": "Văn bản thay thế", + "customDisplayName": "Sử dụng vị trí này:", + "ListItemCommentDIalogDeleteSubText": "Bạn có chắc chắn rằng bạn muốn xóa bình luận này không?", + "ListItemCommentsDialogDeleteTitle": "Xác nhận Xóa Chú thích", + "ListItemCommentsLabel": "Ý kiến", + "ListItemCommentsNoCommentsLabel": "Không có bình luận", + "OrgAssetsLinkLabel": "Tổ chức của bạn", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/zh-cn.ts b/src/loc/zh-cn.ts index 478716630..4b3443810 100644 --- a/src/loc/zh-cn.ts +++ b/src/loc/zh-cn.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "网站痕迹", - "ListViewGroupEmptyLabel": "空", - "WebPartTitlePlaceholder": "Web 部件标题", - "WebPartTitleLabel": "添加标题", - "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": "{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": "今天" - }, - "SendEmailTo": "向{0}发送电子邮件", - "StartChatWith": "开始与{0}聊天", - "Contact": "联系", - "UpdateProfile": "更新您的个人资料", - "TaxonomyPickerNoTerms": "术语集不包含任何术语", - "TaxonomyPickerExpandTitle": "展开此术语集", - "TaxonomyPickerMenuTermSet": "术语集的菜单", - "TaxonomyPickerInLabel": "在", - "TaxonomyPickerTermSetLabel": "术语集", - "peoplePickerComponentTooltipMessage": "人员选取器", - "peoplePickerComponentErrorMessage": "必填字段", - "peoplePickerSuggestionsHeaderText": "建议人员", - "peoplePickerLoadingText": "加载", - "PeoplePickerSearchText": "正在获取用户", - "PeoplePickerGroupNotFound": "找不到组。", - "genericNoResultsFoundText": "未找到结果", - "ListItemPickerSelectValue": "选择值", - "ListItemAttachmentsActionDeleteIconTitle": "删除", - "ListItemAttachmentsactionDeleteTitle": "删除", - "ListItemAttachmentsfileDeletedMsg": "文件{0}删除", - "ListItemAttachmentsfileDeleteError": "删除文件错误:{0},原因{1}", - "ListItemAttachmentserrorLoadAttachments": "加载列表附件错误,原因:{0}", - "ListItemAttachmentsconfirmDelete": "是否确实要将附件{0}发送到站点回收站?", - "ListItemAttachmentsdialogTitle": "列表项目附件", - "ListItemAttachmentsdialogOKbuttonLabel": "还行", - "ListItemAttachmentsdialogCancelButtonLabel": "取消", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "删除", - "ListItemAttachmentsuploadAttachmentDialogTitle": "添加附件", - "ListItemAttachmentsuploadAttachmentButtonLabel": "添加附件", - "ListItemAttachmentsuploadAttachmentErrorMsg": "文件{0}未附加,原因:{1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "添加附件", - "ListItemAttachmentsloadingMessage": "正在上传文件...", - "ListItemAttachmentslPlaceHolderIconText": "列表项目附件", - "ListItemAttachmentslPlaceHolderDescription": "请添加附件", - "ListItemAttachmentslPlaceHolderButtonLabel": "添加", - "mapsErrorMessage": "加载地图时出错", - "mapsLoadingText": "加载", - "mapsSearchButtonText": "搜索", - "mapsTitlePrefix": "地图", - "ListViewFilterLabel": "筛选列表", - "HeaderNormalText": "普通文本", - "HeaderH2": "标题 1", - "HeaderH3": "标题 2", - "HeaderH4": "标题 3", - "HeaderBlockQuote": "拉引号", - "AlignLeft": "向左对齐", - "AlignCenter": "中心", - "AlignRight": "向右对齐", - "AlignJustify": "证明", - "ListBullet": "项目符号列表", - "ListNumbered": "编号列表", - "StyleTitle": "风格", - "BoldTitle": "粗体(Ctrl+B)", - "ItalicTitle": "斜体(Ctrl_I)", - "UnderlineTitle": "下划线 (Ctrl+U)", - "AlignTitle": "对齐", - "ListTitle": "列表", - "LinkTitle": "链接", - "MoreTitle": "更", - "FormattingPaneTitle": "文本格式", - "CloseButton": "关闭", - "InsertLinkTitle": "插入链接", - "AddressFieldLabel": "地址", - "TextToDisplayLabel": "要显示的文本", - "SaveButtonLabel": "救", - "CancelButtonLabel": "取消", - "RemoveLinkLabel": "删除链接", - "ParagraphSectionTitle": "段", - "HyperlinkSectionTitle": "链接", - "UndoTitle": "撤消(Ctrl+Z)", - "RedoTitle": "重做(Ctrl+Y)", - "ClearFormattingTitle": "清除所有格式", - "FontStyleTitle": "字体样式", - "FontSizeTitle": "字体大小", - "StrikethroughTitle": "罢工", - "SuperscriptTitle": "标", - "SubscriptTitle": "标", - "FontColorLabel": "字体颜色", - "AutomaticFontColor": "自动", - "HighlightColorLabel": "高亮显示颜色", - "NoColorHighlightColor": "无颜色", - "IncreaseIndentTitle": "增加缩进", - "DecreaseIndentTitle": "减少缩进", - "ThemeColorsGroupName": "主题颜色", - "HighlightColorsGroupName": "突出显示颜色", - "StandardColorsGroupName": "标准颜色", - "CustomColorsGroupName": "自定义颜色", - "ThemeColorDarker": "主题较暗", - "ThemeColorDark": "主题黑暗", - "ThemeColorDarkAlt": "主题黑暗交替", - "ThemeColorPrimary": "主题主", - "ThemeColorSecondary": "主题辅助", - "ThemeColorTertiary": "中性三级", - "ThemeColorNeutralSecondary": "中性辅助", - "ThemeColorNeutralPrimaryAlt": "中性主备用", - "ThemeColorNeutralPrimary": "中性主", - "ThemeColorNeutralDark": "中性暗", - "HighlightColorYellow": "黄色", - "HighlightColorGreen": "绿色", - "HighlightColorAqua": "水", - "HighlightColorMagenta": "品红", - "HighlightColorBlue": "蓝色", - "HighlightColorRed": "红", - "HighlightColorDarkblue": "深蓝色", - "HighlightColorTeal": "蒂尔", - "HighlightColorDarkgreen": "深绿色", - "HighlightColorPurple": "紫色", - "HighlightColorMaroon": "栗色", - "HighlightColorGold": "黄金", - "HighlightColorDarkgrey": "深灰色", - "HighlightColorGrey": "灰色", - "HighlightColorBlack": "黑", - "StandardColorDarkred": "深红色", - "StandardColorRed": "红", - "StandardColorOrange": "橙", - "StandardColorYellow": "黄色", - "StandardColorLightgreen": "浅绿色", - "StandardColorGreen": "绿色", - "StandardColorLightblue": "浅蓝色", - "StandardColorBlue": "蓝色", - "StandardColorDarkblue": "深蓝色", - "StandardColorPurple": "紫色", - "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": "今天", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "日期", - "DateTimePickerTime": "时间", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "小时值不正确", - "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/YYYYh: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": [ - "字节", - "K b", - "M b", - "G b", - "结核病", - "铅", - "Eb", - "等", - "Yb" - ], - "SorryWebSearch": "很抱歉,此示例中未实现此函数,因为它需要必应 API 密钥。", - "SortedAscending": "将 A 排序到 Z", - "SortedDescending": "将 Z 排序到 A", - "TypeAriaLabel": "文件类型的列操作,按 以对文件类型进行排序", - "UploadFileHeader": "上传文件", - "UploadImageHeader": "上传图片", - "UploadLinkLabel": "上传", - "WebSearchLinkLabel": "网络搜索", - "Yes": "是的", - "SelectedLabel": "所选", - "SelectIcon": "选择图标", - "StockImagesLinkLabel": "库存图片", - "StockImagesHeader": "库存图片", - "OrgAssetsLinkLabel": "您的组织" - }; -}); + "Save": "救", + "Cancel": "取消", + "SiteBreadcrumbLabel": "网站痕迹", + "ListViewGroupEmptyLabel": "空", + "WebPartTitlePlaceholder": "Web 部件标题", + "WebPartTitleLabel": "添加标题", + "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": "{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": "今天" + }, + "SendEmailTo": "向{0}发送电子邮件", + "StartChatWith": "开始与{0}聊天", + "Contact": "联系", + "UpdateProfile": "更新您的个人资料", + "TaxonomyPickerNoTerms": "术语集不包含任何术语", + "TaxonomyPickerExpandTitle": "展开此术语集", + "TaxonomyPickerMenuTermSet": "术语集的菜单", + "TaxonomyPickerInLabel": "在", + "TaxonomyPickerTermSetLabel": "术语集", + "TaxonomyPickerTermsNotFound": "下一个选定的术语无法在术语商店中找到:{0}", + "TaxonomyPickerInvalidTerms": "请修复无效术语:{0}", + "peoplePickerComponentTooltipMessage": "人员选取器", + "peoplePickerComponentErrorMessage": "必填字段", + "peoplePickerSuggestionsHeaderText": "建议人员", + "peoplePickerLoadingText": "加载", + "PeoplePickerSearchText": "正在获取用户", + "PeoplePickerGroupNotFound": "找不到组。", + "genericNoResultsFoundText": "未找到结果", + "ListItemPickerSelectValue": "选择值", + "ListItemAttachmentsActionDeleteIconTitle": "删除", + "ListItemAttachmentsactionDeleteTitle": "删除", + "ListItemAttachmentsfileDeletedMsg": "文件{0}删除", + "ListItemAttachmentsfileDeleteError": "删除文件错误:{0},原因{1}", + "ListItemAttachmentserrorLoadAttachments": "加载列表附件错误,原因:{0}", + "ListItemAttachmentsconfirmDelete": "是否确实要将附件{0}发送到站点回收站?", + "ListItemAttachmentsdialogTitle": "列表项目附件", + "ListItemAttachmentsdialogOKbuttonLabel": "还行", + "ListItemAttachmentsdialogCancelButtonLabel": "取消", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "删除", + "ListItemAttachmentsuploadAttachmentDialogTitle": "添加附件", + "ListItemAttachmentsuploadAttachmentButtonLabel": "添加附件", + "ListItemAttachmentsuploadAttachmentErrorMsg": "文件{0}未附加,原因:{1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "添加附件", + "ListItemAttachmentsloadingMessage": "正在上传文件...", + "ListItemAttachmentslPlaceHolderIconText": "列表项目附件", + "ListItemAttachmentslPlaceHolderDescription": "请添加附件", + "ListItemAttachmentslPlaceHolderButtonLabel": "添加", + "mapsErrorMessage": "加载地图时出错", + "mapsLoadingText": "加载", + "mapsSearchButtonText": "搜索", + "mapsTitlePrefix": "地图", + "ListViewFilterLabel": "筛选列表", + "HeaderNormalText": "普通文本", + "HeaderH2": "标题 1", + "HeaderH3": "标题 2", + "HeaderH4": "标题 3", + "HeaderBlockQuote": "拉引号", + "AlignLeft": "向左对齐", + "AlignCenter": "中心", + "AlignRight": "向右对齐", + "AlignJustify": "证明", + "ListBullet": "项目符号列表", + "ListNumbered": "编号列表", + "StyleTitle": "风格", + "BoldTitle": "粗体(Ctrl+B)", + "ItalicTitle": "斜体(Ctrl_I)", + "UnderlineTitle": "下划线 (Ctrl+U)", + "AlignTitle": "对齐", + "ListTitle": "列表", + "LinkTitle": "链接", + "ImageTitle": "图像", + "MoreTitle": "更", + "FormattingPaneTitle": "文本格式", + "CloseButton": "关闭", + "InsertLinkTitle": "插入链接", + "InsertImageTitle": "插入图像", + "AddressFieldLabel": "地址", + "TextToDisplayLabel": "要显示的文本", + "SaveButtonLabel": "救", + "CancelButtonLabel": "取消", + "RemoveLinkLabel": "删除链接", + "ParagraphSectionTitle": "段", + "HyperlinkSectionTitle": "链接", + "UndoTitle": "撤消(Ctrl+Z)", + "RedoTitle": "重做(Ctrl+Y)", + "ClearFormattingTitle": "清除所有格式", + "FontStyleTitle": "字体样式", + "FontSizeTitle": "字体大小", + "StrikethroughTitle": "罢工", + "SuperscriptTitle": "标", + "SubscriptTitle": "标", + "FontColorLabel": "字体颜色", + "AutomaticFontColor": "自动", + "HighlightColorLabel": "高亮显示颜色", + "NoColorHighlightColor": "无颜色", + "IncreaseIndentTitle": "增加缩进", + "DecreaseIndentTitle": "减少缩进", + "ThemeColorsGroupName": "主题颜色", + "HighlightColorsGroupName": "突出显示颜色", + "StandardColorsGroupName": "标准颜色", + "CustomColorsGroupName": "自定义颜色", + "ThemeColorDarker": "主题较暗", + "ThemeColorDark": "主题黑暗", + "ThemeColorDarkAlt": "主题黑暗交替", + "ThemeColorPrimary": "主题主", + "ThemeColorSecondary": "主题辅助", + "ThemeColorTertiary": "中性三级", + "ThemeColorNeutralSecondary": "中性辅助", + "ThemeColorNeutralPrimaryAlt": "中性主备用", + "ThemeColorNeutralPrimary": "中性主", + "ThemeColorNeutralDark": "中性暗", + "HighlightColorYellow": "黄色", + "HighlightColorGreen": "绿色", + "HighlightColorAqua": "水", + "HighlightColorMagenta": "品红", + "HighlightColorBlue": "蓝色", + "HighlightColorRed": "红", + "HighlightColorDarkblue": "深蓝色", + "HighlightColorTeal": "蒂尔", + "HighlightColorDarkgreen": "深绿色", + "HighlightColorPurple": "紫色", + "HighlightColorMaroon": "栗色", + "HighlightColorGold": "黄金", + "HighlightColorDarkgrey": "深灰色", + "HighlightColorGrey": "灰色", + "HighlightColorBlack": "黑", + "StandardColorDarkred": "深红色", + "StandardColorRed": "红", + "StandardColorOrange": "橙", + "StandardColorYellow": "黄色", + "StandardColorLightgreen": "浅绿色", + "StandardColorGreen": "绿色", + "StandardColorLightblue": "浅蓝色", + "StandardColorBlue": "蓝色", + "StandardColorDarkblue": "深蓝色", + "StandardColorPurple": "紫色", + "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": "今天", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "日期", + "DateTimePickerTime": "时间", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "小时值不正确", + "DateTimePickerMinuteValueInvalid": "不正确的分钟值", + "DateTimePickerSecondValueInvalid": "不正确的第二个值", + "DateTimePickerTextErrorMessage": "请输入有效日期", + "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/YYYYh: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": [ + "字节", + "K b", + "M b", + "G b", + "结核病", + "铅", + "Eb", + "等", + "Yb" + ], + "SorryWebSearch": "很抱歉,此示例中未实现此函数,因为它需要必应 API 密钥。", + "SortedAscending": "将 A 排序到 Z", + "SortedDescending": "将 Z 排序到 A", + "TypeAriaLabel": "文件类型的列操作,按 以对文件类型进行排序", + "UploadFileHeader": "上传文件", + "UploadImageHeader": "上传图片", + "UploadLinkLabel": "上传", + "WebSearchLinkLabel": "网络搜索", + "StockImagesLinkLabel": "库存图片", + "StockImagesHeader": "库存图片", + "Yes": "是的", + "NewFolderNamePlaceholder": "输入文件夹名称", + "FolderFilterBoxPlaceholder": "按名称筛选文件夹", + "FolderExplorerLoading": "加载文件夹...", + "FolderExplorerNoItems": "此文件夹没有任何子折器。", + "NewFolderIncorrectSymbolsError": "请输入一个不包括这些字符的名称:\"* < >?/ |.", + "SomethingWentWrong": "出事了", + "SelectedLabel": "所选", + "SelectIcon": "选择图标", + "TreeViewExpandTitle": "扩展此项目", + "TreeViewCollapseTitle": "折叠此项目", + "CollectionDataEmptyFields": "没有为收集数据提供字段。", + "CollectionDataEmptyValue": "您的收藏中没有数据。", + "CollectionAddRowButtonLabel": "将数据添加到集合中", + "CollectionDeleteRowButtonLabel": "删除当前行", + "CollectionSaveAndAddButtonLabel": "添加和保存", + "CollectionDataItemShowErrorsLabel": "显示行错误", + "CollectionDataItemFieldRequiredLabel": "需要字段。", + "CollectionDataItemMissingFields": "字段集合是空的!", + "InvalidUrlError": "提供的 URL 无效", + "CollectionDataSearch": "搜索", + "MyTeamsLoadingMessage": "加载您的团队", + "MyTeamsMessageError": "加载团队时出了问题,请稍后尝试或刷新浏览器", + "MyTeamsNoTeamsMessage": "你没有任何团队", + "MyTeamsTeamChannelPublicMessage": "公共频道", + "MyTeamsTeamChannelTypeMessage": "私人频道", + "TeamChannelPickerFontIconFavoriteText": "喜欢", + "TeamChannelPickerFontIconPrivateChannelTitle": "私人频道", + "TeamChannelPickerSugestionHeaderText": "建议的团队频道", + "TeamPickerButtonRemoveTitle": "删除", + "TeamPickernoResultsFoundText": "未找到团队", + "TeamPickerSugestionsHeaderText": "建议的团队", + "TeamsChannelPickerButtonRemoveTitle": "删除", + "TeamsChannelPickerNoresultsFoundText": "未找到通道", + "ViewMore": "查看更多", + "DynamicFormLoading": "装载。。。", + "DynamicFormPleaseWait": "请稍候。。。", + "DynamicFormRequiredErrorMessage": "你不能把这个空白留着。", + "DynamicFormTermPanelTitle": "选择期限", + "DynamicFormEnterURLPlaceholder": "输入网址", + "DynamicFormEnterDescriptionPlaceholder": "备选文本", + "customDisplayName": "使用此位置:", + "ListItemCommentDIalogDeleteSubText": "您确定要删除此评论吗?", + "ListItemCommentsDialogDeleteTitle": "确认删除注释", + "ListItemCommentsLabel": "评论", + "ListItemCommentsNoCommentsLabel": "没有评论", + "OrgAssetsLinkLabel": "您的组织", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file diff --git a/src/loc/zh-tw.ts b/src/loc/zh-tw.ts index 0624dae45..b87a4bbed 100644 --- a/src/loc/zh-tw.ts +++ b/src/loc/zh-tw.ts @@ -2,337 +2,372 @@ declare var define: any; define([], () => { return { - ListItemCommentDIalogDeleteSubText: "Are you sure that you want to delete this comment?", - ListItemCommentsDialogDeleteTitle: "Confirm Delete Comment", - ListItemCommentsLabel: "Comments", - ListItemCommentsNoCommentsLabel: "There is no Comments", - MyTeamsLoadingMessage: "loading your teams", - MyTeamsMessageDontHaveTeams: "You don't have any teams", - MyTeamsMessageError: "Something went wrong while loading your teams, please try later or refresh browser", - MyTeamsNoTeamsMessage: "You don't have any teams", - MyTeamsTeamChannelPublicMessage: "Public Channels", - MyTeamsTeamChannelTypeMessage: "Private Channels", - TeamChannelPickerFontIconFavoriteText: "Favorite", - TeamChannelPickerFontIconPrivateChannelTitle: "Private Channel", - TeamChannelPickerSugestionHeaderText: "Suggested Team Channels", - TeamPickerButtonRemoveTitle: "remove", - TeamPickernoResultsFoundText: "No Teams found", - TeamPickerSugestionsHeaderText: "Suggested Teams", - TeamsChannelPickerButtonRemoveTitle: "remove", - TeamsChannelPickerNoresultsFoundText: "No channels found", - "SiteBreadcrumbLabel": "網站痕跡", - "ListViewGroupEmptyLabel": "空", - "WebPartTitlePlaceholder": "Web 組件標題", - "WebPartTitleLabel": "添加標題", - "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": "{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": "今天" - }, - "SendEmailTo": "向{0}發送電子郵件", - "StartChatWith": "開始與{0}聊天", - "Contact": "聯繫", - "UpdateProfile": "更新您的個人資料", - "TaxonomyPickerNoTerms": "字詞組不包含任何術語", - "TaxonomyPickerExpandTitle": "展開此字詞組", - "TaxonomyPickerMenuTermSet": "字詞組的功能表", - "TaxonomyPickerInLabel": "在", - "TaxonomyPickerTermSetLabel": "字詞組", - "peoplePickerComponentTooltipMessage": "人員選取器", - "peoplePickerComponentErrorMessage": "必要欄位", - "peoplePickerSuggestionsHeaderText": "建議人員", - "peoplePickerLoadingText": "載入", - "PeoplePickerSearchText": "正在獲取使用者", - "PeoplePickerGroupNotFound": "找不到組。", - "genericNoResultsFoundText": "未找到結果", - "ListItemPickerSelectValue": "選擇值", - "ListItemAttachmentsActionDeleteIconTitle": "刪除", - "ListItemAttachmentsactionDeleteTitle": "刪除", - "ListItemAttachmentsfileDeletedMsg": "檔{0}刪除", - "ListItemAttachmentsfileDeleteError": "刪除檔錯誤:{0},原因{1}", - "ListItemAttachmentserrorLoadAttachments": "載入清單附件錯誤,原因:{0}", - "ListItemAttachmentsconfirmDelete": "是否確實要將附件{0}發送到網站回收站?", - "ListItemAttachmentsdialogTitle": "清單專案附件", - "ListItemAttachmentsdialogOKbuttonLabel": "還行", - "ListItemAttachmentsdialogCancelButtonLabel": "取消", - "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "刪除", - "ListItemAttachmentsuploadAttachmentDialogTitle": "添加附件", - "ListItemAttachmentsuploadAttachmentButtonLabel": "添加附件", - "ListItemAttachmentsuploadAttachmentErrorMsg": "檔{0}未附加,原因:{1}", - "ListItemAttachmentsCommandBarAddAttachmentLabel": "添加附件", - "ListItemAttachmentsloadingMessage": "正在上傳檔...", - "ListItemAttachmentslPlaceHolderIconText": "清單專案附件", - "ListItemAttachmentslPlaceHolderDescription": "請添加附件", - "ListItemAttachmentslPlaceHolderButtonLabel": "添加", - "mapsErrorMessage": "載入地圖時出錯", - "mapsLoadingText": "載入", - "mapsSearchButtonText": "搜索", - "mapsTitlePrefix": "地圖", - "ListViewFilterLabel": "篩選清單", - "HeaderNormalText": "普通文本", - "HeaderH2": "標題 1", - "HeaderH3": "標題 2", - "HeaderH4": "標題 3", - "HeaderBlockQuote": "拉引號", - "AlignLeft": "向左對齊", - "AlignCenter": "中心", - "AlignRight": "向右對齊", - "AlignJustify": "證明", - "ListBullet": "專案符號清單", - "ListNumbered": "編號清單", - "StyleTitle": "風格", - "BoldTitle": "粗體(Ctrl+B)", - "ItalicTitle": "斜體(Ctrl_I)", - "UnderlineTitle": "底線 (Ctrl+U)", - "AlignTitle": "對齊", - "ListTitle": "清單", - "LinkTitle": "連結", - "MoreTitle": "更", - "FormattingPaneTitle": "文本格式", - "CloseButton": "關閉", - "InsertLinkTitle": "插入連結", - "AddressFieldLabel": "位址", - "TextToDisplayLabel": "要顯示的文本", - "SaveButtonLabel": "救", - "CancelButtonLabel": "取消", - "RemoveLinkLabel": "刪除連結", - "ParagraphSectionTitle": "段", - "HyperlinkSectionTitle": "連結", - "UndoTitle": "撤銷(Ctrl+Z)", - "RedoTitle": "重做(Ctrl+Y)", - "ClearFormattingTitle": "清除所有格式", - "FontStyleTitle": "字體樣式", - "FontSizeTitle": "字體大小", - "StrikethroughTitle": "罷工", - "SuperscriptTitle": "標", - "SubscriptTitle": "標", - "FontColorLabel": "字體顏色", - "AutomaticFontColor": "自動", - "HighlightColorLabel": "高亮顯示顏色", - "NoColorHighlightColor": "無顏色", - "IncreaseIndentTitle": "增加縮進", - "DecreaseIndentTitle": "減少縮進", - "ThemeColorsGroupName": "主題顏色", - "HighlightColorsGroupName": "突出顯示顏色", - "StandardColorsGroupName": "標準顏色", - "CustomColorsGroupName": "自訂顏色", - "ThemeColorDarker": "主題較暗", - "ThemeColorDark": "主題黑暗", - "ThemeColorDarkAlt": "主題黑暗交替", - "ThemeColorPrimary": "主題主", - "ThemeColorSecondary": "主題輔助", - "ThemeColorTertiary": "中性三級", - "ThemeColorNeutralSecondary": "中性輔助", - "ThemeColorNeutralPrimaryAlt": "中性主備用", - "ThemeColorNeutralPrimary": "中性主", - "ThemeColorNeutralDark": "中性暗", - "HighlightColorYellow": "黃色", - "HighlightColorGreen": "綠色", - "HighlightColorAqua": "水", - "HighlightColorMagenta": "品紅", - "HighlightColorBlue": "藍色", - "HighlightColorRed": "紅", - "HighlightColorDarkblue": "深藍色", - "HighlightColorTeal": "蒂爾", - "HighlightColorDarkgreen": "深綠色", - "HighlightColorPurple": "紫色", - "HighlightColorMaroon": "栗色", - "HighlightColorGold": "黃金", - "HighlightColorDarkgrey": "深灰色", - "HighlightColorGrey": "灰色", - "HighlightColorBlack": "黑", - "StandardColorDarkred": "深紅色", - "StandardColorRed": "紅", - "StandardColorOrange": "橙", - "StandardColorYellow": "黃色", - "StandardColorLightgreen": "淺綠色", - "StandardColorGreen": "綠色", - "StandardColorLightblue": "淺藍色", - "StandardColorBlue": "藍色", - "StandardColorDarkblue": "深藍色", - "StandardColorPurple": "紫色", - "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": "今天", - "DatePickerIsRequiredErrorMessage": "", - "DatePickerInvalidInputErrorMessage": "", - "DatePickerIsOutOfBoundsErrorMessage": "", - "DateTimePickerDate": "日期", - "DateTimePickerTime": "時間", - "DateTimePickerTimeSeparator": ":", - "DateTimePickerHourValueInvalid": "小時值不正確", - "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/YYYYh: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": [ - "位元組", - "K b", - "M b", - "G b", - "結核病", - "鉛", - "Eb", - "等", - "Yb" - ], - "SorryWebSearch": "很抱歉,此示例中未實現此函數,因為它需要必應 API 金鑰。", - "SortedAscending": "將 A 排序到 Z", - "SortedDescending": "將 Z 排序到 A", - "TypeAriaLabel": "檔案類型的列操作,按 以對檔案類型進行排序", - "UploadFileHeader": "上傳檔", - "UploadImageHeader": "上傳圖片", - "UploadLinkLabel": "上傳", - "WebSearchLinkLabel": "網路搜索", - "Yes": "是的", - "SelectedLabel": "已選取", - "SelectIcon": "選取圖示", - "StockImagesLinkLabel": "庫存圖片", - "StockImagesHeader": "庫存圖片", - "OrgAssetsLinkLabel": "您的組織" - }; -}); + "Save": "救", + "Cancel": "取消", + "SiteBreadcrumbLabel": "網站痕跡", + "ListViewGroupEmptyLabel": "空", + "WebPartTitlePlaceholder": "Web 組件標題", + "WebPartTitleLabel": "添加標題", + "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": "{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": "今天" + }, + "SendEmailTo": "向{0}發送電子郵件", + "StartChatWith": "開始與{0}聊天", + "Contact": "聯繫", + "UpdateProfile": "更新您的個人資料", + "TaxonomyPickerNoTerms": "字詞組不包含任何術語", + "TaxonomyPickerExpandTitle": "展開此字詞組", + "TaxonomyPickerMenuTermSet": "字詞組的功能表", + "TaxonomyPickerInLabel": "在", + "TaxonomyPickerTermSetLabel": "字詞組", + "TaxonomyPickerTermsNotFound": "下一個選定的術語無法在術語商店中找到:{0}", + "TaxonomyPickerInvalidTerms": "請修復無效術語:{0}", + "peoplePickerComponentTooltipMessage": "人員選取器", + "peoplePickerComponentErrorMessage": "必要欄位", + "peoplePickerSuggestionsHeaderText": "建議人員", + "peoplePickerLoadingText": "載入", + "PeoplePickerSearchText": "正在獲取使用者", + "PeoplePickerGroupNotFound": "找不到組。", + "genericNoResultsFoundText": "未找到結果", + "ListItemPickerSelectValue": "選擇值", + "ListItemAttachmentsActionDeleteIconTitle": "刪除", + "ListItemAttachmentsactionDeleteTitle": "刪除", + "ListItemAttachmentsfileDeletedMsg": "檔{0}刪除", + "ListItemAttachmentsfileDeleteError": "刪除檔錯誤:{0},原因{1}", + "ListItemAttachmentserrorLoadAttachments": "載入清單附件錯誤,原因:{0}", + "ListItemAttachmentsconfirmDelete": "是否確實要將附件{0}發送到網站回收站?", + "ListItemAttachmentsdialogTitle": "清單專案附件", + "ListItemAttachmentsdialogOKbuttonLabel": "還行", + "ListItemAttachmentsdialogCancelButtonLabel": "取消", + "ListItemAttachmentsdialogOKbuttonLabelOnDelete": "刪除", + "ListItemAttachmentsuploadAttachmentDialogTitle": "添加附件", + "ListItemAttachmentsuploadAttachmentButtonLabel": "添加附件", + "ListItemAttachmentsuploadAttachmentErrorMsg": "檔{0}未附加,原因:{1}", + "ListItemAttachmentsCommandBarAddAttachmentLabel": "添加附件", + "ListItemAttachmentsloadingMessage": "正在上傳檔...", + "ListItemAttachmentslPlaceHolderIconText": "清單專案附件", + "ListItemAttachmentslPlaceHolderDescription": "請添加附件", + "ListItemAttachmentslPlaceHolderButtonLabel": "添加", + "mapsErrorMessage": "載入地圖時出錯", + "mapsLoadingText": "載入", + "mapsSearchButtonText": "搜索", + "mapsTitlePrefix": "地圖", + "ListViewFilterLabel": "篩選清單", + "HeaderNormalText": "普通文本", + "HeaderH2": "標題 1", + "HeaderH3": "標題 2", + "HeaderH4": "標題 3", + "HeaderBlockQuote": "拉引號", + "AlignLeft": "向左對齊", + "AlignCenter": "中心", + "AlignRight": "向右對齊", + "AlignJustify": "證明", + "ListBullet": "專案符號清單", + "ListNumbered": "編號清單", + "StyleTitle": "風格", + "BoldTitle": "粗體(Ctrl+B)", + "ItalicTitle": "斜體(Ctrl_I)", + "UnderlineTitle": "底線 (Ctrl+U)", + "AlignTitle": "對齊", + "ListTitle": "清單", + "LinkTitle": "連結", + "ImageTitle": "圖像", + "MoreTitle": "更", + "FormattingPaneTitle": "文本格式", + "CloseButton": "關閉", + "InsertLinkTitle": "插入連結", + "InsertImageTitle": "插入圖像", + "AddressFieldLabel": "位址", + "TextToDisplayLabel": "要顯示的文本", + "SaveButtonLabel": "救", + "CancelButtonLabel": "取消", + "RemoveLinkLabel": "刪除連結", + "ParagraphSectionTitle": "段", + "HyperlinkSectionTitle": "連結", + "UndoTitle": "撤銷(Ctrl+Z)", + "RedoTitle": "重做(Ctrl+Y)", + "ClearFormattingTitle": "清除所有格式", + "FontStyleTitle": "字體樣式", + "FontSizeTitle": "字體大小", + "StrikethroughTitle": "罷工", + "SuperscriptTitle": "標", + "SubscriptTitle": "標", + "FontColorLabel": "字體顏色", + "AutomaticFontColor": "自動", + "HighlightColorLabel": "高亮顯示顏色", + "NoColorHighlightColor": "無顏色", + "IncreaseIndentTitle": "增加縮進", + "DecreaseIndentTitle": "減少縮進", + "ThemeColorsGroupName": "主題顏色", + "HighlightColorsGroupName": "突出顯示顏色", + "StandardColorsGroupName": "標準顏色", + "CustomColorsGroupName": "自訂顏色", + "ThemeColorDarker": "主題較暗", + "ThemeColorDark": "主題黑暗", + "ThemeColorDarkAlt": "主題黑暗交替", + "ThemeColorPrimary": "主題主", + "ThemeColorSecondary": "主題輔助", + "ThemeColorTertiary": "中性三級", + "ThemeColorNeutralSecondary": "中性輔助", + "ThemeColorNeutralPrimaryAlt": "中性主備用", + "ThemeColorNeutralPrimary": "中性主", + "ThemeColorNeutralDark": "中性暗", + "HighlightColorYellow": "黃色", + "HighlightColorGreen": "綠色", + "HighlightColorAqua": "水", + "HighlightColorMagenta": "品紅", + "HighlightColorBlue": "藍色", + "HighlightColorRed": "紅", + "HighlightColorDarkblue": "深藍色", + "HighlightColorTeal": "蒂爾", + "HighlightColorDarkgreen": "深綠色", + "HighlightColorPurple": "紫色", + "HighlightColorMaroon": "栗色", + "HighlightColorGold": "黃金", + "HighlightColorDarkgrey": "深灰色", + "HighlightColorGrey": "灰色", + "HighlightColorBlack": "黑", + "StandardColorDarkred": "深紅色", + "StandardColorRed": "紅", + "StandardColorOrange": "橙", + "StandardColorYellow": "黃色", + "StandardColorLightgreen": "淺綠色", + "StandardColorGreen": "綠色", + "StandardColorLightblue": "淺藍色", + "StandardColorBlue": "藍色", + "StandardColorDarkblue": "深藍色", + "StandardColorPurple": "紫色", + "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": "今天", + "DatePickerIsRequiredErrorMessage": "", + "DatePickerInvalidInputErrorMessage": "", + "DatePickerIsOutOfBoundsErrorMessage": "", + "DateTimePickerDate": "日期", + "DateTimePickerTime": "時間", + "DateTimePickerTimeSeparator": ":", + "DateTimePickerHourValueInvalid": "小時值不正確", + "DateTimePickerMinuteValueInvalid": "不正確的分鐘值", + "DateTimePickerSecondValueInvalid": "不正確的第二個值", + "DateTimePickerTextErrorMessage": "請輸入有效日期", + "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/YYYYh: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": [ + "位元組", + "K b", + "M b", + "G b", + "結核病", + "鉛", + "Eb", + "等", + "Yb" + ], + "SorryWebSearch": "很抱歉,此示例中未實現此函數,因為它需要必應 API 金鑰。", + "SortedAscending": "將 A 排序到 Z", + "SortedDescending": "將 Z 排序到 A", + "TypeAriaLabel": "檔案類型的列操作,按 以對檔案類型進行排序", + "UploadFileHeader": "上傳檔", + "UploadImageHeader": "上傳圖片", + "UploadLinkLabel": "上傳", + "WebSearchLinkLabel": "網路搜索", + "StockImagesLinkLabel": "庫存圖片", + "StockImagesHeader": "庫存圖片", + "Yes": "是的", + "NewFolderNamePlaceholder": "輸入資料夾名稱", + "FolderFilterBoxPlaceholder": "按名稱篩選資料夾", + "FolderExplorerLoading": "載入資料夾...", + "FolderExplorerNoItems": "此資料夾沒有任何子折器。", + "NewFolderIncorrectSymbolsError": "請輸入一個不包括這些字元的名稱:「* < >?/ |.", + "SomethingWentWrong": "出事了", + "SelectedLabel": "已選取", + "SelectIcon": "選取圖示", + "TreeViewExpandTitle": "擴展此專案", + "TreeViewCollapseTitle": "摺疊此專案", + "CollectionDataEmptyFields": "沒有為收集數據提供欄位。", + "CollectionDataEmptyValue": "您的收藏中沒有數據。", + "CollectionAddRowButtonLabel": "將數據添加到集合中", + "CollectionDeleteRowButtonLabel": "刪除當前行", + "CollectionSaveAndAddButtonLabel": "添加和保存", + "CollectionDataItemShowErrorsLabel": "顯示行錯誤", + "CollectionDataItemFieldRequiredLabel": "需要欄位。", + "CollectionDataItemMissingFields": "欄位集合是空的!", + "InvalidUrlError": "提供的 URL 無效", + "CollectionDataSearch": "搜索", + "MyTeamsLoadingMessage": "載入您的團隊", + "MyTeamsMessageError": "載入團隊時出了問題,請稍後嘗試或刷新瀏覽器", + "MyTeamsNoTeamsMessage": "你沒有任何團隊", + "MyTeamsTeamChannelPublicMessage": "公共頻道", + "MyTeamsTeamChannelTypeMessage": "私人頻道", + "TeamChannelPickerFontIconFavoriteText": "喜歡", + "TeamChannelPickerFontIconPrivateChannelTitle": "私人頻道", + "TeamChannelPickerSugestionHeaderText": "建議的團隊頻道", + "TeamPickerButtonRemoveTitle": "刪除", + "TeamPickernoResultsFoundText": "未找到團隊", + "TeamPickerSugestionsHeaderText": "建議的團隊", + "TeamsChannelPickerButtonRemoveTitle": "刪除", + "TeamsChannelPickerNoresultsFoundText": "未找到通道", + "ViewMore": "查看更多", + "DynamicFormLoading": "裝載。。。", + "DynamicFormPleaseWait": "請稍候。。。", + "DynamicFormRequiredErrorMessage": "你不能把這個空白留著。", + "DynamicFormTermPanelTitle": "選擇期限", + "DynamicFormEnterURLPlaceholder": "輸入網址", + "DynamicFormEnterDescriptionPlaceholder": "備選文字", + "customDisplayName": "使用此位置:", + "ListItemCommentDIalogDeleteSubText": "您確定要刪除此評論嗎?", + "ListItemCommentsDialogDeleteTitle": "確認刪除註釋", + "ListItemCommentsLabel": "評論", + "ListItemCommentsNoCommentsLabel": "沒有評論", + "OrgAssetsLinkLabel": "您的組織", + "MyTeamsMessageDontHaveTeams": "You don't have any teams" +}; +}); \ No newline at end of file