fix: i18n: Apply Trans component to publish library dialogue (#6564)
This commit is contained in:
parent
d8965ee823
commit
e619e06055
@ -1,5 +1,6 @@
|
||||
import { useCallback, useState } from "react";
|
||||
import { t } from "../i18n";
|
||||
import Trans from "./Trans";
|
||||
import { jotaiScope } from "../jotai";
|
||||
import { LibraryItem, LibraryItems, UIAppState } from "../types";
|
||||
import { useApp, useExcalidrawSetAppState } from "./App";
|
||||
@ -105,16 +106,19 @@ export const LibraryDropdownMenuButton: React.FC<{
|
||||
small={true}
|
||||
>
|
||||
<p>
|
||||
{t("publishSuccessDialog.content", {
|
||||
authorName: publishLibSuccess!.authorName,
|
||||
})}{" "}
|
||||
<a
|
||||
href={publishLibSuccess?.url}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{t("publishSuccessDialog.link")}
|
||||
</a>
|
||||
<Trans
|
||||
i18nKey="publishSuccessDialog.content"
|
||||
authorName={publishLibSuccess!.authorName}
|
||||
link={(el) => (
|
||||
<a
|
||||
href={publishLibSuccess?.url}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{el}
|
||||
</a>
|
||||
)}
|
||||
/>
|
||||
</p>
|
||||
<ToolButton
|
||||
type="button"
|
||||
|
@ -3,6 +3,7 @@ import OpenColor from "open-color";
|
||||
|
||||
import { Dialog } from "./Dialog";
|
||||
import { t } from "../i18n";
|
||||
import Trans from "./Trans";
|
||||
|
||||
import { LibraryItems, LibraryItem, UIAppState } from "../types";
|
||||
import { exportToCanvas, exportToSvg } from "../packages/utils";
|
||||
@ -402,26 +403,32 @@ const PublishLibrary = ({
|
||||
{shouldRenderForm ? (
|
||||
<form onSubmit={onSubmit}>
|
||||
<div className="publish-library-note">
|
||||
{t("publishDialog.noteDescription.pre")}
|
||||
<a
|
||||
href="https://libraries.excalidraw.com"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{t("publishDialog.noteDescription.link")}
|
||||
</a>{" "}
|
||||
{t("publishDialog.noteDescription.post")}
|
||||
<Trans
|
||||
i18nKey="publishDialog.noteDescription"
|
||||
link={(el) => (
|
||||
<a
|
||||
href="https://libraries.excalidraw.com"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{el}
|
||||
</a>
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<span className="publish-library-note">
|
||||
{t("publishDialog.noteGuidelines.pre")}
|
||||
<a
|
||||
href="https://github.com/excalidraw/excalidraw-libraries#guidelines"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{t("publishDialog.noteGuidelines.link")}
|
||||
</a>
|
||||
{t("publishDialog.noteGuidelines.post")}
|
||||
<Trans
|
||||
i18nKey="publishDialog.noteGuidelines"
|
||||
link={(el) => (
|
||||
<a
|
||||
href="https://github.com/excalidraw/excalidraw-libraries#guidelines"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{el}
|
||||
</a>
|
||||
)}
|
||||
/>
|
||||
</span>
|
||||
|
||||
<div className="publish-library-note">
|
||||
@ -515,15 +522,18 @@ const PublishLibrary = ({
|
||||
/>
|
||||
</label>
|
||||
<span className="publish-library-note">
|
||||
{t("publishDialog.noteLicense.pre")}
|
||||
<a
|
||||
href="https://github.com/excalidraw/excalidraw-libraries/blob/main/LICENSE"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{t("publishDialog.noteLicense.link")}
|
||||
</a>
|
||||
{t("publishDialog.noteLicense.post")}
|
||||
<Trans
|
||||
i18nKey="publishDialog.noteLicense"
|
||||
link={(el) => (
|
||||
<a
|
||||
href="https://github.com/excalidraw/excalidraw-libraries/blob/main/LICENSE"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{el}
|
||||
</a>
|
||||
)}
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
<div className="publish-library__buttons">
|
||||
|
@ -1,6 +1,7 @@
|
||||
import React from "react";
|
||||
import * as Sentry from "@sentry/browser";
|
||||
import { t } from "../i18n";
|
||||
import Trans from "./Trans";
|
||||
|
||||
interface TopErrorBoundaryState {
|
||||
hasError: boolean;
|
||||
@ -74,25 +75,31 @@ export class TopErrorBoundary extends React.Component<
|
||||
<div className="ErrorSplash excalidraw">
|
||||
<div className="ErrorSplash-messageContainer">
|
||||
<div className="ErrorSplash-paragraph bigger align-center">
|
||||
{t("errorSplash.headingMain_pre")}
|
||||
<button onClick={() => window.location.reload()}>
|
||||
{t("errorSplash.headingMain_button")}
|
||||
</button>
|
||||
<Trans
|
||||
i18nKey="errorSplash.headingMain"
|
||||
button={(el) => (
|
||||
<button onClick={() => window.location.reload()}>{el}</button>
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="ErrorSplash-paragraph align-center">
|
||||
{t("errorSplash.clearCanvasMessage")}
|
||||
<button
|
||||
onClick={() => {
|
||||
try {
|
||||
localStorage.clear();
|
||||
window.location.reload();
|
||||
} catch (error: any) {
|
||||
console.error(error);
|
||||
}
|
||||
}}
|
||||
>
|
||||
{t("errorSplash.clearCanvasMessage_button")}
|
||||
</button>
|
||||
<Trans
|
||||
i18nKey="errorSplash.clearCanvasMessage"
|
||||
button={(el) => (
|
||||
<button
|
||||
onClick={() => {
|
||||
try {
|
||||
localStorage.clear();
|
||||
window.location.reload();
|
||||
} catch (error: any) {
|
||||
console.error(error);
|
||||
}
|
||||
}}
|
||||
>
|
||||
{el}
|
||||
</button>
|
||||
)}
|
||||
/>
|
||||
<br />
|
||||
<div className="smaller">
|
||||
<span role="img" aria-label="warning">
|
||||
@ -106,16 +113,17 @@ export class TopErrorBoundary extends React.Component<
|
||||
</div>
|
||||
<div>
|
||||
<div className="ErrorSplash-paragraph">
|
||||
{t("errorSplash.trackedToSentry_pre")}
|
||||
{this.state.sentryEventId}
|
||||
{t("errorSplash.trackedToSentry_post")}
|
||||
{t("errorSplash.trackedToSentry", {
|
||||
eventId: this.state.sentryEventId,
|
||||
})}
|
||||
</div>
|
||||
<div className="ErrorSplash-paragraph">
|
||||
{t("errorSplash.openIssueMessage_pre")}
|
||||
<button onClick={() => this.createGithubIssue()}>
|
||||
{t("errorSplash.openIssueMessage_button")}
|
||||
</button>
|
||||
{t("errorSplash.openIssueMessage_post")}
|
||||
<Trans
|
||||
i18nKey="errorSplash.openIssueMessage"
|
||||
button={(el) => (
|
||||
<button onClick={() => this.createGithubIssue()}>{el}</button>
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="ErrorSplash-paragraph">
|
||||
<div className="ErrorSplash-details">
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Подсказка: пробвайте да приближите далечните елементи по-близко."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Среща грешка. Опитайте ",
|
||||
"headingMain_button": "презареждане на страницата.",
|
||||
"clearCanvasMessage": "Ако презареждането не работи, опитайте ",
|
||||
"clearCanvasMessage_button": "изчистване на платното.",
|
||||
"headingMain": "Среща грешка. Опитайте <button>презареждане на страницата.</button>",
|
||||
"clearCanvasMessage": "Ако презареждането не работи, опитайте <button>изчистване на платното.</button>",
|
||||
"clearCanvasCaveat": " Това ще доведе до загуба на работа ",
|
||||
"trackedToSentry_pre": "Грешката с идентификатор ",
|
||||
"trackedToSentry_post": " беше проследен в нашата система.",
|
||||
"openIssueMessage_pre": "Бяхме много предпазливи да не включите информацията за вашата сцена при грешката. Ако сцената ви не е частна, моля, помислете за последващи действия на нашата ",
|
||||
"openIssueMessage_button": "тракер за грешки.",
|
||||
"openIssueMessage_post": " Моля, включете информация по-долу, като я копирате и добавите в GitHub.",
|
||||
"trackedToSentry": "Грешката с идентификатор {{eventId}} беше проследен в нашата система.",
|
||||
"openIssueMessage": "Бяхме много предпазливи да не включите информацията за вашата сцена при грешката. Ако сцената ви не е частна, моля, помислете за последващи действия на нашата <button>тракер за грешки.</button> Моля, включете информация по-долу, като я копирате и добавите в GitHub.",
|
||||
"sceneContent": "Съдържание на сцената:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "বিশেষ্য: দূরতম উপাদানগুলোকে একটু কাছাকাছি নিয়ে যাওয়ার চেষ্টা করুন।"
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "একটি ত্রুটির সম্মুখীন হয়েছে৷ চেষ্টা করুন ",
|
||||
"headingMain_button": "পৃষ্ঠাটি পুনরায় লোড করার।",
|
||||
"clearCanvasMessage": "যদি পুনরায় লোড করা কাজ না করে, চেষ্টা করুন ",
|
||||
"clearCanvasMessage_button": "ক্যানভাস পরিষ্কার করার।",
|
||||
"headingMain": "একটি ত্রুটির সম্মুখীন হয়েছে৷ চেষ্টা করুন <button>পৃষ্ঠাটি পুনরায় লোড করার।</button>",
|
||||
"clearCanvasMessage": "যদি পুনরায় লোড করা কাজ না করে, চেষ্টা করুন <button>ক্যানভাস পরিষ্কার করার।</button>",
|
||||
"clearCanvasCaveat": " এর ফলে কাজের ক্ষতি হবে ",
|
||||
"trackedToSentry_pre": "ত্রুটি ",
|
||||
"trackedToSentry_post": " আমাদের সিস্টেমে ট্র্যাক করা হয়েছিল।",
|
||||
"openIssueMessage_pre": "আমরা ত্রুটিতে আপনার দৃশ্যের তথ্য অন্তর্ভুক্ত না করার জন্য খুব সতর্ক ছিলাম। আপনার দৃশ্য ব্যক্তিগত না হলে, আমাদের অনুসরণ করার কথা বিবেচনা করুন ",
|
||||
"openIssueMessage_button": "ত্রুটি ইতিবৃত্ত।",
|
||||
"openIssueMessage_post": " অনুগ্রহ করে GitHub ইস্যুতে অনুলিপি এবং পেস্ট করে নীচের তথ্য অন্তর্ভুক্ত করুন।",
|
||||
"trackedToSentry": "ত্রুটি {{eventId}} আমাদের সিস্টেমে ট্র্যাক করা হয়েছিল।",
|
||||
"openIssueMessage": "আমরা ত্রুটিতে আপনার দৃশ্যের তথ্য অন্তর্ভুক্ত না করার জন্য খুব সতর্ক ছিলাম। আপনার দৃশ্য ব্যক্তিগত না হলে, আমাদের অনুসরণ করার কথা বিবেচনা করুন <button>ত্রুটি ইতিবৃত্ত।</button> অনুগ্রহ করে GitHub ইস্যুতে অনুলিপি এবং পেস্ট করে নীচের তথ্য অন্তর্ভুক্ত করুন।",
|
||||
"sceneContent": "দৃশ্য বিষয়বস্তু:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Consell: proveu d’acostar una mica els elements més allunyats."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "S'ha produït un error. Proveu ",
|
||||
"headingMain_button": "recarregar la pàgina.",
|
||||
"clearCanvasMessage": "Si la recàrrega no funciona, proveu ",
|
||||
"clearCanvasMessage_button": "esborrar el llenç.",
|
||||
"headingMain": "S'ha produït un error. Proveu <button>recarregar la pàgina.</button>",
|
||||
"clearCanvasMessage": "Si la recàrrega no funciona, proveu <button>esborrar el llenç.</button>",
|
||||
"clearCanvasCaveat": " Això resultarà en la pèrdua de feina ",
|
||||
"trackedToSentry_pre": "L'error amb l'identificador ",
|
||||
"trackedToSentry_post": " s'ha rastrejat en el nostre sistema.",
|
||||
"openIssueMessage_pre": "Anàvem amb molta cura de no incloure la informació de la vostra escena en l'error. Si l'escena no és privada, podeu fer-ne el seguiment al nostre ",
|
||||
"openIssueMessage_button": "rastrejador d'errors.",
|
||||
"openIssueMessage_post": " Incloeu la informació a continuació copiant i enganxant a GitHub Issues.",
|
||||
"trackedToSentry": "L'error amb l'identificador {{eventId}} s'ha rastrejat en el nostre sistema.",
|
||||
"openIssueMessage": "Anàvem amb molta cura de no incloure la informació de la vostra escena en l'error. Si l'escena no és privada, podeu fer-ne el seguiment al nostre <button>rastrejador d'errors.</button> Incloeu la informació a continuació copiant i enganxant a GitHub Issues.",
|
||||
"sceneContent": "Contingut de l'escena:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Requerit",
|
||||
"website": "Introduïu una URL vàlida"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Envieu la vostra biblioteca perquè sigui inclosa al ",
|
||||
"link": "repositori públic",
|
||||
"post": "per tal que altres persones puguin fer-ne ús en els seus dibuixos."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "La biblioteca ha de ser aprovada manualment. Si us plau, llegiu les ",
|
||||
"link": "directrius",
|
||||
"post": " abans d'enviar-hi res. Necessitareu un compte de GitHub per a comunicar i fer-hi canvis si cal, però no és requisit imprescindible."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Quan l'envieu, accepteu que la biblioteca sigui publicada sota la ",
|
||||
"link": "llicència MIT, ",
|
||||
"post": "que, en resum, vol dir que qualsevol persona pot fer-ne ús sense restriccions."
|
||||
},
|
||||
"noteDescription": "Envieu la vostra biblioteca perquè sigui inclosa al <link>repositori públic</link>per tal que altres persones puguin fer-ne ús en els seus dibuixos.",
|
||||
"noteGuidelines": "La biblioteca ha de ser aprovada manualment. Si us plau, llegiu les <link>directrius</link> abans d'enviar-hi res. Necessitareu un compte de GitHub per a comunicar i fer-hi canvis si cal, però no és requisit imprescindible.",
|
||||
"noteLicense": "Quan l'envieu, accepteu que la biblioteca sigui publicada sota la <link>llicència MIT, </link>que, en resum, vol dir que qualsevol persona pot fer-ne ús sense restriccions.",
|
||||
"noteItems": "Cada element de la biblioteca ha de tenir el seu propi nom per tal que sigui filtrable. S'hi inclouran els elements següents:",
|
||||
"atleastOneLibItem": "Si us plau, seleccioneu si més no un element de la biblioteca per a començar",
|
||||
"republishWarning": "Nota: alguns dels elements seleccionats s'han marcat com a publicats/enviats. Només hauríeu de reenviar elements quan actualitzeu una biblioteca existent."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Biblioteca enviada",
|
||||
"content": "Gràcies, {{authorName}}. La vostra biblioteca ha estat enviada per a ser revisada. Podeu comprovar-ne l'estat",
|
||||
"link": "aquí"
|
||||
"content": "Gràcies, {{authorName}}. La vostra biblioteca ha estat enviada per a ser revisada. Podeu comprovar-ne l'estat<link>aquí</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Restableix la biblioteca",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": ""
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "",
|
||||
"headingMain_button": "",
|
||||
"headingMain": "",
|
||||
"clearCanvasMessage": "",
|
||||
"clearCanvasMessage_button": "",
|
||||
"clearCanvasCaveat": "",
|
||||
"trackedToSentry_pre": "Chyba identifikátoru ",
|
||||
"trackedToSentry_post": " byl zaznamenán v našem systému.",
|
||||
"openIssueMessage_pre": "",
|
||||
"openIssueMessage_button": "",
|
||||
"openIssueMessage_post": "",
|
||||
"trackedToSentry": "Chyba identifikátoru {{eventId}} byl zaznamenán v našem systému.",
|
||||
"openIssueMessage": "",
|
||||
"sceneContent": ""
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Povinné",
|
||||
"website": "Zadejte platnou URL adresu"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Odešlete svou knihovnu, pro zařazení do ",
|
||||
"link": "veřejného úložiště knihoven",
|
||||
"post": ", odkud ji budou moci při kreslení využít i ostatní uživatelé."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Knihovna musí být nejdříve ručně schválena. Přečtěte si prosím ",
|
||||
"link": "pokyny",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "Odešlete svou knihovnu, pro zařazení do <link>veřejného úložiště knihoven</link>, odkud ji budou moci při kreslení využít i ostatní uživatelé.",
|
||||
"noteGuidelines": "Knihovna musí být nejdříve ručně schválena. Přečtěte si prosím <link>pokyny</link>",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Knihovna byla odeslána",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": ""
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "",
|
||||
"headingMain_button": "",
|
||||
"headingMain": "",
|
||||
"clearCanvasMessage": "",
|
||||
"clearCanvasMessage_button": "",
|
||||
"clearCanvasCaveat": "",
|
||||
"trackedToSentry_pre": "",
|
||||
"trackedToSentry_post": "",
|
||||
"openIssueMessage_pre": "",
|
||||
"openIssueMessage_button": "",
|
||||
"openIssueMessage_post": " Kopiere og indsæt venligst oplysningerne nedenfor i et GitHub problem.",
|
||||
"trackedToSentry": "",
|
||||
"openIssueMessage": "<button></button> Kopiere og indsæt venligst oplysningerne nedenfor i et GitHub problem.",
|
||||
"sceneContent": "Scene indhold:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tipp: Schiebe die am weitesten entfernten Elemente ein wenig näher zusammen."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Es ist ein Fehler aufgetreten. Versuche ",
|
||||
"headingMain_button": "die Seite neu zu laden.",
|
||||
"clearCanvasMessage": "Wenn das Neuladen nicht funktioniert, versuche ",
|
||||
"clearCanvasMessage_button": "die Zeichenfläche zu löschen.",
|
||||
"headingMain": "Es ist ein Fehler aufgetreten. Versuche <button>die Seite neu zu laden.</button>",
|
||||
"clearCanvasMessage": "Wenn das Neuladen nicht funktioniert, versuche <button>die Zeichenfläche zu löschen.</button>",
|
||||
"clearCanvasCaveat": " Dies wird zum Verlust von Daten führen ",
|
||||
"trackedToSentry_pre": "Der Fehler mit der Kennung ",
|
||||
"trackedToSentry_post": " wurde in unserem System registriert.",
|
||||
"openIssueMessage_pre": "Wir waren sehr vorsichtig und haben deine Zeichnungsinformationen nicht in die Fehlerinformationen aufgenommen. Wenn deine Zeichnung nicht privat ist, unterstütze uns bitte über unseren ",
|
||||
"openIssueMessage_button": "Bug-Tracker.",
|
||||
"openIssueMessage_post": " Bitte teile die unten stehenden Informationen mit uns im GitHub Issue (Kopieren und Einfügen).",
|
||||
"trackedToSentry": "Der Fehler mit der Kennung {{eventId}} wurde in unserem System registriert.",
|
||||
"openIssueMessage": "Wir waren sehr vorsichtig und haben deine Zeichnungsinformationen nicht in die Fehlerinformationen aufgenommen. Wenn deine Zeichnung nicht privat ist, unterstütze uns bitte über unseren <button>Bug-Tracker.</button> Bitte teile die unten stehenden Informationen mit uns im GitHub Issue (Kopieren und Einfügen).",
|
||||
"sceneContent": "Zeichnungsinhalt:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Erforderlich",
|
||||
"website": "Gültige URL eingeben"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Sende deine Bibliothek ein, um in die ",
|
||||
"link": "öffentliche Bibliotheks-Repository aufgenommen zu werden",
|
||||
"post": "damit andere Nutzer sie in ihren Zeichnungen verwenden können."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Die Bibliothek muss zuerst manuell freigegeben werden. Bitte lies die ",
|
||||
"link": "Richtlinien",
|
||||
"post": " vor dem Absenden. Du benötigst ein GitHub-Konto, um zu kommunizieren und Änderungen vorzunehmen, falls erforderlich, aber es ist nicht unbedingt erforderlich."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Mit dem Absenden stimmst du zu, dass die Bibliothek unter der ",
|
||||
"link": "MIT-Lizenz, ",
|
||||
"post": "die zusammengefasst beinhaltet, dass jeder sie ohne Einschränkungen nutzen kann."
|
||||
},
|
||||
"noteDescription": "Sende deine Bibliothek ein, um in die <link>öffentliche Bibliotheks-Repository aufgenommen zu werden</link>damit andere Nutzer sie in ihren Zeichnungen verwenden können.",
|
||||
"noteGuidelines": "Die Bibliothek muss zuerst manuell freigegeben werden. Bitte lies die <link>Richtlinien</link> vor dem Absenden. Du benötigst ein GitHub-Konto, um zu kommunizieren und Änderungen vorzunehmen, falls erforderlich, aber es ist nicht unbedingt erforderlich.",
|
||||
"noteLicense": "Mit dem Absenden stimmst du zu, dass die Bibliothek unter der <link>MIT-Lizenz, </link>die zusammengefasst beinhaltet, dass jeder sie ohne Einschränkungen nutzen kann.",
|
||||
"noteItems": "Jedes Bibliothekselement muss einen eigenen Namen haben, damit es gefiltert werden kann. Die folgenden Bibliothekselemente werden hinzugefügt:",
|
||||
"atleastOneLibItem": "Bitte wähle mindestens ein Bibliothekselement aus, um zu beginnen",
|
||||
"republishWarning": "Hinweis: Einige der ausgewählten Elemente sind bereits als veröffentlicht/eingereicht markiert. Du solltest Elemente nur erneut einreichen, wenn Du eine existierende Bibliothek oder Einreichung aktualisierst."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliothek übermittelt",
|
||||
"content": "Vielen Dank {{authorName}}. Deine Bibliothek wurde zur Überprüfung eingereicht. Du kannst den Status verfolgen",
|
||||
"link": "hier"
|
||||
"content": "Vielen Dank {{authorName}}. Deine Bibliothek wurde zur Überprüfung eingereicht. Du kannst den Status verfolgen<link>hier</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Bibliothek zurücksetzen",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Συμβουλή: προσπαθήστε να μετακινήσετε τα πιο απομακρυσμένα στοιχεία λίγο πιο κοντά μαζί."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Συνέβη κάποιο σφάλμα. Προσπάθησε ",
|
||||
"headingMain_button": "φόρτωσε ξανά την σελίδα.",
|
||||
"clearCanvasMessage": "Εάν το παραπάνω δεν δουλέψει, προσπάθησε ",
|
||||
"clearCanvasMessage_button": "καθαρίσετε τον κανβά.",
|
||||
"headingMain": "Συνέβη κάποιο σφάλμα. Προσπάθησε <button>φόρτωσε ξανά την σελίδα.</button>",
|
||||
"clearCanvasMessage": "Εάν το παραπάνω δεν δουλέψει, προσπάθησε <button>καθαρίσετε τον κανβά.</button>",
|
||||
"clearCanvasCaveat": " Αυτό θα προκαλέσει απώλεια της δουλειάς σου ",
|
||||
"trackedToSentry_pre": "Το σφάλμα με αναγνωριστικό ",
|
||||
"trackedToSentry_post": " παρακολουθήθηκε στο σύστημά μας.",
|
||||
"openIssueMessage_pre": "Ήμασταν πολύ προσεκτικοί για να μην συμπεριλάβουμε τις πληροφορίες της σκηνής σου στο σφάλμα. Αν η σκηνή σου δεν είναι ιδιωτική, παρακαλώ σκέψου να ακολουθήσεις το δικό μας ",
|
||||
"openIssueMessage_button": "ανιχνευτής σφαλμάτων.",
|
||||
"openIssueMessage_post": " Παρακαλώ να συμπεριλάβετε τις παρακάτω πληροφορίες, αντιγράφοντας και επικολλώντας το ζήτημα στο GitHub.",
|
||||
"trackedToSentry": "Το σφάλμα με αναγνωριστικό {{eventId}} παρακολουθήθηκε στο σύστημά μας.",
|
||||
"openIssueMessage": "Ήμασταν πολύ προσεκτικοί για να μην συμπεριλάβουμε τις πληροφορίες της σκηνής σου στο σφάλμα. Αν η σκηνή σου δεν είναι ιδιωτική, παρακαλώ σκέψου να ακολουθήσεις το δικό μας <button>ανιχνευτής σφαλμάτων.</button> Παρακαλώ να συμπεριλάβετε τις παρακάτω πληροφορίες, αντιγράφοντας και επικολλώντας το ζήτημα στο GitHub.",
|
||||
"sceneContent": "Περιεχόμενο σκηνής:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Απαιτείται",
|
||||
"website": "Εισάγετε μια έγκυρη διεύθυνση URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Υποβάλετε τη βιβλιοθήκη σας για να συμπεριληφθεί στο ",
|
||||
"link": "δημόσιο αποθετήριο βιβλιοθήκης",
|
||||
"post": "ώστε να χρησιμοποιηθεί από άλλα άτομα στα σχέδιά τους."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Η βιβλιοθήκη πρέπει πρώτα να εγκριθεί χειροκίνητα. Παρακαλώ διαβάστε τους ",
|
||||
"link": "οδηγίες",
|
||||
"post": " πριν την υποβολή. Θα χρειαστείτε έναν λογαριασμό GitHub για την επικοινωνία και για να προβείτε σε αλλαγές εφ' όσον χρειαστεί, αλλά δεν είναι αυστηρή απαίτηση."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Με την υποβολή, συμφωνείτε ότι η βιβλιοθήκη θα δημοσιευθεί υπό την ",
|
||||
"link": "Άδεια MIT, ",
|
||||
"post": "που εν συντομία σημαίνει ότι ο καθένας μπορεί να τα χρησιμοποιήσει χωρίς περιορισμούς."
|
||||
},
|
||||
"noteDescription": "Υποβάλετε τη βιβλιοθήκη σας για να συμπεριληφθεί στο <link>δημόσιο αποθετήριο βιβλιοθήκης</link>ώστε να χρησιμοποιηθεί από άλλα άτομα στα σχέδιά τους.",
|
||||
"noteGuidelines": "Η βιβλιοθήκη πρέπει πρώτα να εγκριθεί χειροκίνητα. Παρακαλώ διαβάστε τους <link>οδηγίες</link> πριν την υποβολή. Θα χρειαστείτε έναν λογαριασμό GitHub για την επικοινωνία και για να προβείτε σε αλλαγές εφ' όσον χρειαστεί, αλλά δεν είναι αυστηρή απαίτηση.",
|
||||
"noteLicense": "Με την υποβολή, συμφωνείτε ότι η βιβλιοθήκη θα δημοσιευθεί υπό την <link>Άδεια MIT, </link>που εν συντομία σημαίνει ότι ο καθένας μπορεί να τα χρησιμοποιήσει χωρίς περιορισμούς.",
|
||||
"noteItems": "Κάθε αντικείμενο της βιβλιοθήκης πρέπει να έχει το δικό του όνομα ώστε να μπορεί να φιλτραριστεί. Θα συμπεριληφθούν τα ακόλουθα αντικείμενα βιβλιοθήκης:",
|
||||
"atleastOneLibItem": "Παρακαλώ επιλέξτε τουλάχιστον ένα αντικείμενο βιβλιοθήκης για να ξεκινήσετε",
|
||||
"republishWarning": "Σημείωση: μερικά από τα επιλεγμένα αντικέιμενα έχουν ήδη επισημανθεί ως δημοσιευμένα/υποβεβλημένα. Θα πρέπει να υποβάλετε αντικείμενα εκ νέου μόνο για να ενημερώσετε μία ήδη υπάρχουσα βιβλιοθήκη ή υποβολή."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Η βιβλιοθήκη υποβλήθηκε",
|
||||
"content": "Ευχαριστούμε {{authorName}}. Η βιβλιοθήκη σας έχει υποβληθεί για αξιολόγηση. Μπορείτε να παρακολουθείτε τη διαδικασία",
|
||||
"link": "εδώ"
|
||||
"content": "Ευχαριστούμε {{authorName}}. Η βιβλιοθήκη σας έχει υποβληθεί για αξιολόγηση. Μπορείτε να παρακολουθείτε τη διαδικασία<link>εδώ</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Καθαρισμός βιβλιοθήκης",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tip: try moving the farthest elements a bit closer together."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Encountered an error. Try ",
|
||||
"headingMain_button": "reloading the page.",
|
||||
"clearCanvasMessage": "If reloading doesn't work, try ",
|
||||
"clearCanvasMessage_button": "clearing the canvas.",
|
||||
"headingMain": "Encountered an error. Try <button>reloading the page</button>.",
|
||||
"clearCanvasMessage": "If reloading doesn't work, try <button>clearing the canvas</button>.",
|
||||
"clearCanvasCaveat": " This will result in loss of work ",
|
||||
"trackedToSentry_pre": "The error with identifier ",
|
||||
"trackedToSentry_post": " was tracked on our system.",
|
||||
"openIssueMessage_pre": "We were very cautious not to include your scene information on the error. If your scene is not private, please consider following up on our ",
|
||||
"openIssueMessage_button": "bug tracker.",
|
||||
"openIssueMessage_post": " Please include information below by copying and pasting into the GitHub issue.",
|
||||
"trackedToSentry": "The error with identifier {{eventId}} was tracked on our system.",
|
||||
"openIssueMessage": "We were very cautious not to include your scene information on the error. If your scene is not private, please consider following up on our <button>bug tracker</button>. Please include information below by copying and pasting into the GitHub issue.",
|
||||
"sceneContent": "Scene content:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Required",
|
||||
"website": "Enter a valid URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Submit your library to be included in the ",
|
||||
"link": "public library repository",
|
||||
"post": "for other people to use in their drawings."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "The library needs to be manually approved first. Please read the ",
|
||||
"link": "guidelines",
|
||||
"post": " before submitting. You will need a GitHub account to communicate and make changes if requested, but it is not strictly required."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "By submitting, you agree the library will be published under the ",
|
||||
"link": "MIT License, ",
|
||||
"post": "which in short means anyone can use them without restrictions."
|
||||
},
|
||||
"noteDescription": "Submit your library to be included in the <link>public library repository</link> for other people to use in their drawings.",
|
||||
"noteGuidelines": "The library needs to be manually approved first. Please read the <link>guidelines</link> before submitting. You will need a GitHub account to communicate and make changes if requested, but it is not strictly required.",
|
||||
"noteLicense": "By submitting, you agree the library will be published under the <link>MIT License</link>, which in short means anyone can use them without restrictions.",
|
||||
"noteItems": "Each library item must have its own name so it's filterable. The following library items will be included:",
|
||||
"atleastOneLibItem": "Please select at least one library item to get started",
|
||||
"republishWarning": "Note: some of the selected items are marked as already published/submitted. You should only resubmit items when updating an existing library or submission."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Library submitted",
|
||||
"content": "Thank you {{authorName}}. Your library has been submitted for review. You can track the status",
|
||||
"link": "here"
|
||||
"content": "Thank you {{authorName}}. Your library has been submitted for review. You can track the status <link>here</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Reset library",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Sugerencia: intenta acercar un poco más los elementos más lejanos."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Se encontró un error. Intente ",
|
||||
"headingMain_button": "recargando la página.",
|
||||
"clearCanvasMessage": "Si la recarga no funciona, intente ",
|
||||
"clearCanvasMessage_button": "limpiando el lienzo.",
|
||||
"headingMain": "Se encontró un error. Intente <button>recargando la página.</button>",
|
||||
"clearCanvasMessage": "Si la recarga no funciona, intente <button>limpiando el lienzo.</button>",
|
||||
"clearCanvasCaveat": " Esto provocará la pérdida de su trabajo ",
|
||||
"trackedToSentry_pre": "El error con el identificador ",
|
||||
"trackedToSentry_post": " fue rastreado en nuestro sistema.",
|
||||
"openIssueMessage_pre": "Fuimos muy cautelosos de no incluir la información de tu escena en el error. Si tu escena no es privada, por favor considera seguir nuestro ",
|
||||
"openIssueMessage_button": "rastreador de errores.",
|
||||
"openIssueMessage_post": " Por favor, incluya la siguiente información copiándola y pegándola en el issue de GitHub.",
|
||||
"trackedToSentry": "El error con el identificador {{eventId}} fue rastreado en nuestro sistema.",
|
||||
"openIssueMessage": "Fuimos muy cautelosos de no incluir la información de tu escena en el error. Si tu escena no es privada, por favor considera seguir nuestro <button>rastreador de errores.</button> Por favor, incluya la siguiente información copiándola y pegándola en el issue de GitHub.",
|
||||
"sceneContent": "Contenido de la escena:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Requerido",
|
||||
"website": "Introduce una URL válida"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Envía tu biblioteca para ser incluida en el ",
|
||||
"link": "repositorio de librería pública",
|
||||
"post": "para que otras personas utilicen en sus dibujos."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "La biblioteca debe ser aprobada manualmente primero. Por favor, lea la ",
|
||||
"link": "pautas",
|
||||
"post": " antes de enviar. Necesitará una cuenta de GitHub para comunicarse y hacer cambios si se solicita, pero no es estrictamente necesario."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Al enviar, usted acepta que la biblioteca se publicará bajo el ",
|
||||
"link": "Licencia MIT ",
|
||||
"post": "que en breve significa que cualquiera puede utilizarlos sin restricciones."
|
||||
},
|
||||
"noteDescription": "Envía tu biblioteca para ser incluida en el <link>repositorio de librería pública</link>para que otras personas utilicen en sus dibujos.",
|
||||
"noteGuidelines": "La biblioteca debe ser aprobada manualmente primero. Por favor, lea la <link>pautas</link> antes de enviar. Necesitará una cuenta de GitHub para comunicarse y hacer cambios si se solicita, pero no es estrictamente necesario.",
|
||||
"noteLicense": "Al enviar, usted acepta que la biblioteca se publicará bajo el <link>Licencia MIT </link>que en breve significa que cualquiera puede utilizarlos sin restricciones.",
|
||||
"noteItems": "Cada elemento de la biblioteca debe tener su propio nombre para que sea filtrable. Los siguientes elementos de la biblioteca serán incluidos:",
|
||||
"atleastOneLibItem": "Por favor, seleccione al menos un elemento de la biblioteca para empezar",
|
||||
"republishWarning": "Nota: algunos de los elementos seleccionados están marcados como ya publicados/enviados. Sólo debería volver a enviar elementos cuando se actualice una biblioteca o envío."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Biblioteca enviada",
|
||||
"content": "Gracias {{authorName}}. Su biblioteca ha sido enviada para ser revisada. Puede seguir el estado",
|
||||
"link": "aquí"
|
||||
"content": "Gracias {{authorName}}. Su biblioteca ha sido enviada para ser revisada. Puede seguir el estado<link>aquí</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Reiniciar biblioteca",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Aholkua: saiatu urrunen dauden elementuak pixka bat hurbiltzen."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Errore bat aurkitu da. Saiatu ",
|
||||
"headingMain_button": "orria birkargatzen.",
|
||||
"clearCanvasMessage": "Birkargatzea ez bada burutzen, saiatu ",
|
||||
"clearCanvasMessage_button": "oihala garbitzen.",
|
||||
"headingMain": "Errore bat aurkitu da. Saiatu <button>orria birkargatzen.</button>",
|
||||
"clearCanvasMessage": "Birkargatzea ez bada burutzen, saiatu <button>oihala garbitzen.</button>",
|
||||
"clearCanvasCaveat": " Honen ondorioz lana galduko da ",
|
||||
"trackedToSentry_pre": "Identifikatzailearen errorea ",
|
||||
"trackedToSentry_post": " gure sistemak behatu du.",
|
||||
"openIssueMessage_pre": "Oso kontuz ibili gara zure eszenaren informazioa errorean ez sartzeko. Zure eszena pribatua ez bada, kontuan hartu gure ",
|
||||
"openIssueMessage_button": "erroreen jarraipena egitea.",
|
||||
"openIssueMessage_post": " Sartu beheko informazioa kopiatu eta itsatsi bidez GitHub issue-n.",
|
||||
"trackedToSentry": "Identifikatzailearen errorea {{eventId}} gure sistemak behatu du.",
|
||||
"openIssueMessage": "Oso kontuz ibili gara zure eszenaren informazioa errorean ez sartzeko. Zure eszena pribatua ez bada, kontuan hartu gure <button>erroreen jarraipena egitea.</button> Sartu beheko informazioa kopiatu eta itsatsi bidez GitHub issue-n.",
|
||||
"sceneContent": "Eszenaren edukia:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Beharrezkoa",
|
||||
"website": "Sartu baliozko URL bat"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Bidali zure liburutegira sartu ahal izateko ",
|
||||
"link": "zure liburutegiko biltegian",
|
||||
"post": "beste jendeak bere marrazkietan erabili ahal izateko."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Liburutegia eskuz onartu behar da. Irakurri ",
|
||||
"link": "gidalerroak",
|
||||
"post": " bidali aurretik. GitHub kontu bat edukitzea komeni da komunikatzeko eta aldaketak egin ahal izateko, baina ez da guztiz beharrezkoa."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Bidaltzen baduzu, onartzen duzu liburutegia ",
|
||||
"link": "MIT lizentziarekin argitaratuko dela, ",
|
||||
"post": "zeinak, laburbilduz, esan nahi du edozeinek erabiltzen ahal duela murrizketarik gabe."
|
||||
},
|
||||
"noteDescription": "Bidali zure liburutegira sartu ahal izateko <link>zure liburutegiko biltegian</link>beste jendeak bere marrazkietan erabili ahal izateko.",
|
||||
"noteGuidelines": "Liburutegia eskuz onartu behar da. Irakurri <link>gidalerroak</link> bidali aurretik. GitHub kontu bat edukitzea komeni da komunikatzeko eta aldaketak egin ahal izateko, baina ez da guztiz beharrezkoa.",
|
||||
"noteLicense": "Bidaltzen baduzu, onartzen duzu liburutegia <link>MIT lizentziarekin argitaratuko dela, </link>zeinak, laburbilduz, esan nahi du edozeinek erabiltzen ahal duela murrizketarik gabe.",
|
||||
"noteItems": "Liburutegiko elementu bakoitzak bere izena eduki behar du iragazi ahal izateko. Liburutegiko hurrengo elementuak barne daude:",
|
||||
"atleastOneLibItem": "Hautatu gutxienez liburutegiko elementu bat gutxienez hasi ahal izateko",
|
||||
"republishWarning": "Oharra: hautatutako elementu batzuk dagoeneko argitaratuta/bidalita bezala markatuta daude. Elementuak berriro bidali behar dituzu lehendik dagoen liburutegi edo bidalketa eguneratzen duzunean."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Liburutegia bidali da",
|
||||
"content": "Eskerrik asko {{authorName}}. Zure liburutegia bidali da berrikustera. Jarraitu dezakezu haren egoera",
|
||||
"link": "hemen"
|
||||
"content": "Eskerrik asko {{authorName}}. Zure liburutegia bidali da berrikustera. Jarraitu dezakezu haren egoera<link>hemen</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Leheneratu liburutegia",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Vinkki: yritä siirtää kaukaisimpia elementtejä hieman lähemmäs toisiaan."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Tapahtui virhe. Yritä ",
|
||||
"headingMain_button": "sivun lataamista uudelleen.",
|
||||
"clearCanvasMessage": "Mikäli sivun lataaminen uudelleen ei auta, yritä ",
|
||||
"clearCanvasMessage_button": "tyhjentää piirtoalue.",
|
||||
"headingMain": "Tapahtui virhe. Yritä <button>sivun lataamista uudelleen.</button>",
|
||||
"clearCanvasMessage": "Mikäli sivun lataaminen uudelleen ei auta, yritä <button>tyhjentää piirtoalue.</button>",
|
||||
"clearCanvasCaveat": " Tämä johtaa työn menetykseen ",
|
||||
"trackedToSentry_pre": "Virhe tunnisteella ",
|
||||
"trackedToSentry_post": " tallennettiin järjestelmäämme.",
|
||||
"openIssueMessage_pre": "Olimme varovaisia emmekä sisällyttäneet tietoa piirroksestasi virheeseen. Mikäli piirroksesi ei ole yksityinen, harkitsethan kertovasi meille ",
|
||||
"openIssueMessage_button": "virheenseurantajärjestelmässämme.",
|
||||
"openIssueMessage_post": " Sisällytä alla olevat tiedot kopioimalla ne GitHub-ongelmaan.",
|
||||
"trackedToSentry": "Virhe tunnisteella {{eventId}} tallennettiin järjestelmäämme.",
|
||||
"openIssueMessage": "Olimme varovaisia emmekä sisällyttäneet tietoa piirroksestasi virheeseen. Mikäli piirroksesi ei ole yksityinen, harkitsethan kertovasi meille <button>virheenseurantajärjestelmässämme.</button> Sisällytä alla olevat tiedot kopioimalla ne GitHub-ongelmaan.",
|
||||
"sceneContent": "Piirroksen tiedot:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Pakollinen",
|
||||
"website": "Syötä oikeamuotoinen URL-osoite"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Lähetä kirjastosi, jotta se voidaan sisällyttää ",
|
||||
"link": "julkisessa kirjastolistauksessa",
|
||||
"post": "muiden käyttöön omissa piirrustuksissaan."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Kirjasto on ensin hyväksyttävä manuaalisesti. Ole hyvä ja lue ",
|
||||
"link": "ohjeet",
|
||||
"post": " ennen lähettämistä. Tarvitset GitHub-tilin, jotta voit viestiä ja tehdä muutoksia pyydettäessä, mutta se ei ole ehdottoman välttämätöntä."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Lähettämällä hyväksyt että kirjasto julkaistaan ",
|
||||
"link": "MIT-lisenssin ",
|
||||
"post": "alla, mikä lyhyesti antaa muiden käyttää sitä ilman rajoituksia."
|
||||
},
|
||||
"noteDescription": "Lähetä kirjastosi, jotta se voidaan sisällyttää <link>julkisessa kirjastolistauksessa</link>muiden käyttöön omissa piirrustuksissaan.",
|
||||
"noteGuidelines": "Kirjasto on ensin hyväksyttävä manuaalisesti. Ole hyvä ja lue <link>ohjeet</link> ennen lähettämistä. Tarvitset GitHub-tilin, jotta voit viestiä ja tehdä muutoksia pyydettäessä, mutta se ei ole ehdottoman välttämätöntä.",
|
||||
"noteLicense": "Lähettämällä hyväksyt että kirjasto julkaistaan <link>MIT-lisenssin </link>alla, mikä lyhyesti antaa muiden käyttää sitä ilman rajoituksia.",
|
||||
"noteItems": "Jokaisella kirjaston kohteella on oltava oma nimensä suodatusta varten. Seuraavat kirjaston kohteet sisältyvät:",
|
||||
"atleastOneLibItem": "Valitse vähintään yksi kirjaston kohde aloittaaksesi",
|
||||
"republishWarning": "Huom! Osa valituista kohteista on merkitty jo julkaistu/lähetetyiksi. Lähetä kohteita uudelleen vain päivitettäessä olemassa olevaa kirjastoa tai ehdotusta."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Kirjasto lähetetty",
|
||||
"content": "Kiitos {{authorName}}. Kirjastosi on lähetetty tarkistettavaksi. Voit seurata sen tilaa",
|
||||
"link": "täällä"
|
||||
"content": "Kiitos {{authorName}}. Kirjastosi on lähetetty tarkistettavaksi. Voit seurata sen tilaa<link>täällä</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Tyhjennä kirjasto",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Astuce : essayez de rapprocher un peu les éléments les plus éloignés."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Une erreur est survenue. Essayez ",
|
||||
"headingMain_button": "de recharger la page.",
|
||||
"clearCanvasMessage": "Si le rechargement ne résout pas l'erreur, essayez ",
|
||||
"clearCanvasMessage_button": "effacement du canevas.",
|
||||
"headingMain": "Une erreur est survenue. Essayez <button>de recharger la page.</button>",
|
||||
"clearCanvasMessage": "Si le rechargement ne résout pas l'erreur, essayez <button>effacement du canevas.</button>",
|
||||
"clearCanvasCaveat": " Cela entraînera une perte du travail ",
|
||||
"trackedToSentry_pre": "L'erreur avec l'identifiant ",
|
||||
"trackedToSentry_post": " a été enregistrée dans notre système.",
|
||||
"openIssueMessage_pre": "Nous avons fait très attention à ne pas inclure les informations de votre scène dans l'erreur. Si votre scène n'est pas privée, veuillez envisager de poursuivre sur notre ",
|
||||
"openIssueMessage_button": "outil de suivi des bugs.",
|
||||
"openIssueMessage_post": " Veuillez inclure les informations ci-dessous en les copiant-collant dans le ticket GitHub.",
|
||||
"trackedToSentry": "L'erreur avec l'identifiant {{eventId}} a été enregistrée dans notre système.",
|
||||
"openIssueMessage": "Nous avons fait très attention à ne pas inclure les informations de votre scène dans l'erreur. Si votre scène n'est pas privée, veuillez envisager de poursuivre sur notre <button>outil de suivi des bugs.</button> Veuillez inclure les informations ci-dessous en les copiant-collant dans le ticket GitHub.",
|
||||
"sceneContent": "Contenu de la scène :"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Requis",
|
||||
"website": "Entrer une URL valide"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Soumets ta bibliothèque pour l'inclure au ",
|
||||
"link": "dépôt de bibliothèque publique",
|
||||
"post": "pour permettre son utilisation par autrui dans leurs dessins."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "La bibliothèque doit d'abord être approuvée manuellement. Veuillez lire les ",
|
||||
"link": "lignes directrices",
|
||||
"post": " avant de la soumettre. Vous aurez besoin d'un compte GitHub pour communiquer et apporter des modifications si demandé, mais ce n'est pas obligatoire."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "En soumettant, vous acceptez que la bibliothèque soit publiée sous la ",
|
||||
"link": "Licence MIT, ",
|
||||
"post": "ce qui en gros signifie que tout le monde peut l'utiliser sans restrictions."
|
||||
},
|
||||
"noteDescription": "Soumets ta bibliothèque pour l'inclure au <link>dépôt de bibliothèque publique</link>pour permettre son utilisation par autrui dans leurs dessins.",
|
||||
"noteGuidelines": "La bibliothèque doit d'abord être approuvée manuellement. Veuillez lire les <link>lignes directrices</link> avant de la soumettre. Vous aurez besoin d'un compte GitHub pour communiquer et apporter des modifications si demandé, mais ce n'est pas obligatoire.",
|
||||
"noteLicense": "En soumettant, vous acceptez que la bibliothèque soit publiée sous la <link>Licence MIT, </link>ce qui en gros signifie que tout le monde peut l'utiliser sans restrictions.",
|
||||
"noteItems": "Chaque élément de la bibliothèque doit avoir son propre nom afin qu'il soit filtrable. Les éléments de bibliothèque suivants seront inclus :",
|
||||
"atleastOneLibItem": "Veuillez sélectionner au moins un élément de bibliothèque pour commencer",
|
||||
"republishWarning": "Remarque : certains des éléments sélectionnés sont marqués comme étant déjà publiés/soumis. Vous devez uniquement resoumettre des éléments lors de la mise à jour d'une bibliothèque ou d'une soumission existante."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliothèque soumise",
|
||||
"content": "Merci {{authorName}}. Votre bibliothèque a été soumise pour examen. Vous pouvez suivre le statut",
|
||||
"link": "ici"
|
||||
"content": "Merci {{authorName}}. Votre bibliothèque a été soumise pour examen. Vous pouvez suivre le statut<link>ici</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Réinitialiser la bibliothèque",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Consello: Probe a acercar un pouco os elementos máis afastados."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Atopouse un erro. Probe ",
|
||||
"headingMain_button": "recargando a páxina.",
|
||||
"clearCanvasMessage": "Se recargar non funcionou, probe ",
|
||||
"clearCanvasMessage_button": "limpando o lenzo.",
|
||||
"headingMain": "Atopouse un erro. Probe <button>recargando a páxina.</button>",
|
||||
"clearCanvasMessage": "Se recargar non funcionou, probe <button>limpando o lenzo.</button>",
|
||||
"clearCanvasCaveat": " Isto resultará nunha perda do seu traballo ",
|
||||
"trackedToSentry_pre": "O erro con identificador ",
|
||||
"trackedToSentry_post": " foi rastrexado no noso sistema.",
|
||||
"openIssueMessage_pre": "Fomos moi cautelosos de non incluír a información da súa escena no erro. Se a súa escena non é privada, por favor, considere o seguimento do noso ",
|
||||
"openIssueMessage_button": "rastrexador de erros.",
|
||||
"openIssueMessage_post": " Por favor inclúa a seguinte información copiándoa e pegándoa na issue de Github.",
|
||||
"trackedToSentry": "O erro con identificador {{eventId}} foi rastrexado no noso sistema.",
|
||||
"openIssueMessage": "Fomos moi cautelosos de non incluír a información da súa escena no erro. Se a súa escena non é privada, por favor, considere o seguimento do noso <button>rastrexador de erros.</button> Por favor inclúa a seguinte información copiándoa e pegándoa na issue de Github.",
|
||||
"sceneContent": "Contido da escena:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Obrigatorio",
|
||||
"website": "Introduza unha URL válida"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Envíe a súa biblioteca para que sexa incluída no ",
|
||||
"link": "repositorio público de bibliotecas",
|
||||
"post": "para que outra xente a poida usar nos seus debuxos."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "A biblioteca necesita ser aprobada manualmente primeiro. Por favor, lea as ",
|
||||
"link": "normas",
|
||||
"post": " antes de ser enviado. Necesitarás unha conta de GitHub para comunicarte ou facer cambios se se solicitan, pero non é estritamente necesario."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Ao enviar, estás de acordo con que a biblioteca sexa publicada baixo a ",
|
||||
"link": "Licenza MIT, ",
|
||||
"post": "o cal significa que, en resumo, calquera pode usalo sen restricións."
|
||||
},
|
||||
"noteDescription": "Envíe a súa biblioteca para que sexa incluída no <link>repositorio público de bibliotecas</link>para que outra xente a poida usar nos seus debuxos.",
|
||||
"noteGuidelines": "A biblioteca necesita ser aprobada manualmente primeiro. Por favor, lea as <link>normas</link> antes de ser enviado. Necesitarás unha conta de GitHub para comunicarte ou facer cambios se se solicitan, pero non é estritamente necesario.",
|
||||
"noteLicense": "Ao enviar, estás de acordo con que a biblioteca sexa publicada baixo a <link>Licenza MIT, </link>o cal significa que, en resumo, calquera pode usalo sen restricións.",
|
||||
"noteItems": "Cada elemento da biblioteca debe ter o seu nome propio para que se poida filtrar. Os seguintes elementos da biblioteca serán incluídos:",
|
||||
"atleastOneLibItem": "Por favor seleccione polo menos un elemento da biblioteca para comezar",
|
||||
"republishWarning": "Nota: algúns dos elementos seleccionados están marcados como xa publicados/enviados. Só deberías reenviar elementos cando se actualice unha biblioteca ou envío."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Biblioteca enviada",
|
||||
"content": "Grazas {{authorName}}. A súa biblioteca foi enviada para ser revisada. Pode seguir o estado",
|
||||
"link": "aquí"
|
||||
"content": "Grazas {{authorName}}. A súa biblioteca foi enviada para ser revisada. Pode seguir o estado<link>aquí</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Restablecer biblioteca",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "कैनवास बहुत बड़ा टिप"
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "एक त्रुटि का सामना करना पड़ा। प्रयत्न ",
|
||||
"headingMain_button": "इस पृष्ठ को पुनः लोड करें",
|
||||
"clearCanvasMessage": "यदि पुनः लोड करना काम नहीं करता है, तो प्रयास करें ",
|
||||
"clearCanvasMessage_button": "कैनवास साफ करना।",
|
||||
"headingMain": "एक त्रुटि का सामना करना पड़ा। प्रयत्न <button>इस पृष्ठ को पुनः लोड करें</button>",
|
||||
"clearCanvasMessage": "यदि पुनः लोड करना काम नहीं करता है, तो प्रयास करें <button>कैनवास साफ करना।</button>",
|
||||
"clearCanvasCaveat": " इससे काम का नुकसान होगा ",
|
||||
"trackedToSentry_pre": "पहचानकर्ता के साथ त्रुटि ",
|
||||
"trackedToSentry_post": " हमारे सिस्टम पर नज़र रखी गई थी।",
|
||||
"openIssueMessage_pre": "हम बहुत सतर्क थे कि त्रुटि पर आपकी दृश्य जानकारी शामिल न करें। यदि आपका दृश्य निजी नहीं है, तो कृपया हमारे बारे में विचार करें ",
|
||||
"openIssueMessage_button": "बग ट्रैकर",
|
||||
"openIssueMessage_post": " कृपया GitHub मुद्दे को कॉपी और पेस्ट करके नीचे दी गई जानकारी शामिल करें।",
|
||||
"trackedToSentry": "पहचानकर्ता के साथ त्रुटि {{eventId}} हमारे सिस्टम पर नज़र रखी गई थी।",
|
||||
"openIssueMessage": "हम बहुत सतर्क थे कि त्रुटि पर आपकी दृश्य जानकारी शामिल न करें। यदि आपका दृश्य निजी नहीं है, तो कृपया हमारे बारे में विचार करें <button>बग ट्रैकर</button> कृपया GitHub मुद्दे को कॉपी और पेस्ट करके नीचे दी गई जानकारी शामिल करें।",
|
||||
"sceneContent": "दृश्य सामग्री:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": "मान्य URL प्रविष्ट करें"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "संग्रह सम्मिलित करने हेतु प्रस्तुत करें ",
|
||||
"link": "सार्वजनिक संग्रहालय",
|
||||
"post": "अन्य वक्तियों को उनके चित्रकारी में उपयोग के लिये"
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "संग्रह को पहले स्वीकृति आवश्यक कृपया यह पढ़ें ",
|
||||
"link": "दिशा-निर्देश",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "संग्रह सम्मिलित करने हेतु प्रस्तुत करें <link>सार्वजनिक संग्रहालय</link>अन्य वक्तियों को उनके चित्रकारी में उपयोग के लिये",
|
||||
"noteGuidelines": "संग्रह को पहले स्वीकृति आवश्यक कृपया यह पढ़ें <link>दिशा-निर्देश</link>",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": "टिप्पणी: कुछ चुने हुवे आइटम पहले ही प्रकाशित/प्रस्तुत किए जा चुके हैं। किसी प्रकाशित संग्रह को अद्यतन करते समय या पहले से प्रस्तुत आइटम को पुन्हा प्रस्तुत करते समय, आप बस उसे केवल अद्यतन करें ।"
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tipp: próbáld meg a legtávolabbi elemeket közelebb hozni egy máshoz."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Hiba történt. Próbáld ",
|
||||
"headingMain_button": "újratölteni az oldalt.",
|
||||
"clearCanvasMessage": "Ha az újratöltés nem működik, próbáld ",
|
||||
"clearCanvasMessage_button": "letörölni a vászont.",
|
||||
"headingMain": "Hiba történt. Próbáld <button>újratölteni az oldalt.</button>",
|
||||
"clearCanvasMessage": "Ha az újratöltés nem működik, próbáld <button>letörölni a vászont.</button>",
|
||||
"clearCanvasCaveat": " Ezzel az eddigi munka elveszik ",
|
||||
"trackedToSentry_pre": "A hibakód azonosítóval ",
|
||||
"trackedToSentry_post": " nyomon van követve a rendszerünkben.",
|
||||
"openIssueMessage_pre": "Vigyáztunk arra, hogy a jelenthez tartozó információ ne jelenjen meg a hibaüzenetben. Ha a jeleneted nem bizalmas, kérjük add hozzá a ",
|
||||
"openIssueMessage_button": "hibakövető rendszerünkhöz.",
|
||||
"openIssueMessage_post": " Kérjük, másolja be az alábbi információkat a GitHub problémába.",
|
||||
"trackedToSentry": "A hibakód azonosítóval {{eventId}} nyomon van követve a rendszerünkben.",
|
||||
"openIssueMessage": "Vigyáztunk arra, hogy a jelenthez tartozó információ ne jelenjen meg a hibaüzenetben. Ha a jeleneted nem bizalmas, kérjük add hozzá a <button>hibakövető rendszerünkhöz.</button> Kérjük, másolja be az alábbi információkat a GitHub problémába.",
|
||||
"sceneContent": "Jelenet tartalma:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Kötelező",
|
||||
"website": "Adj meg egy érvényes URL-t"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Küld be könyvtáradat, hogy bekerüljön a ",
|
||||
"link": "nyilvános könyvtár tárolóba",
|
||||
"post": "hogy mások is felhasználhassák a rajzaikban."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "A könyvtárat először manuálisan kell jóváhagyni. Kérjük, olvassa el a ",
|
||||
"link": "segédletet",
|
||||
"post": " benyújtása előtt. Szüksége lesz egy GitHub-fiókra a kommunikációhoz és a módosításokhoz, ha kérik, de ez nem feltétlenül szükséges."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "A beküldéssel elfogadja, hogy a könyvtár a következő alatt kerül közzétételre ",
|
||||
"link": "MIT Licensz ",
|
||||
"post": "ami röviden azt jelenti, hogy bárki korlátozás nélkül használhatja őket."
|
||||
},
|
||||
"noteDescription": "Küld be könyvtáradat, hogy bekerüljön a <link>nyilvános könyvtár tárolóba</link>hogy mások is felhasználhassák a rajzaikban.",
|
||||
"noteGuidelines": "A könyvtárat először manuálisan kell jóváhagyni. Kérjük, olvassa el a <link>segédletet</link> benyújtása előtt. Szüksége lesz egy GitHub-fiókra a kommunikációhoz és a módosításokhoz, ha kérik, de ez nem feltétlenül szükséges.",
|
||||
"noteLicense": "A beküldéssel elfogadja, hogy a könyvtár a következő alatt kerül közzétételre <link>MIT Licensz </link>ami röviden azt jelenti, hogy bárki korlátozás nélkül használhatja őket.",
|
||||
"noteItems": "Minden könyvtárelemnek saját nevével kell rendelkeznie, hogy szűrhető legyen. A következő könyvtári tételek kerülnek bele:",
|
||||
"atleastOneLibItem": "A kezdéshez válassz ki legalább egy könyvtári elemet",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "A könyvtár beküldve",
|
||||
"content": "Köszönjük {{authorName}}. Könyvtáradat elküldtük felülvizsgálatra. Nyomon követheted az állapotot",
|
||||
"link": "itt"
|
||||
"content": "Köszönjük {{authorName}}. Könyvtáradat elküldtük felülvizsgálatra. Nyomon követheted az állapotot<link>itt</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Könyvtár alaphelyzetbe állítása",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tip: coba pindahkan elemen-terjauh lebih dekat bersama."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Mengalami sebuah kesalahan. Cobalah ",
|
||||
"headingMain_button": "muat ulang halaman.",
|
||||
"clearCanvasMessage": "Jika memuat ulang tidak bekerja, cobalah ",
|
||||
"clearCanvasMessage_button": "bersihkan canvas.",
|
||||
"headingMain": "Mengalami sebuah kesalahan. Cobalah <button>muat ulang halaman.</button>",
|
||||
"clearCanvasMessage": "Jika memuat ulang tidak bekerja, cobalah <button>bersihkan canvas.</button>",
|
||||
"clearCanvasCaveat": " Ini akan menghasilkan hilangnya pekerjaan ",
|
||||
"trackedToSentry_pre": "Kesalahan dengan pengidentifikasi ",
|
||||
"trackedToSentry_post": " dilacak di sistem kami.",
|
||||
"openIssueMessage_pre": "Kami sangat berhati-hati untuk tidak menyertakan informasi pemandangan Anda pada kesalahan. Jika pemandangan Anda tidak bersifat pribadi, mohon pertimbangkan menindak lanjut pada ",
|
||||
"openIssueMessage_button": "pelacak bug.",
|
||||
"openIssueMessage_post": " Mohon sertakan informasi dibawah ini dengan menyalin dan menempelkan di Github issue.",
|
||||
"trackedToSentry": "Kesalahan dengan pengidentifikasi {{eventId}} dilacak di sistem kami.",
|
||||
"openIssueMessage": "Kami sangat berhati-hati untuk tidak menyertakan informasi pemandangan Anda pada kesalahan. Jika pemandangan Anda tidak bersifat pribadi, mohon pertimbangkan menindak lanjut pada <button>pelacak bug.</button> Mohon sertakan informasi dibawah ini dengan menyalin dan menempelkan di Github issue.",
|
||||
"sceneContent": "Pemandangan konten:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Dibutuhkan",
|
||||
"website": "Masukkan URL valid"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Kirimkan pustaka Anda untuk disertakan di ",
|
||||
"link": "repositori pustaka publik",
|
||||
"post": "untuk orang lain menggunakannya dalam gambar mereka."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Pustaka butuh disetujui secara manual terlebih dahulu. Baca ",
|
||||
"link": "pedoman",
|
||||
"post": " sebelum mengirim. Anda butuh akun GitHub untuk berkomunikasi dan membuat perubahan jika dibutuhkan, tetapi tidak wajib dibutukan."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Dengan mengkirimkannya, Anda setuju pustaka akan diterbitkan dibawah ",
|
||||
"link": "Lisensi MIT, ",
|
||||
"post": "yang artinya siapa pun dapat menggunakannya tanpa batasan."
|
||||
},
|
||||
"noteDescription": "Kirimkan pustaka Anda untuk disertakan di <link>repositori pustaka publik</link>untuk orang lain menggunakannya dalam gambar mereka.",
|
||||
"noteGuidelines": "Pustaka butuh disetujui secara manual terlebih dahulu. Baca <link>pedoman</link> sebelum mengirim. Anda butuh akun GitHub untuk berkomunikasi dan membuat perubahan jika dibutuhkan, tetapi tidak wajib dibutukan.",
|
||||
"noteLicense": "Dengan mengkirimkannya, Anda setuju pustaka akan diterbitkan dibawah <link>Lisensi MIT, </link>yang artinya siapa pun dapat menggunakannya tanpa batasan.",
|
||||
"noteItems": "Setiap item pustaka harus memiliki nama, sehingga bisa disortir. Item pustaka di bawah ini akan dimasukan:",
|
||||
"atleastOneLibItem": "Pilih setidaknya satu item pustaka untuk mulai",
|
||||
"republishWarning": "Catatan: beberapa item yang dipilih telah ditandai sebagai sudah dipublikasikan/diserahkan. Anda hanya dapat menyerahkan kembali item-item ketika memperbarui pustaka atau pengumpulan."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Pustaka telah dikirm",
|
||||
"content": "Terima kasih {{authorName}}. pustaka Anda telah diserahkan untuk ditinjau ulang. Anda dapat cek statusnya",
|
||||
"link": "di sini"
|
||||
"content": "Terima kasih {{authorName}}. pustaka Anda telah diserahkan untuk ditinjau ulang. Anda dapat cek statusnya<link>di sini</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Reset pustaka",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Suggerimento: prova a spostare gli elementi più lontani più vicini tra loro."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Si è verificato un errore. Provare ",
|
||||
"headingMain_button": "ricaricando la pagina.",
|
||||
"clearCanvasMessage": "Se ricaricare non funziona, prova ",
|
||||
"clearCanvasMessage_button": "pulire la tela.",
|
||||
"headingMain": "Si è verificato un errore. Provare <button>ricaricando la pagina.</button>",
|
||||
"clearCanvasMessage": "Se ricaricare non funziona, prova <button>pulire la tela.</button>",
|
||||
"clearCanvasCaveat": " Questo risulterà nella perdita del lavoro ",
|
||||
"trackedToSentry_pre": "L'errore con identificativo ",
|
||||
"trackedToSentry_post": " è stato tracciato nel nostro sistema.",
|
||||
"openIssueMessage_pre": "Siamo stati molto cauti nel non includere informazioni della scena nell'errore. Se la tua scena non è privata, ti preghiamo di considerare la sua inclusione nel nostro ",
|
||||
"openIssueMessage_button": "bug tracker.",
|
||||
"openIssueMessage_post": " Per favore includi le informazioni riportate qui sotto copiandole e incollandole nella issue di GitHub.",
|
||||
"trackedToSentry": "L'errore con identificativo {{eventId}} è stato tracciato nel nostro sistema.",
|
||||
"openIssueMessage": "Siamo stati molto cauti nel non includere informazioni della scena nell'errore. Se la tua scena non è privata, ti preghiamo di considerare la sua inclusione nel nostro <button>bug tracker.</button> Per favore includi le informazioni riportate qui sotto copiandole e incollandole nella issue di GitHub.",
|
||||
"sceneContent": "Contenuto della scena:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Obbligatorio",
|
||||
"website": "Inserisci un URL valido"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Invia la tua libreria da includere nella ",
|
||||
"link": "repository della libreria pubblica",
|
||||
"post": "perché sia usata da altri nei loro disegni."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "La libreria dev'esser prima approvata manualmente. Sei pregato di leggere le ",
|
||||
"link": "linee guida",
|
||||
"post": " prima di inviarla. Necessiterai di un profilo di GitHub per comunicare ed effettuare modifiche se richiesto, ma non è strettamente necessario."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Inviando, acconsenti che la libreria sarà pubblicata sotto la ",
|
||||
"link": "Licenza MIT, ",
|
||||
"post": "che in breve significa che chiunque possa usarla senza restrizioni."
|
||||
},
|
||||
"noteDescription": "Invia la tua libreria da includere nella <link>repository della libreria pubblica</link>perché sia usata da altri nei loro disegni.",
|
||||
"noteGuidelines": "La libreria dev'esser prima approvata manualmente. Sei pregato di leggere le <link>linee guida</link> prima di inviarla. Necessiterai di un profilo di GitHub per comunicare ed effettuare modifiche se richiesto, ma non è strettamente necessario.",
|
||||
"noteLicense": "Inviando, acconsenti che la libreria sarà pubblicata sotto la <link>Licenza MIT, </link>che in breve significa che chiunque possa usarla senza restrizioni.",
|
||||
"noteItems": "Ogni elemento della libreria deve avere il proprio nome, così che sia filtrabile. Gli elementi della seguente libreria saranno inclusi:",
|
||||
"atleastOneLibItem": "Sei pregato di selezionare almeno un elemento della libreria per iniziare",
|
||||
"republishWarning": "Nota: alcuni degli elementi selezionati sono contrassegnati come già pubblicati/presentati. È necessario reinviare gli elementi solo quando si aggiorna una libreria o una presentazione esistente."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Libreria inviata",
|
||||
"content": "Grazie {{authorName}}. La tua libreria è stata inviata per la revisione. Puoi monitorarne lo stato",
|
||||
"link": "qui"
|
||||
"content": "Grazie {{authorName}}. La tua libreria è stata inviata per la revisione. Puoi monitorarne lo stato<link>qui</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Ripristina la libreria",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "ヒント: 最も遠い要素をもう少し近づけてみてください。"
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "エラーが発生しました。もう一度やり直してください。 ",
|
||||
"headingMain_button": "ページを再読み込みする。",
|
||||
"clearCanvasMessage": "再読み込みがうまくいかない場合は、 ",
|
||||
"clearCanvasMessage_button": "キャンバスを消去しています",
|
||||
"headingMain": "エラーが発生しました。もう一度やり直してください。 <button>ページを再読み込みする。</button>",
|
||||
"clearCanvasMessage": "再読み込みがうまくいかない場合は、 <button>キャンバスを消去しています</button>",
|
||||
"clearCanvasCaveat": " これにより作業が失われます ",
|
||||
"trackedToSentry_pre": "識別子のエラー ",
|
||||
"trackedToSentry_post": " が我々のシステムで追跡されました。",
|
||||
"openIssueMessage_pre": "エラーに関するシーン情報を含めないように非常に慎重に設定しました。もしあなたのシーンがプライベートでない場合は、私たちのフォローアップを検討してください。 ",
|
||||
"openIssueMessage_button": "バグ報告",
|
||||
"openIssueMessage_post": " GitHub のIssueに以下の情報をコピーして貼り付けてください。",
|
||||
"trackedToSentry": "識別子のエラー {{eventId}} が我々のシステムで追跡されました。",
|
||||
"openIssueMessage": "エラーに関するシーン情報を含めないように非常に慎重に設定しました。もしあなたのシーンがプライベートでない場合は、私たちのフォローアップを検討してください。 <button>バグ報告</button> GitHub のIssueに以下の情報をコピーして貼り付けてください。",
|
||||
"sceneContent": "シーンの内容:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "必須項目",
|
||||
"website": "有効な URL を入力してください"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "以下に含めるライブラリを提出してください ",
|
||||
"link": "公開ライブラリのリポジトリ",
|
||||
"post": "他の人が作図に使えるようにするためです"
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "最初にライブラリを手動で承認する必要があります。次をお読みください ",
|
||||
"link": "ガイドライン",
|
||||
"post": " 送信する前に、GitHubアカウントが必要になりますが、必須ではありません。"
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "提出することにより、ライブラリが次の下で公開されることに同意します: ",
|
||||
"link": "MIT ライセンス ",
|
||||
"post": "つまり誰でも制限なく使えるということです"
|
||||
},
|
||||
"noteDescription": "以下に含めるライブラリを提出してください <link>公開ライブラリのリポジトリ</link>他の人が作図に使えるようにするためです",
|
||||
"noteGuidelines": "最初にライブラリを手動で承認する必要があります。次をお読みください <link>ガイドライン</link> 送信する前に、GitHubアカウントが必要になりますが、必須ではありません。",
|
||||
"noteLicense": "提出することにより、ライブラリが次の下で公開されることに同意します: <link>MIT ライセンス </link>つまり誰でも制限なく使えるということです",
|
||||
"noteItems": "各ライブラリ項目は、フィルタリングのために独自の名前を持つ必要があります。以下のライブラリアイテムが含まれます:",
|
||||
"atleastOneLibItem": "開始するには少なくとも1つのライブラリ項目を選択してください",
|
||||
"republishWarning": "注意: 選択された項目の中には、すでに公開/投稿済みと表示されているものがあります。既存のライブラリや投稿を更新する場合のみ、アイテムを再投稿してください。"
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "ライブラリを送信しました",
|
||||
"content": "{{authorName}} さん、ありがとうございます。あなたのライブラリはレビューのために提出されました。状況を追跡できます。",
|
||||
"link": "こちら"
|
||||
"content": "{{authorName}} さん、ありがとうございます。あなたのライブラリはレビューのために提出されました。状況を追跡できます。<link>こちら</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "ライブラリをリセット",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tixidest: eɛreḍ ad tesqerbeḍ ciṭ iferdisen yembaɛaden."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Teḍra-d tuccḍa. Eɛreḍ ",
|
||||
"headingMain_button": "asali n usebter tikkelt-nniḍen.",
|
||||
"clearCanvasMessage": "Ma yella tulsa n usali ur tefri ara ugur, eɛreḍ ",
|
||||
"clearCanvasMessage_button": "asfaḍ n teɣzut n usuneɣ.",
|
||||
"headingMain": "Teḍra-d tuccḍa. Eɛreḍ <button>asali n usebter tikkelt-nniḍen.</button>",
|
||||
"clearCanvasMessage": "Ma yella tulsa n usali ur tefri ara ugur, eɛreḍ <button>asfaḍ n teɣzut n usuneɣ.</button>",
|
||||
"clearCanvasCaveat": " Ayagi ad d-iglu s usṛuḥu n umahil ",
|
||||
"trackedToSentry_pre": "Tuccḍa akked umesmagi ",
|
||||
"trackedToSentry_post": " tettwasekles deg unagraw-nneɣ.",
|
||||
"openIssueMessage_pre": "Nḥuder aṭas akken ur nseddu ara talɣut n usayes-inek (m) di tuccḍa. Ma yella asayes-inek (m) mačči d amaẓlay, ttxil-k (m) xemmem ad ḍefreḍ ",
|
||||
"openIssueMessage_button": "afecku n weḍfar n yibugen.",
|
||||
"openIssueMessage_post": " Ma ulac uɣilif seddu talɣut ukessar-agi s wenɣal akked usenṭeḍ di GitHub issue.",
|
||||
"trackedToSentry": "Tuccḍa akked umesmagi {{eventId}} tettwasekles deg unagraw-nneɣ.",
|
||||
"openIssueMessage": "Nḥuder aṭas akken ur nseddu ara talɣut n usayes-inek (m) di tuccḍa. Ma yella asayes-inek (m) mačči d amaẓlay, ttxil-k (m) xemmem ad ḍefreḍ <button>afecku n weḍfar n yibugen.</button> Ma ulac uɣilif seddu talɣut ukessar-agi s wenɣal akked usenṭeḍ di GitHub issue.",
|
||||
"sceneContent": "Agbur n usayes:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Yettwasra",
|
||||
"website": "Sekcem URL ameɣtu"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Azen tamkarḍit-inek•inem akken ad teddu di ",
|
||||
"link": "akaram azayez n temkarḍit",
|
||||
"post": "i yimdanen-nniḍen ara isqedcen deg wunuɣen-nnsen."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Tamkarḍit teḥwaǧ ad tettwaqbel s ufus qbel. Ma ulac uɣilif ɣer ",
|
||||
"link": "iwellihen",
|
||||
"post": " send ad tazneḍ. Tesriḍ amiḍan n GitHub akken ad tmmeslayeḍ yerna ad tgeḍ ibeddilen ma yelaq, maca mačči d ayen yettwaḥetmen."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Mi tuzneḍ ad tqebleḍ akken tamkarḍit ad d-teffeɣ s ",
|
||||
"link": "Turagt MIT, ",
|
||||
"post": "ayen yebɣan ad d-yini belli yal yiwen izmer ad ten-iseqdec war tilist."
|
||||
},
|
||||
"noteDescription": "Azen tamkarḍit-inek•inem akken ad teddu di <link>akaram azayez n temkarḍit</link>i yimdanen-nniḍen ara isqedcen deg wunuɣen-nnsen.",
|
||||
"noteGuidelines": "Tamkarḍit teḥwaǧ ad tettwaqbel s ufus qbel. Ma ulac uɣilif ɣer <link>iwellihen</link> send ad tazneḍ. Tesriḍ amiḍan n GitHub akken ad tmmeslayeḍ yerna ad tgeḍ ibeddilen ma yelaq, maca mačči d ayen yettwaḥetmen.",
|
||||
"noteLicense": "Mi tuzneḍ ad tqebleḍ akken tamkarḍit ad d-teffeɣ s <link>Turagt MIT, </link>ayen yebɣan ad d-yini belli yal yiwen izmer ad ten-iseqdec war tilist.",
|
||||
"noteItems": "Yal aferdis n temkarḍit isefk ad isɛu isem-is i yiman-is akken ad yili wamek ara yettusizdeg. Iferdisen-agi n temkarḍit ad ddun:",
|
||||
"atleastOneLibItem": "Ma ulac uɣilif fern ma drus yiwen n uferdis n temkarḍit akken ad tebduḍ",
|
||||
"republishWarning": "Tamawt: kra n yiferdisen yettwafernen ttwacerḍen ffeɣen-d/ttwaznen. Isefk ad talseḍ tuzzna n yiferdisen anagar mi ara tleqqemeḍ tamkarḍit neɣ tuzzna yellan."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Tamkarḍit tettwazen",
|
||||
"content": "Tanemmirt-ik•im {{authorName}}. Tamkarḍit-inek•inem tettwazen i weselken. Tzemreḍ ad tḍefreḍ aẓayer",
|
||||
"link": "dagi"
|
||||
"content": "Tanemmirt-ik•im {{authorName}}. Tamkarḍit-inek•inem tettwazen i weselken. Tzemreḍ ad tḍefreḍ aẓayer<link>dagi</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Ales awennez n temkarḍit",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": ""
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "",
|
||||
"headingMain_button": "",
|
||||
"headingMain": "",
|
||||
"clearCanvasMessage": "",
|
||||
"clearCanvasMessage_button": "",
|
||||
"clearCanvasCaveat": "",
|
||||
"trackedToSentry_pre": "",
|
||||
"trackedToSentry_post": "",
|
||||
"openIssueMessage_pre": "",
|
||||
"openIssueMessage_button": "",
|
||||
"openIssueMessage_post": "",
|
||||
"trackedToSentry": "",
|
||||
"openIssueMessage": "",
|
||||
"sceneContent": ""
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "팁: 멀리 있는 요소들을 좀 더 가까이로 붙여 보세요."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "오류가 발생했습니다. ",
|
||||
"headingMain_button": "페이지 새로고침",
|
||||
"clearCanvasMessage": "새로고침으로 해결되지 않을 경우, ",
|
||||
"clearCanvasMessage_button": "캔버스 비우기",
|
||||
"headingMain": "오류가 발생했습니다. <button>페이지 새로고침</button>",
|
||||
"clearCanvasMessage": "새로고침으로 해결되지 않을 경우, <button>캔버스 비우기</button>",
|
||||
"clearCanvasCaveat": " 작업 내용을 잃게 됩니다 ",
|
||||
"trackedToSentry_pre": "오류 ",
|
||||
"trackedToSentry_post": " 가 시스템에서 발견되었습니다.",
|
||||
"openIssueMessage_pre": "저희는 화면 정보를 오류에 포함하지 않도록 매우 주의하고 있습니다. 혹시 화면에 민감한 내용이 없다면 이곳에 업로드를 고려해주세요.",
|
||||
"openIssueMessage_button": "버그 트래커",
|
||||
"openIssueMessage_post": " 아래 정보를 GitHub 이슈에 복사 및 붙여넣기해 주세요.",
|
||||
"trackedToSentry": "오류 {{eventId}} 가 시스템에서 발견되었습니다.",
|
||||
"openIssueMessage": "저희는 화면 정보를 오류에 포함하지 않도록 매우 주의하고 있습니다. 혹시 화면에 민감한 내용이 없다면 이곳에 업로드를 고려해주세요.<button>버그 트래커</button> 아래 정보를 GitHub 이슈에 복사 및 붙여넣기해 주세요.",
|
||||
"sceneContent": "화면 내용:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "필수사항",
|
||||
"website": "유효한 URL을 입력하세요"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "당신의 라이브러리를 제출하여 ",
|
||||
"link": "공개 라이브러리 저장소",
|
||||
"post": "에서 다른 사람들의 그림에 사용할 수 있도록 하세요."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "라이브러리는 먼저 수동으로 승인되어야 합니다. 제출하기 전에 ",
|
||||
"link": "가이드라인",
|
||||
"post": "을 먼저 읽어보세요. 의견을 공유하거나 변경사항을 만들기 위해선 GitHub 계정이 필요하지만, 반드시 필요하진 않습니다."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "제출함으로써, 당신은 라이브러리가 ",
|
||||
"link": "MIT 라이선스 ",
|
||||
"post": "하에 배포됨을, 즉 아무나 제약 없이 사용할 수 있음에 동의합니다."
|
||||
},
|
||||
"noteDescription": "당신의 라이브러리를 제출하여 <link>공개 라이브러리 저장소</link>에서 다른 사람들의 그림에 사용할 수 있도록 하세요.",
|
||||
"noteGuidelines": "라이브러리는 먼저 수동으로 승인되어야 합니다. 제출하기 전에 <link>가이드라인</link>을 먼저 읽어보세요. 의견을 공유하거나 변경사항을 만들기 위해선 GitHub 계정이 필요하지만, 반드시 필요하진 않습니다.",
|
||||
"noteLicense": "제출함으로써, 당신은 라이브러리가 <link>MIT 라이선스 </link>하에 배포됨을, 즉 아무나 제약 없이 사용할 수 있음에 동의합니다.",
|
||||
"noteItems": "각각의 라이브러리는 분류할 수 있도록 고유한 이름을 가져야 합니다. 다음의 라이브러리 항목이 포함됩니다:",
|
||||
"atleastOneLibItem": "최소한 하나의 라이브러리를 선택해주세요",
|
||||
"republishWarning": "참고: 선택된 항목의 일부는 이미 제출/게시되었습니다. 기존의 라이브러리나 제출물을 업데이트하는 경우에만 제출하세요."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "라이브러리 제출됨",
|
||||
"content": "{{authorName}}님 감사합니다. 당신의 라이브러리가 심사를 위해 제출되었습니다. 진행 상황을",
|
||||
"link": "여기에서 확인하실 수 있습니다."
|
||||
"content": "{{authorName}}님 감사합니다. 당신의 라이브러리가 심사를 위해 제출되었습니다. 진행 상황을<link>여기에서 확인하실 수 있습니다.</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "라이브러리 리셋",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "زانیاری: هەوڵ بدە دوورترین توخمەکان کەمێک لە یەکتر نزیک بکەوە."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "تووشی هەڵەیەک بوو. هەوڵ بدە ",
|
||||
"headingMain_button": "دووبارە بارکردنی لاپەڕەکە.",
|
||||
"clearCanvasMessage": "ئەگەر دووبارە بارکردنەوە کار ناکات، هەوڵبدە ",
|
||||
"clearCanvasMessage_button": "خاوێنکردنەوەی تابلۆکە.",
|
||||
"headingMain": "تووشی هەڵەیەک بوو. هەوڵ بدە <button>دووبارە بارکردنی لاپەڕەکە.</button>",
|
||||
"clearCanvasMessage": "ئەگەر دووبارە بارکردنەوە کار ناکات، هەوڵبدە <button>خاوێنکردنەوەی تابلۆکە.</button>",
|
||||
"clearCanvasCaveat": " ئەمە دەبێتە هۆی لەدەستدانی ئەوەی کە کردوتە ",
|
||||
"trackedToSentry_pre": "هەڵەکە لەگەڵ ناسێنەری ",
|
||||
"trackedToSentry_post": " لەسەر سیستەمەکەمان بەدواداچوونی بۆ کرا.",
|
||||
"openIssueMessage_pre": "ئێمە زۆر وریا بووین کە زانیارییەکانی دیمەنەکەت لەسەر هەڵەکە نەخەینەڕوو. ئەگەر دیمەنەکەت تایبەت نییە، تکایە بیر لە بەدواداچوون بکەنەوە بۆ ئێمە ",
|
||||
"openIssueMessage_button": "شوێنپێهەڵگری هەڵە.",
|
||||
"openIssueMessage_post": " تکایە ئەم زانیارییانەی خوارەوە کۆپی بکە و لە بەشی کێشەکانی Github دایبنێ.",
|
||||
"trackedToSentry": "هەڵەکە لەگەڵ ناسێنەری {{eventId}} لەسەر سیستەمەکەمان بەدواداچوونی بۆ کرا.",
|
||||
"openIssueMessage": "ئێمە زۆر وریا بووین کە زانیارییەکانی دیمەنەکەت لەسەر هەڵەکە نەخەینەڕوو. ئەگەر دیمەنەکەت تایبەت نییە، تکایە بیر لە بەدواداچوون بکەنەوە بۆ ئێمە <button>شوێنپێهەڵگری هەڵە.</button> تکایە ئەم زانیارییانەی خوارەوە کۆپی بکە و لە بەشی کێشەکانی Github دایبنێ.",
|
||||
"sceneContent": "پێکهاتەی ناو دیمەنەکە:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "داواکراوە",
|
||||
"website": "URLێکی دروست تێبنووسە"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "کتێبخانەکەت بنێرە بۆ ئەوەی بخرێتە ناو ",
|
||||
"link": "کۆگای کتێبخانەی گشتی",
|
||||
"post": "بۆ ئەوەی کەسانی تر لە وێنەکێشانەکانیاندا بەکاری بهێنن."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "کتێبخانەکە پێویستە سەرەتا بە دەست پەسەند بکرێت. تکایە بفەرمو بە خوێندنەوەی ",
|
||||
"link": "ڕێنماییەکان",
|
||||
"post": " پێش پێشکەشکردن. پێویستت بە ئەژمێری GitHub دەبێت بۆ پەیوەندیکردن و گۆڕانکاری ئەگەر داوای لێکرا، بەڵام بە توندی پێویست نییە."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "بە پێشکەشکردن، تۆ ڕەزامەندیت لەسەر بڵاوکردنەوەی کتێبخانەکە بەپێی ",
|
||||
"link": "مۆڵەتی MIT، ",
|
||||
"post": "کە بە کورتی مانای ئەوەیە کە هەرکەسێک دەتوانێت بە بێ سنوور بەکاری بهێنێت"
|
||||
},
|
||||
"noteDescription": "کتێبخانەکەت بنێرە بۆ ئەوەی بخرێتە ناو <link>کۆگای کتێبخانەی گشتی</link>بۆ ئەوەی کەسانی تر لە وێنەکێشانەکانیاندا بەکاری بهێنن.",
|
||||
"noteGuidelines": "کتێبخانەکە پێویستە سەرەتا بە دەست پەسەند بکرێت. تکایە بفەرمو بە خوێندنەوەی <link>ڕێنماییەکان</link> پێش پێشکەشکردن. پێویستت بە ئەژمێری GitHub دەبێت بۆ پەیوەندیکردن و گۆڕانکاری ئەگەر داوای لێکرا، بەڵام بە توندی پێویست نییە.",
|
||||
"noteLicense": "بە پێشکەشکردن، تۆ ڕەزامەندیت لەسەر بڵاوکردنەوەی کتێبخانەکە بەپێی <link>مۆڵەتی MIT، </link>کە بە کورتی مانای ئەوەیە کە هەرکەسێک دەتوانێت بە بێ سنوور بەکاری بهێنێت",
|
||||
"noteItems": "هەر شتێکی کتێبخانە دەبێت ناوی تایبەتی خۆی هەبێت بۆ ئەوەی بتوانرێت فلتەر بکرێت. ئەم بابەتانەی کتێبخانانەی خوارەوە لەخۆدەگرێت:",
|
||||
"atleastOneLibItem": "تکایە بەلایەنی کەمەوە یەک بڕگەی کتێبخانە دیاریبکە بۆ دەستپێکردن",
|
||||
"republishWarning": "تێبینی: هەندێک لە ئایتمە دیاریکراوەکان نیشانکراون وەک ئەوەی پێشتر بڵاوکراونەتەوە/نێردراون. تەنها پێویستە شتەکان دووبارە پێشکەش بکەیتەوە لە کاتی نوێکردنەوەی کتێبخانەیەکی هەبوو یان پێشکەشکردن."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "کتێبخانە پێشکەش کرا",
|
||||
"content": "سوپاس {{authorName}}. کتێبخانەکەت پێشکەش کراوە بۆ پێداچوونەوە. دەتوانیت بەدواداچوون بۆ دۆخەکە بکەیت",
|
||||
"link": "لێرە"
|
||||
"content": "سوپاس {{authorName}}. کتێبخانەکەت پێشکەش کراوە بۆ پێداچوونەوە. دەتوانیت بەدواداچوون بۆ دۆخەکە بکەیت<link>لێرە</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "ڕێکخستنەوەی کتێبخانە",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": ""
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "",
|
||||
"headingMain_button": "",
|
||||
"headingMain": "",
|
||||
"clearCanvasMessage": "",
|
||||
"clearCanvasMessage_button": "",
|
||||
"clearCanvasCaveat": "",
|
||||
"trackedToSentry_pre": "",
|
||||
"trackedToSentry_post": "",
|
||||
"openIssueMessage_pre": "",
|
||||
"openIssueMessage_button": "",
|
||||
"openIssueMessage_post": "",
|
||||
"trackedToSentry": "",
|
||||
"openIssueMessage": "",
|
||||
"sceneContent": ""
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Privalomas",
|
||||
"website": "Įveskite teisingą nuorodą (URL)"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Pateik savo biblioteką, jog ji galėtų būti įtraukta į ",
|
||||
"link": "",
|
||||
"post": "jog kiti žmonės galėtų tai naudoti savo piešiniuose."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Visų pirma, biblioteka turi būti rankiniu būdu patvirtinta. Prašome paskaityti ",
|
||||
"link": "gairės",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "MIT licencija, ",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "Pateik savo biblioteką, jog ji galėtų būti įtraukta į <link></link>jog kiti žmonės galėtų tai naudoti savo piešiniuose.",
|
||||
"noteGuidelines": "Visų pirma, biblioteka turi būti rankiniu būdu patvirtinta. Prašome paskaityti <link>gairės</link>",
|
||||
"noteLicense": "<link>MIT licencija, </link>",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Biblioteka pateikta",
|
||||
"content": "Ačiū {{authorName}}. Tavo biblioteka buvo pateikta peržiūrai. Gali sekti būseną",
|
||||
"link": "čia"
|
||||
"content": "Ačiū {{authorName}}. Tavo biblioteka buvo pateikta peržiūrai. Gali sekti būseną<link>čia</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Atstatyti biblioteką",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Ieteikums: mēģiniet satuvināt pašus tālākos elementus."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Notikusi kļūda. Mēģiniet ",
|
||||
"headingMain_button": "pārlādēt lapu.",
|
||||
"clearCanvasMessage": "Ja pārlādēšana nestrādā, mēģiniet ",
|
||||
"clearCanvasMessage_button": "notīrot tāfeli.",
|
||||
"headingMain": "Notikusi kļūda. Mēģiniet <button>pārlādēt lapu.</button>",
|
||||
"clearCanvasMessage": "Ja pārlādēšana nestrādā, mēģiniet <button>notīrot tāfeli.</button>",
|
||||
"clearCanvasCaveat": " Tas novedīs pie darba zaudēšanas ",
|
||||
"trackedToSentry_pre": "Kļūda ar kodu ",
|
||||
"trackedToSentry_post": " tika noteikta mūsu sistēmā.",
|
||||
"openIssueMessage_pre": "Mēs uzmanījāmies, lai neiekļautu jūsu ainas informāciju šajā kļūdā. Ja jūsu aina nav privāta, lūdzu ziņojiet par šo kļūdu mūsu ",
|
||||
"openIssueMessage_button": "kļūdu uzskaitē.",
|
||||
"openIssueMessage_post": " Lūdzu, miniet sekojošo informāciju to kopējot un ielīmējot jūsu ziņojumā platformā GitHub.",
|
||||
"trackedToSentry": "Kļūda ar kodu {{eventId}} tika noteikta mūsu sistēmā.",
|
||||
"openIssueMessage": "Mēs uzmanījāmies, lai neiekļautu jūsu ainas informāciju šajā kļūdā. Ja jūsu aina nav privāta, lūdzu ziņojiet par šo kļūdu mūsu <button>kļūdu uzskaitē.</button> Lūdzu, miniet sekojošo informāciju to kopējot un ielīmējot jūsu ziņojumā platformā GitHub.",
|
||||
"sceneContent": "Ainas saturs:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Obligāts",
|
||||
"website": "Ievadiet derīgu URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Iesniegt savu bibliotēku iekļaušanai ",
|
||||
"link": "publiskajā bibliotēku datubāzē",
|
||||
"post": ", lai citi to varētu izmantot savos zīmējumos."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Šai bibliotēkai vispirms jātiek manuāli apstiprinātai. Lūdzu, izlasiet ",
|
||||
"link": "norādījumus",
|
||||
"post": " pirms iesniegšanas. Jums vajadzēs GitHub kontu, lai sazinātos un veiktu izmaiņas, ja tādas būs pieprasītas, bet tas nav absolūti nepieciešams."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Iesniedzot bibliotēku, jūs piekrītat tās publicēšanai saskaņā ar ",
|
||||
"link": "MIT Licenci, ",
|
||||
"post": "kas īsumā nozīmē, ka jebkurš to varēs izmantot bez ierobežojumiem."
|
||||
},
|
||||
"noteDescription": "Iesniegt savu bibliotēku iekļaušanai <link>publiskajā bibliotēku datubāzē</link>, lai citi to varētu izmantot savos zīmējumos.",
|
||||
"noteGuidelines": "Šai bibliotēkai vispirms jātiek manuāli apstiprinātai. Lūdzu, izlasiet <link>norādījumus</link> pirms iesniegšanas. Jums vajadzēs GitHub kontu, lai sazinātos un veiktu izmaiņas, ja tādas būs pieprasītas, bet tas nav absolūti nepieciešams.",
|
||||
"noteLicense": "Iesniedzot bibliotēku, jūs piekrītat tās publicēšanai saskaņā ar <link>MIT Licenci, </link>kas īsumā nozīmē, ka jebkurš to varēs izmantot bez ierobežojumiem.",
|
||||
"noteItems": "Katram bibliotēkas vienumam jābūt savam nosaukumam, lai to varētu atrast filtrējot. Tiks iekļauti sekojošie bibliotēkas vienumi:",
|
||||
"atleastOneLibItem": "Lūdzu, atlasiet vismaz vienu bibliotēkas vienumu, lai sāktu darbu",
|
||||
"republishWarning": "Ievēro: daži no atzīmētajiem objektiem jau atzīmēti kā publicēti vai iesniegti publicēšanai. Tos vajadzētu atkārtoti iesniegt tikai tad, ja vēlies labot esošo bibliotēku."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliotēka iesniegta",
|
||||
"content": "Paldies, {{authorName}}! Jūsu bibliotēka iesniegta izskatīšanai. Jūs varat izsekot iesnieguma statusam",
|
||||
"link": "šeit"
|
||||
"content": "Paldies, {{authorName}}! Jūsu bibliotēka iesniegta izskatīšanai. Jūs varat izsekot iesnieguma statusam<link>šeit</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Atiestatīt bibliotēku",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "टीप: दूर चा तत्व थोडं जवळ आणण्याचा प्रयत्न करावा."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "त्रुटि आली. परत प्रयत्न करा ",
|
||||
"headingMain_button": "ह्या पानाला पुनः लोड करा.",
|
||||
"clearCanvasMessage": "रीलोडिंग होत नसल्यास, परत प्रयत्न करा ",
|
||||
"clearCanvasMessage_button": "पटल स्वच्छ करित आहे.",
|
||||
"headingMain": "त्रुटि आली. परत प्रयत्न करा <button>ह्या पानाला पुनः लोड करा.</button>",
|
||||
"clearCanvasMessage": "रीलोडिंग होत नसल्यास, परत प्रयत्न करा <button>पटल स्वच्छ करित आहे.</button>",
|
||||
"clearCanvasCaveat": " त्यामुळे केलेल्या कामाचे नुकसान होईल ",
|
||||
"trackedToSentry_pre": "त्रुटि क्रमांक के साथ त्रुटि ",
|
||||
"trackedToSentry_post": " आमच्या प्रणाली नी निरीक्षण केले होते.",
|
||||
"openIssueMessage_pre": "त्रुटीत तुमची दृश्य माहिती समाविष्ट न करण्यासाठी आम्ही खूप सावध होतो. तुमचा सीन खाजगी नसल्यास, कृपया आम्हाला पुढ च्या कारवाई साठी सम्पर्क साधा ",
|
||||
"openIssueMessage_button": "त्रुटि व्यवस्थापन.",
|
||||
"openIssueMessage_post": " कृपया गिटहब समस्येमध्ये कॉपी आणि पेस्ट करून खालिल माहिती समाविष्ट करा.",
|
||||
"trackedToSentry": "त्रुटि क्रमांक के साथ त्रुटि {{eventId}} आमच्या प्रणाली नी निरीक्षण केले होते.",
|
||||
"openIssueMessage": "त्रुटीत तुमची दृश्य माहिती समाविष्ट न करण्यासाठी आम्ही खूप सावध होतो. तुमचा सीन खाजगी नसल्यास, कृपया आम्हाला पुढ च्या कारवाई साठी सम्पर्क साधा <button>त्रुटि व्यवस्थापन.</button> कृपया गिटहब समस्येमध्ये कॉपी आणि पेस्ट करून खालिल माहिती समाविष्ट करा.",
|
||||
"sceneContent": "दृश्य विषय:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "आवश्यक आहे",
|
||||
"website": "वैध यू-आर-एल द्या"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "समाविष्ट करण्या साठी तुमचा संग्रह ह्याचात जमा करा ",
|
||||
"link": "सार्वजनिक संग्रहाचे कोठार",
|
||||
"post": "इतर लोकांना त्यांच्या रेखाचित्रांमधे वापरण्यासाठी."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "संग्रहाला आधी स्वहस्ते स्वीकृती मिळणे आवश्यक आहे. कृपया हे वाचा ",
|
||||
"link": "मार्गदर्शक तत्त्वे",
|
||||
"post": " जमा करण्या पूर्वी, तुमच्या जवळ एक गिटहब खाते असणे आवश्यक आहे जे संवादा साठी आणिक बदल करण्या साठी लागेल, तरी हे सर्व अगदी आवश्यक नाही आहे."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "जमा करताना तुम्हीं सहमति दाखवतात आहे की संग्रह ह्याचा खाली प्रकाशित होईल ",
|
||||
"link": "एम-आइ-टी परवाना, ",
|
||||
"post": "ज्याचा थोडक्यात अर्थ कोणीही निर्बंधांशिवाय वापरू शकतो."
|
||||
},
|
||||
"noteDescription": "समाविष्ट करण्या साठी तुमचा संग्रह ह्याचात जमा करा <link>सार्वजनिक संग्रहाचे कोठार</link>इतर लोकांना त्यांच्या रेखाचित्रांमधे वापरण्यासाठी.",
|
||||
"noteGuidelines": "संग्रहाला आधी स्वहस्ते स्वीकृती मिळणे आवश्यक आहे. कृपया हे वाचा <link>मार्गदर्शक तत्त्वे</link> जमा करण्या पूर्वी, तुमच्या जवळ एक गिटहब खाते असणे आवश्यक आहे जे संवादा साठी आणिक बदल करण्या साठी लागेल, तरी हे सर्व अगदी आवश्यक नाही आहे.",
|
||||
"noteLicense": "जमा करताना तुम्हीं सहमति दाखवतात आहे की संग्रह ह्याचा खाली प्रकाशित होईल <link>एम-आइ-टी परवाना, </link>ज्याचा थोडक्यात अर्थ कोणीही निर्बंधांशिवाय वापरू शकतो.",
|
||||
"noteItems": "प्रतैक संग्रहाचे नाव, नीट शोधनासाठी, असणे आवश्यक आहे. खाली दिलेल्या वस्तु समाविष्ट केल्या जातील:",
|
||||
"atleastOneLibItem": "सुरु करण्यासाठी, कृपया करून, कमित कमी एक वस्तु तरी निवडा",
|
||||
"republishWarning": "टीप: काही निवडक आयटम आधीच प्रकाशित/प्रस्तुत केलेले आहेत. विद्यमान लायब्ररी किंवा प्रस्तुतित आयटम अद्यावित करताना तुम्ही फक्त तो पुन्हा प्रस्तुत करा."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "संग्रह जमा केला",
|
||||
"content": "धन्यवाद {{authorName}}. आपला संग्रह पुनरावलोकना साठी जमा झाला आहे. तुम्हीं स्थिति सारखी तपासू सकता",
|
||||
"link": "इकडे"
|
||||
"content": "धन्यवाद {{authorName}}. आपला संग्रह पुनरावलोकना साठी जमा झाला आहे. तुम्हीं स्थिति सारखी तपासू सकता<link>इकडे</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "संग्रह पुनर्स्थित करा",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "မှတ်ချက်။ ။ဝေးကွာနေသော ပုံများ၊ စာများအား ပိုမိုနီးကပ်အောင်ရွှေ့ကြည့်ပါ။"
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "ချို့ယွင်းမှုဖြစ်ပေါ်ခဲ့သဖြင့် ထပ်မံကြိုးစားကြည့်ရန် ",
|
||||
"headingMain_button": "စာမျက်နှာအား အသစ်ပြန်လည်ရယူပါ။",
|
||||
"clearCanvasMessage": "အသစ်ပြန်လည်မရယူနိုင်ပါက ထပ်မံကြိုးစားကြည့်ရန်",
|
||||
"clearCanvasMessage_button": "ကားချပ်အား ရှင်းလင်းပါ။",
|
||||
"headingMain": "ချို့ယွင်းမှုဖြစ်ပေါ်ခဲ့သဖြင့် ထပ်မံကြိုးစားကြည့်ရန် <button>စာမျက်နှာအား အသစ်ပြန်လည်ရယူပါ။</button>",
|
||||
"clearCanvasMessage": "အသစ်ပြန်လည်မရယူနိုင်ပါက ထပ်မံကြိုးစားကြည့်ရန်<button>ကားချပ်အား ရှင်းလင်းပါ။</button>",
|
||||
"clearCanvasCaveat": " ရေးဆွဲထားသည်များ ဆုံးရှုံးနိုင်သည် ",
|
||||
"trackedToSentry_pre": "ချို့ယွင်းမှုသတ်မှတ်ချက် ",
|
||||
"trackedToSentry_post": " အားစနစ်အတွင်းခြေရာကောက်ပြီးပါပြီ။",
|
||||
"openIssueMessage_pre": "ချို့ယွင်းမှုမှတ်တမ်းတွင် အရေးကြီးအချက်အလက်များပါဝင်မှုမရှိစေရန်အထူးသတိပြုပါသည်။ မပါဝင်ပါက ဆက်လက်ဆောင်ရွက်ရန် ",
|
||||
"openIssueMessage_button": "ချို့ယွင်းမှုအားခြေရာကောက်ပါ။",
|
||||
"openIssueMessage_post": " အောက်ပါအချက်အလက်များအား Github တွင် Issue အနေဖြင့်ဖြည့်သွင်းဖော်ပြပေးပါ။",
|
||||
"trackedToSentry": "ချို့ယွင်းမှုသတ်မှတ်ချက် {{eventId}} အားစနစ်အတွင်းခြေရာကောက်ပြီးပါပြီ။",
|
||||
"openIssueMessage": "ချို့ယွင်းမှုမှတ်တမ်းတွင် အရေးကြီးအချက်အလက်များပါဝင်မှုမရှိစေရန်အထူးသတိပြုပါသည်။ မပါဝင်ပါက ဆက်လက်ဆောင်ရွက်ရန် <button>ချို့ယွင်းမှုအားခြေရာကောက်ပါ။</button> အောက်ပါအချက်အလက်များအား Github တွင် Issue အနေဖြင့်ဖြည့်သွင်းဖော်ပြပေးပါ။",
|
||||
"sceneContent": "မြင်ကွင်းပါအချက်အလက်။ ။"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tips: Prøv å flytte de ytterste elementene litt tettere sammen."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "En feil oppsto. Prøv ",
|
||||
"headingMain_button": "å laste siden på nytt.",
|
||||
"clearCanvasMessage": "Om ny sidelasting ikke fungerer, prøv ",
|
||||
"clearCanvasMessage_button": "å tømme lerretet.",
|
||||
"headingMain": "En feil oppsto. Prøv <button>å laste siden på nytt.</button>",
|
||||
"clearCanvasMessage": "Om ny sidelasting ikke fungerer, prøv <button>å tømme lerretet.</button>",
|
||||
"clearCanvasCaveat": " Dette vil føre til tap av arbeid ",
|
||||
"trackedToSentry_pre": "Feilen med identifikator ",
|
||||
"trackedToSentry_post": " ble logget i vårt system.",
|
||||
"openIssueMessage_pre": "Vi er veldig nøye med å ikke inkludere dine scene-opplysninger i feilen. Hvis din scene ikke er privat, vurder å følge opp i vårt ",
|
||||
"openIssueMessage_button": "feilrapporteringssystem.",
|
||||
"openIssueMessage_post": " Ta med opplysningene nedenfor ved å kopiere og lime inn i GitHub-saken.",
|
||||
"trackedToSentry": "Feilen med identifikator {{eventId}} ble logget i vårt system.",
|
||||
"openIssueMessage": "Vi er veldig nøye med å ikke inkludere dine scene-opplysninger i feilen. Hvis din scene ikke er privat, vurder å følge opp i vårt <button>feilrapporteringssystem.</button> Ta med opplysningene nedenfor ved å kopiere og lime inn i GitHub-saken.",
|
||||
"sceneContent": "Scene-innhold:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Påkrevd",
|
||||
"website": "Angi en gyldig nettadresse"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Send inn biblioteket ditt som skal inkluderes i ",
|
||||
"link": "kildekode for offentlig bibliotek",
|
||||
"post": "for andre å bruke dem i tegninger."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Biblioteket må godkjennes manuelt først. Les ",
|
||||
"link": "retningslinjene",
|
||||
"post": " før innsending. Du vil trenge en GitHub-konto for å kommunisere og gjøre endringer hvis ønsket, men det er ikke påkrevd."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Ved å sende inn godtar du at biblioteket blir publisert under ",
|
||||
"link": "MIT-lisens, ",
|
||||
"post": "som kortfattet betyr at andre kan bruke dem uten begrensninger."
|
||||
},
|
||||
"noteDescription": "Send inn biblioteket ditt som skal inkluderes i <link>kildekode for offentlig bibliotek</link>for andre å bruke dem i tegninger.",
|
||||
"noteGuidelines": "Biblioteket må godkjennes manuelt først. Les <link>retningslinjene</link> før innsending. Du vil trenge en GitHub-konto for å kommunisere og gjøre endringer hvis ønsket, men det er ikke påkrevd.",
|
||||
"noteLicense": "Ved å sende inn godtar du at biblioteket blir publisert under <link>MIT-lisens, </link>som kortfattet betyr at andre kan bruke dem uten begrensninger.",
|
||||
"noteItems": "Hvert bibliotek må ha sitt eget navn, så det er filtrerbart. Følgende bibliotekselementer vil bli inkludert:",
|
||||
"atleastOneLibItem": "Vennligst velg minst ett bibliotek for å komme i gang",
|
||||
"republishWarning": "Merk: noen av de valgte elementene er merket som allerede publisert/sendt. Du bør kun sende inn elementer på nytt når du oppdaterer et eksisterende bibliotek eller innlevering."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliotek innsendt",
|
||||
"content": "Takk {{authorName}}. Ditt bibliotek har blitt sendt inn for gjennomgang. Du kan spore statusen",
|
||||
"link": "her"
|
||||
"content": "Takk {{authorName}}. Ditt bibliotek har blitt sendt inn for gjennomgang. Du kan spore statusen<link>her</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Nullstill bibliotek",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tip: beweeg de verste elementen iets dichter bij elkaar."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Fout opgetreden. Probeer ",
|
||||
"headingMain_button": "de pagina opnieuw laden.",
|
||||
"clearCanvasMessage": "Als herladen niet werkt, probeer ",
|
||||
"clearCanvasMessage_button": "het canvas te wissen.",
|
||||
"headingMain": "Fout opgetreden. Probeer <button>de pagina opnieuw laden.</button>",
|
||||
"clearCanvasMessage": "Als herladen niet werkt, probeer <button>het canvas te wissen.</button>",
|
||||
"clearCanvasCaveat": " Dit zal leiden tot verlies van je werk ",
|
||||
"trackedToSentry_pre": "De fout met ID ",
|
||||
"trackedToSentry_post": " was gevolgd op ons systeem.",
|
||||
"openIssueMessage_pre": "We waren voorzichtig om je scène-informatie niet in de fout toe te voegen. Als je scène niet privé is, overweeg dan alstublieft het opvolgen op onze ",
|
||||
"openIssueMessage_button": "bugtracker.",
|
||||
"openIssueMessage_post": " Kopieer de informatie hieronder naar de GitHub issue.",
|
||||
"trackedToSentry": "De fout met ID {{eventId}} was gevolgd op ons systeem.",
|
||||
"openIssueMessage": "We waren voorzichtig om je scène-informatie niet in de fout toe te voegen. Als je scène niet privé is, overweeg dan alstublieft het opvolgen op onze <button>bugtracker.</button> Kopieer de informatie hieronder naar de GitHub issue.",
|
||||
"sceneContent": "Scène-inhoud:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Vereist",
|
||||
"website": "Vul een geldige URL in"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "openbare repository",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "richtlijnen",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "MIT-licentie, ",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "<link>openbare repository</link>",
|
||||
"noteGuidelines": "<link>richtlijnen</link>",
|
||||
"noteLicense": "<link>MIT-licentie, </link>",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliotheek ingediend",
|
||||
"content": "",
|
||||
"link": "Hier"
|
||||
"content": "<link>Hier</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Reset bibliotheek",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tips: prøv å flytte elementa som er lengst frå kvarandre, litt nærare kvarandre."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Ein feil oppstod. Prøv ",
|
||||
"headingMain_button": "å laste sida på nytt.",
|
||||
"clearCanvasMessage": "Om ny sidelasting ikkje fungerer, prøv ",
|
||||
"clearCanvasMessage_button": "å tømme lerretet.",
|
||||
"headingMain": "Ein feil oppstod. Prøv <button>å laste sida på nytt.</button>",
|
||||
"clearCanvasMessage": "Om ny sidelasting ikkje fungerer, prøv <button>å tømme lerretet.</button>",
|
||||
"clearCanvasCaveat": " Dette vil føre til tap av arbeid ",
|
||||
"trackedToSentry_pre": "Feilen med identifikator ",
|
||||
"trackedToSentry_post": " vart logga i systemet vårt.",
|
||||
"openIssueMessage_pre": "Vi er veldig nøye med å ikkje inkludere scene-opplysingane dine i feilmeldinga. Viss scena di ikkje er privat kan du vurdere å følge opp i ",
|
||||
"openIssueMessage_button": "feilrapporteringssystemet vårt.",
|
||||
"openIssueMessage_post": " Ta med opplysingane nedanfor ved å kopiere og lime inn i GitHub-saka.",
|
||||
"trackedToSentry": "Feilen med identifikator {{eventId}} vart logga i systemet vårt.",
|
||||
"openIssueMessage": "Vi er veldig nøye med å ikkje inkludere scene-opplysingane dine i feilmeldinga. Viss scena di ikkje er privat kan du vurdere å følge opp i <button>feilrapporteringssystemet vårt.</button> Ta med opplysingane nedanfor ved å kopiere og lime inn i GitHub-saka.",
|
||||
"sceneContent": "Scene-innhald:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Kravt",
|
||||
"website": "Fyll inn ein gyldig URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Send inn biblioteket ditt til inkludering i ",
|
||||
"link": "den offentlege bibliotek-kjeldekoda",
|
||||
"post": "slik at andre kan bruke det i teikningane deira."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Biblioteket må godkjennast manuelt fyrst. Ver vennleg å lese ",
|
||||
"link": "retningslinjene",
|
||||
"post": " før du sender inn. Du kjem til å trenge ein GitHub-konto for å kommunisere og gjere endringar dersom kravt, men det er ikkje strengt naudsynt."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Ved å sende inn godkjenner du at biblioteket vert publisert under ",
|
||||
"link": "MIT-lisensen, ",
|
||||
"post": "som kort sagt betyr at kven som helst kan bruke det utan avgrensingar."
|
||||
},
|
||||
"noteDescription": "Send inn biblioteket ditt til inkludering i <link>den offentlege bibliotek-kjeldekoda</link>slik at andre kan bruke det i teikningane deira.",
|
||||
"noteGuidelines": "Biblioteket må godkjennast manuelt fyrst. Ver vennleg å lese <link>retningslinjene</link> før du sender inn. Du kjem til å trenge ein GitHub-konto for å kommunisere og gjere endringar dersom kravt, men det er ikkje strengt naudsynt.",
|
||||
"noteLicense": "Ved å sende inn godkjenner du at biblioteket vert publisert under <link>MIT-lisensen, </link>som kort sagt betyr at kven som helst kan bruke det utan avgrensingar.",
|
||||
"noteItems": "Kvart bibliotekselement må ha eit eige namn, slik at det er mogleg å filtrere. Dei følgande bibliotekselementa blir inkludert:",
|
||||
"atleastOneLibItem": "Ver vennleg å markere minst eitt bibliotekselement for å starte",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliotek innsendt",
|
||||
"content": "Tusen takk {{authorName}}! Biblioteket ditt har blitt sendt inn til gjennomgang. Du kan halde styr på status",
|
||||
"link": "her"
|
||||
"content": "Tusen takk {{authorName}}! Biblioteket ditt har blitt sendt inn til gjennomgang. Du kan halde styr på status<link>her</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Tilbakestill bibliotek",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Astúcia : ensajatz de sarrar los elements mai alonhats."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Una error s’es producha. Ensajatz ",
|
||||
"headingMain_button": "recargament de la pagina.",
|
||||
"clearCanvasMessage": "Se recargar fonciona pas, ensajatz ",
|
||||
"clearCanvasMessage_button": "d’escafar los canabasses.",
|
||||
"headingMain": "Una error s’es producha. Ensajatz <button>recargament de la pagina.</button>",
|
||||
"clearCanvasMessage": "Se recargar fonciona pas, ensajatz <button>d’escafar los canabasses.</button>",
|
||||
"clearCanvasCaveat": " Menarà a una pèrda del trabalh ",
|
||||
"trackedToSentry_pre": "Error amb l’identificant ",
|
||||
"trackedToSentry_post": " es estada enregistrada sus nòstre sistèma.",
|
||||
"openIssueMessage_pre": "Èrem plan prudents per inclure pas d’informacions de la scèna vòstra sus l’error. Se vòstra scèna es pas privada, volgatz considerar de perseguir sus nòstre ",
|
||||
"openIssueMessage_button": "traçadors d’avarias.",
|
||||
"openIssueMessage_post": " Volgatz inclure las informacions çai-jos en las copiant e pegant a l’issue GitHub.",
|
||||
"trackedToSentry": "Error amb l’identificant {{eventId}} es estada enregistrada sus nòstre sistèma.",
|
||||
"openIssueMessage": "Èrem plan prudents per inclure pas d’informacions de la scèna vòstra sus l’error. Se vòstra scèna es pas privada, volgatz considerar de perseguir sus nòstre <button>traçadors d’avarias.</button> Volgatz inclure las informacions çai-jos en las copiant e pegant a l’issue GitHub.",
|
||||
"sceneContent": "Contengut de la scèna :"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Requerit",
|
||||
"website": "Picatz una URL valida"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Enviatz vòstra bibliotèca per èsser compresa al ",
|
||||
"link": "repertòri public de bibliotèca",
|
||||
"post": "per que los autres l’utilizen dins lor dessenhs."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Qualqu’un deu aprovar la bibliotèca manualament per començar. Volgatz legir las ",
|
||||
"link": "linhas directrises",
|
||||
"post": " abans de sometre. Vos farà mestièr un compte GitHub per comunicar e realizar de modificacions se demandadas, mas es pas complètament obligatòri."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "En sometent, acceptatz que la bibliotèca siá publicada sota la ",
|
||||
"link": "Licéncia MIT, ",
|
||||
"post": "que significa en brèu que qual que siá pòt l’utilizar sens cap de restriccion."
|
||||
},
|
||||
"noteDescription": "Enviatz vòstra bibliotèca per èsser compresa al <link>repertòri public de bibliotèca</link>per que los autres l’utilizen dins lor dessenhs.",
|
||||
"noteGuidelines": "Qualqu’un deu aprovar la bibliotèca manualament per començar. Volgatz legir las <link>linhas directrises</link> abans de sometre. Vos farà mestièr un compte GitHub per comunicar e realizar de modificacions se demandadas, mas es pas complètament obligatòri.",
|
||||
"noteLicense": "En sometent, acceptatz que la bibliotèca siá publicada sota la <link>Licéncia MIT, </link>que significa en brèu que qual que siá pòt l’utilizar sens cap de restriccion.",
|
||||
"noteItems": "Cada element de bibliotèca deu aver un nom pròpri per èsser filtrable. Los elements de bibliotèca seguentas seràn incluses :",
|
||||
"atleastOneLibItem": "Volgatz seleccionar almens un element de bibliotèca per començar",
|
||||
"republishWarning": "Nòta : d’unes elements seleccionats son marcats ja coma publicats/enviats. Deuriatz sonque tornar enviar los elements pendent l’actualizacion d’una bibliotèca existenta o un mandadís."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliotèca somesa",
|
||||
"content": "Mercés {{authorName}}. Vòstre bibliotèca es estada somesa per repassa. Podètz seguir l’avançament",
|
||||
"link": "aquí"
|
||||
"content": "Mercés {{authorName}}. Vòstre bibliotèca es estada somesa per repassa. Podètz seguir l’avançament<link>aquí</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Reïnicializar la bibliotèca",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "ਨੁਸਖਾ: ਸਭ ਤੋਂ ਦੂਰ ਸਥਿੱਤ ਐਲੀਮੈਂਟਾਂ ਨੂੰ ਥੋੜ੍ਹਾ ਜਿਹਾ ਨੇੜੇ ਲਿਆ ਕੇ ਦੇਖੋ।"
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "ਗਲਤੀ ਹੋਈ। ਇਹ ਕਰਕੇ ਦੇਖੋ ",
|
||||
"headingMain_button": "ਪੰਨਾ ਮੁੜ-ਲੋਡ ਕਰੋ।",
|
||||
"clearCanvasMessage": "ਜੇ ਮੁੜ-ਲੋਡ ਕਰਨਾ ਕੰਮ ਨਾ ਕਰੇ, ਤਾਂ ਇਹ ਕਰਕੇ ਦੇਖੋ ",
|
||||
"clearCanvasMessage_button": "ਕੈਨਵਸ ਸਾਫ ਕਰੋ।",
|
||||
"headingMain": "ਗਲਤੀ ਹੋਈ। ਇਹ ਕਰਕੇ ਦੇਖੋ <button>ਪੰਨਾ ਮੁੜ-ਲੋਡ ਕਰੋ।</button>",
|
||||
"clearCanvasMessage": "ਜੇ ਮੁੜ-ਲੋਡ ਕਰਨਾ ਕੰਮ ਨਾ ਕਰੇ, ਤਾਂ ਇਹ ਕਰਕੇ ਦੇਖੋ <button>ਕੈਨਵਸ ਸਾਫ ਕਰੋ।</button>",
|
||||
"clearCanvasCaveat": " ਇਹ ਸਾਰਾ ਕੰਮ ਗਵਾ ਦੇਵੇਗਾ ",
|
||||
"trackedToSentry_pre": "ਗਲਤੀ ਸੂਚਕ ",
|
||||
"trackedToSentry_post": " ਸਾਡੇ ਸਿਸਟਮ 'ਤੇ ਟਰੈਕ ਕੀਤਾ ਗਿਆ ਸੀ।",
|
||||
"openIssueMessage_pre": "ਅਸੀਂ ਬੜੇ ਸਾਵਧਾਨ ਸੀ ਕਿ ਗਲਤੀ ਵਿੱਚ ਤੁਹਾਡੇ ਦ੍ਰਿਸ਼ ਦੀ ਜਾਣਕਾਰੀ ਸ਼ਾਮਲ ਨਾ ਕਰੀਏ। ਜੇ ਤੁਹਾਡਾ ਦ੍ਰਿਸ਼ ਨਿੱਜੀ ਨਹੀਂ ਹੈ ਤਾਂ ਇਸ 'ਤੇ ਸਾਡੇ ਨਾਲ ਸੰਪਰਕ ਕਰੋ ਜੀ ",
|
||||
"openIssueMessage_button": "ਬੱਗ ਟਰੈਕਰ।",
|
||||
"openIssueMessage_post": "ਹੇਠਾਂ ਦਿੱਤੀ ਜਾਣਕਾਰੀ ਨੂੰ ਕਾਪੀ ਕਰਕੇ ਗਿੱਟਹੱਬ ਮੁੱਦੇ ਵਿੱਚ ਪੇਸਟ ਕਰਕੇ ਸ਼ਾਮਲ ਕਰੋ ਜੀ।",
|
||||
"trackedToSentry": "ਗਲਤੀ ਸੂਚਕ {{eventId}} ਸਾਡੇ ਸਿਸਟਮ 'ਤੇ ਟਰੈਕ ਕੀਤਾ ਗਿਆ ਸੀ।",
|
||||
"openIssueMessage": "ਅਸੀਂ ਬੜੇ ਸਾਵਧਾਨ ਸੀ ਕਿ ਗਲਤੀ ਵਿੱਚ ਤੁਹਾਡੇ ਦ੍ਰਿਸ਼ ਦੀ ਜਾਣਕਾਰੀ ਸ਼ਾਮਲ ਨਾ ਕਰੀਏ। ਜੇ ਤੁਹਾਡਾ ਦ੍ਰਿਸ਼ ਨਿੱਜੀ ਨਹੀਂ ਹੈ ਤਾਂ ਇਸ 'ਤੇ ਸਾਡੇ ਨਾਲ ਸੰਪਰਕ ਕਰੋ ਜੀ <button>ਬੱਗ ਟਰੈਕਰ।</button>ਹੇਠਾਂ ਦਿੱਤੀ ਜਾਣਕਾਰੀ ਨੂੰ ਕਾਪੀ ਕਰਕੇ ਗਿੱਟਹੱਬ ਮੁੱਦੇ ਵਿੱਚ ਪੇਸਟ ਕਰਕੇ ਸ਼ਾਮਲ ਕਰੋ ਜੀ।",
|
||||
"sceneContent": "ਦ੍ਰਿਸ਼ ਦੀ ਸਮੱਗਰੀ:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "ਲੋੜੀਂਦਾ",
|
||||
"website": "ਜਾਇਜ਼ URL ਭਰੋ"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "ਜਨਤਕ ਲਾਇਬ੍ਰੇਰੀ ਦੀ ਰਿਪਾਜ਼ੀਟਰੀ",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "ਦਿਸ਼ਾ ਨਿਰਦੇਸ਼",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "MIT ਲਾਇਸੈਂਸ, ",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "<link>ਜਨਤਕ ਲਾਇਬ੍ਰੇਰੀ ਦੀ ਰਿਪਾਜ਼ੀਟਰੀ</link>",
|
||||
"noteGuidelines": "<link>ਦਿਸ਼ਾ ਨਿਰਦੇਸ਼</link>",
|
||||
"noteLicense": "<link>MIT ਲਾਇਸੈਂਸ, </link>",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": "ਇੱਥੇ"
|
||||
"content": "<link>ਇੱਥੇ</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "ਲਾਇਬ੍ਰੇਰੀ ਰੀਸੈੱਟ ਕਰੋ",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Wskazówka: spróbuj nieco zbliżyć najdalej wysunięte elementy."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Wystąpił błąd. Spróbuj ",
|
||||
"headingMain_button": "odświeżyć stronę.",
|
||||
"clearCanvasMessage": "Jeśli odświeżenie strony nie zadziałało, spróbuj ",
|
||||
"clearCanvasMessage_button": "usunąć wszystko z dokumentu.",
|
||||
"headingMain": "Wystąpił błąd. Spróbuj <button>odświeżyć stronę.</button>",
|
||||
"clearCanvasMessage": "Jeśli odświeżenie strony nie zadziałało, spróbuj <button>usunąć wszystko z dokumentu.</button>",
|
||||
"clearCanvasCaveat": " Pamiętaj tylko, że spowoduje to utratę całej twojej pracy ",
|
||||
"trackedToSentry_pre": "Błąd o identyfikatorze ",
|
||||
"trackedToSentry_post": " został zaraportowany w naszym systemie.",
|
||||
"openIssueMessage_pre": "Szanujemy twoją prywatność i raport nie zawierał żadnych danych dotyczących tego nad czym pracowałeś, natomiast jeżeli jesteś w stanie podzielić się tym nad czym pracowałeś, prosimy o dodatkowy raport poprzez ",
|
||||
"openIssueMessage_button": "nasze narzędzie do raportowania błędów.",
|
||||
"openIssueMessage_post": " Prosimy o dołączenie poniższej informacji poprzez skopiowanie jej i umieszczenie jej w zgłoszeniu na portalu GitHub.",
|
||||
"trackedToSentry": "Błąd o identyfikatorze {{eventId}} został zaraportowany w naszym systemie.",
|
||||
"openIssueMessage": "Szanujemy twoją prywatność i raport nie zawierał żadnych danych dotyczących tego nad czym pracowałeś, natomiast jeżeli jesteś w stanie podzielić się tym nad czym pracowałeś, prosimy o dodatkowy raport poprzez <button>nasze narzędzie do raportowania błędów.</button> Prosimy o dołączenie poniższej informacji poprzez skopiowanie jej i umieszczenie jej w zgłoszeniu na portalu GitHub.",
|
||||
"sceneContent": "Zawartość dokumentu:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Wymagane",
|
||||
"website": "Wprowadź prawidłowy adres URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": "dla innych osób do wykorzystania w swoich rysunkach."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Biblioteka musi być najpierw zatwierdzona ręcznie. Przeczytaj ",
|
||||
"link": "wytyczne",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Wysyłając zgadzasz się, że biblioteka zostanie opublikowana pod ",
|
||||
"link": "Licencja MIT, ",
|
||||
"post": "w skrócie, każdy może z nich korzystać bez ograniczeń."
|
||||
},
|
||||
"noteDescription": "<link></link>dla innych osób do wykorzystania w swoich rysunkach.",
|
||||
"noteGuidelines": "Biblioteka musi być najpierw zatwierdzona ręcznie. Przeczytaj <link>wytyczne</link>",
|
||||
"noteLicense": "Wysyłając zgadzasz się, że biblioteka zostanie opublikowana pod <link>Licencja MIT, </link>w skrócie, każdy może z nich korzystać bez ograniczeń.",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "Proszę wybrać co najmniej jeden element biblioteki, by rozpocząć",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Biblioteka została przesłana",
|
||||
"content": "Dziękujemy {{authorName}}. Twoja biblioteka została przesłana do sprawdzenia. Możesz śledzić jej stan",
|
||||
"link": "tutaj"
|
||||
"content": "Dziękujemy {{authorName}}. Twoja biblioteka została przesłana do sprawdzenia. Możesz śledzić jej stan<link>tutaj</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Zresetuj Bibliotekę",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Dica: tente aproximar um pouco os elementos mais distantes."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Foi encontrado um erro. Tente ",
|
||||
"headingMain_button": "recarregar a página.",
|
||||
"clearCanvasMessage": "Se recarregar a página não funcionar, tente ",
|
||||
"clearCanvasMessage_button": "limpando a tela.",
|
||||
"headingMain": "Foi encontrado um erro. Tente <button>recarregar a página.</button>",
|
||||
"clearCanvasMessage": "Se recarregar a página não funcionar, tente <button>limpando a tela.</button>",
|
||||
"clearCanvasCaveat": " Isso resultará em perda de trabalho ",
|
||||
"trackedToSentry_pre": "O erro com o identificador ",
|
||||
"trackedToSentry_post": " foi rastreado no nosso sistema.",
|
||||
"openIssueMessage_pre": "Fomos muito cautelosos para não incluir suas informações de cena no erro. Se sua cena não for privada, por favor, considere seguir nosso ",
|
||||
"openIssueMessage_button": "rastreador de bugs.",
|
||||
"openIssueMessage_post": " Por favor, inclua informações abaixo, copiando e colando para a issue do GitHub.",
|
||||
"trackedToSentry": "O erro com o identificador {{eventId}} foi rastreado no nosso sistema.",
|
||||
"openIssueMessage": "Fomos muito cautelosos para não incluir suas informações de cena no erro. Se sua cena não for privada, por favor, considere seguir nosso <button>rastreador de bugs.</button> Por favor, inclua informações abaixo, copiando e colando para a issue do GitHub.",
|
||||
"sceneContent": "Conteúdo da cena:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Obrigatório",
|
||||
"website": "Informe uma URL válida"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Envie sua biblioteca para ser incluída no ",
|
||||
"link": "repositório de biblioteca pública",
|
||||
"post": "para outras pessoas usarem em seus desenhos."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "A biblioteca precisa ser aprovada manualmente primeiro. Por favor leia o ",
|
||||
"link": "orientações",
|
||||
"post": " antes de enviar. Você precisará de uma conta do GitHub para se comunicar e fazer alterações quando solicitado, mas não é estritamente necessário."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Ao enviar, você concorda que a biblioteca será publicada sob a ",
|
||||
"link": "Licença MIT, ",
|
||||
"post": "o que, em suma, significa que qualquer pessoa pode utilizá-los sem restrições."
|
||||
},
|
||||
"noteDescription": "Envie sua biblioteca para ser incluída no <link>repositório de biblioteca pública</link>para outras pessoas usarem em seus desenhos.",
|
||||
"noteGuidelines": "A biblioteca precisa ser aprovada manualmente primeiro. Por favor leia o <link>orientações</link> antes de enviar. Você precisará de uma conta do GitHub para se comunicar e fazer alterações quando solicitado, mas não é estritamente necessário.",
|
||||
"noteLicense": "Ao enviar, você concorda que a biblioteca será publicada sob a <link>Licença MIT, </link>o que, em suma, significa que qualquer pessoa pode utilizá-los sem restrições.",
|
||||
"noteItems": "Cada item da biblioteca deve ter seu próprio nome para que seja filtrável. Os seguintes itens da biblioteca serão incluídos:",
|
||||
"atleastOneLibItem": "Por favor, selecione pelo menos um item da biblioteca para começar",
|
||||
"republishWarning": "Nota: alguns dos itens selecionados estão marcados como já publicado/enviado. Você só deve reenviar itens ao atualizar uma biblioteca existente ou submissão."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Biblioteca enviada",
|
||||
"content": "Obrigado {{authorName}}. Sua biblioteca foi enviada para análise. Você pode acompanhar o status",
|
||||
"link": "aqui"
|
||||
"content": "Obrigado {{authorName}}. Sua biblioteca foi enviada para análise. Você pode acompanhar o status<link>aqui</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Redefinir biblioteca",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Dica: tente aproximar um pouco os elementos mais distantes."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Foi encontrado um erro. Tente ",
|
||||
"headingMain_button": "recarregar a página.",
|
||||
"clearCanvasMessage": "Se a recarga não funcionar, tente ",
|
||||
"clearCanvasMessage_button": "a limpar a área de desenho.",
|
||||
"headingMain": "Foi encontrado um erro. Tente <button>recarregar a página.</button>",
|
||||
"clearCanvasMessage": "Se a recarga não funcionar, tente <button>a limpar a área de desenho.</button>",
|
||||
"clearCanvasCaveat": " Isso resultará em perda de trabalho ",
|
||||
"trackedToSentry_pre": "O erro com o identificador ",
|
||||
"trackedToSentry_post": " foi rastreado no nosso sistema.",
|
||||
"openIssueMessage_pre": "Fomos muito cautelosos para não incluir suas informações de cena no erro. Se sua cena não for privada, por favor, considere seguir nosso ",
|
||||
"openIssueMessage_button": "rastreador de bugs.",
|
||||
"openIssueMessage_post": " Por favor, inclua informações abaixo, copiando e colando no relatório de erros no GitHub.",
|
||||
"trackedToSentry": "O erro com o identificador {{eventId}} foi rastreado no nosso sistema.",
|
||||
"openIssueMessage": "Fomos muito cautelosos para não incluir suas informações de cena no erro. Se sua cena não for privada, por favor, considere seguir nosso <button>rastreador de bugs.</button> Por favor, inclua informações abaixo, copiando e colando no relatório de erros no GitHub.",
|
||||
"sceneContent": "Conteúdo da cena:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Obrigatório",
|
||||
"website": "Introduza um URL válido"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Envie a sua biblioteca para ser incluída no ",
|
||||
"link": "repositório de bibliotecas públicas",
|
||||
"post": "para outras pessoas a poderem usar nos seus próprios desenhos."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "A biblioteca precisa ser aprovada manualmente primeiro. Por favor, leia ",
|
||||
"link": "orientações",
|
||||
"post": " antes de enviar. Vai precisar de uma conta no GitHub para comunicar e fazer alterações se solicitado, mas não é estritamente necessária."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Ao enviar, concorda que a biblioteca será publicada sob a ",
|
||||
"link": "Licença MIT, ",
|
||||
"post": "o que significa, de forma resumida, que qualquer pessoa pode utilizá-la sem restrições."
|
||||
},
|
||||
"noteDescription": "Envie a sua biblioteca para ser incluída no <link>repositório de bibliotecas públicas</link>para outras pessoas a poderem usar nos seus próprios desenhos.",
|
||||
"noteGuidelines": "A biblioteca precisa ser aprovada manualmente primeiro. Por favor, leia <link>orientações</link> antes de enviar. Vai precisar de uma conta no GitHub para comunicar e fazer alterações se solicitado, mas não é estritamente necessária.",
|
||||
"noteLicense": "Ao enviar, concorda que a biblioteca será publicada sob a <link>Licença MIT, </link>o que significa, de forma resumida, que qualquer pessoa pode utilizá-la sem restrições.",
|
||||
"noteItems": "Cada item da biblioteca deve ter o seu próprio nome para que este seja pesquisável com filtros. Os seguintes itens da biblioteca serão incluídos:",
|
||||
"atleastOneLibItem": "Por favor, seleccione pelo menos um item da biblioteca para começar",
|
||||
"republishWarning": "Nota: alguns dos itens seleccionados estão marcados como já publicados/enviados. Só deve reenviar itens ao actualizar uma biblioteca existente ou submissão."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Biblioteca enviada",
|
||||
"content": "Obrigado {{authorName}}. A sua biblioteca foi enviada para análise. Pode acompanhar o status",
|
||||
"link": "aqui"
|
||||
"content": "Obrigado {{authorName}}. A sua biblioteca foi enviada para análise. Pode acompanhar o status<link>aqui</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Repor a biblioteca",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Sfat: încearcă să apropii puțin mai mult elementele cele mai îndepărtate."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "A apărut o eroare. Încearcă ",
|
||||
"headingMain_button": "să reîncarci pagina.",
|
||||
"clearCanvasMessage": "Dacă reîncărcarea nu funcționează, încearcă ",
|
||||
"clearCanvasMessage_button": "să golești pânza.",
|
||||
"headingMain": "A apărut o eroare. Încearcă <button>să reîncarci pagina.</button>",
|
||||
"clearCanvasMessage": "Dacă reîncărcarea nu funcționează, încearcă <button>să golești pânza.</button>",
|
||||
"clearCanvasCaveat": " Acest lucru va duce la pierderea progresului ",
|
||||
"trackedToSentry_pre": "Eroarea cu identificatorul ",
|
||||
"trackedToSentry_post": " a fost urmărită în sistemul nostru.",
|
||||
"openIssueMessage_pre": "Am luat măsuri de precauție pentru a nu include informații despre scenă în eroare. Dacă scena nu este privată, te rugăm să ne oferi mai multe informații în ",
|
||||
"openIssueMessage_button": "monitorul nostru pentru erori.",
|
||||
"openIssueMessage_post": " Te rugăm să incluzi informațiile de mai jos prin copierea și lipirea în problema GitHub.",
|
||||
"trackedToSentry": "Eroarea cu identificatorul {{eventId}} a fost urmărită în sistemul nostru.",
|
||||
"openIssueMessage": "Am luat măsuri de precauție pentru a nu include informații despre scenă în eroare. Dacă scena nu este privată, te rugăm să ne oferi mai multe informații în <button>monitorul nostru pentru erori.</button> Te rugăm să incluzi informațiile de mai jos prin copierea și lipirea în problema GitHub.",
|
||||
"sceneContent": "Conținutul scenei:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Obligatoriu",
|
||||
"website": "Introdu un URL valid"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Trimite-ți biblioteca pentru fi inclus în ",
|
||||
"link": "depozitul de biblioteci publice",
|
||||
"post": "pentru utilizarea de către alte persoane în desenele lor."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Biblioteca trebuie aprobată manual. Citește ",
|
||||
"link": "orientările",
|
||||
"post": " înainte de trimitere. Vei avea nevoie de un cont GitHub pentru a comunica și efectua modificări, dacă este cazul, însă nu este strict necesar."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Prin trimiterea bibliotecii, ești de acord că aceasta va fi publicată sub ",
|
||||
"link": "Licența MIT, ",
|
||||
"post": "care, pe scurt, înseamnă că oricine o poate folosi fără restricții."
|
||||
},
|
||||
"noteDescription": "Trimite-ți biblioteca pentru fi inclus în <link>depozitul de biblioteci publice</link>pentru utilizarea de către alte persoane în desenele lor.",
|
||||
"noteGuidelines": "Biblioteca trebuie aprobată manual. Citește <link>orientările</link> înainte de trimitere. Vei avea nevoie de un cont GitHub pentru a comunica și efectua modificări, dacă este cazul, însă nu este strict necesar.",
|
||||
"noteLicense": "Prin trimiterea bibliotecii, ești de acord că aceasta va fi publicată sub <link>Licența MIT, </link>care, pe scurt, înseamnă că oricine o poate folosi fără restricții.",
|
||||
"noteItems": "Fiecare element din bibliotecă trebuie să aibă propriul nume astfel încât să fie filtrabil. Următoarele elemente din bibliotecă vor fi incluse:",
|
||||
"atleastOneLibItem": "Selectează cel puțin un element din bibliotecă pentru a începe",
|
||||
"republishWarning": "Observație: unele dintre elementele selectate sunt marcate ca fiind deja publicate/trimise. Ar trebui să retrimiți elemente numai atunci când actualizezi o trimitere sau o bibliotecă existentă."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliotecă trimisă",
|
||||
"content": "Îți mulțumim, {{authorName}}. Biblioteca ta a fost trimisă spre revizuire. Poți urmări starea",
|
||||
"link": "aici"
|
||||
"content": "Îți mulțumim, {{authorName}}. Biblioteca ta a fost trimisă spre revizuire. Poți urmări starea<link>aici</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Resetare bibliotecă",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Совет: попробуйте сблизить элементы рисунка."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Возникла ошибка. Попробуйте ",
|
||||
"headingMain_button": "перезагрузить страницу.",
|
||||
"clearCanvasMessage": "Если перезагрузка страницы не помогла, попробуйте ",
|
||||
"clearCanvasMessage_button": "очистить холст.",
|
||||
"headingMain": "Возникла ошибка. Попробуйте <button>перезагрузить страницу.</button>",
|
||||
"clearCanvasMessage": "Если перезагрузка страницы не помогла, попробуйте <button>очистить холст.</button>",
|
||||
"clearCanvasCaveat": " Текущая работа будет утеряна ",
|
||||
"trackedToSentry_pre": "Ошибка с идентификатором ",
|
||||
"trackedToSentry_post": " отслеживается в нашей системе.",
|
||||
"openIssueMessage_pre": "Для безопасности информация о вашей сцене не включена в ошибку. Если в сцене нет ничего конфиденциального, пожалуйста следуйте нашим ",
|
||||
"openIssueMessage_button": "баг трекере.",
|
||||
"openIssueMessage_post": " Пожалуйста, приложите информацию ниже, скопировав и вставив её, в issue GitHub.",
|
||||
"trackedToSentry": "Ошибка с идентификатором {{eventId}} отслеживается в нашей системе.",
|
||||
"openIssueMessage": "Для безопасности информация о вашей сцене не включена в ошибку. Если в сцене нет ничего конфиденциального, пожалуйста следуйте нашим <button>баг трекере.</button> Пожалуйста, приложите информацию ниже, скопировав и вставив её, в issue GitHub.",
|
||||
"sceneContent": "Содержание сцены:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Обязательно",
|
||||
"website": "Введите допустимый URL-адрес"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Отправить вашу библиотеку для включения в ",
|
||||
"link": "хранилище публичных библиотек",
|
||||
"post": ", чтобы другие люди могли использовать объекты из вашей библиотеки в своих рисунках."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Библиотека должна быть подтверждена вручную. Пожалуйста, прочтите ",
|
||||
"link": "рекомендации",
|
||||
"post": " перед отправкой. Вам понадобится учетная запись GitHub, чтобы общаться и вносить изменения при необходимости, но это не обязательно."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Выполняя отправку, вы соглашаетесь с тем, что библиотека будет опубликована под ",
|
||||
"link": "лицензией MIT, ",
|
||||
"post": ", что, вкратце, означает, что каждый может использовать её без ограничений."
|
||||
},
|
||||
"noteDescription": "Отправить вашу библиотеку для включения в <link>хранилище публичных библиотек</link>, чтобы другие люди могли использовать объекты из вашей библиотеки в своих рисунках.",
|
||||
"noteGuidelines": "Библиотека должна быть подтверждена вручную. Пожалуйста, прочтите <link>рекомендации</link> перед отправкой. Вам понадобится учетная запись GitHub, чтобы общаться и вносить изменения при необходимости, но это не обязательно.",
|
||||
"noteLicense": "Выполняя отправку, вы соглашаетесь с тем, что библиотека будет опубликована под <link>лицензией MIT, </link>, что, вкратце, означает, что каждый может использовать её без ограничений.",
|
||||
"noteItems": "Каждый объект в библиотеке должен иметь свое собственное имя, чтобы по нему можно было фильтровать. Следующие объекты библиотеки будут включены:",
|
||||
"atleastOneLibItem": "Пожалуйста, выберите хотя бы один объект в библиотеке, чтобы начать",
|
||||
"republishWarning": "Примечание: некоторые из выбранных элементов помечены как уже опубликованные/отправленные. Вы должны повторно отправить элементы только при обновлении существующей библиотеки или сдаче работы."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Библиотека отправлена",
|
||||
"content": "Благодарим вас, {{authorName}}. Ваша библиотека была отправлена на проверку. Вы можете отслеживать статус",
|
||||
"link": "здесь"
|
||||
"content": "Благодарим вас, {{authorName}}. Ваша библиотека была отправлена на проверку. Вы можете отслеживать статус<link>здесь</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Сброс библиотеки",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": ""
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "",
|
||||
"headingMain_button": "",
|
||||
"headingMain": "",
|
||||
"clearCanvasMessage": "",
|
||||
"clearCanvasMessage_button": "",
|
||||
"clearCanvasCaveat": "",
|
||||
"trackedToSentry_pre": "",
|
||||
"trackedToSentry_post": "",
|
||||
"openIssueMessage_pre": "",
|
||||
"openIssueMessage_button": "",
|
||||
"openIssueMessage_post": "",
|
||||
"trackedToSentry": "",
|
||||
"openIssueMessage": "",
|
||||
"sceneContent": ""
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tip: skúste presunúť najvzdialenejšie prvky bližšie k sebe."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Nastala chyba. Vyskúšajte ",
|
||||
"headingMain_button": "obnoviť stránku.",
|
||||
"clearCanvasMessage": "Ak obnovenie stránky nepomáha, vyskúšajte ",
|
||||
"clearCanvasMessage_button": "vyčistiť plátno.",
|
||||
"headingMain": "Nastala chyba. Vyskúšajte <button>obnoviť stránku.</button>",
|
||||
"clearCanvasMessage": "Ak obnovenie stránky nepomáha, vyskúšajte <button>vyčistiť plátno.</button>",
|
||||
"clearCanvasCaveat": " To bude mať za následok stratu práce ",
|
||||
"trackedToSentry_pre": "Chyba s identifikátorom ",
|
||||
"trackedToSentry_post": " bola zaznamenaná v našom systéme.",
|
||||
"openIssueMessage_pre": "Boli sme veľmi opatrní, aby informácie vašej scény neboli v chybe zaznamenané. Ak vaša scéna nie je súkromná, prosím zvážte pokračovanie na naše ",
|
||||
"openIssueMessage_button": "hlásenie chýb.",
|
||||
"openIssueMessage_post": " Prosím zahrňte informácie nižšie pomocou kopírovania a prilepenia do GitHub issue.",
|
||||
"trackedToSentry": "Chyba s identifikátorom {{eventId}} bola zaznamenaná v našom systéme.",
|
||||
"openIssueMessage": "Boli sme veľmi opatrní, aby informácie vašej scény neboli v chybe zaznamenané. Ak vaša scéna nie je súkromná, prosím zvážte pokračovanie na naše <button>hlásenie chýb.</button> Prosím zahrňte informácie nižšie pomocou kopírovania a prilepenia do GitHub issue.",
|
||||
"sceneContent": "Obsah scény:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Povinné",
|
||||
"website": "Zadajte platnú adresu URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Uverejnite vašu knižnicu vo ",
|
||||
"link": "verejnom zozname knižníc",
|
||||
"post": "aby ju aj ostatní mohli použiť v ich náčrtoch."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Knižnica musí byť najprv manuálne schválená. Prosím prečítajte si ",
|
||||
"link": "pokyny",
|
||||
"post": " pred uverejnením. Budete potrebovať Github účet na komunikáciu a vykonanie zmien, ak budú potrebné, avšak nie je to úplne povinné."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Potvrdením súhlasíte, že knižnica bude zverejnená s ",
|
||||
"link": "MIT licenciou, ",
|
||||
"post": "čo v skratke znamená, že ju môže použiť hocikto bez obmedzení."
|
||||
},
|
||||
"noteDescription": "Uverejnite vašu knižnicu vo <link>verejnom zozname knižníc</link>aby ju aj ostatní mohli použiť v ich náčrtoch.",
|
||||
"noteGuidelines": "Knižnica musí byť najprv manuálne schválená. Prosím prečítajte si <link>pokyny</link> pred uverejnením. Budete potrebovať Github účet na komunikáciu a vykonanie zmien, ak budú potrebné, avšak nie je to úplne povinné.",
|
||||
"noteLicense": "Potvrdením súhlasíte, že knižnica bude zverejnená s <link>MIT licenciou, </link>čo v skratke znamená, že ju môže použiť hocikto bez obmedzení.",
|
||||
"noteItems": "Každá položka v knižnici musí mať svoje vlastné meno, aby sa dala vyhľadať. Súčasťou knižnice budú nasledujúce položky:",
|
||||
"atleastOneLibItem": "Začnite prosím zvolením aspoň jednej položky z knižnice",
|
||||
"republishWarning": "Poznámka: Niektoré z vybraných položiek sú už označené ako zverejnené. Ich znovu uverejnenie by ste mali vykovať iba vtedy ak aktualizujete už existujúcu knižnicu alebo požiadavku na uverejnenie."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Knižnica uverejnená",
|
||||
"content": "Ďakujeme vám {{authorName}}. Vaša knižnica bola uverejnená na posúdenie. Stav môžete skontrolovať",
|
||||
"link": "tu"
|
||||
"content": "Ďakujeme vám {{authorName}}. Vaša knižnica bola uverejnená na posúdenie. Stav môžete skontrolovať<link>tu</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Obnoviť knižnicu",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Nasvet: poskusite premakniti najbolj oddaljene elemente nekoliko bližje skupaj."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Prišlo je do napake. Poskusite ",
|
||||
"headingMain_button": "ponovno naložiti stran.",
|
||||
"clearCanvasMessage": "Če ponovno nalaganje ne deluje, poskusite ",
|
||||
"clearCanvasMessage_button": "počistiti platno.",
|
||||
"headingMain": "Prišlo je do napake. Poskusite <button>ponovno naložiti stran.</button>",
|
||||
"clearCanvasMessage": "Če ponovno nalaganje ne deluje, poskusite <button>počistiti platno.</button>",
|
||||
"clearCanvasCaveat": " To bo povzročilo izgubo dela ",
|
||||
"trackedToSentry_pre": "Napaka z identifikatorjem ",
|
||||
"trackedToSentry_post": " smo zabeležili v naš sistem.",
|
||||
"openIssueMessage_pre": "Zelo smo bili previdni, da v podatke o napaki nismo vključili vaših podatkov o sceni. Če vaša scena ni zasebna, vas prosimo, da napišete več podrobnosti na našem ",
|
||||
"openIssueMessage_button": "sledilniku hroščev.",
|
||||
"openIssueMessage_post": " Prosimo, vključite spodnje informacije tako, da jih kopirate in prilepite v GitHub vprašanje.",
|
||||
"trackedToSentry": "Napaka z identifikatorjem {{eventId}} smo zabeležili v naš sistem.",
|
||||
"openIssueMessage": "Zelo smo bili previdni, da v podatke o napaki nismo vključili vaših podatkov o sceni. Če vaša scena ni zasebna, vas prosimo, da napišete več podrobnosti na našem <button>sledilniku hroščev.</button> Prosimo, vključite spodnje informacije tako, da jih kopirate in prilepite v GitHub vprašanje.",
|
||||
"sceneContent": "Vsebina scene:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Obvezno",
|
||||
"website": "Vnesite veljaven URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Predložite svojo knjižnico, da bo vključena v ",
|
||||
"link": "javno skladišče knjižnic,",
|
||||
"post": "da jih drugi lahko uporabljajo v svojih risbah."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Knjižnica mora biti najprej ročno odobrena. Prosimo vas, da pred oddajanjem preberete naše ",
|
||||
"link": "smernice.",
|
||||
"post": "Za komunikacijo in spreminjanje po potrebi boste potrebovali račun GitHub, vendar to ni obvezno."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Z oddajo se strinjate, da bo knjižnica objavljena pod ",
|
||||
"link": "licenco MIT, ",
|
||||
"post": "kar na kratko pomeni, da jo lahko kdorkoli uporablja brez omejitev."
|
||||
},
|
||||
"noteDescription": "Predložite svojo knjižnico, da bo vključena v <link>javno skladišče knjižnic,</link>da jih drugi lahko uporabljajo v svojih risbah.",
|
||||
"noteGuidelines": "Knjižnica mora biti najprej ročno odobrena. Prosimo vas, da pred oddajanjem preberete naše <link>smernice.</link>Za komunikacijo in spreminjanje po potrebi boste potrebovali račun GitHub, vendar to ni obvezno.",
|
||||
"noteLicense": "Z oddajo se strinjate, da bo knjižnica objavljena pod <link>licenco MIT, </link>kar na kratko pomeni, da jo lahko kdorkoli uporablja brez omejitev.",
|
||||
"noteItems": "Vsak element knjižnice mora imeti svoje ime, tako da ga je mogoče filtrirati. Vključeni bodo naslednji elementi knjižnice:",
|
||||
"atleastOneLibItem": "Za začetek izberite vsaj en element knjižnice",
|
||||
"republishWarning": "Opomba: nekateri izbrani predmeti so označeni kot že objavljeni/oddani. Elemente lahko znova oddate samo, ko posodabljate obstoječo knjižnico ali oddajo."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Knjižnica oddana",
|
||||
"content": "{{authorName}}, hvala. Vaša knjižnica je bila poslana v pregled. Stanje lahko spremljate",
|
||||
"link": "tukaj"
|
||||
"content": "{{authorName}}, hvala. Vaša knjižnica je bila poslana v pregled. Stanje lahko spremljate<link>tukaj</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Ponastavi knjižnico",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Tips: prova att flytta de mest avlägsna elementen lite närmare varandra."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Ett fel uppstod. Försök ",
|
||||
"headingMain_button": "med att läsa in sidan på nytt.",
|
||||
"clearCanvasMessage": "Om omladdning inte fungerar, försök ",
|
||||
"clearCanvasMessage_button": "rensa canvasen.",
|
||||
"headingMain": "Ett fel uppstod. Försök <button>med att läsa in sidan på nytt.</button>",
|
||||
"clearCanvasMessage": "Om omladdning inte fungerar, försök <button>rensa canvasen.</button>",
|
||||
"clearCanvasCaveat": " Detta kommer att leda till förlust av arbete ",
|
||||
"trackedToSentry_pre": "Felet med identifieraren ",
|
||||
"trackedToSentry_post": " spårades på vårt system.",
|
||||
"openIssueMessage_pre": "Vi var mycket försiktiga med att inte inkludera din skissinformation om felet. Om din skiss inte är privat, vänligen överväga att följa upp på vår ",
|
||||
"openIssueMessage_button": "buggspårare.",
|
||||
"openIssueMessage_post": " Vänligen inkludera information nedan genom att kopiera och klistra in i GitHub-problemet.",
|
||||
"trackedToSentry": "Felet med identifieraren {{eventId}} spårades på vårt system.",
|
||||
"openIssueMessage": "Vi var mycket försiktiga med att inte inkludera din skissinformation om felet. Om din skiss inte är privat, vänligen överväga att följa upp på vår <button>buggspårare.</button> Vänligen inkludera information nedan genom att kopiera och klistra in i GitHub-problemet.",
|
||||
"sceneContent": "Skissinnehåll:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Obligatoriskt",
|
||||
"website": "Ange en giltig URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Skicka ditt bibliotek för att inkluderas i ",
|
||||
"link": "det offentliga bibliotekets arkiv",
|
||||
"post": "för andra människor att använda i sina skisser."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Biblioteket måste godkännas manuellt först. Vänligen läs ",
|
||||
"link": "riktlinjerna",
|
||||
"post": " innan du skickar in. Du behöver ett GitHub-konto för att kommunicera och göra ändringar om så önskas, men det krävs inte."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Genom att skicka in godkänner du att biblioteket kommer att publiceras under ",
|
||||
"link": "MIT-licens, ",
|
||||
"post": "vilket kort sagt betyder att vem som helst kan använda det utan restriktioner."
|
||||
},
|
||||
"noteDescription": "Skicka ditt bibliotek för att inkluderas i <link>det offentliga bibliotekets arkiv</link>för andra människor att använda i sina skisser.",
|
||||
"noteGuidelines": "Biblioteket måste godkännas manuellt först. Vänligen läs <link>riktlinjerna</link> innan du skickar in. Du behöver ett GitHub-konto för att kommunicera och göra ändringar om så önskas, men det krävs inte.",
|
||||
"noteLicense": "Genom att skicka in godkänner du att biblioteket kommer att publiceras under <link>MIT-licens, </link>vilket kort sagt betyder att vem som helst kan använda det utan restriktioner.",
|
||||
"noteItems": "Varje objekt måste ha sitt eget namn så att det är filtrerbart. Följande objekt kommer att inkluderas:",
|
||||
"atleastOneLibItem": "Välj minst ett biblioteksobjekt för att komma igång",
|
||||
"republishWarning": "Obs: några av de markerade objekten är redan markerade som publicerade/skickade. Du bör endast skicka objekt igen när du uppdaterar ett befintligt bibliotek eller inlämning."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Bibliotek inskickat",
|
||||
"content": "Tack {{authorName}}. Ditt bibliotek har skickats för granskning. Du kan följa status",
|
||||
"link": "här"
|
||||
"content": "Tack {{authorName}}. Ditt bibliotek har skickats för granskning. Du kan följa status<link>här</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Återställ bibliotek",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "துணுக்குதவி: தூரத்திலுள்ள உறுப்புகளைப் நெருக்கமாக நகர்த்தப்பார்."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "பிழையைச் சந்தித்தீரா. முயலவும் ",
|
||||
"headingMain_button": "பக்கத்தை மீண்டுமேற்றுகிறது.",
|
||||
"clearCanvasMessage": "மீண்டுமேற்றல் வேலைசெய்யவிட்டால், முயற்சி ",
|
||||
"clearCanvasMessage_button": "கித்தானைத் துடைக்கிறது.",
|
||||
"headingMain": "பிழையைச் சந்தித்தீரா. முயலவும் <button>பக்கத்தை மீண்டுமேற்றுகிறது.</button>",
|
||||
"clearCanvasMessage": "மீண்டுமேற்றல் வேலைசெய்யவிட்டால், முயற்சி <button>கித்தானைத் துடைக்கிறது.</button>",
|
||||
"clearCanvasCaveat": " இது வேலையை இழக்கக்கூடும் ",
|
||||
"trackedToSentry_pre": "இனங்காணியில் பிழை ",
|
||||
"trackedToSentry_post": " எங்கள் இயங்குதளத்தில் தடமறியப்பட்டது.",
|
||||
"openIssueMessage_pre": "பிழையில் உம் காட்சி தகவலை உள்ளடக்காமலிருக்க நாங்கள் மிக எச்சரிக்கையாக இருந்தோம். உம் காட்சி தனிப்பட்டதில்லையெனில், பின்தொடர்வதற்கு பரிசீலிக்கவும் எங்கள் ",
|
||||
"openIssueMessage_button": "பிழை தடமி.",
|
||||
"openIssueMessage_post": " கீழுள்ள தகவலை நகலெடுத்து ஒட்டி GitHub சிக்கலுள் உள்ளடக்கவும்.",
|
||||
"trackedToSentry": "இனங்காணியில் பிழை {{eventId}} எங்கள் இயங்குதளத்தில் தடமறியப்பட்டது.",
|
||||
"openIssueMessage": "பிழையில் உம் காட்சி தகவலை உள்ளடக்காமலிருக்க நாங்கள் மிக எச்சரிக்கையாக இருந்தோம். உம் காட்சி தனிப்பட்டதில்லையெனில், பின்தொடர்வதற்கு பரிசீலிக்கவும் எங்கள் <button>பிழை தடமி.</button> கீழுள்ள தகவலை நகலெடுத்து ஒட்டி GitHub சிக்கலுள் உள்ளடக்கவும்.",
|
||||
"sceneContent": "காட்சி உள்ளடக்கம்:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "தேவைப்டுகிறது",
|
||||
"website": "செல்லத்தக்க உரலியை உள்ளிடு"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "உம் நூலகத்தைச் சமர்ப்பி உள்ளடக்குவதற்கு ",
|
||||
"link": "பொது நூலக களஞ்சியத்தில்",
|
||||
"post": "பிற மக்களவர்களின் சித்திரங்களில் பயன்படுத்த."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "நூலகம் முதலில் கைமுறையாக ஒப்புக்கொள்ளப்படவேண்டும். வாசிக்கவும் ",
|
||||
"link": "வழிகாட்டுதல்களைச்",
|
||||
"post": " சமர்ப்பிக்கும் முன்பு. கோரப்பட்டால் தொடர்புகொள்ள மற்றும் மாற்றங்கள் செய்ய உமக்கொரு GitHub கணக்கு தேவை, ஆனால் அது கண்டிப்பாக தேவையல்ல."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "சமர்ப்பிப்பதனால், நூலகம் இதனடியில் பிரசரிக்கப்பட ஏற்கிறீர்கள் ",
|
||||
"link": "MIT உரிமம், ",
|
||||
"post": "சுருக்கமாக எவருமிதைப் வரையறையின்றி பயன்படுத்தலாமென குறிக்கிறது."
|
||||
},
|
||||
"noteDescription": "உம் நூலகத்தைச் சமர்ப்பி உள்ளடக்குவதற்கு <link>பொது நூலக களஞ்சியத்தில்</link>பிற மக்களவர்களின் சித்திரங்களில் பயன்படுத்த.",
|
||||
"noteGuidelines": "நூலகம் முதலில் கைமுறையாக ஒப்புக்கொள்ளப்படவேண்டும். வாசிக்கவும் <link>வழிகாட்டுதல்களைச்</link> சமர்ப்பிக்கும் முன்பு. கோரப்பட்டால் தொடர்புகொள்ள மற்றும் மாற்றங்கள் செய்ய உமக்கொரு GitHub கணக்கு தேவை, ஆனால் அது கண்டிப்பாக தேவையல்ல.",
|
||||
"noteLicense": "சமர்ப்பிப்பதனால், நூலகம் இதனடியில் பிரசரிக்கப்பட ஏற்கிறீர்கள் <link>MIT உரிமம், </link>சுருக்கமாக எவருமிதைப் வரையறையின்றி பயன்படுத்தலாமென குறிக்கிறது.",
|
||||
"noteItems": "வடிக்கட்டக்கூடியதாகவிருக்க ஒவ்வொரு நூலகவுருப்படிக்கும் சொந்த பெயர் இருக்கவேண்டும். பின்வரும் நூலகவுருப்படிகள் உள்ளடக்கப்படும்:",
|
||||
"atleastOneLibItem": "ஆரம்பிக்க ஒரு நூலக உருப்படியையாவது தேர்ந்தெடுக்கவும்",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "நூலகம் சமர்ப்பிக்கப்பட்டது",
|
||||
"content": "நன்றி {{authorName}}. உமது நூலகம் மதிப்பாய்விற்காக சமர்ப்பிக்கப்பட்டது. நிலையை நீங்கள் தடமறியலாம்",
|
||||
"link": "இங்கே"
|
||||
"content": "நன்றி {{authorName}}. உமது நூலகம் மதிப்பாய்விற்காக சமர்ப்பிக்கப்பட்டது. நிலையை நீங்கள் தடமறியலாம்<link>இங்கே</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "நூலகத்தை அகரமாக்கு",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": ""
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "",
|
||||
"headingMain_button": "กำลังรีโหลดหน้า",
|
||||
"clearCanvasMessage": "ถ้าโหลดไม่ได้ ให้ลอง ",
|
||||
"clearCanvasMessage_button": "เคลียร์ผืนผ้าใบ",
|
||||
"headingMain": "<button>กำลังรีโหลดหน้า</button>",
|
||||
"clearCanvasMessage": "ถ้าโหลดไม่ได้ ให้ลอง <button>เคลียร์ผืนผ้าใบ</button>",
|
||||
"clearCanvasCaveat": "",
|
||||
"trackedToSentry_pre": "",
|
||||
"trackedToSentry_post": "",
|
||||
"openIssueMessage_pre": "",
|
||||
"openIssueMessage_button": "",
|
||||
"openIssueMessage_post": "",
|
||||
"trackedToSentry": "",
|
||||
"openIssueMessage": "",
|
||||
"sceneContent": ""
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "İpucu: En uzaktaki elemanları birbirine yakınlaştırmayı deneyin."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Hata oluştu. Lütfen ",
|
||||
"headingMain_button": "sayfayı yenilemeyi deneyin.",
|
||||
"clearCanvasMessage": "Yenileme sonrası sorun devam ediyorsa, lütfen ",
|
||||
"clearCanvasMessage_button": "çizim alanını temizlemeyi deneyin.",
|
||||
"headingMain": "Hata oluştu. Lütfen <button>sayfayı yenilemeyi deneyin.</button>",
|
||||
"clearCanvasMessage": "Yenileme sonrası sorun devam ediyorsa, lütfen <button>çizim alanını temizlemeyi deneyin.</button>",
|
||||
"clearCanvasCaveat": " Bu, yaptığınız değişiklikleri sıfırlayacak ",
|
||||
"trackedToSentry_pre": "Tanımlayıcı ile ilgili hata ",
|
||||
"trackedToSentry_post": " sistemimize yakalandı.",
|
||||
"openIssueMessage_pre": "Sahne bilginizi hata mesajına yansıtmamak için oldukça dikkatli davrandık. Eğer sahneniz gizli değilse hatayı lütfen şuradan takip edin ",
|
||||
"openIssueMessage_button": "hata takibi.",
|
||||
"openIssueMessage_post": " Lütfen aşağıya GitHub sorununa kopyalayarak ve yapıştırarak bilgi ekleyin.",
|
||||
"trackedToSentry": "Tanımlayıcı ile ilgili hata {{eventId}} sistemimize yakalandı.",
|
||||
"openIssueMessage": "Sahne bilginizi hata mesajına yansıtmamak için oldukça dikkatli davrandık. Eğer sahneniz gizli değilse hatayı lütfen şuradan takip edin <button>hata takibi.</button> Lütfen aşağıya GitHub sorununa kopyalayarak ve yapıştırarak bilgi ekleyin.",
|
||||
"sceneContent": "Sahne içeriği:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Gerekli",
|
||||
"website": "Geçerli bir URL girin"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Submit your library to be included in the ",
|
||||
"link": "genel kütüphane reposu",
|
||||
"post": "diğer insanlar çizimlerinde kullanabilsin diye."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Önce kütüphane elle onaylanmalı. şunu okuyun ",
|
||||
"link": "yönergeler",
|
||||
"post": " onaylamadan önce. gerekli olması halinde iletişim kurmak için ve değişiklik için Github hesabı gerekli, ama çok da illaki olmalı değil."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Bunu onaylayarak, kütüğhanenin şu lisansla yayınlanmasını onaylıyorsunuz ",
|
||||
"link": "MIT Lisans, ",
|
||||
"post": "ki bu kısaca herkesin onu kısıtlama olmaksızın kullanabileceği anlamına gelmektedir."
|
||||
},
|
||||
"noteDescription": "Submit your library to be included in the <link>genel kütüphane reposu</link>diğer insanlar çizimlerinde kullanabilsin diye.",
|
||||
"noteGuidelines": "Önce kütüphane elle onaylanmalı. şunu okuyun <link>yönergeler</link> onaylamadan önce. gerekli olması halinde iletişim kurmak için ve değişiklik için Github hesabı gerekli, ama çok da illaki olmalı değil.",
|
||||
"noteLicense": "Bunu onaylayarak, kütüğhanenin şu lisansla yayınlanmasını onaylıyorsunuz <link>MIT Lisans, </link>ki bu kısaca herkesin onu kısıtlama olmaksızın kullanabileceği anlamına gelmektedir.",
|
||||
"noteItems": "Her kütüphane kendi ismine sahip olmalı ki tarama yapabilelim. Şu kütüphane ögeleri dahil edilecek:",
|
||||
"atleastOneLibItem": "Lütfen başlamak için en az bir tane kütüphane ögesi seçin",
|
||||
"republishWarning": "Not: seçilen ögelerden bir kısmı zaten yayınlanmış/gönderilmiş. Yalnızca mevcut kütüphane ve gönderileri güncellerken yeniden gönderme işlemi yapmalısınız."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Kütüphane gönderildi",
|
||||
"content": "Teşekkürler {{authorName}}. Kütüphaneniz gözden geçirme için alındı. Durumu takip edebilirsiniz",
|
||||
"link": "burada"
|
||||
"content": "Teşekkürler {{authorName}}. Kütüphaneniz gözden geçirme için alındı. Durumu takip edebilirsiniz<link>burada</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Kütüphaneyi sıfırla",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Порада: спробуйте підсунути найвіддаленіші елементи ближче один до одного."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "Сталася помилка. Спробуйте ",
|
||||
"headingMain_button": "перезавантажити сторінку.",
|
||||
"clearCanvasMessage": "Якщо перезавантаження не допоможе, спробуйте ",
|
||||
"clearCanvasMessage_button": "очистити полотно.",
|
||||
"headingMain": "Сталася помилка. Спробуйте <button>перезавантажити сторінку.</button>",
|
||||
"clearCanvasMessage": "Якщо перезавантаження не допоможе, спробуйте <button>очистити полотно.</button>",
|
||||
"clearCanvasCaveat": " Це призведе до втрати роботи ",
|
||||
"trackedToSentry_pre": "Помилка з ідентифікатором ",
|
||||
"trackedToSentry_post": " було відслідковано в нашій системі.",
|
||||
"openIssueMessage_pre": "Ми були дуже обережні, щоб не включати інформацію про ваші сцени в текст помилки. Якщо ваша сцена не була приватна, будь ласка, розгляньте можливість продовження на нашому ",
|
||||
"openIssueMessage_button": "трекер помилок.",
|
||||
"openIssueMessage_post": " Будь ласка, додайте інформацію нижче, скопіюючи і вставляючи у GitHub issue.",
|
||||
"trackedToSentry": "Помилка з ідентифікатором {{eventId}} було відслідковано в нашій системі.",
|
||||
"openIssueMessage": "Ми були дуже обережні, щоб не включати інформацію про ваші сцени в текст помилки. Якщо ваша сцена не була приватна, будь ласка, розгляньте можливість продовження на нашому <button>трекер помилок.</button> Будь ласка, додайте інформацію нижче, скопіюючи і вставляючи у GitHub issue.",
|
||||
"sceneContent": "Вміст сцени:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "Обов’язково",
|
||||
"website": "Введіть дійсну URL-адресу"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "Подати бібліотеку, щоб вона була включена до ",
|
||||
"link": "публічного репозиторія бібліотек",
|
||||
"post": "для інших людей, для використання у їхніх полотнах."
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "Спочатку бібліотека повинна бути підтверджена. Будь ласка, прочитайте ",
|
||||
"link": "настанови",
|
||||
"post": " перед відправкою. Вам знадобиться обліковий запис на GitHub, щоб колаборувати та вносити зміни, але це не обов'язково."
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "Публікуючи, ви погоджуєтеся, що бібліотека буде опублікована під ",
|
||||
"link": "Ліцензія MIT, ",
|
||||
"post": ", простими словами, це означає що нею зможе користуватися будь-хто без обмежень."
|
||||
},
|
||||
"noteDescription": "Подати бібліотеку, щоб вона була включена до <link>публічного репозиторія бібліотек</link>для інших людей, для використання у їхніх полотнах.",
|
||||
"noteGuidelines": "Спочатку бібліотека повинна бути підтверджена. Будь ласка, прочитайте <link>настанови</link> перед відправкою. Вам знадобиться обліковий запис на GitHub, щоб колаборувати та вносити зміни, але це не обов'язково.",
|
||||
"noteLicense": "Публікуючи, ви погоджуєтеся, що бібліотека буде опублікована під <link>Ліцензія MIT, </link>, простими словами, це означає що нею зможе користуватися будь-хто без обмежень.",
|
||||
"noteItems": "Кожен об'єкт в бібліотеці повинен мати назву, це потрібно для пошуку та фільтрування. Наступні об'єкти бібліотеки будуть включені:",
|
||||
"atleastOneLibItem": "Будь ласка, виберіть принаймні один елемент бібліотеки, щоб почати",
|
||||
"republishWarning": "Зауважте, деякі з вибраних елементів позначені як вже опубліковані/надіслані. Ви повинні повторно надсилати елементи тільки при оновленні вже опублікованої бібліотеки чи при публікації бібліотеки."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "Бібліотека відправлена",
|
||||
"content": "Дякуємо, {{authorName}}. Ваша бібліотека була відправлена для розгляду. Ви можете відстежувати статус",
|
||||
"link": "тут"
|
||||
"content": "Дякуємо, {{authorName}}. Ваша бібліотека була відправлена для розгляду. Ви можете відстежувати статус<link>тут</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "Очистити бібліотеку",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "Mẹo: hãy thử di chuyển các elements nhất lại gần nhau hơn một chút."
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "",
|
||||
"headingMain_button": "",
|
||||
"clearCanvasMessage": "Nếu không tải lại được, hãy thử ",
|
||||
"clearCanvasMessage_button": "dọn canvas.",
|
||||
"headingMain": "",
|
||||
"clearCanvasMessage": "Nếu không tải lại được, hãy thử <button>dọn canvas.</button>",
|
||||
"clearCanvasCaveat": " Điều này sẽ dẫn đến mất dữ liệu bạn đã làm ",
|
||||
"trackedToSentry_pre": "",
|
||||
"trackedToSentry_post": "",
|
||||
"openIssueMessage_pre": "",
|
||||
"openIssueMessage_button": "",
|
||||
"openIssueMessage_post": "",
|
||||
"trackedToSentry": "",
|
||||
"openIssueMessage": "",
|
||||
"sceneContent": ""
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "Từng món trong thư viện phải có tên riêng để có thể lọc. Các món thư viện sau đây sẽ thêm:",
|
||||
"atleastOneLibItem": "Vui lòng chọn ít nhất một món thư viện để bắt đầu",
|
||||
"republishWarning": "Lưu ý: một số món đã chọn được đánh dấu là đã xuất bản/đã gửi. Bạn chỉ nên gửi lại các món khi cập nhật thư viện hiện có hoặc gửi."
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "提示:尝试将最远的元素移动到和其它元素更近一些。"
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "遇到异常。请尝试",
|
||||
"headingMain_button": "重新加载页面。",
|
||||
"clearCanvasMessage": "如果重新加载页面无效, 请尝试",
|
||||
"clearCanvasMessage_button": "清除画布。",
|
||||
"headingMain": "遇到异常。请尝试<button>重新加载页面。</button>",
|
||||
"clearCanvasMessage": "如果重新加载页面无效, 请尝试<button>清除画布。</button>",
|
||||
"clearCanvasCaveat": "这会造成当前工作丢失",
|
||||
"trackedToSentry_pre": "带有标识符的错误",
|
||||
"trackedToSentry_post": "已在我们的系统中跟踪",
|
||||
"openIssueMessage_pre": "我们非常谨慎地处理错误信息,您的画布内容不会被包含在错误报告中。如果您的画布内容不需要保持私密,请考虑使用我们的",
|
||||
"openIssueMessage_button": "错误追踪器。",
|
||||
"openIssueMessage_post": " 请复制并粘贴以下信息到 GitHub Issue 中。",
|
||||
"trackedToSentry": "带有标识符的错误{{eventId}}已在我们的系统中跟踪",
|
||||
"openIssueMessage": "我们非常谨慎地处理错误信息,您的画布内容不会被包含在错误报告中。如果您的画布内容不需要保持私密,请考虑使用我们的<button>错误追踪器。</button> 请复制并粘贴以下信息到 GitHub Issue 中。",
|
||||
"sceneContent": "画布内容:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "必填",
|
||||
"website": "输入一个有效的URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "提交后,您的素材库将被包含在 ",
|
||||
"link": "公共素材库广场",
|
||||
"post": "以供其他人在绘图中使用。"
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "提交的素材库需先经人工审核。在提交之前,请先阅读 ",
|
||||
"link": "指南",
|
||||
"post": " 。后续沟通和对库的修改需要 GitHub 账号,但这不是必须的。"
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "提交即表明您已同意素材库将遵循 ",
|
||||
"link": "MIT 许可证, ",
|
||||
"post": "简而言之,任何人都可以不受限制地使用它们。"
|
||||
},
|
||||
"noteDescription": "提交后,您的素材库将被包含在 <link>公共素材库广场</link>以供其他人在绘图中使用。",
|
||||
"noteGuidelines": "提交的素材库需先经人工审核。在提交之前,请先阅读 <link>指南</link> 。后续沟通和对库的修改需要 GitHub 账号,但这不是必须的。",
|
||||
"noteLicense": "提交即表明您已同意素材库将遵循 <link>MIT 许可证, </link>简而言之,任何人都可以不受限制地使用它们。",
|
||||
"noteItems": "素材库中每个项目都有各自的名称以供筛选。以下项目将被包含:",
|
||||
"atleastOneLibItem": "请选择至少一个素材库以开始",
|
||||
"republishWarning": "注意:部分选中的项目已经发布或提交。请仅在更新已有或已提交的素材库时重复提交项目。"
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "素材库已提交",
|
||||
"content": "谢谢你 {{authorName}}。您的素材库已被提交审核。跟进此次提交的状态请点击",
|
||||
"link": "此处"
|
||||
"content": "谢谢你 {{authorName}}。您的素材库已被提交审核。跟进此次提交的状态请点击<link>此处</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "重置素材库",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": ""
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "",
|
||||
"headingMain_button": "",
|
||||
"clearCanvasMessage": "如果重新整理頁面都係睇唔到,你可以",
|
||||
"clearCanvasMessage_button": "清空畫布",
|
||||
"headingMain": "",
|
||||
"clearCanvasMessage": "如果重新整理頁面都係睇唔到,你可以<button>清空畫布</button>",
|
||||
"clearCanvasCaveat": "(注意:呢個動作會直接丟棄你嘅作品,並且無法復原)",
|
||||
"trackedToSentry_pre": "",
|
||||
"trackedToSentry_post": "",
|
||||
"openIssueMessage_pre": "",
|
||||
"openIssueMessage_button": "",
|
||||
"openIssueMessage_post": "",
|
||||
"trackedToSentry": "",
|
||||
"openIssueMessage": "",
|
||||
"sceneContent": ""
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "",
|
||||
"website": ""
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "",
|
||||
"link": "",
|
||||
"post": ""
|
||||
},
|
||||
"noteDescription": "",
|
||||
"noteGuidelines": "",
|
||||
"noteLicense": "",
|
||||
"noteItems": "",
|
||||
"atleastOneLibItem": "",
|
||||
"republishWarning": ""
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "",
|
||||
"content": "",
|
||||
"link": ""
|
||||
"content": ""
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "",
|
||||
|
@ -264,16 +264,11 @@
|
||||
"canvasTooBigTip": "提示:可嘗試將最遠的元素移動至較集中的位置"
|
||||
},
|
||||
"errorSplash": {
|
||||
"headingMain_pre": "發生錯誤,嘗試",
|
||||
"headingMain_button": "重新載入頁面。",
|
||||
"clearCanvasMessage": "若重新載入仍無法解決問題,嘗試",
|
||||
"clearCanvasMessage_button": "清除 canvas。",
|
||||
"headingMain": "發生錯誤,嘗試<button>重新載入頁面。</button>",
|
||||
"clearCanvasMessage": "若重新載入仍無法解決問題,嘗試<button>清除 canvas。</button>",
|
||||
"clearCanvasCaveat": "此動作將造成目前的作品被移除。",
|
||||
"trackedToSentry_pre": "此錯誤與其識別碼",
|
||||
"trackedToSentry_post": "將由系統記錄。",
|
||||
"openIssueMessage_pre": "我們將謹慎處理,你的作品內容不會被包含在錯誤報告中。若你的作品不需保持私密,請考慮使用我們的",
|
||||
"openIssueMessage_button": "bug tracker。",
|
||||
"openIssueMessage_post": "請將下列資訊複製貼上至 GitHub issue 中。",
|
||||
"trackedToSentry": "此錯誤與其識別碼{{eventId}}將由系統記錄。",
|
||||
"openIssueMessage": "我們將謹慎處理,你的作品內容不會被包含在錯誤報告中。若你的作品不需保持私密,請考慮使用我們的<button>bug tracker。</button>請將下列資訊複製貼上至 GitHub issue 中。",
|
||||
"sceneContent": "作品內容:"
|
||||
},
|
||||
"roomDialog": {
|
||||
@ -353,29 +348,16 @@
|
||||
"required": "必填",
|
||||
"website": "請輸入有效的 URL"
|
||||
},
|
||||
"noteDescription": {
|
||||
"pre": "送出您的資料庫後將被包含於",
|
||||
"link": "公開資料庫 repository",
|
||||
"post": "以利他人在其繪圖中使用。"
|
||||
},
|
||||
"noteGuidelines": {
|
||||
"pre": "資料庫需先經人工審查。請閱讀",
|
||||
"link": "說明文件",
|
||||
"post": "再送出。若需溝通與修改時要透過 GitHub 帳號來進行,但並非強制需求。"
|
||||
},
|
||||
"noteLicense": {
|
||||
"pre": "送出即代表您同意此資料庫將發布時使用 ",
|
||||
"link": "MIT 授權,",
|
||||
"post": "簡單來說是指任何人都能不受限制的使用。"
|
||||
},
|
||||
"noteDescription": "送出您的資料庫後將被包含於<link>公開資料庫 repository</link>以利他人在其繪圖中使用。",
|
||||
"noteGuidelines": "資料庫需先經人工審查。請閱讀<link>說明文件</link>再送出。若需溝通與修改時要透過 GitHub 帳號來進行,但並非強制需求。",
|
||||
"noteLicense": "送出即代表您同意此資料庫將發布時使用 <link>MIT 授權,</link>簡單來說是指任何人都能不受限制的使用。",
|
||||
"noteItems": "每個資料庫項目都有獨立的名稱故可篩選。會包含下列資料庫項目:",
|
||||
"atleastOneLibItem": "請選擇至少一項資料庫項目",
|
||||
"republishWarning": "注意:部分選取中的物件先前已發布/送出過。建議僅在要更新現存資料庫或已送出的物件時才重新送出這些物件。"
|
||||
},
|
||||
"publishSuccessDialog": {
|
||||
"title": "資料庫已送出",
|
||||
"content": "感謝 {{authorName}} 。您的資料庫已送出待審查。您可查看目前狀態",
|
||||
"link": "在此"
|
||||
"content": "感謝 {{authorName}} 。您的資料庫已送出待審查。您可查看目前狀態<link>在此</link>"
|
||||
},
|
||||
"confirmDialog": {
|
||||
"resetLibrary": "重設資料庫",
|
||||
|
Loading…
x
Reference in New Issue
Block a user